/
PetrovSA
/
python-dev-course
Обзор
Документация
Войти
/
PetrovSA
/
python-dev-course
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Part 8 - FastAPI/P13/P13_4/style.css
135 строк
2 KB
PetrovSerega
Initial commit
08 май 2026, 17:14
08 май 2026, 17:14
9e45db8
Код
Авторство
О чём код?
body { font-family: sans-serif; margin: 20px; background: #f5f5f5; } h1, h2 { color: #333; } table { width: 100%; border-collapse: collapse; background: white; } th, td { padding: 8px; border: 1px solid #ddd; text-align: left; } th { background: #4CAF50; color: white; } a { color: #2196F3; text-decoration: none; } /* Единый класс для кнопок и ссылок-кнопок */ .btn { display: inline-block; padding: 6px 12px; border-radius: 4px; font-size: 14px; text-decoration: none; cursor: pointer; border: none; transition: background-color 0.3s; } /* Цветовые вариации */ .btn-primary { background-color: #4CAF50; color: white; } .btn-primary:hover { background-color: #45a049; } .btn-edit { background-color: #2196F3; color: white; } .btn-edit:hover { background-color: #0b7dda; } .btn-delete { background-color: #f44336; color: white; } .btn-delete:hover { background-color: #d32f2f; } .btn-secondary { background-color: #6c757d; color: white; } .btn-secondary:hover { background-color: #5a6268; } /* Формы */ form label { display: block; margin-top: 10px; font-weight: bold; } form input, form textarea { display: block; width: 100%; max-width: 400px; margin-top: 5px; padding: 8px; box-sizing: border-box; } form textarea { height: 100px; } form button.btn { margin-top: 20px; } /* Группировка кнопок в одной строке */ .btn-group { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; } .btn-group button.btn { margin-top: 0; } .btn-group a.btn, .btn-group button.btn { vertical-align: middle; } .btn-group form.inline-form { display: inline-flex; align-items: center; } /* Блок details/summary */ details { margin-bottom: 20px; } summary { font-size: 1.2em; cursor: pointer; color: #4CAF50; font-weight: bold; } summary:hover { color: #45a049; } details div { margin-left: 20px; padding: 10px; background: #f9f9f9; border-radius: 5px; } /* Утилиты */ .inline-form { display: inline-block; margin: 0; padding: 0; }