├── CONTRIBUTING.md ├── README.md ├── app.py ├── assets └── cheatsheet.css ├── content ├── __init__.py ├── about.py ├── dbc_components.py ├── misc_helpers.py ├── plotly_components.py ├── typography.py ├── utility_background.py ├── utility_border.py ├── utility_color.py ├── utility_display.py ├── utility_flex.py ├── utility_gutter.py ├── utility_opacity.py ├── utility_position.py ├── utility_sizing.py ├── utility_spacing.py └── utility_text.py ├── index_examples.py ├── requirements.txt └── utilities.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/app.py -------------------------------------------------------------------------------- /assets/cheatsheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/assets/cheatsheet.css -------------------------------------------------------------------------------- /content/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/about.py -------------------------------------------------------------------------------- /content/dbc_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/dbc_components.py -------------------------------------------------------------------------------- /content/misc_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/misc_helpers.py -------------------------------------------------------------------------------- /content/plotly_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/plotly_components.py -------------------------------------------------------------------------------- /content/typography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/typography.py -------------------------------------------------------------------------------- /content/utility_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_background.py -------------------------------------------------------------------------------- /content/utility_border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_border.py -------------------------------------------------------------------------------- /content/utility_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_color.py -------------------------------------------------------------------------------- /content/utility_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_display.py -------------------------------------------------------------------------------- /content/utility_flex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_flex.py -------------------------------------------------------------------------------- /content/utility_gutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_gutter.py -------------------------------------------------------------------------------- /content/utility_opacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_opacity.py -------------------------------------------------------------------------------- /content/utility_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_position.py -------------------------------------------------------------------------------- /content/utility_sizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_sizing.py -------------------------------------------------------------------------------- /content/utility_spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_spacing.py -------------------------------------------------------------------------------- /content/utility_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/content/utility_text.py -------------------------------------------------------------------------------- /index_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/index_examples.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dash>=2.0.0 2 | dash-bootstrap-components>=1.2 3 | -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnnMarieW/dash-bootstrap-cheatsheet/HEAD/utilities.py --------------------------------------------------------------------------------