Skip to content

Instantly share code, notes, and snippets.

@una
Last active August 29, 2015 14:13
Show Gist options
  • Save una/93cbc2e47dde46a3eefe to your computer and use it in GitHub Desktop.
Save una/93cbc2e47dde46a3eefe to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<a class="blue-link"><span>H</span>ello</a>
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$blue: #00f;
@mixin hover-lighten {
span {
// currentColor works on its own
background: currentColor;
}
&:hover {
text-decoration: underline;
//currentColor breaks in a function
color: lighten(currentColor, 10%);
}
}
.blue-link {
@include hover-lighten;
color: #00f;
}
$color: "currentColor" is not a color for `lighten'
<a class="blue-link"><span>H</span>ello</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment