tasky-mctaskface / style.css
iProsto's picture
Save tasks in the localstorage. Add to each task an id and use the id as a unique identificator of task
a8e626b verified
raw
history blame contribute delete
400 Bytes
.task-item {
transition: all 0.2s ease;
}
.task-item:hover {
transform: translateY(-2px);
}
.task-complete {
text-decoration: line-through;
opacity: 0.7;
}
/* Animation for task addition/removal */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.task-enter {
animation: fadeIn 0.3s ease forwards;
}