This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
image_fun/public/css/buttons.css

64 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2023-05-01 15:47:25 +03:00
.btn-95 {
background-color: #c0c0c0;
color: black;
border: 2px outset gray;
border-radius: 0px;
font-size: 16px;
font-family: "Arial", sans-serif;
padding: 6px 12px;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
}
.btn-95:hover:not(:disabled) {
background-color: #d8d8d8;
}
.btn-95:active:not(:disabled) {
background-color: #b8b8b8;
border: 2px inset gray;
}
.btn-95:disabled {
cursor: not-allowed;
opacity: .8;
}
textarea {
background-color: #c0c0c0;
color: black;
border: 2px outset gray;
font-size: 16px;
font-family: "Arial", sans-serif;
padding: 6px 12px;
resize: vertical;
}
textarea:hover {
background-color: #d8d8d8;
}
textarea:focus {
background-color: #e8e8e8;
2023-05-04 16:51:05 +03:00
}
select {
background-color: #c0c0c0;
color: black;
border: 2px outset gray;
font-size: 16px;
font-family: "Arial", sans-serif;
padding: 6px 12px;
resize: vertical;
}
select:hover {
background-color: #d8d8d8;
}
select:focus {
background-color: #e8e8e8;
2023-05-01 15:47:25 +03:00
}