_typography.scss 521 B

12345678910111213141516171819202122232425262728
  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. @include 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. color: $color__text-main;
  21. @include font-family( $font__body );
  22. font-weight: 400;
  23. line-height: $font__line-height-body;
  24. text-rendering: optimizeLegibility;
  25. }