Skip to content

Instantly share code, notes, and snippets.

@nicollecastrog
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicollecastrog/29ce3b5838f56a0d985a to your computer and use it in GitHub Desktop.
Save nicollecastrog/29ce3b5838f56a0d985a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$media-tablet: 'screen and (max-width:800px)';
@media #{$media-tablet} {
p {
color: blue;
}
}
@media screen and (max-width: 800px) {
p {
color: blue;
}
}
@nicollecastrog
Copy link
Author

Using SASS (well, SCSS in this case) for CSS media queries

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment