Advertisement
Hisabeel

How to put blurry effect on image?

Sep 28th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.21 KB | None | 0 0
  1. Procure por a:hover{ ou por a:hover { (use ctrl+f) depois coloque por baixo o seguinte:
  2.     color: transparent;
  3.     text-shadow: #000 0 0 5px;
  4.     text-decoration:none;
  5.  
  6. Se não funcionar, reponha todo o código (quero dizer: a:hover { até }) desta forma:
  7.     a:hover {
  8.     color: transparent;
  9.     text-shadow: #000 0 0 5px;
  10.     text-decoration:none;
  11.     }
  12.  
  13. ou se não funcionar novamente, coloque diretamente assim:
  14.     a:hover{
  15.     color: transparent;
  16.     text-shadow: #000 0 0 5px;
  17.     text-decoration:none;
  18.     }
  19.  
  20.  
  21. Tutorial original por Jada (http://neudest.tumblr.com/)
  22.  
  23.  
  24. x ----------------------------------------------------------------------------------------------------------------------------------- x
  25.  
  26.  
  27. Find a:hover{ or a:hover { (use ctrl+f) then put this code under it:
  28.     color: transparent;
  29.     text-shadow: #000 0 0 5px;
  30.     text-decoration:none;
  31.  
  32. If it doesn’t work, replace all of it (I mean the a:hover { ‘til the }) with this:
  33.     a:hover {
  34.     color: transparent;
  35.     text-shadow: #000 0 0 5px;
  36.     text-decoration:none;
  37.     }
  38.  
  39. or if it doesn’t work again, put this code instead:
  40.     a:hover{
  41.     color: transparent;
  42.     text-shadow: #000 0 0 5px;
  43.     text-decoration:none;
  44.     }
  45.  
  46.  
  47. Original tutorial by Jada (http://neudest.tumblr.com/)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement