/
Ozz
/
my-app
Обзор
Документация
Войти
/
Ozz
/
my-app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Layout/Footer.css
48 строк
863 B
Ozz
feat: Автоматизация развертывания веб-приложения в Yandex Cloud через CI/CD
24 июн 2026, 14:07
24 июн 2026, 14:07
17520b2
Код
Авторство
О чём код?
.footer { background: var(--nav-bg); color: var(--nav-text); padding: 1.5rem 0; margin-top: auto; border-top: 1px solid var(--border-color); } .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; } .heart-icon { color: #ff6b6b; animation: heartbeat 1.5s ease-in-out infinite; } @keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } } .footer-links a { color: var(--nav-text); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; } .footer-links a:hover { transform: translateY(-2px); text-shadow: 0 2px 4px rgba(0,0,0,0.2); } @media (max-width: 768px) { .footer-content { flex-direction: column; gap: 1rem; text-align: center; } }