-
Notifications
You must be signed in to change notification settings - Fork 3
/
game.css
66 lines (65 loc) · 1.13 KB
/
game.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
body {
background-color: #CCC;
margin: 0;
padding: 0;
width: 640px;
height: 480px;
margin-left: auto;
margin-right: auto;
text-align: center;
user-select: none;
}
div#nohtml5 {
text-align: left;
}
div#gamefinished, canvas#stage{
background-color: #FFF;
width: 612px;
height: 432px;
margin: 5px;
border-style: solid;
border-width: 1px;
border-color: #000;
user-select: none;
moz-user-select: -moz-none;
-moz-user-select: -moz-none;
moz-user-select: none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
div#gamefinished {
display: none;
margin-left: auto;
margin-right: auto;
}
div#footer {
width: 612px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
div#footer div.item{
vertical-align: top;
display: inline-block;
width: 120px;
}
a.back{
text-decoration: none;
color: #000;
}
div#footer a.back{
float: right;
}
iframe#egg {
display: none;
background-color: #FFF;
width: 612px;
height: 432px;
border-style: solid;
border-width: 1px;
border-color: #000;
}