Guest User

Untitled

a guest
Nov 7th, 2024
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.77 KB | None | 0 0
  1. /* index.css */
  2. @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  3. @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  4.  
  5. @tailwind base;
  6. @tailwind components;
  7. @tailwind utilities;
  8.  
  9. body {
  10.     background-color: #fcf7f1;
  11. }
  12.  
  13. .inter-regular {
  14.     font-family: 'Inter', sans-serif;
  15.     font-optical-sizing: auto;
  16.     font-weight: 400;
  17.     font-style: normal;
  18. }
  19. .inter-semibold {
  20.     font-family: 'Inter', sans-serif;
  21.     font-optical-sizing: auto;
  22.     font-weight: 600;
  23.     font-style: normal;
  24. }
  25.  
  26. .poppins-thin {
  27.     font-family: 'Poppins', sans-serif;
  28.     font-weight: 100;
  29.     font-style: normal;
  30. }
  31.  
  32. .poppins-extralight {
  33.     font-family: 'Poppins', sans-serif;
  34.     font-weight: 200;
  35.     font-style: normal;
  36. }
  37.  
  38. .poppins-light {
  39.     font-family: 'Poppins', sans-serif;
  40.     font-weight: 300;
  41.     font-style: normal;
  42. }
  43.  
  44. .poppins-regular {
  45.     font-family: 'Poppins', sans-serif;
  46.     font-weight: 400;
  47.     font-style: normal;
  48. }
  49.  
  50. .poppins-medium {
  51.     font-family: 'Poppins', sans-serif;
  52.     font-weight: 500;
  53.     font-style: normal;
  54. }
  55.  
  56. .poppins-semibold {
  57.     font-family: 'Poppins', sans-serif;
  58.     font-weight: 600;
  59.     font-style: normal;
  60. }
  61.  
  62. .poppins-bold {
  63.     font-family: 'Poppins', sans-serif;
  64.     font-weight: 700;
  65.     font-style: normal;
  66. }
  67.  
  68. .poppins-extrabold {
  69.     font-family: 'Poppins', sans-serif;
  70.     font-weight: 800;
  71.     font-style: normal;
  72. }
  73.  
  74. .poppins-black {
  75.     font-family: 'Poppins', sans-serif;
  76.     font-weight: 900;
  77.     font-style: normal;
  78. }
  79.  
  80. .poppins-thin-italic {
  81.     font-family: 'Poppins', sans-serif;
  82.     font-weight: 100;
  83.     font-style: italic;
  84. }
  85.  
  86. .poppins-extralight-italic {
  87.     font-family: 'Poppins', sans-serif;
  88.     font-weight: 200;
  89.     font-style: italic;
  90. }
  91.  
  92. .poppins-light-italic {
  93.     font-family: 'Poppins', sans-serif;
  94.     font-weight: 300;
  95.     font-style: italic;
  96. }
  97.  
  98. .poppins-regular-italic {
  99.     font-family: 'Poppins', sans-serif;
  100.     font-weight: 400;
  101.     font-style: italic;
  102. }
  103.  
  104. .poppins-medium-italic {
  105.     font-family: 'Poppins', sans-serif;
  106.     font-weight: 500;
  107.     font-style: italic;
  108. }
  109.  
  110. .poppins-semibold-italic {
  111.     font-family: 'Poppins', sans-serif;
  112.     font-weight: 600;
  113.     font-style: italic;
  114. }
  115.  
  116. .poppins-bold-italic {
  117.     font-family: 'Poppins', sans-serif;
  118.     font-weight: 700;
  119.     font-style: italic;
  120. }
  121.  
  122. .poppins-extrabold-italic {
  123.     font-family: 'Poppins', sans-serif;
  124.     font-weight: 800;
  125.     font-style: italic;
  126. }
  127.  
  128. .poppins-black-italic {
  129.     font-family: 'Poppins', sans-serif;
  130.     font-weight: 900;
  131.     font-style: italic;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment