Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- div {
- color: white;
- animation: glow 1.25s infinite;
- }
- @keyframes glow {
- 0% {
- filter: drop-shadow(0px 0px 5px #F2F4E2);
- }
- 50% {
- filter: drop-shadow(0px 0px 5px #e0afb6);
- }
- 100% {
- filter: drop-shadow(0px 0px 5px #a3a8bb);
- }
- }
- </style>
- <div>glow</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement