blob: bdf89ef602bdfdd9f724dbfb86f0a48316fb73a3 (
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
|
@media (orientation: landscape) {
html {
background-image: url('../images/horizontal_background.png');
}
body {
width: 90%;
height: 90%;
.top {
margin: 0;
}
.center {
width: 85%;
position: relative;
float: left;
}
.bottom {
flex-direction: column;
width: 15%;
position: relative;
float: left;
margin: 0;
height: 90%;
align-items: flex-end;
justify-content: space-between;
flex-wrap: nowrap;
.button {
img {
width: 100%;
height: 80%;
}
}
}
}
}
|