Marcelo Lotif
commited on
Commit
·
5b6e29d
1
Parent(s):
1289818
Adding some more styles to the table
Browse files- src/display/css_html_js.py +15 -1
src/display/css_html_js.py
CHANGED
@@ -221,6 +221,10 @@ custom_css = """
|
|
221 |
font-size: 20px;
|
222 |
}
|
223 |
|
|
|
|
|
|
|
|
|
224 |
.intro-block {
|
225 |
padding: 20px;
|
226 |
}
|
@@ -276,11 +280,21 @@ custom_css = """
|
|
276 |
}
|
277 |
|
278 |
.llm-benchmark-tab-table .table-wrap table.table {
|
279 |
-
font-family:
|
|
|
280 |
overflow-y: auto;
|
281 |
overflow-x: auto;
|
282 |
}
|
283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
@media (prefers-color-scheme: dark) {
|
285 |
#left-container #black-logo {
|
286 |
display: none;
|
|
|
221 |
font-size: 20px;
|
222 |
}
|
223 |
|
224 |
+
.tab-buttons button:not([aria-selected="true"]) {
|
225 |
+
color: rgb(97, 97, 97);
|
226 |
+
}
|
227 |
+
|
228 |
.intro-block {
|
229 |
padding: 20px;
|
230 |
}
|
|
|
280 |
}
|
281 |
|
282 |
.llm-benchmark-tab-table .table-wrap table.table {
|
283 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
284 |
+
color: rgb(97, 97, 97);
|
285 |
overflow-y: auto;
|
286 |
overflow-x: auto;
|
287 |
}
|
288 |
|
289 |
+
.llm-benchmark-tab-table .table-wrap table.table tr td,
|
290 |
+
.llm-benchmark-tab-table .table-wrap table.table tr th {
|
291 |
+
border-bottom: 1px solid var(--border-color-primary);
|
292 |
+
}
|
293 |
+
|
294 |
+
.llm-benchmark-tab-table .table-wrap table.table a {
|
295 |
+
color: rgb(2, 136, 209) !important;
|
296 |
+
}
|
297 |
+
|
298 |
@media (prefers-color-scheme: dark) {
|
299 |
#left-container #black-logo {
|
300 |
display: none;
|