Created
March 7, 2016 15:01
-
-
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/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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