Skip to content

Instantly share code, notes, and snippets.

@nicholaskajoh
Created November 19, 2017 15:29
Show Gist options
  • Save nicholaskajoh/35702b2e0791c4329e80cde9d0d3e9ba to your computer and use it in GitHub Desktop.
Save nicholaskajoh/35702b2e0791c4329e80cde9d0d3e9ba to your computer and use it in GitHub Desktop.
main {
max-width: 1200px;
margin: 0 auto;
}
section {
display: flex;
flex-wrap: wrap;
}
article, aside { flex-basis: 100%; }
@media (min-width: 576px) {
article { flex: 3; }
aside { flex: 2 }
}
@media (min-width: 768px) {
article { flex: 7; }
aside { flex: 3 }
}
@media (min-width: 992px) {
article { flex: 1.5; }
aside { flex: 0.5 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment