Add 'About' page

This commit is contained in:
2026-03-10 23:39:08 +00:00
parent 9e3d6856d9
commit d7f6d957b7
3 changed files with 113 additions and 21 deletions

View File

@@ -44,6 +44,20 @@
font-display: swap;
}
:root {
/* Brand Colours */
--color-brand: #4fd1d1;
--color-accent: #3c6f79;
--color-title: #ebebeb;
--color-bg-light: #404c55;
--color-bg-dark: #2b343c;
/* Shadows */
--color-shadow: hsla(210, 20%, 5%, 0.35);
--shadow-std: 0 4px 12px var(--color-shadow);
--shadow-up: 0 -4px 12px var(--color-shadow);
}
body {
margin: 0;
padding: 0;
@@ -52,4 +66,16 @@ body {
-webkit-font-smoothing: antialiased;
-mos-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
a {
color: var(--color-brand);
}
a:visited {
color: var(--color-brand);
}
a:hover {
color: var(--color-accent);
}