Skip to content

Instantly share code, notes, and snippets.

@kaelig
Created April 1, 2015 12:57
Show Gist options
  • Save kaelig/42d2177ed091c878fcde to your computer and use it in GitHub Desktop.
Save kaelig/42d2177ed091c878fcde to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
%link-base {
color: green;
&:hover {
color: white;
text-decoration: none;
background-color: red;
}
}
a {
@extend %link-base;
color: red;
}
.wont-extend-hover a {
@extend %link-base;
background-color: white;
}
#will-extend-hover a {
@extend %link-base;
background-color: white;
}
a, .wont-extend-hover a, #will-extend-hover a {
color: green;
}
a:hover, #will-extend-hover a:hover {
color: white;
text-decoration: none;
background-color: red;
}
a {
color: red;
}
.wont-extend-hover a {
background-color: white;
}
#will-extend-hover a {
background-color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment