ehristoforu
commited on
Commit
·
a4a0425
1
Parent(s):
ab2226a
Update app.py
Browse files
app.py
CHANGED
@@ -177,9 +177,23 @@ css = """
|
|
177 |
"""
|
178 |
|
179 |
with gr.Blocks(css=css) as demo:
|
180 |
-
gr.
|
181 |
-
|
182 |
-
""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
)
|
184 |
with gr.Group():
|
185 |
gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[4], height="auto")
|
|
|
177 |
"""
|
178 |
|
179 |
with gr.Blocks(css=css) as demo:
|
180 |
+
gr.HTML(
|
181 |
+
"""
|
182 |
+
<div style="text-align: center; margin: 0 auto;">
|
183 |
+
<div
|
184 |
+
style="
|
185 |
+
display: inline-flex;
|
186 |
+
align-items: center;
|
187 |
+
gap: 0.8rem;
|
188 |
+
font-size: 1.75rem;
|
189 |
+
"
|
190 |
+
>
|
191 |
+
<h1 style="font-weight: 900; margin-bottom: 7px;margin-top:5px">
|
192 |
+
Open Diffusion 1.0 Demo
|
193 |
+
</h1>
|
194 |
+
</div>
|
195 |
+
</div>
|
196 |
+
"""
|
197 |
)
|
198 |
with gr.Group():
|
199 |
gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[4], height="auto")
|