Global - Footer

 avatar
Bnnthpnzln
css
a month ago
2.1 kB
2
Indexable
Never
Melissa Temple
/*START - Global Footer Fix - WB Benneth*/

/*START - reduce padding between phone and address*/
@media (max-width: 768px){
footer#global-footer .footer .info-wrap {
    .type_user{
        margin-bottom: 21px;
         }
    }
}
@media (min-width: 1201px){
footer#global-footer .footer .info-wrap {
    .type_user{
        margin-bottom: 21px;
         }
    }  
}

@media (max-width: 768px) {
    footer .footer .first_text_footer {
        margin-bottom: 25px !important;
    }
}
/*END*/

/*START - reduce padding between client name and get in touch */
@media (max-width: 768px){
footer#global-footer .footer.no_newsletter h3 {
    margin-bottom: 26px !important;
    }
}
/*END*/

/*START footer: align Contact Name 1 + Email Icon*/
#global-footer {
    .info-wrap-contact_zone {
        h4 {

            @media (max-width: 768px) {
                line-height: 1.5;
            }
        }
    }
}
/*END - align Contact Name 1 + Email Icon*/

/*START - footer link underline*/
footer#global-footer{
    a.hvr_animation,.lp-link{
        position: relative!important;
        color:#000!important;
        transition: 0.4s;
        &:hover{
            color:#000!important;
        }
        &:before, &:after{
            transition: 0.4s;
            text-decoration: none!important;
            line-height: 1;
            content: """";
            height: 1px;
            position: absolute!important;
            bottom: 0;
            left: 0;
        }
        &:before {
            width: 100%!important;
            background-color: #ddd!important;
        }
        &:after{
            width: 0%!important;
            background-color: #000!important; 
        }
        &:hover:after{
            width: 100%!important;
        }
    }
}
/*END - footer link underline*/

/*START - footer lp and privacy policy font weight */
footer#global-footer .footer .info-privacy {
    .copy_zone a, .powered_zone a {
         font-weight: 400;
    }
}
/*END*/
/*END - Global Footer Fix*/
Leave a Comment