Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Created March 13, 2014 17:37
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 KatieK2/9533103 to your computer and use it in GitHub Desktop.
Save KatieK2/9533103 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.1)
// Compass (v1.0.0.alpha.18)
// ----
@import "compass";
@mixin post-link ($class, $color, $hover) {
a.#{$class}:link {
color: $color;
}
a.#{$class}:hover {
color: $hover;
}
}
div.second {
@include post-link($class:"second", $color:red, $hover:white);
}
div.second a.second:link {
color: red;
}
div.second a.second:hover {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment