-
Notifications
You must be signed in to change notification settings - Fork 1
/
snake.css
41 lines (34 loc) · 843 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
.nokia {
position: absolute; top: 0; bottom: 0; left: 50%; margin-left: -500px; width: 1000px;
background-image: url('nokia.jpg');
background-position: -195px -508px;
background-repeat: no-repeat;
}
.screen {
margin: auto; margin-top: 200px; opacity: 0.6;
width: 347px; height: 247px; overflow:hidden;
}
.snake {
/*background-color: #B9C501;*/
border: 1px solid black;
}
.snake:after { content: ' '; clear: both; display: block; }
.snake .block {
float: left;
width: 15px; height: 15px;
transition: background-color 0.1s;
}
.snake .block.apple,
.snake .block.snake-body {
background-color: black;
}
.snake .block.apple {
/*width: 5px; height: 5px;
border: 3px solid black;
border-radius: 4px;
margin: 2px;*/
}
.points {
margin:auto; font-size: 62px; font-family: Impact; font-weight: bold;
}
.hidden { display: none; }