/* -*- coding: utf-8 -*- */
/* https://www.w3schools.com/Css/tryit.asp?filename=trycss_image_gallery_responsive */
div.gallery {
  position:relative;
}

div.gallery:hover {
}

div.gallery img {
  width: 100%;
  height: auto;
}


a[target="_blank"].imagelink:before {
  position:absolute;
  top: 0;
  bottom:0;
  left: 0;
  right:0;
  width: 100%;
  height: 100%;
  z-index: 100;
}


.gallery_responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .gallery_responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .gallery_responsive {
    width: 100%;
  }
}
