Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
0998520
1
Parent(s):
bbe8e66
css
Browse files
app.py
CHANGED
|
@@ -138,7 +138,24 @@ title = """<h1 align="center">Stable Diffusion 3.5 with Florence-2 Captioner and
|
|
| 138 |
</center></p>
|
| 139 |
"""
|
| 140 |
|
| 141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
gr.HTML(title)
|
| 143 |
|
| 144 |
with gr.Row():
|
|
|
|
| 138 |
</center></p>
|
| 139 |
"""
|
| 140 |
|
| 141 |
+
custom_css = """
|
| 142 |
+
.input-group, .output-group {
|
| 143 |
+
border: 1px solid #e0e0e0;
|
| 144 |
+
border-radius: 10px;
|
| 145 |
+
padding: 20px;
|
| 146 |
+
margin-bottom: 20px;
|
| 147 |
+
background-color: #f9f9f9;
|
| 148 |
+
}
|
| 149 |
+
.submit-btn {
|
| 150 |
+
background-color: #2980b9 !important;
|
| 151 |
+
color: white !important;
|
| 152 |
+
}
|
| 153 |
+
.submit-btn:hover {
|
| 154 |
+
background-color: #3498db !important;
|
| 155 |
+
}
|
| 156 |
+
"""
|
| 157 |
+
|
| 158 |
+
with gr.Blocks(theme='bethecloud/storj_theme', css=custom_css) as demo:
|
| 159 |
gr.HTML(title)
|
| 160 |
|
| 161 |
with gr.Row():
|