_footer.scss 2.94 KB
#wrapper-footer {

    height:auto;
    min-height:180px;
    width:100%;
    background:#ffffff;
    padding:2.5rem 10%;
    margin-top:50px;
    border-left:1px solid white;
    -webkit-box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
    -moz-box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
    box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
    position: relative;

    @include media-breakpoint-down(sm) {
        padding-bottom:1rem;    
    }

    .site-footer {
        font-family: 'TradeGothic';
        display: flex;
        flex-direction: row;
        position: absolute;
        bottom:25px;
        left:50px;
        width:70%;

        & > div {
            flex:1;
        }

        .company-name {
            font-family: 'TradeGothic';
            font-size:14px;
            color: #666;
        }

        .first-address,.second-address {
            pre {
                font-family: 'TradeGothic';
                font-size:14px;
                color: #666;
                margin:0;
                line-height: 1.25;
            }
            a {
                margin-top:0.5rem;
                display: inline-block;
                font-size:14px;
            }
        }

        .footer-menu {
            ul {
                list-style: none;
                padding:0;
                line-height: 1.25;
                li a {
                    text-transform: uppercase;
                }
            }
        }


        @include media-breakpoint-down(sm) {
            width:100%;
            flex-direction: column;
            position: static;
            .footer-menu {
                margin-top:1rem;
                ul {
                    line-height: 1.5;
                }
            }
        }

    }

}


.social-menu {
    flex-direction: row;
    padding:0;
    list-style: none;
    display: flex;
    margin:0;
    margin-top:1.5rem;

    @include media-breakpoint-down(sm) {
        margin-top:1rem;
        margin-bottom:1rem;
    }

    a {
        font-size:0;
    }

    li {
        margin-right:1rem;
    }

    .facebook {
        a {
            display: inline-block;
            background:url("/wp-content/themes/understrap-child/images/facebook.svg");
            background-size: cover;
            height:35px;
            width:35px;
            display: block;
        }
    }
    .instagram {
        a {
            display: inline-block;
            background:url("/wp-content/themes/understrap-child/images/instagram.svg");
            background-size: cover;
            height:35px;
            width:35px;
            display: block;
        }
    }
    .linkedin {
        a {
            display: inline-block;
            background:url("/wp-content/themes/understrap-child/images/linkedin.svg");
            background-size: cover;
            height:35px;
            width:35px;
            display: block;
        }
    }

}