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; +}