40 lines
622 B
CSS
40 lines
622 B
CSS
/*
|
|
Dark Gray: #544343
|
|
Light Gray: #999799
|
|
Blue: #086788
|
|
Green: #9FCC2E
|
|
*/
|
|
|
|
input[type="button"] {
|
|
background-color: #696969;
|
|
color: white;
|
|
border-radius: 3px;
|
|
padding: 1.5px 5px;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: background-color 250ms ease-in-out;
|
|
}
|
|
|
|
input[type="button"]:hover {
|
|
background-color: #999799;
|
|
}
|
|
|
|
input[type="button"]:disabled {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
input[name="btnCancel"] + input[name="btnSave"] {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
input[name="btnCancel"] {
|
|
background-color: lightcoral;
|
|
color: white;
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 80px;
|
|
}
|