Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,11 @@ background: linear-gradient(115deg,#4fcf70,#fad648,#a767e5,#12bcfe,#44ce7b);
|
|
11 |
animation: rotate 1.5s linear infinite;
|
12 |
}
|
13 |
background-image:url("colors-pattern.gif")
|
|
|
|
|
|
|
|
|
|
|
14 |
</style>
|
15 |
"""
|
16 |
|
|
|
11 |
animation: rotate 1.5s linear infinite;
|
12 |
}
|
13 |
background-image:url("colors-pattern.gif")
|
14 |
+
@keyframes rotate {
|
15 |
+
100%{
|
16 |
+
filter: hue-rotate(-360deg)
|
17 |
+
}
|
18 |
+
}
|
19 |
</style>
|
20 |
"""
|
21 |
|