Skip to content

Instantly share code, notes, and snippets.

@artlung
Created June 2, 2014 21:18
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 artlung/93799ed36ce923b0a6c4 to your computer and use it in GitHub Desktop.
Save artlung/93799ed36ce923b0a6c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$sites: ("twitter.com", "facebook.com", "linkedin.com");
@each $site in $sites {
a[href*="#{$site}"] {
background-image: url("/images/" + $site + ".png");
}
}
a[href*="twitter.com"] {
background-image: url("/images/twitter.com.png");
}
a[href*="facebook.com"] {
background-image: url("/images/facebook.com.png");
}
a[href*="linkedin.com"] {
background-image: url("/images/linkedin.com.png");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment