Skip to content

Instantly share code, notes, and snippets.

@AliAmini
Created February 2, 2015 18:17
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 AliAmini/2c89081840c9704acdc5 to your computer and use it in GitHub Desktop.
Save AliAmini/2c89081840c9704acdc5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
li{
$follow: (
1: 'tw',
2: pin,
3: in,
4: gp,
5: fb
);
content: #{map-get($follow, "1")};
@for $i from 1 through 5{
&.#{map-get($follow, $i)}{
background: url(img.png) no-repeat;
background-position: -170px - (( 13px + 32px )*$i) -150px;
}
}
}
li.tw {
background: url(img.png) no-repeat;
background-position: -215px -150px;
}
li.pin {
background: url(img.png) no-repeat;
background-position: -260px -150px;
}
li.in {
background: url(img.png) no-repeat;
background-position: -305px -150px;
}
li.gp {
background: url(img.png) no-repeat;
background-position: -350px -150px;
}
li.fb {
background: url(img.png) no-repeat;
background-position: -395px -150px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment