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.
 
 
 
 
 

59 lines
689 B

  1. //
  2. // Typography
  3. //
  4. // stylelint-disable primer/selector-no-utility, primer/no-override, selector-no-type, selector-max-type
  5. h1,
  6. .text-alpha {
  7. @include fs-8;
  8. font-weight: 300;
  9. }
  10. h2,
  11. .text-beta {
  12. @include fs-6;
  13. }
  14. h3,
  15. .text-gamma {
  16. @include fs-5;
  17. }
  18. h4,
  19. .text-delta {
  20. @include fs-2;
  21. font-weight: 300;
  22. text-transform: uppercase;
  23. letter-spacing: 0.1em;
  24. }
  25. h5,
  26. .text-epsilon {
  27. @include fs-3;
  28. color: $grey-dk-200;
  29. }
  30. h6,
  31. .text-zeta {
  32. @include fs-2;
  33. color: $grey-dk-200;
  34. }
  35. li {
  36. .highlight {
  37. margin-top: $sp-2;
  38. }
  39. }
  40. .text-small {
  41. @include fs-2;
  42. }
  43. .text-mono {
  44. font-family: $mono-font-family !important;
  45. }
  46. .text-center {
  47. text-align: center !important;
  48. }