2025-05-23 17:17:38 +02:00
|
|
|
@use '../abstracts' as *;
|
|
|
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
// BASE STYLE
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Fonts and colors
|
|
|
|
|
|
|
|
body {
|
2025-05-24 12:40:09 +02:00
|
|
|
font-family: $text-font-family;
|
|
|
|
font-size: $text-font-size;
|
|
|
|
line-height: $text-line-height;
|
|
|
|
color: $black;
|
2025-05-23 17:17:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2025-05-24 12:40:09 +02:00
|
|
|
font-weight: $bold-font-weight;
|
2025-05-23 17:17:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Link style
|
|
|
|
|
|
|
|
a {
|
2025-05-24 12:40:09 +02:00
|
|
|
color: $black;
|
2025-05-23 17:17:38 +02:00
|
|
|
text-decoration: none;
|
|
|
|
transition: text-decoration 200ms ease-in-out;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus-visible {
|
2025-05-24 12:40:09 +02:00
|
|
|
outline: 1px dashed $black;
|
2025-05-23 17:17:38 +02:00
|
|
|
outline-offset: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// General layout
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100vh !important;
|
|
|
|
|
|
|
|
header {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
.header__logo {
|
|
|
|
width: 5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main {}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
gap: 0.8rem;
|
|
|
|
|
|
|
|
.footer__link {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-05-24 12:40:09 +02:00
|
|
|
width: $icon-size;
|
|
|
|
height: $icon-size;
|
2025-05-23 17:17:38 +02:00
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|