Skip to content

Instantly share code, notes, and snippets.

@spliner
Created July 19, 2017 22:04
Show Gist options
  • Save spliner/1f580726f7189803b7fdcc67d77412e2 to your computer and use it in GitHub Desktop.
Save spliner/1f580726f7189803b7fdcc67d77412e2 to your computer and use it in GitHub Desktop.
.holy-grail {
display: flex;
flex-direction: column;
}
.holy-grail__header {
flex: 0 0 100%;
height: 3rem;
padding: 1rem;
background-color: #3F51B5;
}
.holy-grail__footer {
flex: 0 0 100%;
height: 2rem;
padding: 1rem;
background-color: #3F51B5;
}
.holy-grail__body {
display: flex;
flex-direction: column;
}
.holy-grail__sidebar {
background-color: #ccc;
padding: 1rem;
}
.holy-grail__sidebar--first {
order: 1;
}
.holy-grail__sidebar--second {
order: 3;
}
.holy-grail__content {
padding: 1rem;
order: 2;
}
@media all and (min-width: 720px) {
.holy-grail__body {
flex-direction: row;
}
.holy-grail__sidebar {
flex: 0 0 180px;
}
.holy-grail__content {
flex: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment