/
maxxon
/
web-static-labs
Обзор
Документация
Войти
/
maxxon
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab1/task7/style.css
111 строк
2 KB
karpov
finish lab6
13 ноя 2025, 11:08
13 ноя 2025, 11:08
2ea3c62
Код
Авторство
О чём код?
:root { --bg: #272727; --card: #2d2d2d; --accent: #b7c888; --text: #ffffff; --text-muted: #cccccc; --text-inv: #000000; } * { box-sizing: border-box; margin: 0; padding: 0; } body { background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; line-height: 1.5; padding: 2rem 1rem; } h1, h2 { color: var(--accent); margin-bottom: 1rem; text-align: center; } h1 { font-size: 2rem; } h2 { font-size: 1.5rem; } nav { margin: 1.5rem auto; text-align: center; } nav ul { list-style: none; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; } nav a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.2s; } nav a:hover { color: #d9e8b2; } .schedule { display: grid; gap: 2rem; max-width: 600px; margin: 0 auto; } table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); } th, td { border: 1px solid #444; padding: 0.75rem; text-align: left; vertical-align: top; } th { background: var(--accent); color: var(--text-inv); font-weight: 600; text-align: center; } td small { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; } td:first-child { white-space: nowrap; font-weight: 500; color: var(--text-muted); } td:empty::before, td:contains("—") { color: #777; font-style: italic; }