.en, .de { display: none; }
.en:lang(en), .de:lang(de) { display: revert; }
*, *::before, *::after {
box-sizing: border-box;
}
:root {
color-scheme: light;
--c-page: #ffffff;
--c-text: #5f5e54;
--c-topbar: #5f5e54;
--c-box: #ebe7df;
--c-footer: #5f5e54;
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
color-scheme: dark;
--c-page: #101010;
--c-text: #d4d4d4;
--c-topbar: #2a2a2a;
--c-box: #1a1a1a;
--c-footer: #2a2a2a;
}
}
:root[data-theme="dark"] {
color-scheme: dark;
--c-page: #101010;
--c-text: #d4d4d4;
--c-topbar: #2a2a2a;
--c-box: #1a1a1a;
--c-footer: #2a2a2a;
}
html {
background-color: var(--c-page);
scrollbar-gutter: stable;
}
body {
font-family: Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
font-size: 16px;
line-height: 1.5;
color: var(--c-text);
font-weight: 400;
margin: 0 auto;
background-color: var(--c-page);
max-width: 1440px;
min-height: 100vh;
display: flex;
flex-direction: column;
}
a {
text-decoration: none;
color: #ff9b14;
}
a:hover, a:active, a:focus {
text-decoration: underline;
color: #e08100;
}
h1 {
font-size: 1.4em;
line-height: 1.3;
font-weight: 700;
}
h2 {
font-size: 1.2em;
line-height: 1.4;
font-weight: 600;
}
h3 {
font-size: 1.05em;
line-height: 1.4;
font-weight: 600;
}
h1, h2, h3, h4, h5, h6, p {
margin: 0 0 0.75em;
}
b, strong {
font-weight: 700;
}
img {
max-width: 100%;
height: auto;
}
ul, ol {
margin: 0 0 0.75em;
padding-left: 1.5em;
}
li {
margin-bottom: 0.25em;
}
.site-topbar {
background-color: var(--c-topbar);
height: 2rem;
flex-shrink: 0;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 1.25rem;
padding: 0 max(0.8474576271%, 12px);
font-size: 0.8rem;
color: #fff;
}
.site-topbar button {
background: none;
border: 0;
padding: 0;
font: inherit;
color: inherit;
cursor: pointer;
}
.site-topbar-link {
color: inherit;
text-decoration: none;
}
.site-topbar-link:hover,
.site-topbar-link:focus {
text-decoration: underline;
}
.site-topbar button:hover,
.site-topbar button:focus {
text-decoration: underline;
}
.site-topbar-lang,
.site-topbar-theme {
position: relative;
display: flex;
align-items: stretch;
height: 100%;
}
.site-topbar-lang[hidden] {
display: none;
}
.lang-trigger,
.theme-trigger {
display: flex;
align-items: center;
gap: 2px;
}
.lang-trigger svg,
.theme-trigger svg {
display: block;
}
.lang-menu,
.theme-menu {
display: none;
position: absolute;
top: 100%;
right: 0;
z-index: 10;
min-width: 7em;
padding: 4px 0;
background-color: var(--c-topbar);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.site-topbar-lang:hover .lang-menu,
.site-topbar-lang:focus-within .lang-menu,
.site-topbar-lang.open .lang-menu,
.site-topbar-theme:hover .theme-menu,
.site-topbar-theme:focus-within .theme-menu,
.site-topbar-theme.open .theme-menu {
display: block;
}
.lang-menu button,
.theme-menu button {
display: block;
width: 100%;
text-align: left;
padding: 4px 12px;
}
.lang-menu button:hover,
.lang-menu button:focus,
.theme-menu button:hover,
.theme-menu button:focus {
background-color: rgba(255, 255, 255, 0.12);
text-decoration: none;
}
html:lang(de) .lang-menu button[data-lang="de"],
html:lang(en) .lang-menu button[data-lang="en"],
html:not([data-theme]) .theme-menu button[data-theme-choice="auto"],
html[data-theme="light"] .theme-menu button[data-theme-choice="light"],
html[data-theme="dark"] .theme-menu button[data-theme-choice="dark"] {
color: #ff9b14;
font-weight: 700;
}
.site-wrapper {
width: 100%;
max-width: 800px;
margin: 0 auto;
padding: 0 16px;
flex: 1 0 auto;
}
.site-header {
margin: 0.85rem 0;
padding: 0 max(0.8474576271%, 12px);
font-size: 1.19rem;
}
.site-header a {
display: inline-block;
}
.site-logo {
display: block;
fill: #ff9b14;
}
.site-header .site-logo {
width: 12em;
height: 3.049em;
}
.site-main {
background-color: var(--c-box);
padding: 24px 6%;
}
.site-main--article {
background-color: transparent;
padding: 24px 0;
}
.content-header {
margin-bottom: 1em;
}
.content-header h1,
.content-header h2 {
margin: 0;
}
.site-footer {
background-color: var(--c-footer);
color: #ebe7df;
margin-top: 24px;
padding: 20px 0;
font-size: 0.8em;
line-height: 1.6;
flex-shrink: 0;
}
.site-footer-inner {
padding: 0 4.375rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.site-footer-logo .site-logo {
width: 12.3125rem;
height: 3.128rem;
}
.site-footer-links {
display: flex;
gap: 6px;
flex-wrap: wrap;
align-items: center;
}
.site-footer-links a {
color: #ebe7df;
text-decoration: none;
}
.site-footer-links a:hover,
.site-footer-links a:active,
.site-footer-links a:focus {
color: #fff;
text-decoration: underline;
}
.site-footer-links .sep {
color: #c3c1b5;
}
@media (max-width: 1432px) {
.site-header {
font-size: 1rem;
}
}
@media (max-width: 500px) {
.site-header .site-logo {
width: 9em;
height: 2.287em;
}
.site-footer-inner {
flex-direction: column;
align-items: flex-start;
padding: 0 16px;
}
}
.form-help {
margin-bottom: 1em;
}
.login-form {
max-width: 28em;
}
.login-form label {
display: block;
margin: 1em 0 0.25em;
font-weight: 600;
}
.login-form input[type="text"],
.login-form input[type="password"] {
display: block;
width: 100%;
padding: 8px 12px;
font: inherit;
color: var(--c-text);
background-color: var(--c-page);
border: 1px solid #c3c1b5;
border-radius: 0;
}
.login-form input:focus {
outline: 2px solid #ff9b14;
outline-offset: -1px;
}
.login-form button.form-button {
display: inline-block;
margin-top: 1.5em;
padding: 0.6em 2.5em;
font: inherit;
font-weight: 600;
color: #fff;
background-color: #ff9b14;
border: 0;
border-radius: 0;
cursor: pointer;
}
.login-form button.form-button:hover,
.login-form button.form-button:focus {
background-color: #e08100;
}
.is-busy {
pointer-events: none;
opacity: 0.85;
}
.is-busy::before {
content: "";
display: inline-block;
width: 1em;
height: 1em;
margin-right: 0.5em;
vertical-align: -0.15em;
border: 2px solid currentColor;
border-top-color: transparent;
border-radius: 50%;
animation: fw-spin 0.8s linear infinite;
}
@keyframes fw-spin {
to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
.is-busy::before { animation: none; }
}
.pwd-field {
position: relative;
}
.pwd-field .password-toggle-icon {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
cursor: pointer;
opacity: 0.55;
user-select: none;
}
.pwd-field .password-toggle-icon.is-shown,
.pwd-field .password-toggle-icon:hover {
opacity: 1;
}
.pwd-policy {
background-color: var(--c-box);
padding: 12px 16px;
margin-bottom: 1.5em;
font-size: 0.9em;
}
.pwd-policy p {
margin: 0 0 0.4em;
font-weight: 600;
}
.pwd-policy ul {
margin: 0;
padding-left: 0;
list-style: none;
}
.pwd-policy li {
position: relative;
padding-left: 1.6em;
}
.pwd-policy li::before {
content: "\25CB";
position: absolute;
left: 0;
color: #9a978a;
}
.pwd-policy li.ok::before {
content: "\2713";
color: #2e8540;
font-weight: 700;
}
.support-links {
margin-top: 2em;
padding-top: 1em;
border-top: 1px solid #c3c1b5;
font-size: 0.9em;
}
.output-message {
padding: 10px 14px;
margin: 1em 0;
border-left: 4px solid #c3c1b5;
}
.output--error,
.output--danger {
border-left-color: #c0392b;
background-color: rgba(192, 57, 43, 0.08);
}
.output--success {
border-left-color: #2e8540;
background-color: rgba(46, 133, 64, 0.08);
}
.output--warning {
border-left-color: #ff9b14;
background-color: rgba(255, 155, 20, 0.08);
}