Create styles.css
Browse files- static/styles.css +34 -0
static/styles.css
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Additional custom styles can be added here */
|
| 2 |
+
.image-container {
|
| 3 |
+
position: relative;
|
| 4 |
+
overflow: hidden;
|
| 5 |
+
border-radius: 0.5rem;
|
| 6 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.image-container img {
|
| 10 |
+
transition: transform 0.3s ease;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
.image-container:hover img {
|
| 14 |
+
transform: scale(1.02);
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
/* Custom loading animation */
|
| 18 |
+
@keyframes gradient {
|
| 19 |
+
0% {
|
| 20 |
+
background-position: 0% 50%;
|
| 21 |
+
}
|
| 22 |
+
50% {
|
| 23 |
+
background-position: 100% 50%;
|
| 24 |
+
}
|
| 25 |
+
100% {
|
| 26 |
+
background-position: 0% 50%;
|
| 27 |
+
}
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.gradient-bg {
|
| 31 |
+
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
|
| 32 |
+
background-size: 400% 400%;
|
| 33 |
+
animation: gradient 15s ease infinite;
|
| 34 |
+
}
|