-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.css
More file actions
46 lines (38 loc) · 726 Bytes
/
snake.css
File metadata and controls
46 lines (38 loc) · 726 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
42
43
44
45
46
body {
font-family: sans-serif;
text-align: center;
background: #111;
color: white;
}
h1 {
margin: 20px 0 10px;
}
#score {
margin-bottom: 10px;
font-size: 1.2rem;
}
#game-board {
width: 400px;
height: 400px;
background: #222;
display: grid;
grid-template-columns: repeat(20, 1fr);
grid-template-rows: repeat(20, 1fr);
margin: 0 auto 20px;
border: 2px solid #444;
}
.cell {
width: 100%;
height: 100%;
}
.snake {
background-color: limegreen;
}
.food {
background-color: red;
}
button {
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
}