Advertisement
Guest User

custom.css

a guest
Jun 19th, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.72 KB | None | 0 0
  1. div.dz-gallery img {
  2.     width: 100%;
  3. }
  4.  
  5. .dz-gallery {
  6.     width: 100%;
  7.     margin: 0 auto;
  8. }
  9.  
  10. .dz-grid {
  11.     display: flex;
  12. }
  13.  
  14. .dz-grid-col {
  15.     flex: 1;
  16.     padding: 0 .1em;
  17. }
  18.  
  19. .dz-grid-col--2, .dz-grid-col--3, .dz-grid-col--4 {
  20.     display: none;
  21. }
  22.  
  23. @media (min-width: 768px) {
  24.     .dz-gallery {
  25.         width: 90%;
  26.     }
  27.     h1 {
  28.         margin: 3em 0;
  29.     }
  30.     .dz-grid-col--2 { display: block; }
  31.     .dz-grid-col {
  32.         padding: 0 .5em;
  33.     }
  34.     img {
  35.         margin-bottom: .8em;
  36.     }
  37.     .dz-grid-item:hover {
  38.         cursor: pointer;
  39.  
  40.         .content {
  41.             opacity: 1;
  42.             transform: translateX(0);
  43.         }
  44.     }
  45. }
  46.  
  47. @media (min-width: 1080px) {
  48.     .dz-grid-col--3, .dz-grid-col--4 { display: block; }
  49.     .dz-gallery {
  50.         width: 80%;
  51.     }
  52.         h1 {
  53.             margin: 5em 0;
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement