Spaces:
Sleeping
Sleeping
Code changes
Browse files
app.py
CHANGED
|
@@ -401,7 +401,7 @@ def build_app():
|
|
| 401 |
|
| 402 |
with gr.Blocks(css=css_str) as demo:
|
| 403 |
gr.HTML(
|
| 404 |
-
"<div id='leaderboard-heading'>🧠↗️Brain2vec Leaderboard</div>"
|
| 405 |
)
|
| 406 |
gr.HTML(scoreboard_html)
|
| 407 |
gr.Markdown(docs_content)
|
|
|
|
| 401 |
|
| 402 |
with gr.Blocks(css=css_str) as demo:
|
| 403 |
gr.HTML(
|
| 404 |
+
"<div id='leaderboard-heading'>🧠↗️ Brain2vec Leaderboard</div>"
|
| 405 |
)
|
| 406 |
gr.HTML(scoreboard_html)
|
| 407 |
gr.Markdown(docs_content)
|
css.css
CHANGED
|
@@ -20,11 +20,16 @@ html, body {
|
|
| 20 |
}
|
| 21 |
|
| 22 |
#leaderboard-heading {
|
| 23 |
-
|
| 24 |
-
font-
|
| 25 |
-
|
| 26 |
-
margin: 0
|
| 27 |
-
padding: 0 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
| 29 |
|
| 30 |
/* Table: basic styling */
|
|
|
|
| 20 |
}
|
| 21 |
|
| 22 |
#leaderboard-heading {
|
| 23 |
+
text-align: center !important;
|
| 24 |
+
font-size: 3em !important;
|
| 25 |
+
font-weight: bold !important;
|
| 26 |
+
margin: 0 !important;
|
| 27 |
+
padding: 0 !important;
|
| 28 |
+
line-height: 1 !important;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
table.custom-board {
|
| 32 |
+
margin-top: 5px !important;
|
| 33 |
}
|
| 34 |
|
| 35 |
/* Table: basic styling */
|