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.

34 lines
649 B

7 years ago
  1. /**
  2. * body
  3. *
  4. *
  5. *
  6. * @author Björn Hase
  7. *
  8. */
  9. $body__font-size: 12px !default;
  10. $body__font-family: Arial, Helvetica, Neue Helvetica, sans-serif !default;
  11. $body__line-height: 1.5 !default;
  12. $body__direction: ltr !default;
  13. $body__color: black !default;
  14. $body__backgroun-color: white !default;
  15. @mixin cripsy-boilerplate-body {
  16. body {
  17. font-family: $body__font-family;
  18. font-weight: normal;
  19. line-height: $body__line-height;
  20. color: $body__color;
  21. background-color: $body__background-color;
  22. direction: $body__direction;
  23. @include font-size($body__font-size);
  24. @content;
  25. }
  26. }