Spaces:
Running
on
T4
Running
on
T4
rerank model
Browse files
app.py
CHANGED
@@ -136,6 +136,12 @@ st.markdown("""
|
|
136 |
# transform: translateX(-50%) scale(1.3);
|
137 |
# }
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
|
141 |
</style>
|
@@ -146,7 +152,6 @@ st.markdown("""
|
|
146 |
|
147 |
|
148 |
|
149 |
-
|
150 |
# Header with logo and title
|
151 |
col_logo, col_title = st.columns([32, 68])
|
152 |
with col_logo:
|
@@ -158,12 +163,12 @@ with spacer_col:
|
|
158 |
|
159 |
|
160 |
|
161 |
-
col1, col2, col3 = st.columns(
|
162 |
|
163 |
with col1:
|
164 |
st.markdown("""
|
165 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
166 |
-
<div class
|
167 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">🔍</div>
|
168 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">AI Search</div>
|
169 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
|
|
136 |
# transform: translateX(-50%) scale(1.3);
|
137 |
# }
|
138 |
|
139 |
+
.block-container {
|
140 |
+
max-width: 1150px;
|
141 |
+
margin: 0 auto;
|
142 |
+
}
|
143 |
+
|
144 |
+
|
145 |
|
146 |
|
147 |
</style>
|
|
|
152 |
|
153 |
|
154 |
|
|
|
155 |
# Header with logo and title
|
156 |
col_logo, col_title = st.columns([32, 68])
|
157 |
with col_logo:
|
|
|
163 |
|
164 |
|
165 |
|
166 |
+
col1, col2, col3 = st.columns([0.33, 0.33, 0.33])
|
167 |
|
168 |
with col1:
|
169 |
st.markdown("""
|
170 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
171 |
+
<div class="card" style="height: 240px;width: 350px;">
|
172 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">🔍</div>
|
173 |
<div class="card-text" style="font-size: 31px; color: #e46e08; ">AI Search</div>
|
174 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|