_typography.scss 604 B

12345678910111213141516171819202122232425262728293031323334
  1. html {
  2. font-size: $font__size_base;
  3. }
  4. body {
  5. -webkit-font-smoothing: antialiased;
  6. -moz-osx-font-smoothing: grayscale;
  7. color: $color__text-main;
  8. font-family: $font__body;
  9. font-weight: $font__weight_standard;
  10. font-size: 1em;
  11. line-height: $font__line-height-body;
  12. margin: 0;
  13. text-rendering: optimizeLegibility;
  14. }
  15. button,
  16. input,
  17. select,
  18. optgroup,
  19. textarea {
  20. color: $color__text-main;
  21. font-family: $font__body;
  22. font-weight: $font__weight_standard;
  23. line-height: $font__line-height-body;
  24. text-rendering: optimizeLegibility;
  25. }
  26. @import "headings";
  27. @import "copy";
  28. @include non-latin-fonts();