/
aska
/
web-static-labs
Обзор
Документация
Войти
/
aska
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab5/task2/style.css
98 строк
1 KB
unknown
лабы 1 4 5
14 ноя 2025, 09:16
14 ноя 2025, 09:16
b757c12
Код
Авторство
О чём код?
body { font-family: Arial, sans-serif; margin: 20px; background-color: #f4f4f4; } .container { max-width: 800px; margin: 0 auto; background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } #inputArea { margin-bottom: 20px; } #taskInput { width: 90%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; resize: vertical; } #addTaskButton { padding: 10px 15px; background-color: #36668a; color: white; border: none; border-radius: 4px; cursor: pointer; } #addTaskButton:hover { background-color: #36668a; } #taskList { margin-top: 20px; } .task { background-color: #f9f9f9; padding: 10px; margin-bottom: 5px; border: 1px solid #eee; border-radius: 4px; display: flex; justify-content: space-between; align-items: center; } .task:last-child { margin-bottom: 0; } .task-text { flex-grow: 1; } .task-buttons { display: flex; gap: 5px; } .copyButton, .deleteButton { padding: 5px 10px; border: none; border-radius: 4px; cursor: pointer; } .copyButton { background-color: #337ab7; color: white; } .copyButton:hover { background-color: #34aac5; } .deleteButton { background-color: #1ecc69; color: white; } .deleteButton:hover { background-color: #1ecc69; } .highlighted { background-color: #FFFFE0; border: 1px solid #FFD700; }