Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Kill margins and paddings; add border-box
  2. *
  3. margin: 0
  4. padding: 0
  5. box-sizing: border-box
  6. &:before, &:after
  7. background-repeat: no-repeat
  8. box-sizing: inherit
  9. &:focus
  10. outline: none !important
  11. ::before, ::after
  12. text-decoration: inherit
  13. vertical-align: inherit
  14. html
  15. cursor: default
  16. font-family: system-ui
  17. line-height: 1.15
  18. tab-size: 4
  19. // Always set color/background/font-size on root
  20. body
  21. margin: 0
  22. color: $primary
  23. font-size: $ms
  24. font-family: Helvetica, Arial, sans-serif
  25. // Remove list-style in navigation tags
  26. nav
  27. ol, ul
  28. list-style: none
  29. // Useful for single page apps to use up all available space
  30. html, body
  31. height: 100%
  32. // Reset some other default styles
  33. button, input, select, textarea
  34. font-family: inherit
  35. font-size: inherit
  36. line-height: inherit