mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Added some logo and styling to app
This commit is contained in:
parent
37780687eb
commit
f6adb3619b
4 changed files with 39 additions and 1 deletions
BIN
etl/customers/stonewater/map_app/assets/hestia-logo.png
Normal file
BIN
etl/customers/stonewater/map_app/assets/hestia-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
1
etl/customers/stonewater/map_app/assets/osmosis-Logo.svg
Normal file
1
etl/customers/stonewater/map_app/assets/osmosis-Logo.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 7.2 KiB |
BIN
etl/customers/stonewater/map_app/assets/stonewater-logo.png
Normal file
BIN
etl/customers/stonewater/map_app/assets/stonewater-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
|
|
@ -61,6 +61,43 @@ def layout():
|
|||
dbc.Col(
|
||||
html.Div(
|
||||
[
|
||||
# Banner with logos
|
||||
dbc.Row(
|
||||
[
|
||||
dbc.Col(
|
||||
html.Img(src="assets/stonewater-logo.png", height="50px"),
|
||||
width="auto"
|
||||
),
|
||||
dbc.Col(
|
||||
html.Img(src="assets/osmosis-Logo.svg", height="50px"),
|
||||
width="auto"
|
||||
),
|
||||
dbc.Col(
|
||||
html.Div(
|
||||
style={"color": "white", "font-size": "1.5rem", "font-weight": "bold"}
|
||||
),
|
||||
width=True,
|
||||
className="text-center"
|
||||
)
|
||||
],
|
||||
className="align-items-center",
|
||||
style={"background-color": "#027fa6", "padding": "10px"}
|
||||
),
|
||||
dbc.Row(
|
||||
[
|
||||
dbc.Col("Powered by", style={"color": "#027fa6", "fontSize": "1rem", 'zIndex': 10}, width="auto"),
|
||||
dbc.Col(
|
||||
html.A(
|
||||
html.Img(src="assets/hestia-logo.png", height="50px"),
|
||||
href="https://hestia.homes",
|
||||
),
|
||||
width="auto",
|
||||
style={"margin-left": "-60px"}
|
||||
),
|
||||
],
|
||||
justify='left',
|
||||
align="center"
|
||||
),
|
||||
html.H1(
|
||||
"Stonewater Survey Map",
|
||||
style={"font-size": "2.5rem", "font-weight": "bold", "margin-bottom": "20px"}
|
||||
|
|
@ -79,7 +116,7 @@ def layout():
|
|||
dbc.Row(
|
||||
dbc.Col(
|
||||
make_map(locations=locations),
|
||||
width=12,
|
||||
width=10,
|
||||
align="center",
|
||||
className="text-center"
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue