forked from RDaniil/snake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (34 loc) · 726 Bytes
/
Copy pathstyle.css
File metadata and controls
38 lines (34 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
.main .line {
clear: both;
}
.main .line div {
width: 20px;
height: 20px;
float: left;
margin: 1px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #fff;
transition: background-color .5s;
}
.main .line div.snake {
background-color: #bbb;
transition: background-color .5s;
}
.main div.scores {
width: 40px;
height: 20px;
float: left;
margin: 1px;
border: 1px solid green;
border-radius: 4px;
background-color: #fff;
text-align: right;
color: #666;
font-family: sans-serif;
font-weight: bold;
}
.main .line div.food {
background-color: green;
transition: background-color 2s;
}