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.

36 lines
666 B

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