elsaofarendelle

Vanishing Links

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