update app
Browse files
app.py
CHANGED
|
@@ -305,6 +305,14 @@ css="""
|
|
| 305 |
max-width: 1000px;
|
| 306 |
}
|
| 307 |
#main-title h1 {font-size: 2.2em !important;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
"""
|
| 309 |
|
| 310 |
with gr.Blocks() as demo:
|
|
@@ -355,7 +363,7 @@ with gr.Blocks() as demo:
|
|
| 355 |
download_button = gr.DownloadButton(
|
| 356 |
label="Download Image",
|
| 357 |
visible=False,
|
| 358 |
-
|
| 359 |
)
|
| 360 |
|
| 361 |
gr.Examples(
|
|
|
|
| 305 |
max-width: 1000px;
|
| 306 |
}
|
| 307 |
#main-title h1 {font-size: 2.2em !important;}
|
| 308 |
+
|
| 309 |
+
.submit-btn {
|
| 310 |
+
background-color: #2980b9 !important;
|
| 311 |
+
color: white !important;
|
| 312 |
+
}
|
| 313 |
+
.submit-btn:hover {
|
| 314 |
+
background-color: #3498db !important;
|
| 315 |
+
}
|
| 316 |
"""
|
| 317 |
|
| 318 |
with gr.Blocks() as demo:
|
|
|
|
| 363 |
download_button = gr.DownloadButton(
|
| 364 |
label="Download Image",
|
| 365 |
visible=False,
|
| 366 |
+
elem_classes="submit-btn"
|
| 367 |
)
|
| 368 |
|
| 369 |
gr.Examples(
|