Skip to content

Instantly share code, notes, and snippets.

@jonsuh
Created August 17, 2015 16:43
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 jonsuh/9305971acdfa2ef89a45 to your computer and use it in GitHub Desktop.
Save jonsuh/9305971acdfa2ef89a45 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$social: (
facebook: #3b5998,
twitter: #55acee,
);
@mixin social-button-variant($brand) {
background-color: map-get($social, $brand);
}
@each $social-brand, $social-color in $social {
.button-social-#{$social-brand} {
@include social-button-variant($social-brand);
}
}
.button-social-facebook {
background-color: #3b5998;
}
.button-social-twitter {
background-color: #55acee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment