46 lines
816 B
CSS
46 lines
816 B
CSS
|
.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;
|
||
|
}
|