Advertisement
urgonic

blue + italics hover

Jul 11th, 2021
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <style>
  2. .links a{
  3. -webkit-transition: all .3s ease-in-out;
  4. -moz-transition: all .3s ease-in-out;
  5. -o-transition: all .3s ease-in-out;
  6. -ms-transition: all .3s ease-in-out;
  7. transition: all .3s ease-in-out;
  8. text-decoration: none;
  9. color: white;
  10. font-weight:bold;
  11. font-size:30px;
  12. font-family: Times;
  13.  
  14. }
  15.  
  16. .links a:hover {
  17. webkit-filter: blur(1px); /* Chrome, Safari, Opera */
  18. filter: blur(1px);
  19. font-style: italic;
  20. text-decoration: none !important;
  21. color: #000000;
  22.  
  23. -webkit-transition: all .3s ease-in-out;
  24. -moz-transition: all .3s ease-in-out;
  25. -o-transition: all .3s ease-in-out;
  26. -ms-transition: all .3s ease-in-out;
  27. transition: all .3s ease-in-out;
  28.  
  29. }
  30. </style>
  31.  
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement