Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -240,6 +240,12 @@ h1 {
|
|
240 |
text-align: center;
|
241 |
display: block;
|
242 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
"""
|
244 |
|
245 |
title = """<h1 align="center">Diffusers Image Outpaint Lightning</h1>
|
@@ -260,7 +266,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
260 |
with gr.Column(scale=2):
|
261 |
prompt_input = gr.Textbox(label="Prompt (Optional)")
|
262 |
with gr.Column(scale=1):
|
263 |
-
run_button = gr.Button("Generate Image / Diffusers Outpaint Image Lightning {Lightning v4, v5}")
|
264 |
|
265 |
with gr.Row():
|
266 |
model_selector = gr.Dropdown(
|
|
|
240 |
text-align: center;
|
241 |
display: block;
|
242 |
}
|
243 |
+
.submit-btn {
|
244 |
+
background-color: #2980b9 !important;
|
245 |
+
color: white !important;
|
246 |
+
}
|
247 |
+
.submit-btn:hover {
|
248 |
+
background-color: #3498db !important;
|
249 |
"""
|
250 |
|
251 |
title = """<h1 align="center">Diffusers Image Outpaint Lightning</h1>
|
|
|
266 |
with gr.Column(scale=2):
|
267 |
prompt_input = gr.Textbox(label="Prompt (Optional)")
|
268 |
with gr.Column(scale=1):
|
269 |
+
run_button = gr.Button("Generate Image / Diffusers Outpaint Image Lightning {Lightning v4, v5}", elem_classes="submit-btn")
|
270 |
|
271 |
with gr.Row():
|
272 |
model_selector = gr.Dropdown(
|