Advertisement
Guest User

Untitled

a guest
Mar 25th, 2014
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. .columns-3 ul.products {
  2.     margin: 0 -5px;
  3. }
  4.  
  5. .columns-3 ul.products li.product {
  6.     box-sizing: border-box;
  7.     -moz-box-sizing: border-box;
  8.     margin-left: 0;
  9.     margin-right: 0;
  10.     padding: 0 5px;
  11.     width: 33.3%;
  12. }
  13.  
  14. @media (max-width: 959px) {
  15.     .columns-3 ul.products li.product,
  16.     .columns-3 ul.products li.product.last {
  17.         width: 33.3%;
  18.     }
  19. }
  20.  
  21. @media (max-width: 767px) {
  22.     .columns-3 ul.products li.product,
  23.     .columns-3 ul.products li.product.last {
  24.         width: 50%;
  25.     }
  26. }
  27.  
  28. @media (max-width: 479px) {
  29.     .columns-3 ul.products li.product,
  30.     .columns-3 ul.products li.product.last {
  31.         width: 100%;
  32.     }  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement