Spaces:
Running
Running
File size: 1,323 Bytes
72938cb b1e8890 72938cb f2a54c2 72938cb f2a54c2 72938cb f2a54c2 72938cb f2a54c2 b1e8890 72938cb f2a54c2 72938cb b1e8890 72938cb |
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
/* Custom styles for TaskMaster KR */
custom-calendar {
display: block;
width: 100%;
max-width: 400px;
margin: 0 auto;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
border-radius: 0.5rem;
overflow: hidden;
}
.filter-btn.active {
background-color: #6366f1;
color: white;
}
.due-date {
white-space: nowrap;
}
.date-input {
width: 150px;
}
@media (max-width: 640px) {
.date-input {
width: 100%;
margin-bottom: 0.5rem;
}
}
.task-item {
transition: all 0.2s ease;
}
.task-item:hover {
background-color: #f9fafb;
}
.task-item.completed {
opacity: 0.7;
}
.task-item.completed .task-title {
text-decoration: line-through;
color: #9ca3af;
}
.task-item.completed .task-description {
opacity: 0.7;
}
.task-item.editing {
background-color: #eef2ff;
}
/* Drag and drop styles */
.task-item.dragging {
opacity: 0.5;
background-color: #e0e7ff;
}
/* Responsive adjustments */
@media (max-width: 640px) {
#task-form {
flex-direction: column;
}
#task-form input {
width: 100%;
margin-bottom: 0.5rem;
}
#task-form button {
width: 100%;
}
.filter-buttons {
flex-direction: column;
gap: 0.5rem;
}
} |