Compare commits

...

3 Commits

Author SHA1 Message Date
5e7b6fc2ab Merge remote-tracking branch 'refs/remotes/origin/main' 2026-06-10 12:22:17 -07:00
a4ddc293c1 some styling 2026-06-10 12:21:48 -07:00
9e7a6dfabf logo/faicon 2026-06-10 12:21:39 -07:00
5 changed files with 20 additions and 0 deletions

View File

@ -33,4 +33,9 @@
<!-- JS --> <!-- JS -->
<script type="module">{% getBundle "js" %}</script> <script type="module">{% getBundle "js" %}</script>
#} #}
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head> </head>

View File

@ -1,5 +1,14 @@
:root { :root {
color-scheme: light dark; color-scheme: light dark;
--color-dark: #202325;
--color-light: #e4edf3;
--color-blue-dark: #0c436d;
--color-blue-light: #5ca6ce;
--color-text: light-dark(var(--color-dark), var(--color-light));
--color-bg: light-dark(var(--color-light), var(--color-dark));
--color-accent: light-dark(var(--color-blue-dark), var(--color-blue-light));
} }
/* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */ /* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */
@ -25,6 +34,8 @@ body {
line-height: 1.5; /* 4. Increase line-height */ line-height: 1.5; /* 4. Increase line-height */
-webkit-font-smoothing: antialiased; /* 5. Improve text rendering */ -webkit-font-smoothing: antialiased; /* 5. Improve text rendering */
font-family: sans-serif; font-family: sans-serif;
color: var(--color-text);
background-color: var(--color-bg);
} }
#content { #content {
@ -65,6 +76,10 @@ h1, h2, h3, h4, h5, h6 {
text-wrap: balance; /* 9. Improve line wrapping */ text-wrap: balance; /* 9. Improve line wrapping */
font-family: serif; font-family: serif;
margin-block-start: 1em; margin-block-start: 1em;
color: var(--color-accent);
font-variant: small-caps;
font-family: Montserrat;
font-weight: 400;
} }
h1 { h1 {

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
src/img/logo-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
src/img/logo-light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB