-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 896 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
body {
margin: 0;
background-color: rgb(21, 27, 34);
}
#flex {
display: flex;
text-align: center;
justify-content: center;
}
#root {
padding: 2rem;
text-align: center;
}
#root h1 {
font-family: "Press Start 2P", Consolas, monospace;
color: white;
margin-bottom: 30px;
}
#root canvas {
display: block;
margin: 0 auto;
border: 3px solid rgb(236, 229, 229);
border-radius: 1%;
}
#score {
display: inline-block;
height: 100px;
width: 140px;
margin-top: 555px;
color: white;
font-family: "Press Start 2P", Consolas, monospace;
font-size: 20px;
}
#score p {
font-size: 30px;
}
#game-over {
height: 180px;
width: 300px;
position: absolute;
top: 140px;
left: 440px;
background-color: rgb(159, 62, 62);
border: 2px solid beige;
text-align: center;
font-family: "Press Start 2P", Consolas, monospace;
color: white;
display: none;
}