Skip to content

Instantly share code, notes, and snippets.

@bradrice
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save bradrice/42f665ca08c1e58af3c5 to your computer and use it in GitHub Desktop.

Select an option

Save bradrice/42f665ca08c1e58af3c5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div id="test"><a>A dark link</a></div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$color-link: #3097b4;
a {
color: $color-link;
text-decoration: underline;
&:hover {
color: lighten($color-link, 15%);
}
&:active {
color: desaturate(darken($color-link, 15%), 25%);
}
}
a {
color: #3097b4;
text-decoration: underline;
}
a:hover {
color: #5dbad4;
}
a:active {
color: #335a65;
}
<div id="test"><a>A dark link</a></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment