Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. .element {
  2. height: 20%;
  3. width: 20%;
  4. margin: 0 auto;
  5. animation-name: stretch;
  6. animation-duration: .333s;
  7. animation-timing-function: ease-out;
  8. animation-delay: 0;
  9. animation-iteration-count: infinite;
  10. animation-fill-mode: none;
  11. animation-play-state: running;
  12. border-radius: 100%;
  13. background: radial-gradient(circle at 100px 100px, white, purple);
  14. border: 4px pink solid;
  15. }
  16.  
  17. @keyframes stretch {
  18. 0% {
  19. transform: scale(.1);
  20. }
  21. 30% {
  22. transform: scale(.9);
  23. }
  24. 100% {
  25. transform: scale(.1);
  26. }
  27. }
  28.  
  29. body,
  30. html {
  31. height: 100%;
  32. }
  33.  
  34. body {
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement