mirror of
https://github.com/kennethreitz-archive/django-todo.git
synced 2026-06-21 15:51:00 +00:00
17 lines
201 B
CSS
17 lines
201 B
CSS
.task form {
|
|
margin-bottom: 0;
|
|
}
|
|
.task input[type='checkbox'] {
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
td {
|
|
font-size: 20px;
|
|
}
|
|
.delete-task {
|
|
opacity: 0.0;
|
|
}
|
|
.task:hover .delete-task {
|
|
opacity: 1;
|
|
}
|