Skip to content

Instantly share code, notes, and snippets.

@sophiezhng
Last active February 11, 2021 03:09
Show Gist options
  • Save sophiezhng/d88ef06bf6c8c94540a65c1b0f6b7b6b to your computer and use it in GitHub Desktop.
Save sophiezhng/d88ef06bf6c8c94540a65c1b0f6b7b6b to your computer and use it in GitHub Desktop.
css glow animation! (from w3 schools)
/* code blocks */
code{
color: white;
-webkit-animation: glow 1s ease-in-out infinite alternate;
-moz-animation: glow 1s ease-in-out infinite alternate;
animation: glow 1s ease-in-out infinite alternate;
}
pre {
background-color: #222;
border-radius: 12px;
padding: 4px 8px ;
overflow-x: auto;
}
/* slightly edited glow animation from w3schools ;)*/
@-webkit-keyframes glow {
from {
text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #e60073, 0 0 4px #e60073, 0 0 5px #e60073, 0 0 6px #e60073, 0 0 7px #e60073;
}
to {
text-shadow: 0 0 2px #fff, 0 0 3px #ff4da6, 0 0 4px #ff4da6, 0 0 5px #ff4da6, 0 0 6px #ff4da6, 0 0 7px #ff4da6, 0 0 8px #ff4da6, 0 0 9px #ff4da6, 0 0 10px #ff4da6, 0 0 11px #ff4da6, 0 0 12px #ff4da6;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment