Skip to content

Instantly share code, notes, and snippets.

@AdmireNL
Last active August 29, 2015 14:09
Show Gist options
  • Save AdmireNL/c4a05752cdd08713c166 to your computer and use it in GitHub Desktop.
Save AdmireNL/c4a05752cdd08713c166 to your computer and use it in GitHub Desktop.
Media Queries map with each loop
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$mqs: (
'500px': ('font-size': 12px, 'color': #000),
'1000px': ('font-size': 18px, 'color': #ccc),
);
body {
@each $width, $properties in $mqs {
@media (max-width: $width) {
@each $property, $value in $properties {
#{$property}: $value;
}
}
}
}
@media (max-width: 500px) {
body {
font-size: 12px;
color: #000;
}
}
@media (max-width: 1000px) {
body {
font-size: 18px;
color: #ccc;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment