Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,26 +18,23 @@ from data_integration import scrape_all_pages
|
|
18 |
|
19 |
page_bg_img = f"""
|
20 |
<style>
|
21 |
-
|
22 |
-
background
|
23 |
-
background-size:
|
24 |
-
|
25 |
-
|
26 |
-
}}
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
background-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
right: 2rem;
|
40 |
-
}}
|
41 |
</style>
|
42 |
"""
|
43 |
st.markdown(page_bg_img, unsafe_allow_html=True)
|
|
|
18 |
|
19 |
page_bg_img = f"""
|
20 |
<style>
|
21 |
+
.gradient-background {
|
22 |
+
background: linear-gradient(331deg,deepskyblue,darkviolet,blue);
|
23 |
+
background-size: 180% 180%;
|
24 |
+
animation: gradient-animation 18s ease infinite;
|
25 |
+
}
|
|
|
26 |
|
27 |
+
@keyframes gradient-animation {
|
28 |
+
0% {
|
29 |
+
background-position: 0% 50%;
|
30 |
+
}
|
31 |
+
50% {
|
32 |
+
background-position: 100% 50%;
|
33 |
+
}
|
34 |
+
100% {
|
35 |
+
background-position: 0% 50%;
|
36 |
+
}
|
37 |
+
}
|
|
|
|
|
38 |
</style>
|
39 |
"""
|
40 |
st.markdown(page_bg_img, unsafe_allow_html=True)
|