File size: 1,039 Bytes
8104128
 
c384632
8104128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c384632
 
8104128
 
c384632
 
8104128
 
 
c384632
 
8104128
 
c384632
 
8104128
 
 
 
c384632
8104128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.task-item {
    transition: all 0.3s ease;
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: #c084fc;
}

.task-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.task-item:hover .task-actions {
    opacity: 1;
}

.check-button.checked {
    background-color: #f0abfc;
    border-color: #f0abfc;
}

.empty-state-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fce7f3;
}

::-webkit-scrollbar-thumb {
    background: #f0abfc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e879f9;
}