Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

variables.scss 865B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Color Variables
  2. $yellow: #F7F5A6;
  3. $light-green: #C2F279;
  4. $dark-green: #4D9127;
  5. $red: #FF3660;
  6. $light-blue: #05DBF2;
  7. $dark-blue: #183770;
  8. $dark-grey: #1F2024;
  9. $grey: #4C5264;
  10. $light-grey: #D5D5D5;
  11. $black: #000;
  12. // Define the base font size
  13. $base-font-size: 14px;
  14. // Define breakpoints
  15. $mobile: 350px;
  16. $tablet: 768px;
  17. $desktop: 960px;
  18. // Define font sizes for each breakpoint
  19. $mobile-font-size: $base-font-size;
  20. $tablet-font-size: $base-font-size * 1.2;
  21. $desktop-font-size: $base-font-size * 1.4;
  22. // Set default font size
  23. html {
  24. font-size: $base-font-size;
  25. }
  26. // Media queries for font sizes
  27. @media (min-width: $mobile) {
  28. html {
  29. font-size: $mobile-font-size;
  30. }
  31. }
  32. @media (min-width: $tablet) {
  33. html {
  34. font-size: $tablet-font-size;
  35. }
  36. }
  37. @media (min-width: $desktop) {
  38. html {
  39. font-size: $desktop-font-size;
  40. }
  41. }