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.

46 lines
576 B

7 years ago
  1. /**
  2. * normalize
  3. *
  4. *
  5. * @author Björn Hase
  6. *
  7. */
  8. $normalize__margin: 0 0 pxToEm(20px) !default;
  9. @mixin cripsy-boilerplate-normalize {
  10. html {
  11. font-size: 100%;
  12. }
  13. body,
  14. html {
  15. height: 100%;
  16. }
  17. html,
  18. legend {
  19. box-sizing: border-box;
  20. }
  21. *,
  22. *::after,
  23. *::before {
  24. box-sizing: inherit;
  25. }
  26. table {
  27. border-collapse: collapse;
  28. border-spacing: 0;
  29. }
  30. p {
  31. margin: $normalize__margin;
  32. }
  33. ul, ol, dl {
  34. margin: $normalize__margin;
  35. }
  36. @content;
  37. }