Advertisement
Guest User

Link turns Blue when you hover over it

a guest
Oct 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. a:hover {
  2. text-shadow: green 0 0 7px!important;
  3. text-shadow: var(--link-shadow-color, #191970) 0 0 var(--link-shadow-size, 7px)!important;
  4. color: cyan !important;
  5. color:var(--link-hover-color, blue)!important;
  6. text-decoration:none;
  7. -webkit-transition: all .25s linear 0s;
  8. -moz-transition: all .25s linear 0s;
  9. -ms-transition: all .25s linear 0s;
  10. -o-transition: all .25s linear 0s;
  11. transition: all .25s linear 0s;}
  12.  
  13.  
  14.  
  15. a:hover svg {
  16. fill:purple!important;
  17. fill:var(--link-hover-color, blue)!important;
  18. transition:fill .25s linear 0s!important;
  19. }
  20. a:hover g {
  21. fill:green!important;
  22. fill:var(--link-shadow-color, #191970);
  23. transition:fill .25s liear 0s!important;
  24. }
  25. :hover {
  26. -webkit-transition: all .25s linear 0s!important;
  27. -moz-transition: all .25s linear 0s!important;
  28. -ms-transition: all .25s linear 0s!important;
  29. -o-transition: all .25s linear 0s!important;
  30. transition: all .25s linear 0s!important;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement