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
728 B

7 years ago
7 years ago
7 years ago
  1. /**
  2. * margin
  3. *
  4. * modificators for margin
  5. *
  6. *
  7. * @author Björn Hase
  8. *
  9. */
  10. $margin-top: pxToEm(5px) !default;
  11. $margin-bottom: pxToEm(20px) !default;
  12. @mixin crispy-boilerplate-margin() {
  13. .--margin-top-y0 {
  14. margin-top: 0;
  15. }
  16. .--margin-top-y1 {
  17. margin-top: $margin-top;
  18. }
  19. .--margin-top-y2 {
  20. margin-top: $margin-top * 2;
  21. }
  22. .--margin-top-y3 {
  23. margin-top: $margin-top * 3;
  24. }
  25. .--margin-bottom-y0 {
  26. margin-bottom: 0;
  27. }
  28. .--margin-bottom-y1 {
  29. margin-bottom: $margin-bottom;
  30. }
  31. .--margin-bottom-y2 {
  32. margin-bottom: $margin-bottom * 2;
  33. }
  34. .--margin-bottom-y3 {
  35. margin-bottom: $margin-bottom * 3;
  36. }
  37. }