Basic site running

This commit is contained in:
Louis Hollingworth 2024-08-05 20:26:04 +01:00
parent 70fca57571
commit 2e24996510
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
6 changed files with 161 additions and 2 deletions

57
static/smol.css Normal file
View file

@ -0,0 +1,57 @@
* {
box-sizing: border-box;
margin: 0;
}
body {
background-color: var(--bg-colour);
color: var(--text-colour) !important;
display: flex;
flex-direction: column;
min-height: 100vh;
padding: 5vh clamp(1rem, 5vw, 3rem) 1rem;
font-family: system-ui, sans-serif;
line-height: 1.5;
color: #222;
}
body > * {
--layout-spacing: max(8vh, 3rem);
--max-width: 70ch;
width: min(100%, var(--max-width));
margin-left: auto;
margin-right: auto;
}
main {
margin-top: var(--layout-spacing);
}
footer {
margin-top: auto;
padding-top: var(--layout-spacing);
}
footer p {
border-top: 1px solid #ccc;
padding-top: 0.25em;
font-size: 0.9rem;
color: #767676;
}
:is(h1, h2, h3) {
line-height: 1.2;
}
:is(h2, h3):not(:first-child) {
margin-top: 2em;
}
article * + * {
margin-top: 1em;
}
a {
color: navy;
text-underline-offset: 0.15em;
}

12
static/vars.css Normal file
View file

@ -0,0 +1,12 @@
:root {
--bg-colour: #ffffff;
--text-colour: #282a36;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-colour: #282a36;
--text-colour: #ffffff;
}
}