Created
December 10, 2013 16:08
-
-
Save nicooprat/7893155 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$flag-dimension: 24px | |
$flags: en uk es nl | |
@each $flag in $flags | |
.flag-#{$flag} | |
background-position: 0 (index($flags,$flag) * $flag-dimension) |
This file contains 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
.flag-en { | |
background-position: 0 24px; | |
} | |
.flag-uk { | |
background-position: 0 48px; | |
} | |
.flag-es { | |
background-position: 0 72px; | |
} | |
.flag-nl { | |
background-position: 0 96px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment