-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
67 lines (59 loc) · 1.16 KB
/
game.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
#canvas {
border: 3px solid white;
float: left;
}
#gamemenu {
width: 200px;
height: 600px;
float: left;
margin-left: 20px;
border: 3px solid white;
background-color: #2e2e2e;
}
#gamemenu .game-control, #gamemenu #score {
float: left;
margin-left: 10px;
font-size: 20pt;
font-weight: 600;
font-family: sans-serif;
width: 200px;
}
#gamemenu #score {
cursor: pointer;
}
#countdown {
width: 400px;
height: 600px;
border: 3px solid white;
background-color: rgba(1,1,1,0.5);
position: absolute;
}
#countdownDisplay {
color: white;
font-weight: 600;
font-family: sans-serif;
position: absolute;
margin-left: 200px;
margin-top: 300px;
font-size: 40px;
text-align: center;;
}
#countdown .gamestate-indicator {
text-align: center;
font-family: sans-serif;
margin-top: 100px;
font-weight: 600;
font-size: 24pt;
color: white;
}
#countdown .button-wrapper {
text-align: center;
}
#countdown .restart-button {
color: white;
font-size: 30pt;
font-weight: 600;
cursor: pointer;
font-family: sans-serif;
text-decoration: none;
}