25 lines
209 B
SCSS
25 lines
209 B
SCSS
// normalize css is loaded, then these additions:
|
|
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
main,
|
|
section,
|
|
article,
|
|
aside,
|
|
footer,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
div,
|
|
p,
|
|
ul,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|