Advertisement
kyujouz

blur italicize code

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