Spaces:
Running on Zero
Running on Zero
github-actions[bot] commited on
Commit ·
4e59076
1
Parent(s): 4264fdb
Deploy from GitHub - 2026-01-21 21:50:13
Browse files
app.py
CHANGED
|
@@ -1846,12 +1846,15 @@ custom_css = """
|
|
| 1846 |
Gradio 5.x Compatible
|
| 1847 |
============================================ */
|
| 1848 |
|
|
|
|
|
|
|
|
|
|
| 1849 |
/* Animated gradient background */
|
| 1850 |
body {
|
| 1851 |
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
|
| 1852 |
background-size: 400% 400%;
|
| 1853 |
animation: gradientBG 15s ease infinite;
|
| 1854 |
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
| 1855 |
min-height: 100vh;
|
| 1856 |
}
|
| 1857 |
|
|
@@ -1863,7 +1866,7 @@ body {
|
|
| 1863 |
|
| 1864 |
/* Universal font application */
|
| 1865 |
* {
|
| 1866 |
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
| 1867 |
}
|
| 1868 |
|
| 1869 |
/* Ensure text elements are visible */
|
|
|
|
| 1846 |
Gradio 5.x Compatible
|
| 1847 |
============================================ */
|
| 1848 |
|
| 1849 |
+
/* Import Google Fonts */
|
| 1850 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 1851 |
+
|
| 1852 |
/* Animated gradient background */
|
| 1853 |
body {
|
| 1854 |
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
|
| 1855 |
background-size: 400% 400%;
|
| 1856 |
animation: gradientBG 15s ease infinite;
|
| 1857 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
| 1858 |
min-height: 100vh;
|
| 1859 |
}
|
| 1860 |
|
|
|
|
| 1866 |
|
| 1867 |
/* Universal font application */
|
| 1868 |
* {
|
| 1869 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
|
| 1870 |
}
|
| 1871 |
|
| 1872 |
/* Ensure text elements are visible */
|