-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (52 loc) · 794 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#score {
display: inline-block;
}
#gui {
position: absolute;
top: 300px;
left: 250px;
}
#gameover {
position: absolute;
height: 250px;
width: 500px;
top: 100px;
padding: 50px;
background: rgb(50, 3, 59)
}
#gameover p {
font-size: 40px;
}
p,button {
color: white;
font-weight: bold;
font-family: monospace;
font-size: 25px;
left: 250px;
}
button {
padding: 20px;
margin-bottom: 40px;
border: none;
border-radius: 5px;
background-color: rgb(177, 206, 34);
}
button:active, button:focus {
border: 3px solid rgb(79, 182, 31);
padding: 17px;
outline: none;
}
button:hover {
background-color: rgb(71, 126, 34);
}
div {
text-align: center;
}
canvas {
display: block;
margin: 0 auto;
margin-top: 20px;
}
.hide {
display: none;
}