Created
July 21, 2013 12:19
-
-
Save glynrob/6048400 to your computer and use it in GitHub Desktop.
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
/* SPRITE STYLES */ | |
@import "snails/*.png"; | |
@mixin sprite_css($name) { | |
@include snails-sprite($name); | |
height: snails-sprite-height($name); | |
width: snails-sprite-width($name); | |
} | |
.options { | |
.option1{ | |
@include sprite_css(Burn-Snail-icon); | |
&:hover { | |
@include sprite_css(Turbo-Snail-icon); | |
} | |
} | |
.option2{ | |
@include sprite_css(Skidmark-Snail-icon); | |
&:hover { | |
@include sprite_css(Whiplash-Snail-icon); | |
} | |
} | |
.option3{ | |
@include sprite_css(Smoove-Move-Snail-icon); | |
&:hover { | |
@include sprite_css(White-Shadow-Snail-icon); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment