mixins.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* Font global css variable */
  2. @mixin text-style-h-1-medium {
  3. font-size: 38px;
  4. font-weight: 500;
  5. font-style: normal;
  6. line-height: 46px;
  7. text-decoration: none;
  8. text-transform: none;
  9. }
  10. @mixin text-style-h-2-medium {
  11. font-size: 30px;
  12. font-weight: 500;
  13. font-style: normal;
  14. line-height: 40px;
  15. text-decoration: none;
  16. text-transform: none;
  17. }
  18. @mixin text-style-h-3-medium {
  19. font-size: 24px;
  20. font-weight: 500;
  21. font-style: normal;
  22. line-height: 32px;
  23. text-decoration: none;
  24. text-transform: none;
  25. }
  26. @mixin text-style-h-3-regular {
  27. font-size: 24px;
  28. font-weight: 400;
  29. font-style: normal;
  30. line-height: 32px;
  31. text-decoration: none;
  32. text-transform: none;
  33. }
  34. @mixin text-style-h-4-regular {
  35. font-size: 20px;
  36. font-weight: 400;
  37. font-style: normal;
  38. line-height: 28px;
  39. text-decoration: none;
  40. text-transform: none;
  41. }
  42. @mixin text-style-h-4-medium {
  43. font-size: 20px;
  44. font-weight: 500;
  45. font-style: normal;
  46. line-height: 28px;
  47. text-decoration: none;
  48. text-transform: none;
  49. }
  50. @mixin text-style-h-5-regular {
  51. font-size: 16px;
  52. font-weight: 400;
  53. font-style: normal;
  54. line-height: 24px;
  55. text-decoration: none;
  56. text-transform: none;
  57. }
  58. @mixin text-style-h-5-medium {
  59. font-size: 16px;
  60. font-weight: 500;
  61. font-style: normal;
  62. line-height: 24px;
  63. text-decoration: none;
  64. text-transform: none;
  65. }
  66. @mixin text-style-h-5-bold {
  67. font-size: 16px;
  68. font-weight: 700;
  69. font-style: normal;
  70. line-height: 24px;
  71. text-decoration: none;
  72. text-transform: none;
  73. }
  74. @mixin text-style-body-regular {
  75. font-size: 14px;
  76. font-weight: 400;
  77. font-style: normal;
  78. line-height: 22px;
  79. text-decoration: none;
  80. text-transform: none;
  81. }
  82. @mixin text-style-body-medium {
  83. font-size: 14px;
  84. font-weight: 500;
  85. font-style: normal;
  86. line-height: 22px;
  87. text-decoration: none;
  88. text-transform: none;
  89. }
  90. @mixin text-style-body-bold {
  91. font-size: 14px;
  92. font-weight: 700;
  93. font-style: normal;
  94. line-height: 22px;
  95. text-decoration: none;
  96. text-transform: none;
  97. }
  98. @mixin text-style-body-regular-underline {
  99. font-size: 14px;
  100. font-weight: 400;
  101. font-style: normal;
  102. line-height: 22px;
  103. text-decoration: underline;
  104. text-transform: none;
  105. }
  106. @mixin text-style-body-regular-strikethrough {
  107. font-size: 14px;
  108. font-weight: 400;
  109. font-style: normal;
  110. line-height: 22px;
  111. text-decoration: line-through;
  112. text-transform: none;
  113. }
  114. @mixin text-style-body-code {
  115. font-size: 14px;
  116. font-weight: 400;
  117. font-style: normal;
  118. line-height: 22px;
  119. text-decoration: none;
  120. text-transform: none;
  121. }
  122. @mixin text-style-footnote-description {
  123. font-size: 12px;
  124. font-weight: 400;
  125. font-style: normal;
  126. line-height: 20px;
  127. text-decoration: none;
  128. text-transform: none;
  129. }
  130. @mixin text-style-footnote-system-monospace {
  131. font-size: 10px;
  132. font-weight: 400;
  133. font-style: normal;
  134. line-height: 17px;
  135. text-decoration: none;
  136. text-transform: none;
  137. }