globals.css 1013 B

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