14 lines
297 B
SCSS
14 lines
297 B
SCSS
|
// Simple HTML5 reset. Not comprehensive but sufficient.
|
||
|
* {
|
||
|
-moz-box-sizing: border-box;
|
||
|
-webkit-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
margin: 0;
|
||
|
padding: 0; }
|
||
|
|
||
|
article,aside,details,figcaption,figure,
|
||
|
footer,header,hgroup,menu,nav,section {
|
||
|
display:block; }
|
||
|
|
||
|
|