30 lines
327 B
CSS
30 lines
327 B
CSS
body {
|
|
margin: 10vw;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5vw;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 3vw;
|
|
}
|
|
|
|
#pensum_content {
|
|
font-size: 2vw;
|
|
}
|
|
|
|
input[type="text"] {
|
|
-webkit-appearance: none;
|
|
border: none;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
input[type="text"].incorrect {
|
|
background-color: red;
|
|
}
|
|
|
|
input[type="text"].correct {
|
|
background-color: green;
|
|
}
|