From e3dedb7efb9fef308e7fe0d627b2a0904679a0cc Mon Sep 17 00:00:00 2001 From: Dominic Serrano Date: Tue, 8 Sep 2026 15:31:55 -0600 Subject: [PATCH] chore: remove dead public/styles/site.css MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missed staging this deletion when the styling pass (#16) was committed — BaseLayout has imported src/styles/global.css instead since then, so this file has been sitting unreferenced on main. --- public/styles/site.css | 43 ------------------------------------------ 1 file changed, 43 deletions(-) delete mode 100644 public/styles/site.css diff --git a/public/styles/site.css b/public/styles/site.css deleted file mode 100644 index 73c62d8..0000000 --- a/public/styles/site.css +++ /dev/null @@ -1,43 +0,0 @@ -:root { - color-scheme: light dark; - --max-width: 42rem; -} - -* { - box-sizing: border-box; -} - -body { - margin: 0 auto; - padding: 2rem 1rem; - max-width: var(--max-width); - font-family: system-ui, sans-serif; - line-height: 1.6; -} - -header nav a { - text-decoration: none; - font-weight: 600; -} - -ul.tags { - display: flex; - gap: 0.5rem; - list-style: none; - padding: 0; - margin: 0.5rem 0; -} - -ul.tags a { - text-decoration: none; - border: 1px solid currentColor; - border-radius: 999px; - padding: 0.1rem 0.6rem; - font-size: 0.85rem; -} - -footer { - margin-top: 3rem; - font-size: 0.85rem; - opacity: 0.7; -}