Spaces:
Sleeping
Sleeping
File size: 597 Bytes
e2c1f2e |
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 |
/* Custom styles */
.upload-zone {
transition: all 0.3s ease;
}
.upload-zone:hover {
background-color: rgba(79, 70, 229, 0.05);
}
.progress-bar {
transition: width 0.3s ease;
}
.video-preview {
aspect-ratio: 16/9;
background: #000;
}
.modal-backdrop {
backdrop-filter: blur(2px);
}
.status-badge {
transition: all 0.3s ease;
}
.job-row {
transition: background-color 0.2s ease;
}
.job-row:hover {
background-color: rgba(79, 70, 229, 0.05);
}
.quality-button {
transition: all 0.2s ease;
}
.quality-button:hover {
transform: translateY(-1px);
}
|