Spaces:
Running
Running
moved css to a script (#4)
Browse files- moved css to a script (5aca45738ada25fcb7687a5904bb64da900a853f)
- added css_path to blocks (b2bfcc7b571827f2000bf5f52831018dee693869)
Co-authored-by: yuvraj sharma <[email protected]>
app.py
CHANGED
@@ -95,278 +95,9 @@ def process_image_and_prompt(composite_pil, prompt, gemini_api_key):
|
|
95 |
except Exception as e:
|
96 |
raise gr.Error(f"Error Getting {e}", duration=5)
|
97 |
|
98 |
-
# Custom CSS for a more modern UI
|
99 |
-
custom_css = """
|
100 |
-
/* Modern UI for Gemini Image Editing App */
|
101 |
-
|
102 |
-
/* Global Styles */
|
103 |
-
:root {
|
104 |
-
--primary-color: #4f46e5;
|
105 |
-
--primary-light: #6366f1;
|
106 |
-
--primary-dark: #3730a3;
|
107 |
-
--secondary-color: #9333ea;
|
108 |
-
--accent-color: #ec4899;
|
109 |
-
--text-color: #0f172a;
|
110 |
-
--text-light: #64748b;
|
111 |
-
--bg-color: #f8fafc;
|
112 |
-
--card-bg: #ffffff;
|
113 |
-
--border-color: #e2e8f0;
|
114 |
-
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
115 |
-
--transition: all 0.3s ease;
|
116 |
-
--radius: 12px;
|
117 |
-
}
|
118 |
-
|
119 |
-
/* Base container styling */
|
120 |
-
.gradio-container {
|
121 |
-
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
122 |
-
background-color: var(--bg-color);
|
123 |
-
color: var(--text-color);
|
124 |
-
max-width: 1200px;
|
125 |
-
margin: 0 auto;
|
126 |
-
padding: 2rem;
|
127 |
-
box-shadow: var(--shadow);
|
128 |
-
border-radius: var(--radius);
|
129 |
-
}
|
130 |
-
|
131 |
-
/* Header styling */
|
132 |
-
.header-container {
|
133 |
-
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
134 |
-
border-radius: var(--radius);
|
135 |
-
padding: 2rem;
|
136 |
-
margin-bottom: 2rem;
|
137 |
-
box-shadow: var(--shadow);
|
138 |
-
color: white;
|
139 |
-
display: flex;
|
140 |
-
align-items: center;
|
141 |
-
justify-content: center;
|
142 |
-
gap: 20px;
|
143 |
-
}
|
144 |
-
|
145 |
-
.header-container img {
|
146 |
-
width: 100px;
|
147 |
-
height: 100px;
|
148 |
-
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
|
149 |
-
transition: var(--transition);
|
150 |
-
}
|
151 |
-
|
152 |
-
.header-container img:hover {
|
153 |
-
transform: scale(1.05) rotate(5deg);
|
154 |
-
}
|
155 |
-
|
156 |
-
.header-container h1 {
|
157 |
-
font-size: 2.5rem;
|
158 |
-
font-weight: 700;
|
159 |
-
margin-bottom: 0.5rem;
|
160 |
-
background: linear-gradient(45deg, #fff, #f0f0ff);
|
161 |
-
-webkit-background-clip: text;
|
162 |
-
background-clip: text;
|
163 |
-
color: transparent;
|
164 |
-
display: inline-block;
|
165 |
-
}
|
166 |
-
|
167 |
-
.header-container a {
|
168 |
-
color: white;
|
169 |
-
text-decoration: none;
|
170 |
-
font-weight: 600;
|
171 |
-
border-bottom: 2px solid rgba(255, 255, 255, 0.5);
|
172 |
-
transition: var(--transition);
|
173 |
-
padding-bottom: 2px;
|
174 |
-
}
|
175 |
-
|
176 |
-
.header-container a:hover {
|
177 |
-
border-color: white;
|
178 |
-
}
|
179 |
-
|
180 |
-
/* Accordion styling */
|
181 |
-
.gr-accordion {
|
182 |
-
border: none !important;
|
183 |
-
background: var(--card-bg);
|
184 |
-
border-radius: var(--radius);
|
185 |
-
overflow: hidden;
|
186 |
-
box-shadow: var(--shadow);
|
187 |
-
margin-bottom: 1.5rem;
|
188 |
-
transition: var(--transition);
|
189 |
-
}
|
190 |
-
|
191 |
-
.gr-accordion:hover {
|
192 |
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
193 |
-
}
|
194 |
-
|
195 |
-
.gr-accordion-title {
|
196 |
-
background-color: var(--primary-color);
|
197 |
-
color: white !important;
|
198 |
-
padding: 1rem 1.5rem;
|
199 |
-
font-weight: 600;
|
200 |
-
cursor: pointer;
|
201 |
-
}
|
202 |
-
|
203 |
-
/* Image upload area */
|
204 |
-
.upload-box {
|
205 |
-
background-color: var(--card-bg);
|
206 |
-
border: 2px dashed var(--primary-light);
|
207 |
-
border-radius: var(--radius);
|
208 |
-
transition: var(--transition);
|
209 |
-
cursor: pointer;
|
210 |
-
height: 300px;
|
211 |
-
}
|
212 |
-
|
213 |
-
.upload-box:hover {
|
214 |
-
border-color: var(--primary-color);
|
215 |
-
background-color: rgba(79, 70, 229, 0.05);
|
216 |
-
}
|
217 |
-
|
218 |
-
/* Input fields */
|
219 |
-
.gr-input, .gr-textarea {
|
220 |
-
width: 100%;
|
221 |
-
padding: 0.75rem 1rem;
|
222 |
-
border: 1px solid var(--border-color);
|
223 |
-
border-radius: var(--radius);
|
224 |
-
background-color: var(--card-bg);
|
225 |
-
transition: var(--transition);
|
226 |
-
font-size: 1rem;
|
227 |
-
}
|
228 |
-
|
229 |
-
.gr-input:focus, .gr-textarea:focus {
|
230 |
-
border-color: var(--primary-color);
|
231 |
-
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
|
232 |
-
outline: none;
|
233 |
-
}
|
234 |
-
|
235 |
-
.gr-form .gr-form-label {
|
236 |
-
font-weight: 600;
|
237 |
-
color: var(--text-color);
|
238 |
-
margin-bottom: 0.5rem;
|
239 |
-
}
|
240 |
-
|
241 |
-
/* Generate button */
|
242 |
-
.gr-button.gr-button-primary {
|
243 |
-
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
244 |
-
color: white;
|
245 |
-
border: none;
|
246 |
-
border-radius: var(--radius);
|
247 |
-
padding: 0.75rem 1.5rem;
|
248 |
-
font-size: 1rem;
|
249 |
-
font-weight: 600;
|
250 |
-
cursor: pointer;
|
251 |
-
transition: var(--transition);
|
252 |
-
width: 100%;
|
253 |
-
text-transform: uppercase;
|
254 |
-
letter-spacing: 1px;
|
255 |
-
box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.4);
|
256 |
-
}
|
257 |
-
|
258 |
-
.gr-button.gr-button-primary:hover {
|
259 |
-
transform: translateY(-2px);
|
260 |
-
box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
|
261 |
-
}
|
262 |
-
|
263 |
-
.gr-button.gr-button-primary:active {
|
264 |
-
transform: translateY(1px);
|
265 |
-
}
|
266 |
-
|
267 |
-
/* Gallery output */
|
268 |
-
.gr-gallery {
|
269 |
-
background-color: var(--card-bg);
|
270 |
-
border-radius: var(--radius);
|
271 |
-
padding: 1rem;
|
272 |
-
box-shadow: var(--shadow);
|
273 |
-
min-height: 300px;
|
274 |
-
}
|
275 |
-
|
276 |
-
.gr-gallery img {
|
277 |
-
border-radius: calc(var(--radius) - 4px);
|
278 |
-
transition: var(--transition);
|
279 |
-
}
|
280 |
-
|
281 |
-
.gr-gallery img:hover {
|
282 |
-
transform: scale(1.02);
|
283 |
-
}
|
284 |
-
|
285 |
-
/* Output text area */
|
286 |
-
.output-text {
|
287 |
-
background-color: var(--card-bg);
|
288 |
-
border-radius: var(--radius);
|
289 |
-
padding: 1.5rem;
|
290 |
-
box-shadow: var(--shadow);
|
291 |
-
line-height: 1.6;
|
292 |
-
min-height: 100px;
|
293 |
-
}
|
294 |
-
|
295 |
-
/* Examples section */
|
296 |
-
.gr-examples-header {
|
297 |
-
font-weight: 600;
|
298 |
-
margin: 2rem 0 1rem;
|
299 |
-
padding-bottom: 0.5rem;
|
300 |
-
border-bottom: 2px solid var(--primary-light);
|
301 |
-
color: var(--primary-dark);
|
302 |
-
}
|
303 |
-
|
304 |
-
.gr-examples {
|
305 |
-
display: grid;
|
306 |
-
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
307 |
-
gap: 1rem;
|
308 |
-
margin-top: 1.5rem;
|
309 |
-
}
|
310 |
-
|
311 |
-
.gr-sample {
|
312 |
-
background-color: var(--card-bg);
|
313 |
-
border-radius: var(--radius);
|
314 |
-
overflow: hidden;
|
315 |
-
box-shadow: var(--shadow);
|
316 |
-
transition: var(--transition);
|
317 |
-
cursor: pointer;
|
318 |
-
}
|
319 |
-
|
320 |
-
.gr-sample:hover {
|
321 |
-
transform: translateY(-2px);
|
322 |
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
323 |
-
}
|
324 |
-
|
325 |
-
.gr-sample img {
|
326 |
-
width: 100%;
|
327 |
-
height: 150px;
|
328 |
-
object-fit: cover;
|
329 |
-
}
|
330 |
-
|
331 |
-
/* Responsive adjustments */
|
332 |
-
@media (max-width: 768px) {
|
333 |
-
.gradio-container {
|
334 |
-
padding: 1rem;
|
335 |
-
}
|
336 |
-
|
337 |
-
.header-container {
|
338 |
-
flex-direction: column;
|
339 |
-
text-align: center;
|
340 |
-
padding: 1.5rem;
|
341 |
-
}
|
342 |
-
|
343 |
-
.header-container h1 {
|
344 |
-
font-size: 2rem;
|
345 |
-
}
|
346 |
-
}
|
347 |
-
|
348 |
-
/* Custom scrollbar */
|
349 |
-
::-webkit-scrollbar {
|
350 |
-
width: 8px;
|
351 |
-
height: 8px;
|
352 |
-
}
|
353 |
-
|
354 |
-
::-webkit-scrollbar-track {
|
355 |
-
background: var(--bg-color);
|
356 |
-
}
|
357 |
-
|
358 |
-
::-webkit-scrollbar-thumb {
|
359 |
-
background: var(--primary-light);
|
360 |
-
border-radius: 4px;
|
361 |
-
}
|
362 |
-
|
363 |
-
::-webkit-scrollbar-thumb:hover {
|
364 |
-
background: var(--primary-color);
|
365 |
-
}
|
366 |
-
"""
|
367 |
|
368 |
# Build a Blocks-based interface with a custom HTML header and CSS
|
369 |
-
with gr.Blocks(css
|
370 |
# Custom HTML header with proper class for styling
|
371 |
gr.HTML(
|
372 |
"""
|
@@ -457,8 +188,8 @@ with gr.Blocks(css=custom_css) as demo:
|
|
457 |
|
458 |
gr.Examples(
|
459 |
examples=examples,
|
460 |
-
inputs=[image_input, prompt_input,
|
461 |
elem_id="examples-grid"
|
462 |
)
|
463 |
|
464 |
-
demo.queue(max_size=
|
|
|
95 |
except Exception as e:
|
96 |
raise gr.Error(f"Error Getting {e}", duration=5)
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
|
99 |
# Build a Blocks-based interface with a custom HTML header and CSS
|
100 |
+
with gr.Blocks(css_paths="style.css",) as demo:
|
101 |
# Custom HTML header with proper class for styling
|
102 |
gr.HTML(
|
103 |
"""
|
|
|
188 |
|
189 |
gr.Examples(
|
190 |
examples=examples,
|
191 |
+
inputs=[image_input, prompt_input,],
|
192 |
elem_id="examples-grid"
|
193 |
)
|
194 |
|
195 |
+
demo.queue(max_size=50).launch()
|
style.css
ADDED
@@ -0,0 +1,408 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Creating a more modern looking UI for the Gemini Image Editing App */
|
2 |
+
/* Global Styles */
|
3 |
+
:root {
|
4 |
+
--primary-color: #4f46e5;
|
5 |
+
--primary-light: #6366f1;
|
6 |
+
--primary-dark: #3730a3;
|
7 |
+
--secondary-color: #9333ea;
|
8 |
+
--accent-color: #ec4899;
|
9 |
+
--text-color: #0f172a;
|
10 |
+
--text-light: #64748b;
|
11 |
+
--bg-color: #f8fafc;
|
12 |
+
--card-bg: #ffffff;
|
13 |
+
--border-color: #e2e8f0;
|
14 |
+
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
15 |
+
--transition: all 0.3s ease;
|
16 |
+
--radius: 12px;
|
17 |
+
--header-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
18 |
+
}
|
19 |
+
|
20 |
+
/* Dark mode support */
|
21 |
+
.dark {
|
22 |
+
--text-color: #e2e8f0;
|
23 |
+
--text-light: #94a3b8;
|
24 |
+
--bg-color: #0f172a;
|
25 |
+
--card-bg: #1e293b;
|
26 |
+
--border-color: #334155;
|
27 |
+
}
|
28 |
+
|
29 |
+
/* Base container styling */
|
30 |
+
.gradio-container {
|
31 |
+
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
32 |
+
background-color: var(--bg-color);
|
33 |
+
color: var(--text-color);
|
34 |
+
max-width: 1200px;
|
35 |
+
margin: 0 auto;
|
36 |
+
padding: 2rem;
|
37 |
+
box-shadow: var(--shadow);
|
38 |
+
border-radius: var(--radius);
|
39 |
+
}
|
40 |
+
|
41 |
+
/* Header styling */
|
42 |
+
.header-container {
|
43 |
+
background: var(--header-gradient);
|
44 |
+
border-radius: var(--radius);
|
45 |
+
padding: 2rem;
|
46 |
+
margin-bottom: 2rem;
|
47 |
+
box-shadow: var(--shadow);
|
48 |
+
color: white;
|
49 |
+
display: flex;
|
50 |
+
align-items: center;
|
51 |
+
justify-content: center;
|
52 |
+
gap: 20px;
|
53 |
+
}
|
54 |
+
|
55 |
+
.header-container img {
|
56 |
+
width: 100px;
|
57 |
+
height: 100px;
|
58 |
+
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
|
59 |
+
transition: var(--transition);
|
60 |
+
}
|
61 |
+
|
62 |
+
.header-container img:hover {
|
63 |
+
transform: scale(1.05) rotate(5deg);
|
64 |
+
}
|
65 |
+
|
66 |
+
.header-container h1 {
|
67 |
+
font-size: 2.5rem;
|
68 |
+
font-weight: 700;
|
69 |
+
margin-bottom: 0.5rem;
|
70 |
+
background: linear-gradient(45deg, #fff, #f0f0ff);
|
71 |
+
-webkit-background-clip: text;
|
72 |
+
background-clip: text;
|
73 |
+
color: transparent;
|
74 |
+
display: inline-block;
|
75 |
+
}
|
76 |
+
|
77 |
+
.header-container a {
|
78 |
+
color: white;
|
79 |
+
text-decoration: none;
|
80 |
+
font-weight: 600;
|
81 |
+
border-bottom: 2px solid rgba(255, 255, 255, 0.5);
|
82 |
+
transition: var(--transition);
|
83 |
+
padding-bottom: 2px;
|
84 |
+
}
|
85 |
+
|
86 |
+
.header-container a:hover {
|
87 |
+
border-color: white;
|
88 |
+
}
|
89 |
+
|
90 |
+
/* Accordion styling */
|
91 |
+
.gr-accordion {
|
92 |
+
border: none !important;
|
93 |
+
background: var(--card-bg);
|
94 |
+
border-radius: var(--radius);
|
95 |
+
overflow: hidden;
|
96 |
+
box-shadow: var(--shadow);
|
97 |
+
margin-bottom: 1.5rem;
|
98 |
+
transition: var(--transition);
|
99 |
+
}
|
100 |
+
|
101 |
+
.gr-accordion:hover {
|
102 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
103 |
+
}
|
104 |
+
|
105 |
+
.gr-accordion-title {
|
106 |
+
background-color: var(--primary-color);
|
107 |
+
color: white !important;
|
108 |
+
padding: 1rem 1.5rem;
|
109 |
+
font-weight: 600;
|
110 |
+
cursor: pointer;
|
111 |
+
}
|
112 |
+
|
113 |
+
|
114 |
+
/* Input fields */
|
115 |
+
.gr-input, .gr-textarea {
|
116 |
+
width: 100%;
|
117 |
+
padding: 0.75rem 1rem;
|
118 |
+
border: 1px solid var(--border-color);
|
119 |
+
border-radius: var(--radius);
|
120 |
+
background-color: var(--card-bg);
|
121 |
+
transition: var(--transition);
|
122 |
+
font-size: 1rem;
|
123 |
+
color: var(--text-color);
|
124 |
+
}
|
125 |
+
|
126 |
+
.gr-input:focus, .gr-textarea:focus {
|
127 |
+
border-color: var(--primary-color);
|
128 |
+
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
|
129 |
+
outline: none;
|
130 |
+
}
|
131 |
+
|
132 |
+
.gr-form .gr-form-label {
|
133 |
+
font-weight: 600;
|
134 |
+
color: var(--text-color);
|
135 |
+
margin-bottom: 0.5rem;
|
136 |
+
}
|
137 |
+
|
138 |
+
/* Adding Dark mode handling */
|
139 |
+
/* Generate button - Modified to use header gradient in both light and dark mode */
|
140 |
+
.gr-button.gr-button-primary,
|
141 |
+
button.generate-btn,
|
142 |
+
#component-54 > div.svelte-1pf7t34 > div > button {
|
143 |
+
background: var(--header-gradient) !important;
|
144 |
+
color: white !important;
|
145 |
+
border: none !important;
|
146 |
+
border-radius: var(--radius) !important;
|
147 |
+
padding: 0.75rem 1.5rem !important;
|
148 |
+
font-size: 1rem !important;
|
149 |
+
font-weight: 600 !important;
|
150 |
+
cursor: pointer !important;
|
151 |
+
transition: var(--transition) !important;
|
152 |
+
width: 100% !important;
|
153 |
+
text-transform: uppercase !important;
|
154 |
+
letter-spacing: 1px !important;
|
155 |
+
box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.4) !important;
|
156 |
+
}
|
157 |
+
|
158 |
+
.gr-button.gr-button-primary:hover,
|
159 |
+
button.generate-btn:hover,
|
160 |
+
#component-54 > div.svelte-1pf7t34 > div > button:hover {
|
161 |
+
transform: translateY(-2px) !important;
|
162 |
+
box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4) !important;
|
163 |
+
}
|
164 |
+
|
165 |
+
.gr-button.gr-button-primary:active,
|
166 |
+
button.generate-btn:active,
|
167 |
+
#component-54 > div.svelte-1pf7t34 > div > button:active {
|
168 |
+
transform: translateY(1px) !important;
|
169 |
+
}
|
170 |
+
|
171 |
+
/* Gallery output */
|
172 |
+
.gr-gallery {
|
173 |
+
background-color: var(--card-bg);
|
174 |
+
border-radius: var(--radius);
|
175 |
+
padding: 1rem;
|
176 |
+
box-shadow: var(--shadow);
|
177 |
+
min-height: 300px;
|
178 |
+
}
|
179 |
+
|
180 |
+
.gr-gallery img {
|
181 |
+
border-radius: calc(var(--radius) - 4px);
|
182 |
+
transition: var(--transition);
|
183 |
+
object-fit: contain !important;
|
184 |
+
max-height: 100% !important;
|
185 |
+
max-width: 100% !important;
|
186 |
+
}
|
187 |
+
|
188 |
+
.gr-gallery img:hover {
|
189 |
+
transform: scale(1.02);
|
190 |
+
}
|
191 |
+
|
192 |
+
/* Output text area */
|
193 |
+
.output-text {
|
194 |
+
background-color: var(--card-bg);
|
195 |
+
border-radius: var(--radius);
|
196 |
+
padding: 1.5rem;
|
197 |
+
box-shadow: var(--shadow);
|
198 |
+
line-height: 1.6;
|
199 |
+
min-height: 100px;
|
200 |
+
color: var(--text-color);
|
201 |
+
}
|
202 |
+
|
203 |
+
/* Examples section - Fixed for dark mode */
|
204 |
+
.gr-examples-header {
|
205 |
+
font-weight: 600 !important;
|
206 |
+
margin: 2rem 0 1rem !important;
|
207 |
+
padding-bottom: 0.5rem !important;
|
208 |
+
/* Removed border-bottom to avoid duplicate lines */
|
209 |
+
color: var(--primary-light) !important;
|
210 |
+
font-size: 1.5rem !important;
|
211 |
+
display: block !important;
|
212 |
+
visibility: visible !important;
|
213 |
+
}
|
214 |
+
|
215 |
+
/* Handling duplicate lines coming up below the examples header */
|
216 |
+
.gradio-container hr {
|
217 |
+
display: none !important;
|
218 |
+
}
|
219 |
+
|
220 |
+
/* Fix horizontal separator styling if needed */
|
221 |
+
.gradio-container hr:first-of-type {
|
222 |
+
display: block !important;
|
223 |
+
border-top: 2px solid var(--primary-light) !important;
|
224 |
+
margin: 1rem 0 2rem 0 !important;
|
225 |
+
}
|
226 |
+
|
227 |
+
/* Fix dark mode examples grid */
|
228 |
+
.gr-examples {
|
229 |
+
display: grid;
|
230 |
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
231 |
+
gap: 1rem;
|
232 |
+
margin-top: 1.5rem;
|
233 |
+
}
|
234 |
+
|
235 |
+
/* Fix dark mode examples background */
|
236 |
+
.gr-sample {
|
237 |
+
background-color: var(--card-bg) !important;
|
238 |
+
border-radius: var(--radius);
|
239 |
+
overflow: hidden;
|
240 |
+
box-shadow: var(--shadow);
|
241 |
+
transition: var(--transition);
|
242 |
+
cursor: pointer;
|
243 |
+
}
|
244 |
+
|
245 |
+
.gr-sample:hover {
|
246 |
+
transform: translateY(-2px);
|
247 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
248 |
+
}
|
249 |
+
|
250 |
+
.gr-sample img {
|
251 |
+
width: 100%;
|
252 |
+
height: 150px;
|
253 |
+
object-fit: cover;
|
254 |
+
}
|
255 |
+
|
256 |
+
/* Examples table styling fixes for dark mode */
|
257 |
+
table {
|
258 |
+
background-color: transparent !important;
|
259 |
+
color: var(--text-color) !important;
|
260 |
+
}
|
261 |
+
|
262 |
+
table tr {
|
263 |
+
background-color: var(--card-bg) !important;
|
264 |
+
color: var(--text-color) !important;
|
265 |
+
}
|
266 |
+
|
267 |
+
table td {
|
268 |
+
background-color: var(--card-bg) !important;
|
269 |
+
color: var(--text-color) !important;
|
270 |
+
border-color: var(--border-color) !important;
|
271 |
+
}
|
272 |
+
|
273 |
+
/* Responsive adjustments */
|
274 |
+
@media (max-width: 768px) {
|
275 |
+
.gradio-container {
|
276 |
+
padding: 1rem;
|
277 |
+
}
|
278 |
+
|
279 |
+
.header-container {
|
280 |
+
flex-direction: column;
|
281 |
+
text-align: center;
|
282 |
+
padding: 1.5rem;
|
283 |
+
}
|
284 |
+
|
285 |
+
.header-container h1 {
|
286 |
+
font-size: 2rem;
|
287 |
+
}
|
288 |
+
}
|
289 |
+
|
290 |
+
/* Custom scrollbar */
|
291 |
+
::-webkit-scrollbar {
|
292 |
+
width: 8px;
|
293 |
+
height: 8px;
|
294 |
+
}
|
295 |
+
|
296 |
+
::-webkit-scrollbar-track {
|
297 |
+
background: var(--bg-color);
|
298 |
+
}
|
299 |
+
|
300 |
+
::-webkit-scrollbar-thumb {
|
301 |
+
background: var(--primary-light);
|
302 |
+
border-radius: 4px;
|
303 |
+
}
|
304 |
+
|
305 |
+
::-webkit-scrollbar-thumb:hover {
|
306 |
+
background: var(--primary-color);
|
307 |
+
}
|
308 |
+
|
309 |
+
/* Ensure proper viewport handling for mobile */
|
310 |
+
@media screen and (max-width: 767px) {
|
311 |
+
body, html {
|
312 |
+
overflow-x: hidden !important;
|
313 |
+
width: 100vw !important;
|
314 |
+
max-width: 100% !important;
|
315 |
+
}
|
316 |
+
|
317 |
+
/* Force central alignment for the entire app container */
|
318 |
+
.gradio-container {
|
319 |
+
padding: 1rem !important;
|
320 |
+
margin: 0 auto !important;
|
321 |
+
max-width: 100% !important;
|
322 |
+
width: 100% !important;
|
323 |
+
left: 0 !important;
|
324 |
+
right: 0 !important;
|
325 |
+
box-sizing: border-box !important;
|
326 |
+
overflow-x: hidden !important;
|
327 |
+
}
|
328 |
+
|
329 |
+
/* Fix header container on mobile */
|
330 |
+
.header-container {
|
331 |
+
flex-direction: column !important;
|
332 |
+
text-align: center !important;
|
333 |
+
padding: 1rem !important;
|
334 |
+
width: 100% !important;
|
335 |
+
box-sizing: border-box !important;
|
336 |
+
margin-left: auto !important;
|
337 |
+
margin-right: auto !important;
|
338 |
+
}
|
339 |
+
|
340 |
+
/* Ensure all content blocks are properly centered */
|
341 |
+
.main-content,
|
342 |
+
.input-column,
|
343 |
+
.output-column,
|
344 |
+
.gr-form,
|
345 |
+
.gr-panel,
|
346 |
+
.gr-box,
|
347 |
+
.gr-input,
|
348 |
+
.gr-text-input,
|
349 |
+
.gr-gallery,
|
350 |
+
.gr-button,
|
351 |
+
#component-54 > div.svelte-1pf7t34 > div > button {
|
352 |
+
width: 100% !important;
|
353 |
+
max-width: 100% !important;
|
354 |
+
margin-left: auto !important;
|
355 |
+
margin-right: auto !important;
|
356 |
+
box-sizing: border-box !important;
|
357 |
+
}
|
358 |
+
|
359 |
+
|
360 |
+
/* Fix examples area */
|
361 |
+
.gr-examples {
|
362 |
+
grid-template-columns: 1fr !important;
|
363 |
+
width: 100% !important;
|
364 |
+
}
|
365 |
+
|
366 |
+
/* Fix example tables on mobile */
|
367 |
+
table {
|
368 |
+
table-layout: fixed !important;
|
369 |
+
width: 100% !important;
|
370 |
+
}
|
371 |
+
|
372 |
+
table td {
|
373 |
+
word-break: break-word !important;
|
374 |
+
}
|
375 |
+
}
|
376 |
+
|
377 |
+
/* Fix for extreme narrow screens (small Android phones) */
|
378 |
+
@media screen and (max-width: 380px) {
|
379 |
+
.header-container h1 {
|
380 |
+
font-size: 1.8rem !important;
|
381 |
+
}
|
382 |
+
|
383 |
+
.header-container p {
|
384 |
+
font-size: 0.9rem !important;
|
385 |
+
}
|
386 |
+
|
387 |
+
/* Stack everything vertically */
|
388 |
+
.gr-panel {
|
389 |
+
display: flex !important;
|
390 |
+
flex-direction: column !important;
|
391 |
+
}
|
392 |
+
}
|
393 |
+
|
394 |
+
/* Custom fix for the container to always stay centered on any device */
|
395 |
+
#gradio-app {
|
396 |
+
display: flex !important;
|
397 |
+
justify-content: center !important;
|
398 |
+
width: 100% !important;
|
399 |
+
max-width: 100% !important;
|
400 |
+
margin: 0 auto !important;
|
401 |
+
overflow-x: hidden !important;
|
402 |
+
}
|
403 |
+
|
404 |
+
/* Ensure the root container doesn't cause horizontal scroll */
|
405 |
+
.root {
|
406 |
+
max-width: 100% !important;
|
407 |
+
overflow-x: hidden !important;
|
408 |
+
}
|