File size: 527 Bytes
0596796 c364528 0596796 c364528 0596796 c364528 0596796 c364528 0596796 c364528 0596796 |
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 |
/* Dropzone highlight when dragging */
.dropzone-hover {
border-color: #6366f1 !important;
background-color: #e0e7ff !important;
transition: all 0.2s ease;
}
.file-item {
transition: all 0.2s ease;
}
.file-item:hover {
transform: translateY(-2px);
}
.progress-bar {
transition: width 0.3s ease;
}
/* Pulse animation for upload icon */
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.pulse {
animation: pulse 2s infinite;
} |