elsaofarendelle

Blurred Links

Aug 23rd, 2024
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. /* --- BLUR LINKS START --- */
  2.  
  3. .nav {
  4. position:fixed;
  5. font-size:50px;
  6. top: 300px;
  7. left: 275px;
  8. -ms-transform: rotate(-40deg);
  9. -webkit-transform: rotate(-40deg);
  10. transform: rotate(-40deg);
  11. }
  12.  
  13. .nav a {
  14. text-decoration:none;
  15. text-transform:uppercase;
  16. text-shadow:0px 0px 5px #e1e0de;
  17. color: #bbbbb3;
  18. -webkit-transition:all .5s ease-in-out;
  19. -moz-transition:all .5s ease-in-out;
  20. transition:all .5s ease-in-out;
  21. }
  22.  
  23.  
  24. .nav a:hover {
  25. text-decoration:none;
  26. text-transform:uppercase;
  27. text-shadow: none;
  28. color: #fff;
  29. -webkit-transition:all .5s ease-in-out;
  30. -moz-transition:all .5s ease-in-out;
  31. transition:all .5s ease-in-out;
  32. -webkit-filter: blur(2px)
  33. }
  34.  
  35. /* --- BLUR LINKS END --- */
Advertisement
Add Comment
Please, Sign In to add comment