Skip to content

Instantly share code, notes, and snippets.

@JesseHerrick
Last active December 15, 2015 08:49
Show Gist options
  • Save JesseHerrick/5234245 to your computer and use it in GitHub Desktop.
Save JesseHerrick/5234245 to your computer and use it in GitHub Desktop.
Make text have a 'glow' effect.
.glowingtext {
text-shadow: none;
-webkit-transition: .25s linear 0s;
-moz-transition: .25s linear 0s;
-o-transition: .25s linear 0s;
transition: .25s linear 0s;
}
.glowingtext:hover {
text-shadow: -1px 1px 8px #ffffff, 1px -1px 8px #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment