blob: 06c1d758e7bf80f37edbb3b81a66eab4626df5d4 (
plain) (
blame)
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
|
@import '_variables';
@import '_mixins';
.root {
height: 100%;
margin-left: auto;
margin-right: auto;
text-align: center;
padding-top: 150px;
display: flex;
justify-content: center;
flex-direction: column-reverse;
.box {
text-align: left;
font-size: 120%;
padding: 0 15px;
}
img {
margin-left: auto;
width: 220px;
height: auto;
}
@media screen and (max-width: $mobile-view) {
img {
margin-right: auto;
}
}
@media screen and (min-width: $mobile-view) {
width: 400px;
}
@media screen and (min-width: #{breakpoint(lg)}) {
width: 600px;
}
@media screen and (min-width: #{breakpoint(xl)}) {
width: 700px;
}
@media screen and (min-width: #{breakpoint(xxl)}) {
width: 800px;
}
@media screen and (max-height: 600px) {
padding-top: 50px;
img {
width: 160px;
}
}
}
|