Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created January 29, 2014 08:24
Show Gist options
  • Save travismillerweb/8683842 to your computer and use it in GitHub Desktop.
Save travismillerweb/8683842 to your computer and use it in GitHub Desktop.
Sass - Social Media Icons Mixin
// Use with the naming convention for files
$social: "facebook", "twitter", "instagram";
@mixin social-icons {
&.social {
background-repeat: no-repeat;
transition:all 0.2s ease;
@each $icon in $social {
&.#{$icon} {
background-image:url("../img/social-#{$icon}-2.png");
}
}
&:hover {
opacity:0.7;
transition:all 0.2s ease;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment