adds some styling

This commit is contained in:
Dennis Schoepf 2026-02-24 22:58:59 +01:00
parent c401b1bc03
commit 24d21f05c8
5 changed files with 8 additions and 2 deletions

BIN
public/cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 MiB

BIN
public/tri.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 MiB

View file

@ -60,8 +60,10 @@ const navItems = [
justify-content: flex-start;
}
nav > ul > li > a.active {
background-color: var(--accent);
nav > ul > li > a.active,
a:hover {
background-color: var(--muted);
border-radius: var(--radius-sm);
font-weight: 600;
}

View file

@ -48,8 +48,10 @@ const { title } = Astro.props;
}
:root {
color-scheme: light;
/* Oat UI */
--background: #ffffff;
--foreground: #000000;
--primary: #133d56;
/* Custom */
@ -57,6 +59,7 @@ const { title } = Astro.props;
--container-lg: 1200px;
--container-md: 600px;
--container-sm: 480px;
--radius-sm: 4px;
}
img {

View file

@ -4,4 +4,5 @@ import Layout from "../layouts/Layout.astro";
<Layout title="Home">
<h1>Welcome!</h1>
<img src="public/cover.png" />
</Layout>