blob: 0a1249412a2c6ef37c7e04469b7d16dd6b9d7dcd (
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
|
@media (orientation: landscape) {
html {
background-image: url('../images/horizontal_background.png');
}
body {
.top{
width: $header_size;
height: 100%;
flex-direction: column;
.button {
border-width: 1px 0 1px 0;
order: 2;
}
.infoContainer {
border-width: 1px 0 1px 0;
width: $header_size;
height: 200px;
order: 1;
}
.statusContainer {
width: 100%;
height: 60px;
flex-direction: row;
align-items: center;
order: 0;
}
}
.bottom {
display: none;
}
}
}
|