-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (40 loc) · 795 Bytes
/
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
body {
margin: 0;
overscroll-behavior: none; /* Disable Chrome two fingers back/forward swipe */
user-select: none; /* Prevent accidental selection while dragging mouse */
background-color: black;
color: white;
}
.center {
display: flex;
justify-content: center;
}
.speed {
position: absolute;
padding: 4px;
font: 18px Arial, sans-serif;
}
#title {
position: absolute;
top: 50%;
transform: translate( 0%, -50% );
font: 28px Arial, sans-serif;
}
#instructions {
position: absolute;
display: inline;
bottom: 4px;
font: 10px Arial, sans-serif;
}
.key {
display: inline-block;
min-width: 15px;
border: 3px outset gray;
background: gray;
color: white;
font-family: monospace;
text-align: center;
}
.action {
padding: 0px 20px 0px 10px;
}