-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.css
More file actions
56 lines (50 loc) · 723 Bytes
/
snake.css
File metadata and controls
56 lines (50 loc) · 723 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
body
{
padding: 0px;
/* margin: 0px;*/
background-color: #FFF6DB;
background-color: #FFFBF0;
}
#main-content
{
width: 750px;
margin: auto;
padding: 30px;
}
#canvas
{
/*
width: 100%;
height: 100%;
*/
border: 1px black solid;
display: block;
top: 150px;
margin: auto;
}
#score-panel
{
width: 90px;
position: absolute;
}
.callout-panel
{
background-color: #FFFFFF;
margin: 10px;
padding: 10px;
border: 2px solid black;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
.game-title
{
font-family: Orbitron;
font-size: 24pt;
color: #61A03C;
}
.text-md
{
font-family: Orbitron;
font-size: 16pt;
}