Advertisement
srikat

Untitled

Jan 29th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. body.woocommerce ul.products li.product,
  2. body.woocommerce-page ul.products li.product {
  3. width: 16.6%;
  4. }
  5.  
  6. @media only screen and (max-width: 1139px) {
  7.  
  8. body.woocommerce ul.products li.product,
  9. body.woocommerce-page ul.products li.product {
  10. width: 14.1%;
  11. }
  12.  
  13. }
  14.  
  15. @media only screen and (max-width: 768px) {
  16.  
  17. body.woocommerce ul.products li.product,
  18. body.woocommerce-page ul.products li.product {
  19. width: 40%;
  20. }
  21.  
  22. .woocommerce ul.products li.product:nth-child(2n),
  23. .woocommerce-page ul.products li.product:nth-child(2n) {
  24. margin-right: 2.992em;
  25. }
  26.  
  27. .woocommerce ul.products li.product {
  28. box-shadow: none;
  29. }
  30.  
  31. }
  32.  
  33. @media only screen and (max-width: 665px) {
  34.  
  35. body.woocommerce ul.products li.product,
  36. body.woocommerce-page ul.products li.product {
  37. width: 36%;
  38. }
  39.  
  40. }
  41.  
  42. @media only screen and (max-width: 500px) {
  43.  
  44. body.woocommerce ul.products li.product,
  45. body.woocommerce-page ul.products li.product {
  46. width: auto;
  47. }
  48.  
  49. body.woocommerce ul.products li.product:nth-child(2n),
  50. body.woocommerce-page ul.products li.product:nth-child(2n) {
  51. float: left;
  52. }
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement