Advertisement
RenzXVI

Glow Links: Gray

May 4th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.73 KB | None | 0 0
  1. /* http://userstyles.org/users/152378 */
  2. @namespace url(http://www.w3.org/1999/xhtml);
  3.  
  4. @-moz-document url-prefix("http://"), url-prefix("https://"), url-prefix("about:") {
  5. @keyframes glow {
  6.  
  7.    50% {
  8.   box-shadow: 0 0 5px #696969, 0 0 10px #808080, 0 0 15px #A9A9A9
  9.  
  10.   }
  11.  
  12.  }
  13.  
  14. @-webkit-keyframes glow {
  15.  
  16.    50% {
  17.   box-shadow: 0 0 5px #696969, 0 0 10px #808080, 0 0 15px #A9A9A9
  18.   }
  19.  
  20.  }
  21.  
  22.  a:hover, a:focus {
  23.    animation-name: glow;
  24.    animation-duration: 2s;
  25.    animation-iteration-count: infinite;
  26.    -webkit-animation-name: glow;
  27.    -webkit-animation-duration: 2s;
  28.    -webkit-animation-iteration-count: infinite;
  29.    border-radius: 2px !important;
  30.    text-decoration: none !important;
  31.    outline: none !important;
  32.  }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement