Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

38 linhas
1.3 KiB

  1. @use 'variables' as *;
  2. // ─── Base Typography ─────────────────────────────────────────────────────────
  3. body {
  4. font-family: $font-family-base;
  5. font-size: $font-size-base;
  6. font-weight: $font-weight-regular;
  7. line-height: $line-height-base;
  8. color: $color-text-base;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. }
  12. // ─── Utility Classes ─────────────────────────────────────────────────────────
  13. .text-xs { font-size: $font-size-xs; }
  14. .text-sm { font-size: $font-size-sm; }
  15. .text-base { font-size: $font-size-base; }
  16. .text-md { font-size: $font-size-md; }
  17. .text-lg { font-size: $font-size-lg; }
  18. .text-xl { font-size: $font-size-xl; }
  19. .text-muted { color: $color-text-muted; }
  20. .text-light { color: $color-text-light; }
  21. .text-dark { color: $color-text-dark; }
  22. .text-white { color: $color-white; }
  23. .font-medium { font-weight: $font-weight-medium; }
  24. .font-bold { font-weight: $font-weight-bold; }
  25. .label {
  26. display: block;
  27. font-size: $font-size-sm;
  28. font-weight: $font-weight-medium;
  29. color: $color-text-muted;
  30. margin-bottom: $space-2;
  31. letter-spacing: 0.01em;
  32. }