-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
67 lines (57 loc) · 909 Bytes
/
stylesheet.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
body {
background: #1E2930;
}
#game {
width: 650px;
}
#gameField {
width: 400px;
height: 400px;
float: left;
margin-right: 20px;
background:#13191E;
position:relative;
}
#gameInfo {
width: 200px;
height: 400px;
float: left;
background:#13191E;
font-family:sans-serif;
text-align:center;
color:rgba(255,255,255,0.6);
}
.bodypart {
height: 8px;
width: 8px;
position:absolute;
background: white;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
}
#points {
margin:5px;
height:120px;
margin-top:15px
}
#rules {
margin:5px;
font-size:12pt;
}
.food {
height: 8px;
width: 8px;
position:absolute;
background: white;
-moz-border-radius:2px;
-webkit-border-radius:2px;
border-radius:2px;
-webkit-box-shadow: 0px 0px 10px #9CE8C7;
}
#gamemsg {
font-size:16pt;
margin-bottom:35px;
visibility:hidden;
color:#E01B6A;
}