-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.py
More file actions
41 lines (34 loc) · 1.41 KB
/
header.py
File metadata and controls
41 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import dash_html_components as html
header_text = html.Div([
html.Div([
html.H1(['Molecular Dynamics Simulations:'], style={'lineHeight':1}),
html.H1([html.I('An Interactive Exploration of Atomistic Force Fields')], style={'lineHeight':1}),
], style={'textAlign':'center', 'lineHeight':1}, className = 'column'),
html.Div([
html.Div([
html.Div([
html.H3(['Caitlyn M. Wolf'], style={'lineHeight':1}),
], style={'textAlign':'center', 'lineHeight':0.2}, className = 'column'),
html.Div([
html.I([
'Clean Energy Institute Graduate Fellow 2019-2020',
html.Br(),
'Ph.D. Candidate, Department of Chemical Engineering',
html.Br(),
'University of Washington, Seattle, WA'
])
], style={'textAlign':'center'}),
html.Br(),
], className = 'col-sm-6'),
html.Div([
html.A([
html.Img(src='assets/images/cei-logo-white.png', style={'width':'300px'})
], href='https://www.cei.washington.edu/', style={'textAlign':'center'}),
], className='col-sm-6', style={'verticalAlign':'center', 'paddingTop':'25px'}),
], className='row')
],)
# header_text = html.Div([
# html.Div([
# 'test'
# ], className='')
# ], className='row')