-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdefault.css
115 lines (98 loc) · 1.49 KB
/
default.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
background-image: url('images/bg.png');
}
@media screen and (-ms-view-state: fullscreen-landscape) {
}
@media screen and (-ms-view-state: filled) {
}
@media (-ms-view-state: snapped) {
#game {
width:300px;
height:600px;
margin-top: 3%;
background-color: white;
}
#controlBox {
float: left;
left:50%;
margin-left:30px;
top: 620px;
}
#controls {
position:relative;
left:-120px;
top: -30px;
}
#footer {
display: none;
}
#directions {
display:none;
}
}
@media screen and (-ms-view-state: fullscreen-portrait) {
}
#game {
width:300px;
height:600px;
position: absolute;
left: 50%;
margin-left: -150px;
margin-top: 3%;
float: left;
background-color: white;
}
.gameCanvas {
border: 1px solid black;
position: absolute;
}
#controlBox {
width: 120px;
position: absolute;
float: right;
right:50%;
margin-right: -300px;
margin-top: 3%;
}
#controls {
position: absolute;
margin-top: 30px;
width: 100px;
}
#controls > button {
margin: 0px 5px 5px 0px;
}
#nextBlock {
width: 120px;
height: 120px;
background-color: white;
}
#footer {
position: absolute;
bottom: 3%;
left: 3%;
}
#blocker {
display: none;
z-index: 100;
left: 1px;
top: 1px;
position: absolute;
}
#gameover {
opacity:0.5;
display: none;
z-index: 1000;
left: 1px;
top: 1px;
position: absolute;
}
#directions {
position: absolute;
width: 200px;
bottom: 10%;
right: 5%;
}
#restart {
display: none;
}