globals.css 1.0 KB

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