-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.py
36 lines (30 loc) · 950 Bytes
/
layout.py
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
# -*- coding: utf-8 -*-
# Original Code by Jorge Gomes for VOST Portugal
# -----------------------------------------------
# LIBRARIES
# -----------------------------------------------
# Import Dash and Dash Bootstrap Components
import dash
import dash_daq as daq
from dash import Input, Output, dcc, html, dash_table
import dash_bootstrap_components as dbc
# -----------------------------------------------
# TOP ROW
# -----------------------------------------------
header_row = dbc.Row(
[
dbc.Col(
html.Hr(
style={
"borderWidth": "1vh",
"width": "100%",
"borderColor": "#0B4EA2",
"backgroundColor":"#EE1C24",
"background":"#EE1C24",
"opacity": "unset",
}
),
xs=12, sm=12, md=12, lg=12, xl=12,
),
],
), # END OF FIRST ROW