-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 1.06 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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: antiquewhite;
text-align: center;
}
#game-arena {
width: 600px;
height: 600px;
background-color: #333;
position: relative;
border: 5px solid #666;
margin-bottom: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
#score-board {
font-size: x-large;
font-weight: bold;
color: black;
margin: 10px 0;
}
.start-button {
background-color: orangered;
color: white;
padding: 15px 30px;
text-align: center;
text-decoration: none;
font-size: 18px;
margin: 4px 0;
cursor: pointer;
border: none;
border-radius: 6px;
}
.food {
width: 20px;
height: 20px;
background-color: red;
position: absolute;
border-radius: 50%;
animation: blink 1s infinite;
}
@keyframes blink {
50% {
opacity: 0.5;
}
}
.snake {
width: 20px;
height: 20px;
background-color: chartreuse;
position: absolute;
border-radius: 5px;
}