-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (57 loc) · 1.01 KB
/
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
65
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #1a1a1a;
font-family: Arial, sans-serif;
}
.game-container {
text-align: center;
background: #000;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
h1 {
color: #0099ff;
margin-bottom: 20px;
}
canvas {
background: #000;
border: 2px solid #0099ff;
border-radius: 5px;
}
.score {
color: #0099ff;
font-size: 24px;
margin: 20px 0;
}
#startButton {
background: #0099ff;
color: white;
border: none;
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
transition: transform 0.1s;
}
#startButton:hover {
transform: scale(1.05);
}
.footer {
margin-top: 20px;
color: #0099ff;
font-size: 14px;
}
.footer a {
color: #00ffff;
text-decoration: none;
transition: color 0.3s ease;
}
.footer a:hover {
color: #0099ff;
text-decoration: underline;
}