Advertisement
urgonic

hover spacing

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