Skip to content

Instantly share code, notes, and snippets.

@danwarfel
Created March 7, 2016 15:01
Show Gist options
  • Save danwarfel/fe9f4cd232c97e291500 to your computer and use it in GitHub Desktop.
Save danwarfel/fe9f4cd232c97e291500 to your computer and use it in GitHub Desktop.
Anchor Tags Highlighting and Underlining (from https://fontforge.github.io/en-US/downloads/mac/)
/* box-shadow underline */
.content a:not(.btn) {
box-shadow: inset 0 -5px 0 #ff772f;
color: inherit;
padding: 0 2px;
margin: 0 -2px;
display: inline-block;
}
/* hightlight on hover */
a:not(.btn):not(.brand):hover,
.breadcrumbs .doc-search-form .btn:hover {
color: white;
background: #ff772f;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment