File size: 510 Bytes
a87b509 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/* Center align Submit and Clear buttons */
.custom-submit {
background-color: hsl(240, 38%, 55%) !important;
color: hsl(0, 85%, 74%) !important;
border: none !important;
padding: 10px 20px !important;
cursor: pointer !important;
border-radius: 5px !important;
}
.custom-clear {
background-color: lightgray !important;
color: black !important;
border: none !important;
padding: 10px 20px !important;
cursor: pointer !important;
border-radius: 5px !important;
}
|