CIRE GSM

 avatar
user_3758723130
css
a month ago
943 B
4
Indexable
Never
/*START -  reduce height of gsm to square*/
div.gallery-component__col {
    .gallery-card {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        height: 400px;
            &:before{
                background-color: rgba(0,0,0,0.3);
                transition-duration: 0.5s;
            }
            &:hover:before{
                background-color: rgba(0,0,0,0.5);
                transition-duration: 0.5s;
            }
    }
    padding-right: 10px;
    padding-left: 10px;
    @media only screen and (max-width: 768px) {
        .gallery-card {
            height: 350px;
        }
        flex-basis: 100%;
        padding-right: 5px;
        padding-left: 5px;
    }
    h3.lp-h3.gallery-card__title:after {
        opacity: 0;
        }
}
div.gallery-component__header{
    max-width: 1200px;
    margin-bottom: 40px;
} 
/*END -  reduce height of gsm to square*/
Leave a Comment