_typography.scss 539 B

123456789101112131415161718192021222324252627282930313233
  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: 400;
  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. font-family: $font__body;
  21. font-weight: 400;
  22. line-height: $font__line-height-body;
  23. text-rendering: optimizeLegibility;
  24. }
  25. @import "headings";
  26. @import "copy";
  27. @include non-latin-fonts();