-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (63 loc) · 951 Bytes
/
styles.css
File metadata and controls
73 lines (63 loc) · 951 Bytes
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
#game {
max-width: 1000px;
margin: 100vh auto;
}
kbd, .kbd {
display: inline-block;
border: solid 0.1em grey;
border-radius: 0.1em;
padding: 0.1em 0.5em;
font-size: 1em;
line-height: 1.4em;
font-family: monospace;
}
.hero-body {
margin: auto 0;
}
.textarea {
font-family: monospace;
}
fieldset {
border: 0;
}
#click-mask {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
#start-here {
position: absolute;
top: 0; left: 35em;
padding: 0.5em;
text-align: right;
}
#timer {
font-size: 2em;
position: fixed;
bottom: 0; left: 0;
padding: 1em;
}
#complete {
font-size: 2em;
position: fixed;
bottom: 0; right: 0;
padding: 1em;
}
#congrats {
width: 100vw;
text-align: center;
font-size: 5em;
border: 0;
margin: 50vh 0;
}
#message {
font-size: 2em;
position: fixed;
top: 0; left: 0;
padding: 1em;
width: 100vw;
text-align: center;
color: firebrick;
}