-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (41 loc) · 883 Bytes
/
style.css
File metadata and controls
41 lines (41 loc) · 883 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
39
40
41
body {
margin: 0;
overflow: hidden;
background: #121212;
color: #fff;
font-family: sans-serif;
text-align: center;
}
#score, #timer {
font-size: 30px;
margin: 10px;
}
#box {
width: 60px;
height: 60px;
background: #ff4040;
position: absolute;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 20px #ff4040;
display: none;
}
#gameover {
font-size: 50px;
color: #ffcc00;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
}
#startBtn {
padding: 15px 30px;
font-size: 24px;
background: #28a745;
border: none;
color: white;
border-radius: 8px;
margin-top: 30px;
cursor: pointer;
}