Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. .light {
  2. width: 100px;
  3. height: 100px;
  4. border-radius: 50%;
  5. animation: shadow 1s infinite alternate;
  6. }
  7.  
  8. @keyframes shadow {
  9. from {
  10. box-shadow: 0 0 55px 10px red;
  11. }
  12. to {
  13. box-shadow: 0 0 90px 20px red;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement