File size: 1,095 Bytes
4c089d1 15861c0 4c089d1 8a5c175 15861c0 4c089d1 | 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 |
/* Base styles */
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
padding-top: 80px; /* Space for fixed header */
}
h1 {
font-size: 16px;
margin-top: 0;
}
p {
color: rgb(107, 114, 128);
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
.card {
max-width: 620px;
margin: 0 auto;
padding: 16px;
border: 1px solid lightgray;
border-radius: 16px;
}
.card p:last-child {
margin-bottom: 0;
}
/* Additional utility styles */
.hidden {
display: none;
}
.animate-spin {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Drag and drop styles */
.drag-active {
border-color: rgb(239, 68, 68) !important;
background-color: rgba(239, 68, 68, 0.1) !important;
}
/* Button disabled state */
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
/* Image preview styles */
#imagePreview img {
max-height: 300px;
object-fit: contain;
}
/* Mockup styles */
.mockup-shadow {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
|