<!DOCTYPE html>
<!-- templates/galskel.html: skeleton for a responsive gallery
				      Modified by TAG, 29/10/2023
							 -->

<style>
div.img {
    border: 1px solid #ccc;
    background-color: #dddddd;
}

div.img:hover {
    border: 1px solid #777;
}

div.img img {
    width:100%;
    height:auto;
}

div.desc {
    padding: 3px;
    text-align: center;
    font-size: 11pt;
    font-style: italic;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 33.333%;
}

@media only screen and (max-width: 700px){
    .responsive{
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
</style>
