/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/css/php-507-156-031/main.css
71 строка
1 KB
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
.todo-app { max-width: 500px; margin: 2rem auto; padding: 1.5rem; border: 1px solid #ddd; border-radius: 8px; background: white; } .todo-app h2 { text-align: center; margin-bottom: 1.25rem; } #addTaskForm { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; } #addTaskForm input { flex: 1; padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; } #addTaskForm button { padding: 0.5rem 1rem; background: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; } #taskList { list-style: none; padding: 0; } #taskList li { display: flex; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid #eee; } #taskList input[type="checkbox"] { margin-right: 0.75rem; } .task-text { flex: 1; font-size: 1rem; } .task-text.completed { text-decoration: line-through; color: #888; } .delete-btn { background: none; border: none; color: #dc3545; font-size: 1.2rem; cursor: pointer; padding: 0 0.5rem; }