Jerrycool commited on
Commit
eac1e3a
·
verified ·
1 Parent(s): 5b5d4cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -125,7 +125,7 @@ enhanced_css = """
125
  /* Base and Theme Overrides */
126
  body {
127
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
128
- font-size: 16px; /* Base font size */
129
  line-height: 1.6;
130
  background-color: #f8f9fa; /* Light background */
131
  color: #343a40; /* Default text color */
@@ -185,10 +185,12 @@ body {
185
  color: #495057;
186
  }
187
  .markdown-text a, .tabitem .prose a { /* Style links within markdown */
 
188
  color: #007bff;
189
  text-decoration: none;
190
  }
191
  .markdown-text a:hover, .tabitem .prose a:hover {
 
192
  text-decoration: underline;
193
  }
194
 
@@ -216,23 +218,28 @@ body {
216
  white-space: nowrap; /* Prevent header text wrapping */
217
  }
218
  #leaderboard-table td {
 
219
  padding: 8px 12px; /* Cell padding */
220
  border-bottom: 1px solid #e9ecef; /* Horizontal lines */
221
  vertical-align: middle; /* Center cell content vertically */
222
  }
223
  #leaderboard-table tr:nth-child(even) td {
 
224
  background-color: #f8f9fa; /* Zebra striping */
225
  }
226
  #leaderboard-table tr:hover td {
 
227
  background-color: #e2e6ea; /* Hover effect */
228
  }
229
  /* Style for the model links within the table */
230
  #leaderboard-table .model-link {
231
  color: #0056b3; /* Slightly darker blue for links */
 
232
  font-weight: 500;
233
  text-decoration: none;
234
  }
235
  #leaderboard-table .model-link:hover {
 
236
  text-decoration: underline;
237
  color: #003d80;
238
  }
 
125
  /* Base and Theme Overrides */
126
  body {
127
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
128
+ font-size: 1.3em; /* Base font size */
129
  line-height: 1.6;
130
  background-color: #f8f9fa; /* Light background */
131
  color: #343a40; /* Default text color */
 
185
  color: #495057;
186
  }
187
  .markdown-text a, .tabitem .prose a { /* Style links within markdown */
188
+ font-size: 1.3em;
189
  color: #007bff;
190
  text-decoration: none;
191
  }
192
  .markdown-text a:hover, .tabitem .prose a:hover {
193
+ font-size: 1.3em;
194
  text-decoration: underline;
195
  }
196
 
 
218
  white-space: nowrap; /* Prevent header text wrapping */
219
  }
220
  #leaderboard-table td {
221
+ font-size: 1.3em;
222
  padding: 8px 12px; /* Cell padding */
223
  border-bottom: 1px solid #e9ecef; /* Horizontal lines */
224
  vertical-align: middle; /* Center cell content vertically */
225
  }
226
  #leaderboard-table tr:nth-child(even) td {
227
+ font-size: 1.3em;
228
  background-color: #f8f9fa; /* Zebra striping */
229
  }
230
  #leaderboard-table tr:hover td {
231
+ font-size: 1.3em;
232
  background-color: #e2e6ea; /* Hover effect */
233
  }
234
  /* Style for the model links within the table */
235
  #leaderboard-table .model-link {
236
  color: #0056b3; /* Slightly darker blue for links */
237
+ font-size: 1.3em;
238
  font-weight: 500;
239
  text-decoration: none;
240
  }
241
  #leaderboard-table .model-link:hover {
242
+ font-size: 1.3em;
243
  text-decoration: underline;
244
  color: #003d80;
245
  }