2025-04-01 13:55:54 +02:00
|
|
|
|
<script>
|
2025-04-03 21:38:34 +02:00
|
|
|
|
import Header from "$lib/header.svelte";
|
|
|
|
|
|
import Footer from "$lib/footer.svelte";
|
|
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
let { children } = $props();
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2025-04-03 21:38:34 +02:00
|
|
|
|
<Header />
|
|
|
|
|
|
|
2025-04-01 21:30:20 +02:00
|
|
|
|
<div class="waters"></div>
|
2025-04-01 13:55:54 +02:00
|
|
|
|
{@render children()}
|
|
|
|
|
|
|
2025-04-03 21:38:34 +02:00
|
|
|
|
<Footer />
|
|
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
<style>
|
2025-07-14 12:12:30 +02:00
|
|
|
|
@import url('https://fonts.upset.dev/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
2025-04-18 16:15:00 +02:00
|
|
|
|
|
|
|
|
|
|
@font-face {
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 00;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/.woff');
|
|
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 100;
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-style: normal;
|
2025-04-27 16:51:48 +02:00
|
|
|
|
src: url('/fonts/ppmonument-extended/thin.woff');
|
2025-04-18 16:15:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 200;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/light.woff');
|
|
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/book.woff');
|
|
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/regular.woff');
|
|
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'Monument Extended';
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-weight: 500;
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/medium.woff');
|
2025-04-18 16:15:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/bold.woff');
|
|
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: 'Monument Extended';
|
|
|
|
|
|
font-weight: 800;
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-style: normal;
|
2025-04-27 16:51:48 +02:00
|
|
|
|
src: url('/fonts/ppmonument-extended/black.woff');
|
2025-04-18 16:15:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
@font-face {
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-family: 'Monument Extended';
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-weight: 900;
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-style: normal;
|
|
|
|
|
|
src: url('/fonts/ppmonument-extended/heavy.woff');
|
2025-04-18 16:15:00 +02:00
|
|
|
|
}
|
2025-04-01 21:30:20 +02:00
|
|
|
|
|
2025-04-04 19:00:47 +02:00
|
|
|
|
:global {
|
2025-04-01 21:30:20 +02:00
|
|
|
|
:root {
|
2025-04-18 16:15:00 +02:00
|
|
|
|
--color-text: #d0d0d0;
|
2025-04-03 20:01:00 +02:00
|
|
|
|
--color-text-img: invert(98%) sepia(1%) saturate(4643%) hue-rotate(297deg) brightness(115%) contrast(76%);
|
2025-04-01 22:25:10 +02:00
|
|
|
|
--color-text-dark: #1e1e1e;
|
2025-07-14 12:12:30 +02:00
|
|
|
|
--color-highlight: #51B86B !important;
|
2025-04-01 22:25:10 +02:00
|
|
|
|
|
2025-04-01 21:30:20 +02:00
|
|
|
|
--color-background: #1b1b1b;
|
2025-04-01 22:25:10 +02:00
|
|
|
|
--color-background-highlight: color-mix(in srgb, var(--color-highlight) 10%, transparent);
|
2025-04-03 20:01:00 +02:00
|
|
|
|
--color-background-highlight-hover: color-mix(in srgb, var(--color-highlight) 60%, transparent);
|
2025-04-01 22:25:10 +02:00
|
|
|
|
|
2025-04-01 21:30:20 +02:00
|
|
|
|
--color-waters: #2b2b2b;
|
2025-04-04 10:37:25 +02:00
|
|
|
|
|
|
|
|
|
|
--notch-size: 32px;
|
|
|
|
|
|
--notch-size-small: 16px;
|
2025-04-04 18:05:05 +02:00
|
|
|
|
|
|
|
|
|
|
--color-link-unvisited: #c2e8ff;
|
|
|
|
|
|
--color-link-visited: #ffd7f0;
|
|
|
|
|
|
--color-link-hovered: #ffdad5;
|
2025-04-04 19:00:47 +02:00
|
|
|
|
|
2025-04-27 16:51:48 +02:00
|
|
|
|
--font-title: 'Monument Extended';
|
2025-07-14 12:12:30 +02:00
|
|
|
|
--font-sans-serif: 'Inter', 'Lato', sans-serif;
|
2025-04-18 16:15:00 +02:00
|
|
|
|
--font-mono: 'IBM Plex Mono', monospace;
|
2025-07-14 12:12:30 +02:00
|
|
|
|
|
|
|
|
|
|
--page-width: 1200px;
|
2025-04-01 21:30:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-01 22:25:10 +02:00
|
|
|
|
html {
|
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
body {
|
2025-04-04 19:00:47 +02:00
|
|
|
|
font-family: var(--font-sans-serif);
|
2025-04-01 21:30:20 +02:00
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
|
color: var(--color-text); /* text colour */
|
|
|
|
|
|
|
2025-07-14 12:12:30 +02:00
|
|
|
|
margin: 0;
|
2025-04-01 21:30:20 +02:00
|
|
|
|
background-color: var(--color-background);
|
2025-04-01 13:55:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-01 21:30:20 +02:00
|
|
|
|
.waters {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
z-index: -99;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
background-color: var(--color-waters);
|
2025-04-03 22:33:47 +02:00
|
|
|
|
mask-image: url('/bremen-waters-white.svg');
|
2025-04-01 21:30:20 +02:00
|
|
|
|
mask-position: center;
|
|
|
|
|
|
background-position: center;
|
|
|
|
|
|
background-attachment: fixed;
|
2025-04-01 13:55:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p, span, li, pre, a {
|
|
|
|
|
|
color: var(--color-text);
|
2025-04-18 16:15:00 +02:00
|
|
|
|
line-height: 1.7rem;
|
2025-07-14 12:12:30 +02:00
|
|
|
|
font-weight: 400;
|
2025-04-01 13:55:54 +02:00
|
|
|
|
}
|
2025-04-27 19:24:41 +02:00
|
|
|
|
.styled-list {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.styled-list li::before {
|
|
|
|
|
|
content: "–";
|
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
|
color: var(--color-highlight);
|
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.styled-list li {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
|
|
|
|
|
padding: 2px 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.styled-list li a {
|
|
|
|
|
|
display: inline;
|
|
|
|
|
|
}
|
2025-04-01 13:55:54 +02:00
|
|
|
|
|
|
|
|
|
|
h1 {
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-size: 3.5rem;
|
|
|
|
|
|
line-height: 4rem;
|
2025-04-01 13:55:54 +02:00
|
|
|
|
}
|
2025-07-14 09:47:48 +02:00
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
h2 {
|
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
|
line-height: 2.2rem;
|
|
|
|
|
|
}
|
2025-07-14 09:47:48 +02:00
|
|
|
|
h2::before {
|
|
|
|
|
|
letter-spacing: -0.5rem;
|
|
|
|
|
|
content: '› ';
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
h3 {
|
|
|
|
|
|
font-size: 1.4rem;
|
|
|
|
|
|
line-height: 1.5rem;
|
|
|
|
|
|
}
|
2025-07-14 09:47:48 +02:00
|
|
|
|
h3::before {
|
|
|
|
|
|
letter-spacing: -0.3rem;
|
|
|
|
|
|
content: '›› ';
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-01 13:55:54 +02:00
|
|
|
|
h4, h5, h6 {
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
|
line-height: 1.3rem;
|
|
|
|
|
|
}
|
2025-07-14 09:47:48 +02:00
|
|
|
|
h4::before {
|
|
|
|
|
|
letter-spacing: -0.26rem;
|
|
|
|
|
|
content: '››› ';
|
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
}
|
2025-04-01 13:55:54 +02:00
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2025-04-27 16:51:48 +02:00
|
|
|
|
font-weight: 700;
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-family: var(--font-title);
|
2025-04-01 13:55:54 +02:00
|
|
|
|
color: var(--color-highlight);
|
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
}
|
2025-04-04 10:37:25 +02:00
|
|
|
|
|
2025-04-04 18:05:05 +02:00
|
|
|
|
code, .code-block {
|
2025-04-04 19:00:47 +02:00
|
|
|
|
font-family: var(--font-mono);
|
2025-04-18 16:15:00 +02:00
|
|
|
|
font-size: 1.0em;
|
|
|
|
|
|
font-weight: 500;
|
2025-04-04 18:05:05 +02:00
|
|
|
|
background-color: var(--color-background-highlight);
|
|
|
|
|
|
/* color: var(--color-background); */
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
padding-left: 6px;
|
|
|
|
|
|
padding-right: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
img, video {
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.horizontally-centre-aligned {
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-27 19:24:41 +02:00
|
|
|
|
.inline-img-left {
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
max-width: 24%;
|
|
|
|
|
|
margin: 0 24px 24px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.inline-img-right {
|
|
|
|
|
|
float: right;
|
|
|
|
|
|
max-width: 24%;
|
|
|
|
|
|
margin: 0 0 24px 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-04 18:05:05 +02:00
|
|
|
|
a:link {
|
|
|
|
|
|
color: var(--color-link-unvisited);
|
|
|
|
|
|
}
|
|
|
|
|
|
/* visited link */
|
|
|
|
|
|
a:visited {
|
|
|
|
|
|
color: var(--color-link-visited);
|
|
|
|
|
|
}
|
|
|
|
|
|
/* mouse over link */
|
|
|
|
|
|
a:hover {
|
|
|
|
|
|
color: var(--color-link-hovered);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-04-04 10:37:25 +02:00
|
|
|
|
.notched {
|
|
|
|
|
|
clip-path: polygon(
|
|
|
|
|
|
0% var(--notch-size),
|
|
|
|
|
|
var(--notch-size) 0%,
|
|
|
|
|
|
calc(100% - var(--notch-size)) 0%,
|
|
|
|
|
|
100% var(--notch-size),
|
|
|
|
|
|
100% calc(100% - var(--notch-size)),
|
|
|
|
|
|
calc(100% - var(--notch-size)) 100%,
|
|
|
|
|
|
var(--notch-size) 100%,
|
|
|
|
|
|
0% calc(100% - var(--notch-size))
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.notched-small {
|
|
|
|
|
|
clip-path: polygon(
|
|
|
|
|
|
0% var(--notch-size-small),
|
|
|
|
|
|
var(--notch-size-small) 0%,
|
|
|
|
|
|
calc(100% - var(--notch-size-small)) 0%,
|
|
|
|
|
|
100% var(--notch-size-small),
|
|
|
|
|
|
100% calc(100% - var(--notch-size-small)),
|
|
|
|
|
|
calc(100% - var(--notch-size-small)) 100%,
|
|
|
|
|
|
var(--notch-size-small) 100%,
|
|
|
|
|
|
0% calc(100% - var(--notch-size-small))
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2025-04-01 13:55:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|