You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

92 lines
963 B

  1. //
  2. // Utility classes for typography
  3. //
  4. // stylelint-disable primer/selector-no-utility, primer/no-override
  5. .fs-1 {
  6. @include fs-1;
  7. }
  8. .fs-2 {
  9. @include fs-2;
  10. }
  11. .fs-3 {
  12. @include fs-3;
  13. }
  14. .fs-4 {
  15. @include fs-4;
  16. }
  17. .fs-5 {
  18. @include fs-5;
  19. }
  20. .fs-6 {
  21. @include fs-6;
  22. }
  23. .fs-7 {
  24. @include fs-7;
  25. }
  26. .fs-8 {
  27. @include fs-8;
  28. }
  29. .fs-9 {
  30. @include fs-9;
  31. }
  32. .fs-10 {
  33. @include fs-10;
  34. }
  35. .fw-300 {
  36. font-weight: 300 !important;
  37. }
  38. .fw-400 {
  39. font-weight: 400 !important;
  40. }
  41. .fw-500 {
  42. font-weight: 500 !important;
  43. }
  44. .fw-700 {
  45. font-weight: 700 !important;
  46. }
  47. .lh-0 {
  48. line-height: 0 !important;
  49. }
  50. .lh-default {
  51. line-height: $body-line-height;
  52. }
  53. .lh-tight {
  54. line-height: $body-heading-line-height;
  55. }
  56. .ls-5 {
  57. letter-spacing: 0.05em !important;
  58. }
  59. .ls-10 {
  60. letter-spacing: 0.1em !important;
  61. }
  62. .ls-0 {
  63. letter-spacing: 0 !important;
  64. }
  65. .text-uppercase {
  66. text-transform: uppercase !important;
  67. }
  68. // stylelint-enable primer/selector-no-utility