Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -154,7 +154,7 @@ body {
|
|
154 |
/* Targets the wrapper div or the markdown component */
|
155 |
.introduction-section p, .introduction-wrapper .prose p { /* Target paragraphs within the section */
|
156 |
font-family: 'Georgia',
|
157 |
-
font-size:
|
158 |
color: #495057; /* Slightly lighter text color */
|
159 |
margin-bottom: 1rem; /* Space between paragraphs */
|
160 |
max-width: 900px; /* Limit width for readability */
|
@@ -193,21 +193,21 @@ body {
|
|
193 |
/* --- Tab Styling --- */
|
194 |
.tab-buttons button { /* Style tab buttons */
|
195 |
font-size: 1.1em !important;
|
196 |
-
padding: 10px
|
197 |
font-weight: 500;
|
198 |
}
|
199 |
|
200 |
/* --- Leaderboard Table Styling --- */
|
201 |
#leaderboard-table {
|
202 |
margin-top: 1.5rem; /* Space above table */
|
203 |
-
font-size:
|
204 |
border: 1px solid #dee2e6;
|
205 |
box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Subtle shadow */
|
206 |
}
|
207 |
#leaderboard-table th {
|
208 |
background-color: #e9ecef; /* Header background */
|
209 |
font-weight: 600; /* Header font weight */
|
210 |
-
padding: 12px
|
211 |
text-align: left;
|
212 |
color: #495057;
|
213 |
white-space: nowrap; /* Prevent header text wrapping */
|
@@ -226,7 +226,7 @@ body {
|
|
226 |
/* Style for the model links within the table */
|
227 |
#leaderboard-table .model-link {
|
228 |
color: #0056b3; /* Slightly darker blue for links */
|
229 |
-
font-weight:
|
230 |
text-decoration: none;
|
231 |
}
|
232 |
#leaderboard-table .model-link:hover {
|
|
|
154 |
/* Targets the wrapper div or the markdown component */
|
155 |
.introduction-section p, .introduction-wrapper .prose p { /* Target paragraphs within the section */
|
156 |
font-family: 'Georgia',
|
157 |
+
font-size: 5.5em; /* Slightly larger than base */
|
158 |
color: #495057; /* Slightly lighter text color */
|
159 |
margin-bottom: 1rem; /* Space between paragraphs */
|
160 |
max-width: 900px; /* Limit width for readability */
|
|
|
193 |
/* --- Tab Styling --- */
|
194 |
.tab-buttons button { /* Style tab buttons */
|
195 |
font-size: 1.1em !important;
|
196 |
+
padding: 5px 10px !important;
|
197 |
font-weight: 500;
|
198 |
}
|
199 |
|
200 |
/* --- Leaderboard Table Styling --- */
|
201 |
#leaderboard-table {
|
202 |
margin-top: 1.5rem; /* Space above table */
|
203 |
+
font-size: 1.5em; /* Ensure table font size is consistent */
|
204 |
border: 1px solid #dee2e6;
|
205 |
box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Subtle shadow */
|
206 |
}
|
207 |
#leaderboard-table th {
|
208 |
background-color: #e9ecef; /* Header background */
|
209 |
font-weight: 600; /* Header font weight */
|
210 |
+
padding: 10px 12px; /* Header padding */
|
211 |
text-align: left;
|
212 |
color: #495057;
|
213 |
white-space: nowrap; /* Prevent header text wrapping */
|
|
|
226 |
/* Style for the model links within the table */
|
227 |
#leaderboard-table .model-link {
|
228 |
color: #0056b3; /* Slightly darker blue for links */
|
229 |
+
font-weight: 600;
|
230 |
text-decoration: none;
|
231 |
}
|
232 |
#leaderboard-table .model-link:hover {
|