From 36147db80197affcf541592c42746fb439990b47 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Thu, 10 Jul 2025 23:12:00 -0400 Subject: [PATCH] made a separate reset css sheet --- static/css/layout.css | 4 +++- static/css/reset.css | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 static/css/reset.css diff --git a/static/css/layout.css b/static/css/layout.css index 11510ea..a9e4d32 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -1,4 +1,4 @@ -@layer pre-load, baseline, overload-1, print; +@layer pre-load, reset, baseline, overload-1, print; /* * saving this for when doing a table of contents, position: sticky isn't good enough @@ -13,6 +13,8 @@ } * */ +@import url("/static/css/reset.css") layer("reset") + @layer overload-1{ dt{ font-weight:normal; diff --git a/static/css/reset.css b/static/css/reset.css new file mode 100644 index 0000000..36a5735 --- /dev/null +++ b/static/css/reset.css @@ -0,0 +1,3 @@ +* { + box-sizing: border-box; +}