/
llrr
/
kyrc
Обзор
Документация
Войти
/
llrr
/
kyrc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
172 строки
3 KB
llrr
init: первый коммит
16 июн 2026, 01:25
Верифицирован
16 июн 2026, 01:25
d78b178
Код
Авторство
О чём код?
/* ОБНУЛЕНИЕ */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', system-ui, sans-serif; background-color: #F0F0F0; color: #1C1C1C; line-height: 1.5; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* ШАПКА */ .header { background-color: #0A1A1F; padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #1D4A4A; } .header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; } .logo a { font-size: 28px; font-weight: 800; color: white; text-decoration: none; letter-spacing: 2px; } .logo a:hover { color: #4A8B8B; } .nav-list { display: flex; list-style: none; gap: 30px; flex-wrap: wrap; } .nav-list a { color: white; text-decoration: none; transition: color 0.3s; } .nav-list a:hover { color: #4A8B8B; } /* БАННЕР */ .banner { background: linear-gradient(135deg, #0A1A1F 0%, #0D2B2B 50%, #1A3A3A 100%); color: white; text-align: center; padding: 120px 20px; } .banner h1 { font-size: 80px; margin-bottom: 20px; letter-spacing: 4px; } .banner p { font-size: 20px; margin-bottom: 30px; } /* КНОПКИ */ .btn { display: inline-block; padding: 12px 30px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: all 0.3s; } .btn-primary { background-color: #1D4A4A; color: white; } .btn-primary:hover { background-color: #2E6B6B; transform: scale(1.05); } /* ПОДВАЛ */ .footer { background-color: #0A1A1F; color: #AAAAAA; padding: 40px 0 20px; margin-top: 50px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 30px; } .footer-logo a { font-size: 24px; font-weight: 800; color: white; text-decoration: none; } .footer-nav { display: flex; flex-direction: column; gap: 10px; } .footer-nav a { color: #AAAAAA; text-decoration: none; } .footer-nav a:hover { color: #4A8B8B; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #1D4A4A; font-size: 12px; } /* АДАПТИВНОСТЬ */ @media (max-width: 768px) { .banner h1 { font-size: 48px; } .banner p { font-size: 18px; } } @media (max-width: 480px) { .banner h1 { font-size: 36px; } .header-container { flex-direction: column; text-align: center; } .nav-list { justify-content: center; } }