File size: 1,652 Bytes
c2ec23a 00607e9 c2ec23a a89434f c2ec23a 00607e9 c2ec23a 00607e9 c2ec23a 00607e9 c2ec23a 00607e9 c2ec23a 00607e9 c2ec23a | 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 96 97 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.dropzone {
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.dropzone.dz-drag-hover {
border-color: #8b5cf6;
background-color: rgba(139, 92, 246, 0.05);
}
.dz-preview {
margin: 0.5rem;
min-height: auto;
position: relative;
border-radius: 0.5rem;
overflow: hidden;
border: 1px solid #e5e7eb;
}
.dz-preview .dz-image {
width: 100%;
height: 160px;
display: flex;
align-items: center;
justify-content: center;
background: #f3f4f6;
}
.dz-preview .dz-image img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.dz-preview .dz-details {
padding: 0.75rem;
font-size: 0.875rem;
color: #6b7280;
}
.dz-preview .dz-remove {
display: block;
text-align: center;
padding: 0.25rem 0.5rem;
color: #ef4444;
font-size: 0.75rem;
margin-top: 0.25rem;
}
.dz-preview .dz-remove:hover {
color: #dc2626;
text-decoration: underline;
}
.dropzone.dz-started .dz-message {
display: none;
}
.dz-preview {
margin: 0;
min-height: auto;
}
.dz-image {
border-radius: 8px;
width: 100%;
height: 100%;
}
.dz-details {
padding: 0.5em;
}
#result-container {
position: relative;
overflow: hidden;
}
.loading-spinner {
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
.loading-spinner.active {
display: block;
} |