index.css 749 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Inter:wght@300;400;500;600&display=swap');
  2. @tailwind base;
  3. @tailwind components;
  4. @tailwind utilities;
  5. @layer base {
  6. body {
  7. @apply bg-surface text-on-surface font-body;
  8. }
  9. }
  10. .klzs-stage-card {
  11. padding: clamp(0.6rem, 1.2vw, 1.25rem);
  12. }
  13. .klzs-stage-title {
  14. font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  15. line-height: 1.3;
  16. }
  17. .klzs-stage-subtitle {
  18. font-size: clamp(0.65rem, 0.75vw, 0.78rem);
  19. }
  20. .klzs-stage-desc {
  21. font-size: clamp(0.72rem, 0.9vw, 1rem);
  22. line-height: 1.45;
  23. }
  24. .klzs-stage-image {
  25. width: clamp(26%, 2vw + 24%, 38%);
  26. }
  27. @media (max-width: 760px) {
  28. .klzs-stage-grid {
  29. grid-template-columns: repeat(2, minmax(0, 1fr));
  30. }
  31. }