blob: 7acca5e469fe852863b4e89a5f33b723a759c429 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
@media (orientation: landscape) {
html {
background-image: url('../images/horizontal_background.png');
}
body {
width: 90%;
height: 1000px;
margin: 40px 5%;
.top {
margin: 0;
}
.center {
position: relative;
float: left;
height: 20%;
margin-top: 40px;
.item {
flex-basis: 30%;
.button {
.label {
font-size: 4em;
margin-top: -45%;
}
}
}
.item.ac {
.label {
font-size: 4em;
margin-top: -45%;
}
}
}
.bottom {
flex-direction: column;
width: 15%;
position: relative;
float: right;
margin: 0;
height: fit-content;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
.button {
margin: 10px 0;
img {
width: 100%;
height: 80%;
}
}
}
}
}
|