Skip to content

Instantly share code, notes, and snippets.

@Wakkos
Created April 29, 2014 14:30
Show Gist options
  • Save Wakkos/11402104 to your computer and use it in GitHub Desktop.
Save Wakkos/11402104 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.5)
// Compass (v1.0.0.alpha.18)
// ----
$sprite-item--list: en-gb sp af;
$sprite-item--size: 50px;
@mixin sprite($sprite-item--offset) {
$sprite-item--offset: $sprite-item--offset - 1;
background-position: $sprite-item--size*-$sprite-item--offset 0;
}
@for $i from 1 through length($sprite-item--list) {
$sprite-item: nth($sprite-item--list, $i);
.#{$sprite-item} {
@include sprite($i);
}
}
.en-gb {
background-position: 0px 0;
}
.sp {
background-position: -50px 0;
}
.af {
background-position: -100px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment