Update static/style.css
Browse files- static/style.css +23 -0
static/style.css
CHANGED
@@ -90,7 +90,30 @@ footer {
|
|
90 |
text-align: center;
|
91 |
color: white;
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
/* Media queries for responsiveness */
|
95 |
@media (max-width: 768px) {
|
96 |
/* Adjust styles for smaller screens */
|
|
|
90 |
text-align: center;
|
91 |
color: white;
|
92 |
}
|
93 |
+
@keyframes gradient-and-color-animation {
|
94 |
+
0% {
|
95 |
+
background-color: blue; /* Example color */
|
96 |
+
background-position: 0% 50%;
|
97 |
+
}
|
98 |
+
50% {
|
99 |
+
background-color: green; /* Example color */
|
100 |
+
background-position: 100% 50%;
|
101 |
+
}
|
102 |
+
100% {
|
103 |
+
background-color: red; /* Example color */
|
104 |
+
background-position: 0% 50%;
|
105 |
+
}
|
106 |
+
}
|
107 |
|
108 |
+
/* footer {
|
109 |
+
padding: 20px 0;
|
110 |
+
background-image: linear-gradient(45deg, #ff00ab, #002bff, #00ffd5, #48ff00, #fffb00, #ff7300, #ff0000);
|
111 |
+
background-size: 300% 300%;
|
112 |
+
animation: gradient-and-color-animation 15s ease infinite;
|
113 |
+
text-align: center;
|
114 |
+
color: white;
|
115 |
+
}
|
116 |
+
*/
|
117 |
/* Media queries for responsiveness */
|
118 |
@media (max-width: 768px) {
|
119 |
/* Adjust styles for smaller screens */
|