blob: d0e9ee961f0ba4b388b6ca7d7b6583b41681ab08 (
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
|
header {
max-width: var(--width-deco);
height: var(--height-header);
margin: 0 auto var(--margin-header) auto;
padding-bottom: 2rem;
display: flex;
flex-direction: row;
align-items: center;
gap: 2rem;
border-bottom: var(--color-light) 2px solid;
& img {
height: var(--height-header);
}
& nav {
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 0.5rem;
max-height: 100%;
& a {
display: block;
min-width: 7rem;
font-family: monospace;
}
}
@media only screen and (max-width: 800px) {
height: 12rem;
padding-bottom: 0;
align-items: start;
}
@media only screen and (max-width: 600px) {
flex-direction: column;
align-items: normal;
height: auto;
min-height: var(--height-header);
padding-bottom: 2rem;
& img {
height: 100%;
width: max(33%, 128px);
margin: 0 auto;
}
}
}
footer {
max-width: var(--width-deco);
height: var(--height-header);
margin: var(--margin-header) auto 0 auto;
padding: 2rem 0;
border-top: var(--color-light) 2px solid;
font-size: var(--font-size-tiny);
}
|