nlozovan

Wordpress default gallery styling

May 16th, 2014
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. dl.gallery-item a {
  2. display: block;
  3. line-height: 0;
  4.  
  5. -webkit-transition: all .4s;
  6. -moz-transition: all .4s;
  7. -ms-transition: all .4s;
  8. -o-transition: all .4s;
  9. transition: all .4s;
  10. }
  11.  
  12. dl.gallery-item a:hover {
  13. -webkit-opacity: 0.7;
  14. -moz-opacity: 0.7;
  15. -ms-opacity: 0.7;
  16. -o-opacity: 0.7;
  17. opacity: 0.7;
  18.  
  19. -webkit-box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
  20. -moz-box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
  21. box-shadow: 0px 0px 16px 0px rgba(50, 50, 50, 0.75);
  22.  
  23. -webkit-transition: all .4s;
  24. -moz-transition: all .4s;
  25. -ms-transition: all .4s;
  26. -o-transition: all .4s;
  27. transition: all .4s;
  28.  
  29.  
  30. }
  31.  
  32. dl.gallery-item a img {
  33. width: 100%;
  34. height: auto;
  35. }
  36.  
  37. dl.gallery-item {
  38. padding-left: 5px;
  39. padding-right: 5px;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment