Created
May 24, 2013 20:49
-
-
Save trumball/5646420 to your computer and use it in GitHub Desktop.
Glowing Anchor Links
CSS3 text shadows offer a unique method of styling your webpage typography. And more specifically this snippet is an excellent resource for custom creative links with glowing hover effects. I doubt this effect can be pulled off elegantly in the majority of websites, but if you have the patience to get it looking nice you are…
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
a { | |
color: #00e; | |
} | |
a:visited { | |
color: #551a8b; | |
} | |
a:hover { | |
color: #06e; | |
} | |
a:focus { | |
outline: thin dotted; | |
} | |
a:hover, a:active { | |
outline: 0; | |
} | |
a, a:visited, a:active { | |
text-decoration: none; | |
color: #fff; | |
-webkit-transition: all .3s ease-in-out; | |
} | |
a:hover, .glow { | |
color: #ff0; | |
text-shadow: 0 0 10px #ff0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment