-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (56 loc) · 884 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
body {
padding-top: 10vh;
margin: 0 auto;
width: 75%;
height: 100vh;
box-sizing: border-box;
text-align: center;
background-color: whitesmoke;
}
input, button {
width: 5vh;
height: 5vh;
margin: 0;
font-size: 24px;
background-color: wheat;
border: 1px solid goldenrod;
border-radius: 5px;
}
hr {
width: 0;
}
#word {
font-size: 64px;
margin: 20px;
color: saddlebrown;
}
#next {
width: initial;
}
#feedback {
font-size: 32px;
font-weight: bold;
}
#progress {
margin-top: 30px;
}
#feedback::before,
#progress > span::before {
content: "?";
}
#progress > span {
display: inline-block;
width: 15px;
font-weight: bold;
font-size: 16px;
}
#feedback.correct::before,
#progress > span.correct::before {
content: "✔";
color: lime;
}
#feedback.wrong::before,
#progress > span.wrong::before {
content: "✘";
color: red;
}