Demographic fix

mail@pastecode.io avatar
unknown
plain_text
23 days ago
1.2 kB
2
Indexable
Never
/*fix button theming WB- Eliezer*/
div.nav-tab{
    .nav-tab__tab.active{
        background-color: transparent;
        border-color: #fff;
        color: #fff;
        &:hover{
            border: 1px solid #fff;
            background-color: #fff;
            color: #050E3D;
        }
    }
    .nav-tab__tab{
        text-transform: none!important;
        border-color: #fff;
        background-color: #fff; 
        color: #050E3D;
        &:hover{
        background-color: transparent;
        border-color: #fff;
        color: #fff;
            }
        }
}
/*end*/
/*fix width*/
h2.title.lp-h2 {
    max-width: 100%;
    @media only screen and (max-width:768px){
        max-width: 100%;
    }
}
/*end*/



/*fix bar*/
div.population-age__bar {
    background-color: #ccc;
}
/*end*/


/*START fix button with bg*/
div.population-age__hint{
    color: #fff!important;
    background-color: #050E3D!important;
    &:after{
        background-color: #050E3D!important;
    }
}
p.overview-item__name--hint{
    &:after {
        background-color: #2A505D!important;
    }
    span.hint{
        background-color: #2A505D;
        color: #fff;
        &:after {
            background-color: #2A505D!important;
        }
    }
}
/*END*/
Leave a Comment