Compare commits

...

2 commits

Author SHA1 Message Date
Pagwin
78cc7f0990 forgot a semicolon 2025-07-10 23:22:45 -04:00
Pagwin
36147db801 made a separate reset css sheet 2025-07-10 23:12:00 -04:00
2 changed files with 6 additions and 1 deletions

View file

@ -1,4 +1,5 @@
@layer pre-load, baseline, overload-1, print;
@layer pre-load, reset, baseline, overload-1, print;
@import url("/static/css/reset.css") layer(reset);
/*
* saving this for when doing a table of contents, position: sticky isn't good enough
@ -13,6 +14,7 @@
}
* */
@layer overload-1{
dt{
font-weight:normal;

3
static/css/reset.css Normal file
View file

@ -0,0 +1,3 @@
* {
box-sizing: border-box;
}