index.styl 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // vue/app/pages/About/index.styl
  2. // Стили исключительно для страницы "О зале"
  3. .about-section
  4. .info-item
  5. transition: all 0.3s ease
  6. padding: 0.5rem
  7. border-radius: 0.5rem
  8. &:hover
  9. background-color: rgba(0, 0, 0, 0.02)
  10. .dark &
  11. background-color: rgba(255, 255, 255, 0.02)
  12. .icon
  13. transition: transform 0.3s ease
  14. &:hover .icon
  15. transform: scale(1.1)
  16. // Стили для статистических карточек
  17. .stat-card
  18. transition: all 0.3s ease
  19. position: relative
  20. overflow: hidden
  21. &::before
  22. content: ''
  23. position: absolute
  24. top: 0
  25. left: 0
  26. right: 0
  27. bottom: 0
  28. background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%)
  29. pointer-events: none
  30. // Адаптивность для мобильных устройств
  31. @media (max-width: 768px)
  32. .about-section
  33. .grid
  34. gap: 1.5rem
  35. .bg-white, .bg-gray-800
  36. padding: 1.5rem