Spaces:
Running
on
T4
Running
on
T4
rerank model
Browse files
app.py
CHANGED
@@ -81,16 +81,18 @@ st.markdown("""
|
|
81 |
|
82 |
/* Header strip with icon */
|
83 |
.card-header {
|
84 |
-
font-size:
|
85 |
-
color: #AAA;
|
86 |
-
text-transform: uppercase;
|
87 |
-
|
88 |
-
padding-bottom: 8px;
|
89 |
margin-bottom: 12px;
|
90 |
display: flex;
|
91 |
justify-content: center;
|
92 |
align-items: center;
|
93 |
-
height:
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
|
96 |
.card-text {
|
@@ -175,7 +177,7 @@ with col1:
|
|
175 |
st.markdown("""
|
176 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
177 |
<div class="card">
|
178 |
-
<div class="card-header"
|
179 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">AI Search</div>
|
180 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
181 |
Explore ML search types, Re-ranking, Query rewriting and more on a retail dataset </div>
|
|
|
81 |
|
82 |
/* Header strip with icon */
|
83 |
.card-header {
|
84 |
+
font-size: 45px;
|
|
|
|
|
|
|
|
|
85 |
margin-bottom: 12px;
|
86 |
display: flex;
|
87 |
justify-content: center;
|
88 |
align-items: center;
|
89 |
+
height: 60px;
|
90 |
+
width: 60px;
|
91 |
+
margin: 0 auto 12px auto;
|
92 |
+
border-radius: 50%;
|
93 |
+
background: rgba(255, 255, 255, 0.08); /* faint soft background */
|
94 |
+
backdrop-filter: blur(4px); /* frosted effect */
|
95 |
+
box-shadow: 0 2px 6px rgba(0,0,0,0.4); /* subtle depth */
|
96 |
}
|
97 |
|
98 |
.card-text {
|
|
|
177 |
st.markdown("""
|
178 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
179 |
<div class="card">
|
180 |
+
<div class="card-header">🔍</div>
|
181 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">AI Search</div>
|
182 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
183 |
Explore ML search types, Re-ranking, Query rewriting and more on a retail dataset </div>
|