Created
April 29, 2015 12:52
-
-
Save windgazer/5451eb688e7b576d2aa7 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.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
%highlightMenu { | |
text-shadow: 0.2em 0.2em rgba( 0,0,0 ,0.35 ); | |
} | |
@each $id in (gameUI,licenseUI,spoilsport) { | |
##{$id}:target ~ menu [href$="#{$id}"] { | |
@extend %highlightMenu; | |
} | |
} |
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
#gameUI:target ~ menu [href$="gameUI"], #licenseUI:target ~ menu [href$="licenseUI"], #spoilsport:target ~ menu [href$="spoilsport"] { | |
text-shadow: 0.2em 0.2em rgba(0, 0, 0, 0.35); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment