add grey backgroudn to disabled inputs

This commit is contained in:
Arthur Lu 2023-01-12 15:21:08 -08:00
parent 6598ae3133
commit 24351ded1e

View File

@ -30,12 +30,20 @@ input:focus {
outline: none;
}
input:disabled {
background-color: #606060;
}
select {
border: solid white 1px;
background-color: black;
color: white;
}
select:disabled {
background-color: #606060;
}
button {
margin-top: 0px;
}