-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
63 lines (55 loc) · 829 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
56
57
58
59
60
61
62
63
body {
margin: 0;
background-color: #080808;
min-height: 100vh;
padding: 0;
}
.header {
text-align: center;
padding: 25px;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.h-100v {
min-height: 100vh;
padding: 25px;
}
.h-av {
min-height: calc(100vh - 80px);
}
.grid-box {
width: 400px;
height: 400px;
display: flex;
flex-wrap: wrap;
border: 2px solid red;
margin: 0 auto;
flex-direction: row;
box-sizing: content-box;
}
.grid-box div {
box-sizing: border-box;
height: 20px;
width: 20px;
/* outline: 0.00001px solid #eee; */
}
.body-bg {
color: #d3d3d3;
background-color: #080808;
}
.snake {
background-color: rgb(165, 158, 158);
}
.head {
background-color: #fdfcfc;
}
.tail {
background-color: #474545;
}
.apple {
background-color: rgb(36, 233, 10);
}