Spaces:
Sleeping
Sleeping
File size: 1,760 Bytes
ef3d1e2 |
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 |
/* ---------- Global background & typography ---------- */
body {
background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 45%, #f8fafc 100%);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}
/* ---------- Main wrapper ---------- */
#app-wrapper {
max-width: 1100px;
margin: 0 auto;
padding: 24px 16px 40px;
}
/* ---------- Header ---------- */
#app-header h1 {
font-size: 2.2rem;
margin-bottom: 0.2rem;
}
#app-header h3 {
margin-top: 0;
font-weight: 500;
color: #6b7280;
}
/* ---------- Info chips under title ---------- */
#badge-row {
margin-top: 6px;
margin-bottom: 6px;
}
.badge {
display: inline-flex;
align-items: center;
padding: 4px 10px;
margin-right: 8px;
margin-bottom: 4px;
border-radius: 999px;
background: #ecfdf5;
border: 1px solid #bbf7d0;
font-size: 12px;
color: #166534;
}
/* ---------- Main card ---------- */
#main-card {
margin-top: 18px;
padding: 18px 20px 22px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.98);
box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
}
/* Left (controls) / right (outputs) panels */
#left-panel {
border-right: 1px solid #e5e7eb;
padding-right: 18px;
}
#right-panel {
padding-left: 18px;
}
/* Small helper text under model dropdown */
#model-help {
font-size: 12px;
color: #6b7280;
margin-top: 4px;
}
/* Make the main button a bit more pill-like */
button.primary,
.gr-button-primary {
border-radius: 999px !important;
padding: 8px 18px !important;
font-weight: 600 !important;
}
/* Footer */
#footer {
margin-top: 18px;
text-align: center;
font-size: 12px;
color: #94a3b8;
}
|