-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
66 lines (55 loc) · 873 Bytes
/
main.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
* {
padding: 0;
margin: 0;
}
body {
background: #333;
color: #ccc;
font-family: monospace;
font-size: 18px;
}
span {
position: absolute;
display: inline-block;
width: 14px;
height: 20px;
}
#player {
top: 340px;
left: 620px;
z-index: 1;
background-color: purple;
}
.game-target {
display: inline-block;
background-color: white;
z-index: -1;
}
#scoreboard {
height: 100vh;
width: 140px;
}
#scoreboard h3 {
display: block;
padding: 20px 20px 40px 20px;
}
#scoreboard #score, #scoreboard #time {
display: block;
font-size: 40px;
width: 400px;
}
.flash-background {
background: green;
}
button#play-again {
padding: 20px 20px;
font-size: 30px;
margin: 15px;
width: 240px;
border-radius: 22px;
background-color: #333;
border: 4px solid #ccc;
color: #ccc;
cursor: pointer;
}
button:focus {outline:0;}