Skip to content

Instantly share code, notes, and snippets.

@xhluca
Last active July 10, 2018 20:21
Show Gist options
  • Save xhluca/638e683e245ea751bca62fd427e385ab to your computer and use it in GitHub Desktop.
Save xhluca/638e683e245ea751bca62fd427e385ab to your computer and use it in GitHub Desktop.
Dash App Template
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Banner
- Scalable Container
- Remove Undo
/* Banner
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.banner {
height: 75px;
background-color: rgb(66, 196, 247); /* Machine Learning Color is orange */
padding-top: 0px;
padding-left: 0px;
padding-right: 0px;
width: 100%;
margin-bottom: 10px;
}
.banner h2 {
color: white;
display: inline-block;
font-family: 'Open Sans', sans-serif;
font-size:4rem;
line-height:1;
}
.banner Img {
position: relative;
float: right;
height: 75px;
}
/* Scalable Container
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container.scalable {
width: 90%;
max-width: none;
}
/* Remove Undo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
._dash-undo-redo {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment