-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.css
69 lines (60 loc) · 955 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
63
64
65
66
67
68
69
/*body{
background: #000000 url(background.jpg) no-repeat top center;
font-family: arial;
}*/
a{
color:#ffffff;
text-decoration: none;
}
canvas{
background:#000000;
border: 1px #cccccc solid;
}
.container{
margin:30px auto 0 auto;
width:600px;
overflow:auto;
position:relative;
}
#stats{
width:590px;
background: #333333;
padding: 5px;
font-size:20px;
font-weight: bold;
color:#ffffff;
margin-bottom:5px;
overflow: auto;
}
#score, #high_score {
width:25%;
height: 50px;
padding-top: 20px;
float: left;
margin-right: 5px;
overflow:auto;
background: #000000;
text-align: center;
}
#reset_score{
padding: 10px;
float: right;
}
#overlay{
display:none;
color:#ffffff;
font-size:25px;
text-align:center;
position: absolute;
top: 170px;
left: 180px;
}
#overlay a{
display:block;
margin-top:10px;
padding:10px;
background: #666666;
}
#overlay a:hover{
background:#333333;
}