Set the box-model to border-box.

This commit is contained in:
Ethan Dalool 2020-03-25 23:19:37 -07:00
parent 82d110ccd9
commit 994c3b650c

View file

@ -39,14 +39,23 @@ h5:hover > .header_anchor_link {display: initial;}
html
{
height: 100vh;
box-sizing: border-box;
padding-top: 30px;
padding-bottom: 30px;
background-color: var(--color_htmlbg);
color: var(--color_maintext);
font-family: Verdana, sans-serif;
font-size: 10pt;
}
*, *:before, *:after
{
box-sizing: inherit;
}
a
{
color: var(--color_link);