Tim13ekd's picture
mache mir eine upload up wo man uploaden kann oder droppen kann
0596796 verified
raw
history blame contribute delete
527 Bytes
/* 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;
}