Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
611 B

@import
'../functions/units';
/**
* normalize
*
*
* @author Björn Hase
*
*/
$normalize__margin: 0 0 pxToEm(20px) !default;
@mixin crispy-boilerplate-normalize {
html {
font-size: 100%;
}
body,
html {
height: 100%;
}
html,
legend {
box-sizing: border-box;
}
*,
*::after,
*::before {
box-sizing: inherit;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
p {
margin: $normalize__margin;
}
ul, ol, dl {
margin: $normalize__margin;
}
@content;
}