2020-07-21 10:50:35 +02:00
|
|
|
/* Header
|
|
|
|
-------------------------------------------------- */
|
|
|
|
.nav {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
max-width: calc(var(--nav-width) + var(--gap) * 2);
|
2020-10-19 11:17:23 +02:00
|
|
|
margin-inline-start: auto;
|
|
|
|
margin-inline-end: auto;
|
2020-10-26 17:49:05 +01:00
|
|
|
line-height: var(--header-height);
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo,
|
|
|
|
.menu {
|
2020-10-04 17:13:24 +02:00
|
|
|
display: flex;
|
2020-09-20 08:24:41 +02:00
|
|
|
margin: auto var(--gap);
|
2020-10-26 17:49:05 +01:00
|
|
|
flex-wrap: inherit;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo a {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
2020-10-16 20:17:46 +02:00
|
|
|
.logo a img {
|
|
|
|
display: inline;
|
|
|
|
vertical-align: middle;
|
|
|
|
pointer-events: none;
|
|
|
|
transform: translate(0, -10%);
|
|
|
|
border-radius: 6px;
|
2020-10-19 11:17:23 +02:00
|
|
|
margin-inline-end: 8px;
|
2020-10-16 20:17:46 +02:00
|
|
|
}
|
|
|
|
|
2020-10-20 07:08:43 +02:00
|
|
|
.theme-toggle svg {
|
2020-10-04 17:13:24 +02:00
|
|
|
height: 18px;
|
|
|
|
margin: 0 10px;
|
2020-10-20 07:08:43 +02:00
|
|
|
user-select: none;
|
2020-10-26 18:19:27 +01:00
|
|
|
cursor: pointer;
|
2020-10-04 17:13:24 +02:00
|
|
|
}
|
|
|
|
|
2020-10-26 17:49:05 +01:00
|
|
|
body.dark #moon {
|
2020-10-04 17:13:24 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.dark) #sun {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-07-21 10:50:35 +02:00
|
|
|
.menu {
|
|
|
|
list-style: none;
|
|
|
|
word-break: keep-all;
|
|
|
|
overflow-x: auto;
|
2020-07-26 15:24:53 +02:00
|
|
|
white-space: nowrap;
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu li+li {
|
2020-10-19 11:17:23 +02:00
|
|
|
margin-inline-start: var(--gap);
|
2020-07-21 10:50:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu a {
|
|
|
|
font-size: 16px;
|
2020-09-20 15:33:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu .active {
|
|
|
|
font-weight: 500;
|
|
|
|
border-bottom: 2px solid currentColor;
|
2020-10-16 20:17:46 +02:00
|
|
|
}
|
2020-10-26 17:49:05 +01:00
|
|
|
|
|
|
|
.lang-switch ul {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch a {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lang-switch li {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-switches {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-wrap: inherit;
|
|
|
|
}
|