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.

162 lines
3.3 KiB

  1. // FONT FACE --INTER
  2. @font-face {
  3. font-family: Inter;
  4. font-weight: 300;
  5. src: url("../fonts/Inter/static/Inter-Light.ttf");
  6. }
  7. @font-face {
  8. font-family: Inter;
  9. font-weight: 400;
  10. src: url("../fonts/Inter/static/Inter-Regular.ttf");
  11. }
  12. @font-face {
  13. font-family: Inter;
  14. font-weight: 500;
  15. src: url("../fonts/Inter/static/Inter-Medium.ttf");
  16. }
  17. @font-face {
  18. font-family: Inter;
  19. font-weight: 600;
  20. src: url("../fonts/Inter/static/Inter-SemiBold.ttf");
  21. }
  22. @font-face {
  23. font-family: Inter;
  24. font-weight: 700;
  25. src: url("../fonts/Inter/static/Inter-Bold.ttf");
  26. }
  27. // POPPINS
  28. @font-face {
  29. font-family: Poppins;
  30. font-weight: 300;
  31. src: url("../fonts/Poppins/Poppins-Light.ttf");
  32. }
  33. @font-face {
  34. font-family: Poppins;
  35. font-weight: 400;
  36. src: url("../fonts/Poppins/Poppins-Regular.ttf");
  37. }
  38. @font-face {
  39. font-family: Poppins;
  40. font-weight: 500;
  41. src: url("../fonts/Poppins/Poppins-Medium.ttf");
  42. }
  43. @font-face {
  44. font-family: Poppins;
  45. font-weight: 600;
  46. src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
  47. }
  48. @font-face {
  49. font-family: Poppins;
  50. font-weight: 700;
  51. src: url("../fonts/Poppins/Poppins-Bold.ttf");
  52. }
  53. //
  54. // FONT FACE --MerriweatherSans
  55. @font-face {
  56. font-family: MerriweatherSans;
  57. font-weight: 300;
  58. src: url("../fonts/Merriweather_Sans/static/MerriweatherSans-Light.ttf");
  59. }
  60. @font-face {
  61. font-family: MerriweatherSans;
  62. font-weight: 400;
  63. src: url("../fonts/Merriweather_Sans/static/MerriweatherSans-Regular.ttf");
  64. }
  65. @font-face {
  66. font-family: MerriweatherSans;
  67. font-weight: 500;
  68. src: url("../fonts/Merriweather_Sans/static/MerriweatherSans-Medium.ttf");
  69. }
  70. @font-face {
  71. font-family: MerriweatherSans;
  72. font-weight: 600;
  73. src: url("../fonts/Merriweather_Sans/static/MerriweatherSans-SemiBold.ttf");
  74. }
  75. @font-face {
  76. font-family: MerriweatherSans;
  77. font-weight: 700;
  78. src: url("../fonts/Merriweather_Sans/static/MerriweatherSans-Bold.ttf");
  79. }
  80. //
  81. // FONT FACE --Kodchasan
  82. @font-face {
  83. font-family: Kodchasan;
  84. font-weight: 300;
  85. src: url("../fonts/Kodchasan/Kodchasan-Light.ttf");
  86. }
  87. @font-face {
  88. font-family: Kodchasan;
  89. font-weight: 400;
  90. src: url("../fonts/Kodchasan/Kodchasan-Regular.ttf");
  91. }
  92. @font-face {
  93. font-family: Kodchasan;
  94. font-weight: 500;
  95. src: url("../fonts/Kodchasan/Kodchasan-Medium.ttf");
  96. }
  97. @font-face {
  98. font-family: Kodchasan;
  99. font-weight: 600;
  100. src: url("../fonts/Kodchasan/Kodchasan-SemiBold.ttf");
  101. }
  102. @font-face {
  103. font-family: Kodchasan;
  104. font-weight: 700;
  105. src: url("../fonts/Kodchasan/Kodchasan-Bold.ttf");
  106. }
  107. // FONT FACE --BeVietnam
  108. @font-face {
  109. font-family: BeVietnam;
  110. font-weight: 300;
  111. src: url("../fonts/Be_Vietnam/BeVietnam-Light.ttf");
  112. }
  113. @font-face {
  114. font-family: BeVietnam;
  115. font-weight: 400;
  116. src: url("../fonts/Be_Vietnam/BeVietnam-Regular.ttf");
  117. }
  118. @font-face {
  119. font-family: BeVietnam;
  120. font-weight: 500;
  121. src: url("../fonts/Be_Vietnam/BeVietnam-Medium.ttf");
  122. }
  123. @font-face {
  124. font-family: BeVietnam;
  125. font-weight: 600;
  126. src: url("../fonts/Be_Vietnam/BeVietnam-SemiBold.ttf");
  127. }
  128. @font-face {
  129. font-family: BeVietnam;
  130. font-weight: 700;
  131. src: url("../fonts/Be_Vietnam/BeVietnam-Bold.ttf");
  132. }
  133. //
  134. html body {
  135. @apply font-body antialiased;
  136. }
  137. h1,
  138. h2,
  139. h3,
  140. h4 {
  141. @apply font-display;
  142. }
  143. :root {
  144. --font-display: Poppins;
  145. --font-body: Poppins;
  146. }
  147. .theme-animals {
  148. --font-display: Inter;
  149. --font-body: Inter;
  150. }
  151. .theme-astronomy {
  152. --font-display: BeVietnam;
  153. --font-body: BeVietnam;
  154. }