blob: 6f3908418b52e01c5a8e31e15846363e1748ae49 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
* {
padding: 0;
margin: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
width: 100%;
min-height: 100vh;
}
main {
display: flex;
flex-direction: column;
width: 50%;
flex-grow: 1;
}
header {
display: flex;
flex-direction: row;
align-items: end;
padding: 32px 0;
}
content {
flex-grow: 1;
display: flex;
flex-direction: column;
}
footer {
background: #cacaca;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 8px 0;
}
footer.big {
padding: 32px 0;
}
/**
--- SHORTCUTS
*/
.w-50 {
width: 50%;
}
.row {
display: flex;
flex-direction: row;
}
.align-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.gap-32 {
gap: 32px;
}
.gap-16 {
gap: 16px;
}
.gap-8 {
gap: 8px;
}
|