Skip to content

Instantly share code, notes, and snippets.

@evgeniy-vashchuk
Created February 10, 2018 12:33
Show Gist options
  • Save evgeniy-vashchuk/0b38bb04fdfc14fffdd08506f66bda90 to your computer and use it in GitHub Desktop.
Save evgeniy-vashchuk/0b38bb04fdfc14fffdd08506f66bda90 to your computer and use it in GitHub Desktop.
/*========== Desktop First ==========*/
// Large devices (desktops, less than 1200px)
@media only screen and (max-width: 1199px) {
}
// Medium devices (tablets, less than 992px)
@media only screen and (max-width: 991px) {
}
// Small devices (landscape phones, less than 768px)
@media only screen and (max-width: 767px) {
}
// Extra small devices (portrait phones, less than 576px)
@media only screen and (max-width: 575px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment