maxidl commited on
Commit
4778db0
·
1 Parent(s): 22863e3
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -204,7 +204,8 @@ css = """
204
  #warning {background: red;}
205
 
206
  .gradio-container {background-color: #FFFDFA !important;}
207
- .title {background-color: #8C1B13 !important; color: white !important;}
 
208
  """
209
  #4D8093 blue
210
  #767676 med grey
@@ -217,6 +218,8 @@ description = """Placeholder Description"""
217
 
218
  theme = gr.themes.Default()
219
  with gr.Blocks(theme=theme, css=css) as demo:
 
 
220
  title = gr.Markdown(title, elem_classes=["title"])
221
  description = gr.Markdown(description)
222
  instr = gr.Markdown("## Upload your paper in pdf format")
 
204
  #warning {background: red;}
205
 
206
  .gradio-container {background-color: #FFFDFA !important;}
207
+ .topbar {background-color: #8C1B13 !important; margin-left: -15px !important; margin-right: -15px !important}
208
+ .title {background-color: #FFFDFA !important; color: white !important;}
209
  """
210
  #4D8093 blue
211
  #767676 med grey
 
218
 
219
  theme = gr.themes.Default()
220
  with gr.Blocks(theme=theme, css=css) as demo:
221
+ topbar = gr.HTML("""<div>OpenReviewer</div>"""
222
+ , elem_classes=['topbar'])
223
  title = gr.Markdown(title, elem_classes=["title"])
224
  description = gr.Markdown(description)
225
  instr = gr.Markdown("## Upload your paper in pdf format")