Advertisement
martawijaya

DWI - new gallery mobile

Feb 17th, 2020
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. /* new gallery (image two column) */
  2.  
  3. @media(max-width: 575px) {
  4.  
  5.   .gallery-wrapper .gallery-lists .gallery-item {
  6.     flex: 50%;
  7.     padding: 5px;
  8.     min-width: 50%;
  9.     min-height: 50%;
  10.     max-width: 50%;
  11. }
  12.   .gallery-wrapper .gallery-lists .gallery-item a {
  13.     position: relative;
  14.     display: block;
  15.     height: 100%;
  16.   }
  17.  
  18.   .gallery-wrapper .gallery-lists .gallery-item .lazy-wrapper {
  19.     position: relative;
  20.     width: 100%;
  21.     height: 100%;
  22.   }
  23.  
  24.   .gallery-wrapper .gallery-lists .gallery-item .lazy-wrapper:before {
  25.     content: "";
  26.     width: 100%;
  27.     height: 0;
  28.     padding-bottom: 100%;
  29.     display:block;
  30.     background: #eee;
  31.     z-index: -1
  32.   }
  33.  
  34.   .gallery-wrapper .gallery-lists .gallery-item img {
  35.     position: absolute;
  36.     left: 0;
  37.     top: 0;
  38.     width: 100%;
  39.     height: 100%;
  40.     z-index: 2;
  41.     object-fit: cover;
  42.   }
  43.  
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement