2025-12-13 16:38:47 +01:00
|
|
|
|
/* MINIMAL CSS RESET */
|
|
|
|
|
|
* { margin-bottom: 0 }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
|
|
|
|
|
|
/* VARIABLES */
|
|
|
|
|
|
:root {
|
|
|
|
|
|
--font-body: Roboto, sans-serif;
|
|
|
|
|
|
--font-heading: "PT serif", Georgia, "Nimbus Roman", serif;
|
|
|
|
|
|
--color-blue: #6391b5;
|
|
|
|
|
|
--color-blue: oklch(0.6376 0.0739 242.84);
|
|
|
|
|
|
--color-green: #009c80;
|
|
|
|
|
|
--color-green: oklch(0.618 0.1176 173.93);
|
|
|
|
|
|
--color-green-light: #f2fbf8;
|
|
|
|
|
|
--color-green-light: oklch(0.9811 0.01 173.93);
|
|
|
|
|
|
--color-grey: #404040;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
--color-grey: oklch(0.3715 0 0)
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GLOBAL */
|
2025-12-13 16:38:47 +01:00
|
|
|
|
html { font-family: var(--font-body); font-size: clamp(16px, 2.3vw, 20px); scroll-behavior: smooth }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
body { margin: 0; color: var(--color-grey) }
|
2025-10-15 20:51:38 +02:00
|
|
|
|
p, ul, ol, aside { line-height: 1.5em; hyphens: auto }
|
2026-01-17 13:03:36 +01:00
|
|
|
|
img { width: 100%; height: auto }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
h1 { color: var(--color-green); font-size: 2.3rem }
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
|
font-family: var(--font-heading);
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
line-height: 1.3em;
|
|
|
|
|
|
margin-top: 1.3em;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
text-wrap: pretty
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
2025-12-13 16:38:47 +01:00
|
|
|
|
h4 { font-weight: 700 }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
a {
|
2025-12-13 16:38:47 +01:00
|
|
|
|
color: var(--color-green);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
&:hover { color: var(--color-blue) }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.grid-container {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-rows: auto 1fr auto;
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
grid-template-areas: "header" "main" "footer";
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
min-height: 100vh;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
align-items: stretch
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-02 22:29:21 +02:00
|
|
|
|
.contain, :where(main>article, main>aside, main>section) {
|
2025-10-02 17:01:55 +02:00
|
|
|
|
display: grid;
|
2026-01-17 13:03:36 +01:00
|
|
|
|
grid-template-columns: minmax(.8rem, 1fr) minmax(0, 42rem) minmax(.8rem, 1fr);
|
2025-12-13 16:38:47 +01:00
|
|
|
|
> * { grid-column: 2 }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-13 16:38:47 +01:00
|
|
|
|
.escape { grid-column: 1 / -1 !important }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
|
2026-01-17 00:03:19 +01:00
|
|
|
|
.unescape {
|
|
|
|
|
|
max-width: 42rem;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
& * {
|
|
|
|
|
|
max-width: inherit;
|
|
|
|
|
|
margin-left: inherit;
|
|
|
|
|
|
margin-right: inherit;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-02 17:01:55 +02:00
|
|
|
|
/* HEADER */
|
|
|
|
|
|
header {
|
|
|
|
|
|
border-bottom: 3px #00000022 solid;
|
|
|
|
|
|
grid-area: header;
|
|
|
|
|
|
> div {
|
|
|
|
|
|
padding-bottom: .2rem;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
.logo {
|
|
|
|
|
|
margin-right: .3rem;
|
|
|
|
|
|
svg {
|
|
|
|
|
|
width: 7rem;
|
|
|
|
|
|
height: 100%;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
#symbol { fill: var(--color-blue) }
|
|
|
|
|
|
#tekst { fill: var(--color-green) }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
nav {
|
2025-12-13 16:38:47 +01:00
|
|
|
|
display: flex;
|
2025-10-02 17:01:55 +02:00
|
|
|
|
align-items: center;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
justify-content: flex-end;
|
2025-10-02 17:01:55 +02:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
ul {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
margin-top: .4rem;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
justify-content: flex-end;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
a { margin-left: .4rem; margin-top: .4rem }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* MAIN */
|
|
|
|
|
|
main {
|
|
|
|
|
|
grid-area: main;
|
|
|
|
|
|
background-color: var(--color-green-light);
|
|
|
|
|
|
padding-bottom: 2rem;
|
2026-01-17 00:03:19 +01:00
|
|
|
|
aside, form { margin-top: 1.3em }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
article {
|
2026-01-17 13:35:42 +01:00
|
|
|
|
.cover img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-height: clamp(250px, 50vh, 550px);
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
2025-12-13 16:38:47 +01:00
|
|
|
|
.intro { font-size: 1.2rem; line-height: 1.35em }
|
2025-12-12 21:51:37 +01:00
|
|
|
|
.footnotes {
|
2025-12-13 16:38:47 +01:00
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
hr { border: 1px var(--color-grey) dashed }
|
2025-12-12 21:51:37 +01:00
|
|
|
|
}
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
2025-12-13 16:38:47 +01:00
|
|
|
|
.button { margin-top: 1.3rem; justify-self: start }
|
2026-05-20 22:56:56 +02:00
|
|
|
|
|
|
|
|
|
|
/* BREADCRUMB */
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: minmax(.8rem, 1fr) minmax(0, 42rem) minmax(.8rem, 1fr);
|
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
|
ol {
|
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
li {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
&:not(:last-child)::after {
|
|
|
|
|
|
content: '›';
|
|
|
|
|
|
margin: 0 0.6rem;
|
|
|
|
|
|
color: var(--color-grey);
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
|
}
|
|
|
|
|
|
a {
|
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
&:hover { color: var(--color-blue) }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-12 21:51:37 +01:00
|
|
|
|
table {
|
|
|
|
|
|
margin-top: 1.3em;
|
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
thead {
|
|
|
|
|
|
tr {
|
|
|
|
|
|
background-color: var(--color-green);
|
|
|
|
|
|
color: white;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
th { padding: .6rem; text-align: left; font-weight: 600 }
|
2025-12-12 21:51:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
tbody {
|
|
|
|
|
|
tr {
|
2025-12-13 16:38:47 +01:00
|
|
|
|
&:nth-child(odd) { background-color: white }
|
|
|
|
|
|
&:nth-child(even) { background-color: oklch(0.96 0.005 173.93) }
|
|
|
|
|
|
td { padding: .5rem .6rem; border-bottom: 1px solid oklch(0.9 0.01 173.93) }
|
2025-12-12 21:51:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-02 23:35:53 +02:00
|
|
|
|
/* BUTTONS */
|
|
|
|
|
|
.button {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
text-decoration: none;
|
2025-10-15 20:51:38 +02:00
|
|
|
|
border-radius: 2rem;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
padding: .55rem 1rem;
|
2025-10-15 20:51:38 +02:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
color: var(--color-grey);
|
2025-12-13 16:38:47 +01:00
|
|
|
|
outline: .08rem var(--color-grey) solid;
|
2026-01-17 00:03:19 +01:00
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
2026-01-14 20:25:51 +01:00
|
|
|
|
font: inherit;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
&:hover { background-color: var(--color-grey); color: white; outline: none }
|
|
|
|
|
|
&:active, &.active { background-color: var(--color-green); color: white; outline: none }
|
|
|
|
|
|
&:focus { background-color: var(--color-green); color: white; outline: none }
|
2025-10-02 23:35:53 +02:00
|
|
|
|
&.inverted {
|
2025-10-15 20:51:38 +02:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
color: white;
|
2025-12-13 16:38:47 +01:00
|
|
|
|
outline: .08rem white solid;
|
|
|
|
|
|
&:hover { background-color: white; color: var(--color-green); outline: none }
|
|
|
|
|
|
&:active, &.active { background-color: var(--color-green-light); color: var(--color-green); outline: none }
|
|
|
|
|
|
&:focus { color: white; background-color: var(--color-grey); outline: none }
|
2025-11-04 22:19:58 +01:00
|
|
|
|
}
|
2025-12-13 16:38:47 +01:00
|
|
|
|
&.bigger { font-size: 1.2em; border-radius: calc(1rem * 1.2) }
|
2026-01-16 00:36:11 +01:00
|
|
|
|
&.huge { font-size: 1.7em; border-radius: calc(2rem * 1.2) }
|
2025-12-13 16:38:47 +01:00
|
|
|
|
&.centered { justify-self: center }
|
2025-10-02 23:35:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-13 16:38:47 +01:00
|
|
|
|
/* FOOTER */
|
2025-10-02 17:01:55 +02:00
|
|
|
|
footer {
|
|
|
|
|
|
color: var(--color-green-light);
|
|
|
|
|
|
a {
|
2025-12-13 16:38:47 +01:00
|
|
|
|
color: var(--color-green-light);
|
|
|
|
|
|
&:hover { color: white; text-decoration: underline }
|
2025-10-02 17:01:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
background-color: var(--color-green);
|
|
|
|
|
|
grid-area: footer;
|
|
|
|
|
|
> div {
|
|
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
.generated { font-size: .6rem }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|