Spaces:
Running
on
T4
Running
on
T4
added print logs
Browse files
app.py
CHANGED
@@ -70,8 +70,26 @@ st.markdown("""
|
|
70 |
flex-direction: column;
|
71 |
justify-content: space-between;
|
72 |
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
74 |
|
|
|
|
|
|
|
75 |
.card:hover {
|
76 |
transform: scale(1.06);
|
77 |
transition: all 0.3s ease-in-out;
|
|
|
70 |
flex-direction: column;
|
71 |
justify-content: space-between;
|
72 |
position: relative;
|
73 |
+
z-index: 1;
|
74 |
+
overflow: hidden;
|
75 |
+
}
|
76 |
+
.card::before {
|
77 |
+
content: "";
|
78 |
+
position: absolute;
|
79 |
+
top: -4px;
|
80 |
+
left: -4px;
|
81 |
+
right: -4px;
|
82 |
+
bottom: -4px;
|
83 |
+
background: linear-gradient(45deg, #ff7eb9, #ff65a3, #7afcff, #feff9c, #fff740);
|
84 |
+
z-index: -1;
|
85 |
+
filter: blur(12px);
|
86 |
+
opacity: 0;
|
87 |
+
transition: opacity 0.3s ease-in-out;
|
88 |
}
|
89 |
|
90 |
+
.card:hover::before {
|
91 |
+
opacity: 1;
|
92 |
+
}
|
93 |
.card:hover {
|
94 |
transform: scale(1.06);
|
95 |
transition: all 0.3s ease-in-out;
|