web3-starter-py/boilerplates/dash/wrappers/style.py
osiris account 69bb4175f1 💾
2023-03-12 15:29:57 -07:00

45 lines
1.1 KiB
Python

# -*- coding: utf8 -*-
# Define dashboard styling
# -----------------------------
# --- Titles and strings ------
# -----------------------------
title_h1 = 'Big Title'
# -----------------------------
# --- elements ids ------------
# -----------------------------
# -----------------------------
# --- CSS style dictionaries --
# -----------------------------
color_palette = ['#052a4e', # dark blue
'#fd8283', # light red
'#e4faff'] # light blue
style_all = {'margin':'auto',
'padding':20,
'width':'95%',
'fontFamily':'helvetica',
'fontSize':'14',
'color':color_palette[0],
'background':color_palette[2],
}
style_title_h1 = {'textAlign':'left',
'color':color_palette[1],
'font-weight':'bold',
'fontSize':'32',
'text-transform':'uppercase',
'padding':20,
}
style_title_h2 = {'textAlign':'center',
'font-weight':'bold',
'text-transform':'uppercase',
'fontSize':'20',
}