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
|
.nav {
& > :not(:last-child) {
margin-block: 0 var(--margin-block-sm);
}
li {
list-style-type: none;
}
}
.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);
li {
list-style-type: none;
margin: 0;
}
}
.nav__logo {
font-family: var(--font-serif);
font-size: var(--font-size-5);
font-weight: 700;
/* This gradient is based on *
* --color-primary-60 -> --color-secondary-60 *
* using Josh W Comeau's gradient generator */
width: fit-content;
background-image: linear-gradient(
45deg,
hsl(248deg 100% 75%) 0%,
hsl(227deg 100% 70%) 24%,
hsl(211deg 100% 58%) 40%,
hsl(205deg 100% 50%) 51%,
hsl(202deg 100% 49%) 60%,
hsl(200deg 100% 47%) 66%,
hsl(197deg 100% 44%) 70%,
hsl(194deg 100% 41%) 73%,
hsl(190deg 100% 38%) 76%,
hsl(186deg 100% 35%) 79%,
hsl(181deg 100% 33%) 84%,
hsl(177deg 100% 32%) 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
a {
text-decoration: none;
border: var(--relative-eighth-rem) dotted transparent;
transition: border-color 100ms;
&: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;
li {
min-width: max-content;
&::before {
content: '/'
}
}
}
.nav__switch-language-link {
text-align: right;
}
|