12 lines
186 B
CSS
12 lines
186 B
CSS
|
input[type="text"] {
|
||
|
border: none;
|
||
|
border-bottom: 1px solid black;
|
||
|
}
|
||
|
|
||
|
input[type="text"].incorrect {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
input[type="text"].correct {
|
||
|
background-color: green;
|
||
|
}
|