Spaces:
Paused
Paused
File size: 1,301 Bytes
5576f5e | 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 | .upload-card {
width: 320px; /* 🔥 FIX right-side width issue */
background: #020617;
padding: 20px;
border-radius: 18px;
color: white;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.upload-card h3 {
margin-bottom: 4px;
}
.sub {
font-size: 14px;
color: #94a3b8;
margin-bottom: 16px;
}
.dropzone {
position: relative;
border: 2px dashed #334155;
border-radius: 16px;
padding: 30px;
text-align: center;
background: #020617;
margin-bottom: 16px;
}
.dropzone input {
position: absolute;
inset: 0;
opacity: 0;
cursor: pointer;
}
.file-box {
background: #020617;
padding: 12px;
border-radius: 12px;
}
.file-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.file-row p {
font-size: 12px;
color: #94a3b8;
}
.percent {
color: #22d3ee;
font-weight: bold;
}
.progress-bar {
margin-top: 8px;
height: 4px;
background: #1e293b;
border-radius: 999px;
}
.progress {
height: 100%;
background: linear-gradient(to right, #06b6d4, #0ea5e9);
border-radius: 999px;
transition: width 0.4s ease;
}
.clear-btn {
margin-top: 12px;
width: 100%;
padding: 10px;
border-radius: 12px;
background: #0f172a;
color: white;
border: none;
cursor: pointer;
}
.clear-btn:hover {
background: #1e293b;
}
|