Update static/style.css
Browse files- static/style.css +24 -8
static/style.css
CHANGED
@@ -75,15 +75,31 @@ button:hover {
|
|
75 |
mix-blend-mode: overlay;
|
76 |
}
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
.color-overlay {
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
/* Footer with wave-like pattern */
|
88 |
/*footer {
|
89 |
padding: 20px 0;
|
|
|
75 |
mix-blend-mode: overlay;
|
76 |
}
|
77 |
|
78 |
+
|
79 |
+
.background-container {
|
80 |
+
position: relative;
|
81 |
+
background-image: url('/static/psychedelic-pattern.png');
|
82 |
+
background-size: cover;
|
83 |
+
/* Ensure the container is large enough to display the content */
|
84 |
+
min-height: 100vh; /* Example height */
|
85 |
+
}
|
86 |
+
|
87 |
.color-overlay {
|
88 |
+
position: absolute;
|
89 |
+
top: 0;
|
90 |
+
left: 0;
|
91 |
+
right: 0;
|
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 */
|
100 |
+
66% { background-color: rgba(0, 0, 255, 0.6); } /* Blue with transparency */
|
101 |
+
100% { background-color: rgba(255, 0, 0, 0.6); } /* Back to Red */
|
102 |
+
}
|
103 |
/* Footer with wave-like pattern */
|
104 |
/*footer {
|
105 |
padding: 20px 0;
|