globals.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @tailwind base;
  2. html,
  3. body {
  4. @apply m-0;
  5. }
  6. @font-face {
  7. font-family: "Lekton";
  8. src: url("/fonts/Lekton-Regular.ttf") format("truetype");
  9. }
  10. @font-face {
  11. font-family: "Lekton";
  12. src: url("/fonts/Lekton-Bold.ttf") format("truetype");
  13. font-weight: 800;
  14. }
  15. @font-face {
  16. font-family: "Raleway";
  17. src: url("/fonts/Raleway-Regular.ttf") format("truetype");
  18. font-weight: 400;
  19. }
  20. @font-face {
  21. font-family: "Raleway";
  22. src: url("/fonts/Raleway-Medium.ttf") format("truetype");
  23. font-weight: 500;
  24. }
  25. @font-face {
  26. font-family: "Raleway";
  27. src: url("/fonts/Raleway-SemiBold.ttf") format("truetype");
  28. font-weight: 600;
  29. }
  30. body {
  31. @apply font-default;
  32. }
  33. h1 {
  34. @apply font-bold font-display text-7xl;
  35. }
  36. h2 {
  37. @apply font-bold font-display text-6xl tracking-tight;
  38. }
  39. h3 {
  40. @apply font-bold font-display;
  41. font-size: 3.375rem;
  42. }
  43. h4 {
  44. @apply font-bold font-display tracking-wide;
  45. font-size: 2.375rem;
  46. }
  47. h5 {
  48. @apply font-medium;
  49. font-size: 1.75rem;
  50. }
  51. h6 {
  52. @apply font-semibold uppercase text-xl;
  53. letter-spacing: 0.75px;
  54. }
  55. ::selection {
  56. @apply bg-primary text-black;
  57. }