blob: 7c51760f8bcbd5be23f91651e11a5942c6972981 (
plain)
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
|
@media (orientation: portrait) {
}
@media (orientation: landscape) {
#maze-box {
display:inline-block;
vertical-align: middle;
}
#button-box {
display: inline-block;
vertical-align: middle;
}
#floor-box {
display: block;
vertical-align: top;
}
#sidebar {
display: inline-block;
vertical-align: top;
}
#ui-box {
text-align: center;
vertical-align: top;
}
}
#maze-box {
text-align: center;
}
#button-box {
text-align: center;
}
#button-box table {
margin-left: auto;
margin-right: auto;
}
.float-clear {
clear: both;
}
#floor-box {
text-align: center;
}
|