Last active
February 11, 2021 03:09
-
-
Save sophiezhng/d88ef06bf6c8c94540a65c1b0f6b7b6b to your computer and use it in GitHub Desktop.
css glow animation! (from w3 schools)
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
/* 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