Skip to content

Instantly share code, notes, and snippets.

@joshrcook
Created August 10, 2013 04:09
Show Gist options
  • Save joshrcook/6199016 to your computer and use it in GitHub Desktop.
Save joshrcook/6199016 to your computer and use it in GitHub Desktop.
Basic style.scss. Learn more at www.joshrcook.com
/* Import the base styles */
@import "base";
/* Import the styles for screen sizes above 481px */
@media screen and (min-width: 481px) {
@import "481up";
}
/* Import the styles for screen sizes above 768px
This is for iPad and above */
@media screen and (min-width: 768px) {
@import "768up";
}
/* Import styles for screen sizes above 960px
Most computer monitors */
@media screen and (min-width: 960px) {
@import "960up";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment