-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (82 loc) · 1.36 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
background-color: black;
}
h1 {
color: rgb(200, 200, 200);
text-align: center;
font-family: 'Consolas';
font-size: 3em;
}
#playfield {
margin: auto;
margin-top: 50px;
display: flex;
flex-direction: column;
background-color: rgb(84, 70, 38);
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
}
.square {
background-color: rgb(84, 70, 38);
border-style: solid;
border-color: black;
border-width: 1px;
width: 20px;
height: 20px;
}
.snake-part {
background-color: green;
border-style: solid;
border-color: green;
border-width: 1px;
width: 20px;
height: 20px;
border-radius: 5px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.apple {
background-color: red;
border-style: solid;
border-color: black;
border-width: 1px;
width: 20px;
height: 20px;
border-radius: 10px;
}
.snake-eye-right {
width: 1px;
height: 1px;
background-color: black;
border-radius: 50px;
margin-left: auto;
padding: 3px;
}
.snake-eye-left {
width: 1px;
height: 1px;
background-color: black;
border-radius: 50px;
margin-right: auto;
padding: 3px;
}
.snake-eye-up {
width: 1px;
height: 1px;
background-color: black;
border-radius: 50px;
margin-bottom: auto;
padding: 3px;
}
.snake-eye-down {
width: 1px;
height: 1px;
background-color: black;
border-radius: 50px;
margin-top: auto;
padding: 3px;
}