-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 941 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
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
* {
font-family: "Press Start 2P", system-ui;
font-weight: 400;
font-style: normal;
}
.container-canvas {
display: flex;
justify-content: center;
margin-top: 20px;
}
#canvas {
border: 5px solid black;
background-color: rgb(105, 255, 105);
}
.start-button {
display: flex;
justify-content: center;
}
.button {
padding: 10px 40px;
margin-top: 20px;
margin-right: 350px;
color: rgb(105, 255, 105);
background-color: black;
}
.score {
margin-left: 200px;
}
.score h2 {
margin-left: 58px;
}
.endgame1 {
display: flex;
justify-content: center;
font-size: 125px;
}
.endgame2 {
position: relative;
font-size: 125px;
color: blue;
bottom: 480px;
left: 135px;
/*display: none;*/
}
.endgame3 {
position: relative;
font-size: 125px;
color: cyan;
bottom: 800px;
left: 122px;
/*display: none;*/
}