elsaofarendelle

Rolling Links

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