Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <div class="comment">
  2. ... user content here, including <img>'s
  3. </div>
  4.  
  5. .comment img {
  6. display: block;
  7. max-width: 512px;
  8. -webkit-transition: 350ms ease all;
  9. -moz-transition: 350ms ease all;
  10. -ms-transition: 350ms ease all;
  11. -o-transition: 350ms ease all;
  12. transition: 350ms ease all;
  13. margin: 20px auto;
  14. border: 2px solid #777;
  15. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  16. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  17. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  18. -webkit-filter: blur(20px);
  19.  
  20. }
  21.  
  22. .comment img:hover {
  23. -webkit-filter: blur(0px);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement