-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathSnake.css
More file actions
84 lines (78 loc) · 1.21 KB
/
Copy pathSnake.css
File metadata and controls
84 lines (78 loc) · 1.21 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* FileName: Snake.css
* Author: Pratibha Natani
* Description: This file contains the styling elements for the game.
* References:
* http://www.tizag.com/phpT/forms.php
* http://www.w3schools.com/js/js_objects.asp
*
*/
#main {
text-align:center;
}
#main #title {
font-size:26px;
font-style:bold;
margin-top:20px;
}
#instructions {
text-align:center;
}
#instructions ul {
list-style-type:square;
text-align:left;
margin-left: 330;
}
body {
background-color:#4AA02C;
margin:0;
padding:0;
font:13px arial;
}
#Board{
border:1px solid black;
margin:0px 0 0 0px;
left:10px;
top:10px;
background-color:black;
height:;
width:
}
#snake0{
position:absolute;
left:0;
top:0;
height:10px;
}
#snake1{
position:absolute;
left:0;
top:0;
height:10px;
}
#snake2
{
position:absolute;
left:0;
top:0;
height:10px;
}
#scoreLabel{
position:absolute;
height:;
width:;
left:800px;
top:13px;
font-weight: bold;
font-size:20px;
}
#scoreText{
background-color:#4AA02C;
border:none;
position:absolute;
height:;
width: 70px;
left:870px;
top:10px;
size:20px;
font-size:20px;
}