common.scss 450 B

123456789101112131415161718192021222324252627
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. html,
  7. body {
  8. height: 100%;
  9. height: 100%;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. body {
  14. background-color: #F7F9FA;
  15. -webkit-font-smoothing: antialiased;
  16. text-size-adjust: 100%;
  17. font-family: sans-serif, Roboto, sans-serif-medium, Arial;
  18. font-feature-settings: normal;
  19. color: $main-text-color;
  20. font-size: 14px;
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. }