Spaces:
Paused
Paused
File size: 1,660 Bytes
d7790fd | 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | /* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Smooth transitions */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}
/* Drag and drop visual feedback */
.kanban-column.drag-over {
background-color: #f8fafc;
border: 2px dashed #cbd5e1;
border-radius: 0.75rem;
}
/* Line clamp utility */
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* Custom animations */
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.task-card {
animation: slideIn 0.3s ease-out;
}
/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
outline: 2px solid #6366f1;
outline-offset: 2px;
}
/* Glassmorphism effect for modals */
.backdrop-blur-sm {
backdrop-filter: blur(4px);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.kanban-column {
min-height: 300px;
}
.sidebar-link {
padding: 0.75rem 1rem;
}
}
/* Print styles */
@media print {
.sidebar,
header,
button {
display: none !important;
}
main {
padding: 0;
}
} |