/
kirra16
/
projectitog1
Обзор
Документация
Войти
/
kirra16
/
projectitog1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Map/Map.css
136 строк
2 KB
kirra16
Initial commit
19 дек 2025, 12:55
19 дек 2025, 12:55
1fb5414
Код
Авторство
О чём код?
.map-section { background-color: #f9f5f0; padding: 4rem 2rem 3rem; margin-top: 3rem; } .map-container { max-width: 1200px; margin: 0 auto; } .map-title { color: #5d4037; text-align: center; font-size: 2.2rem; margin-bottom: 1rem; } .map-subtitle { color: #8d6e63; text-align: center; font-size: 1.1rem; margin-bottom: 2rem; } .map-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 25px rgba(139, 69, 19, 0.15); height: 500px; position: relative; } .yandex-map { width: 100%; height: 100%; } .map-loading, .map-error { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; background: #f5f5f5; border-radius: 12px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 10; padding: 2rem; text-align: center; } .map-loading .spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid #8d6e63; border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1rem; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .map-error p { color: #d32f2f; font-weight: bold; margin-bottom: 1rem; } .reload-btn { padding: 0.75rem 1.5rem; background: #8d6e63; color: white; border: none; border-radius: 6px; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem; } .reload-btn:hover { background: #5d4037; transform: translateY(-2px); } .fallback-map { position: relative; width: 100%; height: 300px; border-radius: 8px; overflow: hidden; margin-top: 1rem; } .fallback-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; padding: 1rem; } .fallback-overlay p { margin-bottom: 1rem; font-size: 1.1rem; } @media (max-width: 768px) { .map-section { padding: 2rem 1rem; } .map-wrapper { height: 400px; } .map-title { font-size: 1.8rem; } }