-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.py
67 lines (62 loc) · 1.63 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- 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": "2vh",
"width": "100%",
"borderColor": "#0B4EA2",
"opacity": "unset",
}
),
width={"size": 3},
),
dbc.Col(
html.Hr(
style={
"borderWidth": "2vh",
"width": "100%",
"borderColor": "#EE1C24",
"opacity": "unset",
}
),
width={"size": 3},
),
dbc.Col(
html.Hr(
style={
"borderWidth": "2vh",
"width": "100%",
"borderColor": "#005BBB",
"opacity": "unset",
}
),
width={"size": 3},
),
dbc.Col(
html.Hr(
style={
"borderWidth": "2vh",
"width": "100%",
"borderColor": "#FFD400",
"opacity": "unset",
}
),
width={"size": 3},
),
],
className="g-0",
), # END OF FIRST ROW