Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -309,7 +309,7 @@ css = """
|
|
309 |
.custom-markdown p, .custom-markdown li, .custom-markdown h2, .custom-markdown a, .custom-markdown strong {
|
310 |
font-size: 15px !important;
|
311 |
font-family: Arial, sans-serif !important;
|
312 |
-
color: black !important;
|
313 |
}
|
314 |
button {
|
315 |
color: orange !important;
|
@@ -325,11 +325,15 @@ button {
|
|
325 |
order: 3;
|
326 |
margin-top: 20px;
|
327 |
}
|
|
|
|
|
|
|
328 |
"""
|
329 |
|
330 |
|
331 |
|
332 |
|
|
|
333 |
transcriber_app = gr.Blocks(css=css, delete_cache=(60, 120))
|
334 |
|
335 |
with transcriber_app:
|
|
|
309 |
.custom-markdown p, .custom-markdown li, .custom-markdown h2, .custom-markdown a, .custom-markdown strong {
|
310 |
font-size: 15px !important;
|
311 |
font-family: Arial, sans-serif !important;
|
312 |
+
color: black !important; /* Ensure text is black */
|
313 |
}
|
314 |
button {
|
315 |
color: orange !important;
|
|
|
325 |
order: 3;
|
326 |
margin-top: 20px;
|
327 |
}
|
328 |
+
.footer h2, .footer li {
|
329 |
+
color: black !important; /* Ensure footer text is also black */
|
330 |
+
}
|
331 |
"""
|
332 |
|
333 |
|
334 |
|
335 |
|
336 |
+
|
337 |
transcriber_app = gr.Blocks(css=css, delete_cache=(60, 120))
|
338 |
|
339 |
with transcriber_app:
|