Skip to content

Instantly share code, notes, and snippets.

@tleen
Created May 10, 2016 13:52
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 tleen/4f3bc05becdcca0633d8edc499b3853d to your computer and use it in GitHub Desktop.
Save tleen/4f3bc05becdcca0633d8edc499b3853d to your computer and use it in GitHub Desktop.
scss social media list
$social-media-colors: facebook #3b5998, instagram #517fa4, twitter #00aced, tumblr #32506d, youtube #bb0000, linkedin #007bb6;
.social{
@each $pair in $social-media-colors {
$key: nth($pair, 1);
$value: nth($pair, 2);
.#{$key}{
color: $value;
&:hover{
color: desaturate($value, 30%);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment