_variables.scss 961 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import 'base/mixins';
  2. :root {
  3. --container-width: 1400px;
  4. --transition: 0.3s ease;
  5. --default-font-family: 'Montserrat';
  6. --heading-font-family: 'Montserrat';
  7. --scrollbar-color:#F0F3F6;
  8. --text-color: rgba(2, 0, 5, 0.80); // text color
  9. --fz-default: 16px; // default font size
  10. --lh-default: 24px;// default line-height
  11. --h1: 24px; // h1 font size
  12. --h2: 20px; // h2 font size
  13. --h3: 18px; // h3 font size
  14. --h4: 16px; // h3 font size
  15. @include tablet {
  16. --container-width: 1199px;
  17. --fz-default: 16px; // default font size
  18. --lh-default: 26px;// default line-height
  19. --h1: 22px; // h1 font size
  20. --h2: 18px; // h2 font size
  21. --h3: 16px; // h3 font size
  22. --h4: 14px; // h3 font size
  23. }
  24. @include mobile{
  25. --container-width: 768px;
  26. --fz-default: 14px; // default font size
  27. --lh-default: 20px;// default line-height
  28. --h1: 22px; // h1 font size
  29. --h2: 18px; // h2 font size
  30. --h3: 16px; // h3 font size
  31. --h4: 14px; // h3 font size
  32. }
  33. }