-
Notifications
You must be signed in to change notification settings - Fork 1
/
snake.css
69 lines (63 loc) · 1.12 KB
/
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
/* design for our game */
#instructions
{
display: inline-block;
}
span
{
visibility: hidden;
color: #000080;
}
header
{
text-decoration: underline;
}
#instructions:hover >span
{
visibility: visible;
}
#home {
width: 500px;
height: 500px;
background-image: url('snakecookie.png');
background-size: auto 500px;
background-repeat: no-repeat;
background-color: #66CDAA ;
background-position: center center;
padding: 0;
margin: 0;
}
button {
background-color: #556B2F;
color: #FFFFFF;
border: none;
bottom: 0;
height: 30px;
font-size: 12pt;
float: left;
width: 90px;
margin: 10px 0 0 0;
}
button:hover {
background-color: #1E90FF;
}
button:disabled {
background-color: #808080;
}
p {
font-family: Helvetica;
font-weight: bold;
width: 250px;
margin: 18px 0 5px 8px;
float: left;
}
.game {
margin: 0 auto;
border-radius: 5px;
}
canvas
{
margin: 0;
border: 2px solid #000000;
border-radius: 3px;
}