Advertisement
theitd

eShop CSS

May 14th, 2020
1,575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. .col-md-3 {
  2.     width: 25%;
  3. }
  4.  
  5. @media (max-width: 767px) {
  6.     .col-md-3 {
  7.         width: 100%;
  8.     }
  9. }
  10.  
  11. @media (max-width: 768px) {
  12.     .col-md-3 {
  13.         width: 50%;
  14.     }
  15. }
  16.  
  17. .eshop-categories-list > .row {
  18.   display: -ms-flexbox;
  19.   display: -webkit-flex;
  20.   display: flex;
  21.   -ms-flex-wrap: wrap;
  22.   -webkit-flex-wrap: wrap;
  23.   flex-wrap: wrap;
  24.   /* 1 */
  25.   margin: 0;
  26.   padding: 0;
  27.   list-style: none;
  28. }
  29.  
  30. .eshop-categories-list > .row > * {
  31.   /* 1 */
  32.   -ms-flex: none;
  33.   -webkit-flex: none;
  34.   flex: none;
  35.   /* 2 */
  36.   margin: 0;
  37.   /* 3 */
  38.   float: left;
  39. }
  40. /*
  41.  * Remove margin from the last-child
  42.  */
  43. .eshop-categories-list > .row > * > :last-child {
  44.   margin-bottom: 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement