-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (98 loc) · 1.66 KB
/
style.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
margin: 0;
padding: 0;
font-family: Tahoma, Verdana, sans-serif
}
header {
margin: 8vh auto;
text-align: center;
}
h1 {
font-size: 13vh;
color: #ffffff;
-webkit-text-stroke: 4px #726557;
}
p {
font-size: 2vh;
}
body {
background-color: #B6A795;
}
.container {
background-color: #726557;
margin: 0 auto;
padding: 2vh 5vh 5vh 5vh;
max-width: 800px;
}
.options-wrapper {
margin-bottom: 2vh;
display: flex;
align-items: center;
justify-content: space-between;
}
.options-text {
font-size: 1rem;
color: #ffffff;
}
.textbox-text {
font-size: 1.5rem;
}
.statistics {
display: flex;
justify-content: flex-end;
}
.text-wrapper {
position: relative;
background-color: #ffffff;
text-align: justify;
word-break: break-all;
padding: 3vh;
min-height: 13vh;
}
.blur {
filter: blur(3px);
}
.overlay-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 3.5vh;
font-weight: bold;
color: #ffffff;
-webkit-text-stroke: 2px #726557;
}
.disable {
display: none;
}
input[type="checkbox"] {
height: 15px;
width: 15px;
vertical-align: middle;
position: relative;
bottom: 2px;
}
/* Hide text input */
input[type="text"] {
position: absolute;
left: -100vw;
}
span {
display: inline-block;
text-align: center;
font-weight: bold;
min-width: 1rem;
min-height: 2rem;
margin: 0.1rem;
}
.correct {
border-bottom: 0.2rem solid;
color: green;
}
.incorrect {
border-bottom: 0.2rem solid;
color: red;
}
.current {
border-bottom: 0.2rem solid gray;
}