summaryrefslogtreecommitdiff
path: root/public/css/modules/nav.css
blob: bec5dde810d0f9280643fbb1b0fd35a675fd351c (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
.nav > :not(:last-child) {
  margin-block-end: var(--margin-block-sm);
}

.nav__bottom-row {
  display: flex;
  flex-direction: column;
}

.nav__nav-links li {
  width: max-content;
}

.nav__nav-links li:not(:last-of-type) {
  margin-block-end: var(--margin-block-sm);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: var(--font-size-5);
  font-weight: 700;
}

.nav__logo a {
  text-decoration: none;
}

.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;
}