Created
June 5, 2014 21:14
-
-
Save EvanLovely/8e12fa6c0bb8f017c290 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.sidebar { | |
@media only screen and (min-width: 641px) { | |
.alt & { | |
color: red; | |
.brandX & { | |
color: red; | |
} | |
.brandY & { | |
color: red; | |
} | |
} | |
} | |
} | |
/* Above and below creates same styling */ | |
.sidebar { | |
@media only screen and (min-width: 641px) { | |
.alt & { | |
&, | |
.brandX &, | |
.brandY & { | |
color: red; | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (min-width: 641px) { | |
.alt .sidebar { | |
color: red; | |
} | |
.brandX .alt .sidebar { | |
color: red; | |
} | |
.brandY .alt .sidebar { | |
color: red; | |
} | |
} | |
/* Above and below creates same styling */ | |
@media only screen and (min-width: 641px) { | |
.alt .sidebar, .brandX .alt .sidebar, .brandY .alt .sidebar { | |
color: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment