-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
56 lines (47 loc) · 821 Bytes
/
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
body {
background-color: #444;
display: flex;
flex-direction: column;
align-items: center;
}
.playAreaContainer {
display: grid;
grid-template-columns: repeat(40, 1fr);
width: 600px;
height: 600;
box-shadow: 7px 7px 0px 0px #00d1cd;
}
.row {
height: 13px;
width: 13px;
border-style: solid;
border-width: 1px;
border-color: #0000002e;
background: #eaeaea;
}
.occupiedSnake {
background-color: #444444;
}
.occupiedFood {
background-color: #00d1cd;
}
h1 {
color: #eaeaea;
margin: 42px;
font-size: 2.5em;
font-style: normal;
}
#score {
color: #eaeaea;
margin-top: 25px;
}
#restartButton {
margin-top: 30px;
background: #00d1cd;
border: none;
padding: 20px 65px;
box-shadow: 7px 7px 0px 0px #00d1cd;
background: #eaeaea;
color: #444;
font-weight: bold;
}