Skip to content

Instantly share code, notes, and snippets.

@jhough10
Created August 5, 2015 21:27
Show Gist options
  • Save jhough10/26c226c972a00465e020 to your computer and use it in GitHub Desktop.
Save jhough10/26c226c972a00465e020 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$sprites:
facebook "16px 16px",
twitter "32px 32px",
instagram "48px 48px"
;
@each $i in $sprites {
.icon-#{nth($i,1)}{
background-position: #{nth($i,2)};
}
}
.icon-facebook {
background-position: 16px 16px;
}
.icon-twitter {
background-position: 32px 32px;
}
.icon-instagram {
background-position: 48px 48px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment