/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
html/lab5/task7/style.css
38 строк
1 KB
Coderdev
1
12 май 2026, 12:37
12 май 2026, 12:37
d8ecd0f
Код
Авторство
О чём код?
body { font-family: sans-serif; padding: 20px; background-color: #f4f4f9; } .controls { margin-bottom: 20px; display: flex; gap: 10px; align-items: center; } input { padding: 8px; border: 1px solid #ccc; border-radius: 4px; width: 120px; } button { padding: 8px 15px; cursor: pointer; background: #007bff; color: white; border: none; border-radius: 4px; } button:hover { background: #0056b3; } table { border-collapse: collapse; margin-top: 20px; background: white; } td { width: 40px; height: 40px; border: 1px solid #ddd; text-align: center; cursor: pointer; transition: 0.2s; } td:hover { background-color: #fff3cd; border: 2px solid #ffc107; font-weight: bold; } .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; justify-content: center; align-items: center; } .modal-content { background: white; padding: 20px; border-radius: 8px; text-align: center; min-width: 250px; }