Spaces:
Running
Running
File size: 1,147 Bytes
5523155 1756d1e 5523155 1756d1e 5523155 1756d1e 5523155 1756d1e 5523155 1756d1e 5523155 1756d1e 5523155 4e886f8 | 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 | /* Base styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Drop zone styles */
#dropZone.drag-over {
background-color: #f0f9ff;
border-color: #3b82f6;
}
/* Preview container */
#previewContainer {
border: 2px dashed #e5e7eb;
transition: all 0.3s ease;
}
/* Overlay option buttons */
.overlay-option {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
background-color: white;
cursor: pointer;
transition: all 0.2s ease;
}
.overlay-option:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.overlay-option.active {
border-color: #3b82f6;
background-color: #eff6ff;
}
/* Responsive adjustments */
@media (max-width: 640px) {
.grid-cols-2 {
grid-template-columns: 1fr;
}
}
/* Overlay styles */
.overlay {
position: absolute;
pointer-events: none;
width: 100%;
height: 100%;
}
|