Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,23 +18,23 @@ from data_integration import scrape_all_pages
|
|
18 |
|
19 |
page_bg_img = """
|
20 |
<style>
|
21 |
-
|
22 |
-
|
23 |
-
background
|
24 |
-
|
25 |
-
|
26 |
-
animation: AnimationName 59s ease infinite;
|
27 |
}
|
28 |
|
29 |
-
|
30 |
-
0%{
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
38 |
}
|
39 |
</style>
|
40 |
"""
|
|
|
18 |
|
19 |
page_bg_img = """
|
20 |
<style>
|
21 |
+
html, body, [data-testid="stAppViewContainer"], [data-testid="stHeader"], [data-testid="stToolbar"], .main {
|
22 |
+
height: 100%;
|
23 |
+
background: linear-gradient(45deg, #ff6ec4, #7873f5, #0fd850);
|
24 |
+
background-size: 400% 400%;
|
25 |
+
animation: gradientBackground 15s ease infinite;
|
|
|
26 |
}
|
27 |
|
28 |
+
@keyframes gradientBackground {
|
29 |
+
0% {
|
30 |
+
background-position: 0% 50%;
|
31 |
+
}
|
32 |
+
50% {
|
33 |
+
background-position: 100% 50%;
|
34 |
+
}
|
35 |
+
100% {
|
36 |
+
background-position: 0% 50%;
|
37 |
+
}
|
38 |
}
|
39 |
</style>
|
40 |
"""
|