added all content to projects page

This commit is contained in:
2025-04-01 21:30:20 +02:00
parent 25df78ba9c
commit 125923a265
23 changed files with 207 additions and 42 deletions

View File

@@ -2,17 +2,43 @@
let { children } = $props();
</script>
<div class="waters"></div>
{@render children()}
<style>
:global {
@import url('https://fonts.upset.dev/css2?family=Reddit+Mono:wght@200..900&family=Reddit+Sans+Condensed:wght@200..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--color-text: #e0e0e0;
--color-highlight: #72b175;
--color-background: #1b1b1b;
--color-waters: #2b2b2b;
}
body {
margin: 0 auto 228px;
max-width: 1200px;
font-family: 'Reddit Sans', 'Lato', sans-serif;
font-size: 1.1rem;
color: var(--color-text); /* text colour */
background-color: var(--color-background);
}
p, span, li, pre, a, h1, h2, h3, h4, h5, h6 {
font-family: 'Reddit Sans', 'Lato', sans-serif;
.waters {
position: fixed;
z-index: -99;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: var(--color-waters);
mask-image: url('bremen-waters-white.svg');
mask-position: center;
background-position: center;
background-attachment: fixed;
}
p, span, li, pre, a {