Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:33
Show Gist options
  • Save groenewege/3957636 to your computer and use it in GitHub Desktop.
Save groenewege/3957636 to your computer and use it in GitHub Desktop.
css - inline link 3 (arrow)
.inline-link-3 {
display: inline-block;
position: relative;
padding-left: 6px;
/* Font styles */
text-decoration: none;
color: #6AB3EC;
text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}
.inline-link-3:hover {
color: #3C9CE7;
}
.inline-link-3:before {
content: "\25BA";
font-size: 80%;
display: inline-block;
padding-right: 3px;
pointer-events: none;
}
.inline-link-3:hover:before {
color: #F2BF97;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment