/
meganetman
/
sample_template
Обзор
Документация
Войти
/
meganetman
/
sample_template
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
83 строки
1 KB
meganetman
create style.css
26 окт 2025, 19:18
26 окт 2025, 19:18
86cd3ca
Код
Авторство
О чём код?
* { box-sizing: border-box; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; } .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; } /* Header */ .header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 15px 0; } .logo img { max-height: 50px; } .logo span { font-size: 1.5rem; font-weight: bold; } .main-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; } .main-menu a { text-decoration: none; color: #007bff; } /* Footer */ .footer { background: #f8f9fa; padding: 40px 0; margin-top: 60px; } .footer-col { margin-bottom: 20px; } .footer-col h4 { margin-top: 0; } .social-links a { color: #007bff; text-decoration: none; } .social-links a:hover { text-decoration: underline; } /* Адаптив */ @media (max-width: 768px) { .header .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .main-menu ul { flex-direction: column; gap: 10px; margin-top: 10px; } .footer { text-align: center; } .footer .container { display: flex; flex-direction: column; align-items: center; } }