/
safe_ai_lab
/
website
Обзор
Документация
Войти
/
safe_ai_lab
/
website
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
assets/css/style.css
91 строка
1 KB
Oleg
create assets/css/style.css
01 июн 2025, 22:56
01 июн 2025, 22:56
706c1e6
Код
Авторство
О чём код?
/* assets/css/style.css */ /* Simple reset-like rules */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; padding: 0 1rem; } .container { max-width: 800px; margin: 0 auto; padding: 1rem 0; } /* Header */ header { background-color: #ffffff; border-bottom: 1px solid #ddd; margin-bottom: 2rem; } .header‐inner { display: flex; align-items: center; justify-content: space-between; } header h1 { font-size: 1.5rem; } header h1 a { text-decoration: none; color: #333; } nav ul.nav‐list { list-style: none; display: flex; gap: 1rem; } nav ul.nav‐list li a { text-decoration: none; color: #555; padding: 0.25rem 0.5rem; border-radius: 4px; } nav ul.nav‐list li a:hover, nav ul.nav‐list li a.active { background-color: #e0e0e0; } /* Main content */ main h2 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.25rem; } main ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; } .main‐content‐page { background-color: #ffffff; padding: 1rem 1.5rem; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } /* Footer */ footer { text-align: center; margin-top: 3rem; padding: 1rem 0; font-size: 0.9rem; color: #777; }