mirror of
https://github.com/kogakure/website-11ty-kogakure.de.git
synced 2026-02-03 12:15:28 +00:00
40 lines
709 B
CSS
40 lines
709 B
CSS
/** Language Switcher */
|
|
.language-switcher {
|
|
align-items: center;
|
|
display: flex;
|
|
position: relative;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.language-switcher-list {
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: 12px;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.language-switcher-list-item {
|
|
margin-block-end: 0;
|
|
margin-inline-end: 0.25em;
|
|
}
|
|
|
|
.language-switcher-link {
|
|
color: var(--color-fg);
|
|
font-weight: var(--font-weight-normal);
|
|
text-decoration: none;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
text-decoration: underline;
|
|
text-decoration-color: var(--color-accent-primary);
|
|
text-decoration-thickness: 0.15em;
|
|
text-underline-offset: 0.1em;
|
|
}
|
|
|
|
&.is-active {
|
|
font-weight: var(--font-weight-semi-bold);
|
|
}
|
|
}
|