jesseab commited on
Commit
09ace6e
·
1 Parent(s): 402bbba

Code changes

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. css.css +10 -5
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
- font-size: 3em !important; /* Very big text */
24
- font-weight: 700 !important; /* Bold */
25
- text-align: center !important; /* Centered */
26
- margin: 0.2em 0 !important; /* Minimal vertical margin */
27
- padding: 0 !important; /* No extra padding */
 
 
 
 
 
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 */