-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.css
More file actions
56 lines (47 loc) · 773 Bytes
/
snake.css
File metadata and controls
56 lines (47 loc) · 773 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@import url(http://fonts.googleapis.com/css?family=Gochi+Hand);
#board {
width: 400px;
height: auto;
margin: 0px auto;
border-width:10px;
border-style:inset;
}
#board:after {
content: "";
clear: both;
display: block;
}
body {
text-align: center;
background-color: #519B71;
font-family: 'Gochi Hand', cursive;
color: #1801DF;
}
.square {
width: 18px;
height: 18px;
margin: 0px auto;
float: left;
border: #506C8E solid 1px;
display: inline-block;
background-color: #506C8E;
border-radius: 2px;
}
.snake {
background-color: #FE303A;
}
.apple {
background-color: #FFFF00;
}
.death {
background-color: #FE303A;
}
h1 {
margin-top: 50px;
font-size: 42px;
}
h3 {
font-size: 18px;
font-style: italic;
color: white;
}