Update static/style.css
Browse files- static/style.css +5 -1
static/style.css
CHANGED
@@ -92,8 +92,12 @@ button:hover {
|
|
92 |
bottom: 0;
|
93 |
animation: colorChange 10s infinite;
|
94 |
mix-blend-mode: overlay; /* Adjust blending mode as needed */
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
-
|
97 |
@keyframes colorChange {
|
98 |
0% { background-color: rgba(255, 0, 0, 0.6); } /* Red with transparency */
|
99 |
33% { background-color: rgba(0, 255, 0, 0.6); } /* Green with transparency */
|
|
|
92 |
bottom: 0;
|
93 |
animation: colorChange 10s infinite;
|
94 |
mix-blend-mode: overlay; /* Adjust blending mode as needed */
|
95 |
+
z-index: 1;
|
96 |
+
}
|
97 |
+
.background-container > *:not(.color-overlay) {
|
98 |
+
position: relative;
|
99 |
+
z-index: 2;
|
100 |
}
|
|
|
101 |
@keyframes colorChange {
|
102 |
0% { background-color: rgba(255, 0, 0, 0.6); } /* Red with transparency */
|
103 |
33% { background-color: rgba(0, 255, 0, 0.6); } /* Green with transparency */
|