Set the box-model to border-box.
This commit is contained in:
parent
82d110ccd9
commit
994c3b650c
1 changed files with 9 additions and 0 deletions
|
@ -39,14 +39,23 @@ h5:hover > .header_anchor_link {display: initial;}
|
||||||
|
|
||||||
html
|
html
|
||||||
{
|
{
|
||||||
|
height: 100vh;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
background-color: var(--color_htmlbg);
|
background-color: var(--color_htmlbg);
|
||||||
color: var(--color_maintext);
|
color: var(--color_maintext);
|
||||||
|
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
*, *:before, *:after
|
||||||
|
{
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
a
|
a
|
||||||
{
|
{
|
||||||
color: var(--color_link);
|
color: var(--color_link);
|
||||||
|
|
Loading…
Reference in a new issue