From e0754f59b787adbf2f531ec405042e69a5ad9b3e Mon Sep 17 00:00:00 2001 From: Ella Dunbar Date: Mon, 27 Oct 2025 16:56:56 -0500 Subject: [PATCH 1/2] Add modern CSS reset --- style.css | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/style.css b/style.css index b3e11fc..f1eb37b 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,67 @@ +/* https://www.joshwcomeau.com/css/custom-css-reset/ */ +*, +*::before, +*::after { + box-sizing: border-box; +} + +/* * { */ +/* margin: 0; */ +/* } */ + +@media (prefers-reduced-motion: no-preference) { + html { + interpolate-size: allow-keywords; + } +} + +body { + line-height: 1.5; + -webkit-font-smoothing: antialiased; +} + +img, +picture, +video, +canvas, +svg { + display: block; + max-width: 100%; +} + +input, +button, +textarea, +select { + font: inherit; +} + +p, +h1, +h2, +h3, +h4, +h5, +h6 { + overflow-wrap: break-word; + hyphens: auto; +} + +p { + text-wrap: pretty; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + text-wrap: balance; +} + + +/* our stuff */ :root { /* auto light/dark based on user choice */ color-scheme: light dark; From 23963df2121b0ca660a687d51453f1d32784eaae Mon Sep 17 00:00:00 2001 From: Ella Dunbar Date: Mon, 27 Oct 2025 16:57:39 -0500 Subject: [PATCH 2/2] Create www directory --- index.html => www/index.html | 0 robots.txt => www/robots.txt | 0 style.css => www/style.css | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename index.html => www/index.html (100%) rename robots.txt => www/robots.txt (100%) rename style.css => www/style.css (100%) diff --git a/index.html b/www/index.html similarity index 100% rename from index.html rename to www/index.html diff --git a/robots.txt b/www/robots.txt similarity index 100% rename from robots.txt rename to www/robots.txt diff --git a/style.css b/www/style.css similarity index 100% rename from style.css rename to www/style.css