cute-task-tracker / style.css
iProsto's picture
Create a todo list site. Minimalistic, easy to use and user-friendly, cute. Opportunities: add a new task, remove any task, mark as done, mark as undone. Use localstorage for tasks. Sort undone tasks to the top of the list
8104128 verified
@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;
}