Arrow Button on Mobile and Dropdown Hover

Mortgage Calculator Design Template: Coldwell Banker Brand
 avatar
Jfelizardo
plain_text
4 months ago
623 B
5
Indexable
CSS Color Theming
/*START - mortgage calcu arrow -*/
@media (max-width: 768px){
.results__expand svg {
    stroke: #fff !important;
    }
}
/*mortgage arrow icon theme mobile view */
@media (max-width: 768px){
div.results__expand {
    background-color: #B7B9BA;
    }
}
/*END*/

/*START - dropdown*/
.lp-input--light{
    color: #fff;
    border-color: #fff;
    &:after{
        color: #fff;
    }
}
.custom-select-toggle:before {
    background-color: #fff;
}
.custom-select-menu .custom-select-item {
    color: #000;
    &:hover {
        color: #fff;
        background-color: #012169;
    }
}
/*END*/
Leave a Comment