-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (53 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow: hidden;
}
body {
margin: 0;
color: white;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
button {
outline: none;
cursor: pointer;
border: none;
box-shadow: 3px 5px 0px 0px rgba(0, 0, 0, 0.75);
}
a,
a:visited {
color: inherit;
}
.heading {
position: absolute;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
top: 10px;
left: 10px;
width: 100%;
text-align: left;
z-index: 100;
display: block;
}
#startButton, #endScreen, #instructions {
background-color: transparent;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 100px;
color: white;
width: 100vw;
height: 100vh;
z-index: 200;
vertical-align: middle;
}
#instructions {
font-size: 30px;
height: fit-content;
}
#endScreen {
text-align: center;
width: 100vw;
}
#stats, h1 {
background-color: rgba(0, 0, 0, 0.354);
width: max-content;
}