Skip to content

Instantly share code, notes, and snippets.

@RCowles
Created May 8, 2015 03:38
Show Gist options
  • Save RCowles/574ca9f7e0fe49b05e0b to your computer and use it in GitHub Desktop.
Save RCowles/574ca9f7e0fe49b05e0b to your computer and use it in GitHub Desktop.
@mixin link-highlight($height) {
border-bottom: none;
text-decoration: none;
box-shadow: inset 0 -4px 0 rgba(0, 170, 220, 0.2);
transition: all 200ms ease-in-out;
&:hover {
box-shadow: inset 0 -$height 0 rgba(0, 170, 220, 0.2);
}
}
.entry-content p a {
@include link-highlight(30px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment