-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (34 loc) · 674 Bytes
/
style.css
File metadata and controls
38 lines (34 loc) · 674 Bytes
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
body {
margin: 0;
overflow: hidden; /* Hide scrollbars */
background-color: #87CEEB; /* Sky blue background */
font-family: sans-serif;
color: white;
text-align: center;
}
canvas {
display: block;
}
#score {
position: absolute;
top: 10px;
left: 10px;
font-size: 24px;
}
#instructions {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 30px;
text-shadow: 2px 2px 4px #000000;
}
#game-over {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40px;
font-weight: bold;
text-shadow: 2px 2px 4px #000000;
}