-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.css
62 lines (56 loc) · 1006 Bytes
/
snake.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
@CHARSET "UTF-8";
h2{
width: 400px;
position: absolute;
top: 20px;
left:200px;
text-align: center;
}
.game{
width: 640px;
height: 600px;
background-color: #F2FAFF;
border: 1px solid blue;
position: absolute;
top: 100px;
left:200px;
}
.info{
font-size: 30px;
width: 400px;
height: 400px;
background-color: #F2FAFF;
position: absolute;
top: 100px;
left:1050px;
padding: 10px;
box-sizing: border-box;
}
.none,.snakeHead,.food, .snakeBody, .snakeRear{
width: 40px;
height: 40px;
box-sizing: border-box;
position: absolute;
border: 1px solid blue;
box-sizing: border-box;
}
.snakeHead{
background-color: #b75ffe;
border: 4px dashed #F2FAFF;
}
.none{
background-color: #F2FAFF;
border: 1px solid #F2FAFF;
}
.snakeBody{
background-color: #0f0000;
border: 2px dashed #F2FAFF;
}
.food{
background-color: green;
border: 3px dashed #F2FAFF;
}
.snakeRear{
background-color: #0f0000;
border: 5px solid #F2FAFF;
}