Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,12 +23,18 @@ page_bg_img = """
|
|
23 |
background-size: 600% 600%;
|
24 |
|
25 |
-webkit-animation: AnimationName 59s ease infinite;
|
|
|
|
|
26 |
|
27 |
@-webkit-keyframes AnimationName {
|
28 |
0%{background-position:0% 10%}
|
29 |
50%{background-position:100% 91%}
|
30 |
100%{background-position:0% 10%}
|
31 |
}
|
|
|
|
|
|
|
|
|
32 |
}
|
33 |
</style>
|
34 |
"""
|
|
|
23 |
background-size: 600% 600%;
|
24 |
|
25 |
-webkit-animation: AnimationName 59s ease infinite;
|
26 |
+
animation: AnimationName 59s ease infinite;
|
27 |
+
}
|
28 |
|
29 |
@-webkit-keyframes AnimationName {
|
30 |
0%{background-position:0% 10%}
|
31 |
50%{background-position:100% 91%}
|
32 |
100%{background-position:0% 10%}
|
33 |
}
|
34 |
+
@keyframes AnimationName {
|
35 |
+
0%{background-position:0% 10%}
|
36 |
+
50%{background-position:100% 91%}
|
37 |
+
100%{background-position:0% 10%}
|
38 |
}
|
39 |
</style>
|
40 |
"""
|