blob: c8b19fa727d31fb00771ddda1398f6be46b6fb46 (
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
|
@import "core";
main {
height: 100vh;
max-width: 450px;
margin: 0 auto;
padding-top: 25px;
}
.header {
pointer-events: none;
user-select: none;
display: flex;
.image {
justify-self: center !important;
max-width: 300px !important;
width: unset !important;
}
}
footer {
width: 100%;
height: 80px;
display: flex;
justify-content: center;
position: absolute;
align-items: center;
bottom: 0;
}
@media(max-width: 457px) {
main {
padding-top: 0;
}
}
|