Advertisement
kyujouz

expand code

Jun 27th, 2021
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <style>
  2. #text01 {
  3. text-decoration: none;
  4. font-size: 1em;
  5. font-weight:bold;
  6.  
  7. }
  8. a:hover {
  9. letter-spacing:1.5px;
  10. color:white;
  11. transition:.3s;
  12. text-decoration: none;
  13. }
  14. a { letter-spacing:normal; transition:.3s;}
  15. .poop {
  16. -webkit-transform: rotateZ(350deg);
  17. transform: rotateZ(350deg);
  18. z-index:222222;
  19. animation: pop 1s infinite;
  20. -webkit-animation: pop 1s infinite;
  21.  
  22. }
  23. @keyframes pop {
  24. from {
  25. transform:scale(0.90)
  26. }
  27. 50% {
  28. transform:scale(1.01)
  29. }
  30. to {
  31. transform:scale(0.90)
  32. }
  33. }
  34. @-webkit-keyframes pop {
  35. from {
  36. -webkit-transform:scale(0.95)
  37. }
  38. 50% {
  39. -webkit-transform:scale(1)
  40. }
  41. to {
  42. -webkit-transform:scale(0.95)
  43. }
  44. }
  45. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement