made a separate reset css sheet
This commit is contained in:
parent
f01a621d36
commit
36147db801
2 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
3
static/css/reset.css
Normal file
3
static/css/reset.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
Loading…
Reference in a new issue