index.styl 1022 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // vue/app/pages/Home/index.styl
  2. // Стили исключительно для главной страницы
  3. .hero-section
  4. margin-top: -2rem
  5. .slide-content
  6. transition: all 0.5s ease-in-out
  7. .event-card
  8. transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
  9. &:hover
  10. .event-image img
  11. transform: scale(1.05)
  12. // Анимации для карточек мероприятий
  13. @keyframes cardAppear
  14. from
  15. opacity: 0
  16. transform: translateY(30px)
  17. to
  18. opacity: 1
  19. transform: translateY(0)
  20. .event-card
  21. animation: cardAppear 0.6s ease forwards
  22. &:nth-child(1)
  23. animation-delay: 0.1s
  24. &:nth-child(2)
  25. animation-delay: 0.2s
  26. &:nth-child(3)
  27. animation-delay: 0.3s
  28. &:nth-child(4)
  29. animation-delay: 0.4s
  30. &:nth-child(5)
  31. animation-delay: 0.5s
  32. &:nth-child(6)
  33. animation-delay: 0.6s
  34. // Адаптивность для мобильных устройств
  35. @media (max-width: 768px)
  36. .hero-section
  37. margin-top: 0
  38. .event-card
  39. margin-bottom: 1.5rem