Skip to content

Instantly share code, notes, and snippets.

@drewwells
Created December 7, 2014 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewwells/059f45052dd7a623e040 to your computer and use it in GitHub Desktop.
Save drewwells/059f45052dd7a623e040 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.0.2)
// ----
$animals: puma, sea-slug, egret, salamander;
@each $animal in $animals {
.#{$animal}-icon {
background-image: url('/images/#{$animal}.png');
}
}
.puma-icon {
background-image: url('/images/puma.png'); }
.sea-slug-icon {
background-image: url('/images/sea-slug.png'); }
.egret-icon {
background-image: url('/images/egret.png'); }
.salamander-icon {
background-image: url('/images/salamander.png'); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment