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.
 
 
 

47 lines
712 B

/**
* margin
*
* modificators for margin
*
*
* @author Björn Hase
*
*/
$margin-top: pxToEm(5px) !default;
$margin-bottom: pxToEm(20px) !default;
@mixin crispy-boilerplate-margin() {
.margin-top-y0 {
margin-top: 0;
}
.margin-top-y1 {
margin-top: $margin-top;
}
.margin-top-y2 {
margin-top: $margin-top * 2;
}
.margin-top-y3 {
margin-top: $margin-top * 3;
}
.margin-bottom-y0 {
margin-bottom: 0;
}
.margin-bottom-y1 {
margin-bottom: $margin-bottom;
}
.margin-bottom-y2 {
margin-bottom: $margin-bottom * 2;
}
.margin-bottom-y3 {
margin-bottom: $margin-bottom * 3;
}
}