-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (57 loc) · 1.16 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
/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono&display=swap');
/* Styles */
p, a, div, h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto', Arial, sans-serif;
}
h1.title {
text-align: center;
}
.center {
text-align: center;
align-self: center;
align-content: center;
}
div#challenge-text {
max-width: 35%;
margin: 0 auto;
border: solid 1px black;
padding: 5px 5px 5px 5px;
height: 300px;
overflow-y: hidden;
overflow-x: hidden;
}
div.challenge-text, p.challenge-text {
font-family: 'Roboto Mono', monospace;
text-align: left;
padding: 5px 5px 5px 5px;
user-select: none;
}
.challenge-text-selected-line {
background-color: yellow;
}
.keyhint {
size: 10px;
width: 35%;
margin: 0 auto;
padding: 5px 5px 5px 5px;
}
span.positive {
color: green;
}
span.negative {
color: red;
}
div.timer-seconds, div.wpm {
text-align: left;
width: 35%;
align-self: center;
display: inline-block;
}
span#timer-seconds {
font-family: 'Roboto Mono', monospace;
font-size: 40px;
}
span#wpm {
font-family: 'Roboto Mono', monospace;
}