osanseviero commited on
Commit
bfccab3
·
1 Parent(s): 9960f8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -90,8 +90,23 @@ examples = [
90
  ]
91
 
92
  with demo:
93
- gr.Markdown("# ESM-2 Protein Folding demo")
94
- gr.Markdown("You can input a single protein sequence and you get the predicted protein structure")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  with gr.Row():
96
  with gr.Box():
97
  name = gr.Textbox(label="Protein example", value=examples[1][0])
 
90
  ]
91
 
92
  with demo:
93
+ gr.HTML("""<div style="text-align: center; max-width: 700px; margin: 0 auto;">
94
+ <div
95
+ style="
96
+ display: inline-flex;
97
+ align-items: center;
98
+ gap: 0.8rem;
99
+ font-size: 1.75rem;
100
+ "
101
+ >
102
+ <h1 style="font-weight: 900; margin-bottom: 7px; margin-top: 5px;">
103
+ ESM-2 Protein Folding demo
104
+ </h1>
105
+ </div>
106
+ <p style="margin-bottom: 10px; font-size: 94%">
107
+ You can input a single protein sequence and you get the predicted protein structure
108
+ </p>
109
+ </div>""")
110
  with gr.Row():
111
  with gr.Box():
112
  name = gr.Textbox(label="Protein example", value=examples[1][0])