blob: bd41dbc639411c988e82faa12c7be79b1bc82fc2 (
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
|
.nav > :not(:last-child) {
margin-block-end: var(--margin-block-sm);
}
.nav__bottom-row {
display: flex;
flex-direction: column;
}
.nav__nav-links {
display: grid;
grid-template-columns: repeat(var(--grid-column-count), var(--grid-column-width));
column-gap: var(--grid-gutter-width);
}
.nav__nav-links li {
margin: 0;
}
.nav__logo {
font-family: var(--font-serif);
font-size: var(--font-size-5);
font-weight: 700;
}
.nav__logo a {
text-decoration: none;
border: var(--relative-eighth-rem) dotted transparent;
transition: border-color 100ms;
}
.nav__logo a:is(:focus, :focus-visible, :focus-within) {
box-shadow: none;
outline: none;
border-color: var(--special-text-color);
transition: border-color 300ms;
}
.nav__breadcrumbs {
display: flex;
flex-wrap: wrap;
}
.nav__breadcrumbs li {
list-style-type: none;
min-width: max-content;
}
.nav__breadcrumbs li::before {
content: '/'
}
.nav__switch-language-link {
text-align: right;
}
|