
/*
    Liquo - Filterable and Responsive Image Gallery
    Version 1.0.0
    Ryan Fitzgerald
    https://RyanFitzgerald.ca/
    ---
    Repo: http://github.com/ryanfitzgerald/liquo
    Issues: http://github.com/ryanfitzgerald/liquo/issues
    Licensed under MIT Open Source
*/

.liquo-gallery {
    margin: 0;
    padding: 0;
}

.liquo-gallery li {
    list-style-type: none;
    display: inline-block;
    display: flex; /* contexte sur le parent */
    flex-direction: column; /* direction d'affichage verticale */
    justify-content: bottom; /* alignement vertical */
    padding:0;
}
.liquo-gallery li span{
    display: block; position: absolute;
    margin: auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 2vh;
    font-weight: 500;
    background: rgba(0,0,0,.7);
}


.liquo-gallery li span:hover{
    display: block
}