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.
 
 
 

37 lines
685 B

@import
'../mixins/font-size';
/**
* body
*
*
*
* @author Björn Hase
*
*/
$body__font-size: 12px !default;
$body__font-family: Arial, Helvetica, Neue Helvetica, sans-serif !default;
$body__line-height: 1.5 !default;
$body__direction: ltr !default;
$body__color: black !default;
$body__backgroun-color: white !default;
@mixin crispy-boilerplate-body {
body {
font-family: $body__font-family;
font-weight: normal;
line-height: $body__line-height;
color: $body__color;
background-color: $body__background-color;
direction: $body__direction;
@include font-size($body__font-size);
@content;
}
}