login.html - Changed Input Boxes to have a dark background and white text

This commit is contained in:
Matthew Patrick 2021-09-26 17:09:27 +07:00
parent 8f145cafc2
commit 1c88fdb956

View file

@ -30,6 +30,26 @@
border-bottom-right-radius: 20px;
}
.input-group-text {
background-color: #212226;
color: white;
}
.form-control {
background-color: #212226;
color: white;
}
.form-control:valid {
background-color: #212226;
color: white;
}
.form-control:invalid {
background-color: #2f0001;
color: white;
}
button[type="submit"] {
margin-bottom: 4%;
}