Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -132,20 +132,19 @@ def randomize_seed_fn(seed: int, randomize_seed: bool) -> int:
|
|
132 |
def progress_bar_html(label: str) -> str:
|
133 |
"""
|
134 |
Returns an HTML snippet for a thin progress bar with a label.
|
135 |
-
The progress bar is styled
|
136 |
"""
|
137 |
return f'''
|
138 |
<div style="display: flex; align-items: center;">
|
139 |
-
<span style="margin-right: 10px; font-size: 14px;
|
140 |
-
<div style="width: 110px; height: 5px; background-color: #
|
141 |
-
<div style="width: 100%; height: 100%; background:
|
142 |
</div>
|
143 |
</div>
|
144 |
<style>
|
145 |
-
@keyframes
|
146 |
-
0% {{
|
147 |
-
|
148 |
-
100% {{ background-position: 0% 50%; filter: brightness(1.2); }}
|
149 |
}}
|
150 |
</style>
|
151 |
'''
|
|
|
132 |
def progress_bar_html(label: str) -> str:
|
133 |
"""
|
134 |
Returns an HTML snippet for a thin progress bar with a label.
|
135 |
+
The progress bar is styled as a dark red animated bar.
|
136 |
"""
|
137 |
return f'''
|
138 |
<div style="display: flex; align-items: center;">
|
139 |
+
<span style="margin-right: 10px; font-size: 14px;">{label}</span>
|
140 |
+
<div style="width: 110px; height: 5px; background-color: #FFF0F5; border-radius: 2px; overflow: hidden;">
|
141 |
+
<div style="width: 100%; height: 100%; background-color: #FF69B4; animation: loading 1.5s linear infinite;"></div>
|
142 |
</div>
|
143 |
</div>
|
144 |
<style>
|
145 |
+
@keyframes loading {{
|
146 |
+
0% {{ transform: translateX(-100%); }}
|
147 |
+
100% {{ transform: translateX(100%); }}
|
|
|
148 |
}}
|
149 |
</style>
|
150 |
'''
|