0
0
Fork 0

Add focus styles for the text inputs.

This commit is contained in:
Oliver-Akins 2020-12-15 20:47:50 -07:00
parent 393781181d
commit b45b0658e3

View file

@ -229,14 +229,19 @@ input[type="text"] {
font-family: var(--fonts);
background-color: var(--board-background-alt);
color: var(--board-background-alt-text);
border-color: transparent;
border-style: solid;
border-radius: 7px;
border-width: 2px;
font-size: larger;
padding: 12px;
outline: none;
margin: 7px 0;
border: none;
width: 90%;
}
input[type="text"]:active, input[type="text"]:focus {
border-color: var(--board-background-text);
}
input[type="text"].team-answer {
padding-right: 5%;
}