Emily Kroll

 avatarBnnthpnzln
Publica year ago17 Snippets
Search
Language
Sort by
📅 Created Date
Order

Global - GSM

cssa year ago
Fix padding
/* Start Fix Padding WB Benneth */
div.gallery-component{
        padding-top: 96px;
        padding-bottom: 46px;
    @media (max-width: 768px) {
        padding-top: 64px;
        padding-bottom: 44px;
    }
}
/* End */
Fix slick arrow
/*START - Featured Team - slick arrow fix*/
.lp-arrow.lp-arrow--next, .lp-arrow.lp-arrow--prev {
    border: 2px solid #000;
    background-color: transparent;
    &:before{
        border-color: #000;
    }
    &:hover{
        border: 2px solid #000;
        background-color: #000;
        &:before{
            border-color: #fff;
        }
    }
}
/*END*/
Fix Button Theming
/*START - mobile contact button - Floating*/
body>div.mobile-contact-wrapper{
   
    .lp-btn{
        border: 2px solid #000!important;
        background-color: transparent!important;
        color: #000!important;
        &:hover{
            border: 2px solid #000!important;
            background-color: #000!important;
            color: #fff!important;
        }
    }

}
/*end*/
Fix input fields
div.newsletter-signup__form-container{
    h2, .lp-text--subtitle, span.lp-tcr-message{
     color: #fff;
        
    }
    .newsletter-signup__form-item.lp-input{
        color: #fff;
    }
}

button.close{
    opacity: 1;
    color: #fff;
    @media only screen and (max-width:768px){
        color: #fff;
    }
}
Fix mobile view, button, and loader
@media only screen and (max-width: 768px) {
    .home-valuation .opening-wrapper {
        min-height: 0 !important;
    }
}

div.home-valuation.home-valuation--fullbleed div.background img {
    filter: brightness(.75);
}

@media only screen and (max-width:768px){
    div.home-valuation .content{
        padding-top:200px;
        padding-bottom:64px;
    }
}

/*start fix btn on mobile*/
div.home-valuation{
    .search-wrapper{
    
        @media only screen and (max-width:768px){
            button.lp-btn{
                border-color: #000!important;
                background-color: #000!important;
                color: #fff!important;
                font-size:11px!important;
                &:hover{
                border-color: #000!important;
                background-color: transparent!important;
                color: #000!important;
                }
                margin-bottom: 0;
            }
        }
        @media only screen and (max-width:767px){
            button.lp-btn{
                border-color:#fff!important;
                background-color: transparent!important;
                color:#fff!important;
                font-size:11px!important;
                &:hover{
                border-color:#fff!important;
                background-color: #fff!important;
                color: #000!important;
                }
                margin-bottom: 0;
            }
        }
    }
}


@media only screen and (max-width:768px){
    div.hv-form__footer .lp-btn {
        font-size:11px;
    }
}
/*end*/

/* start - loading bar color - launch wb benneth */
.search-wrapper.js-address-search .loader .line {
  background-color:#000 !important;
}
/* end - loading bar color */
  • Total 17 snippets
  • 1
  • 2
  • 3
  • 4