File size: 400 Bytes
a8e626b
 
6bccb39
 
a8e626b
 
6bccb39
 
a8e626b
 
 
6bccb39
 
a8e626b
 
 
 
6bccb39
 
a8e626b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.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;
}