Neighborhoods Page - POI

 avatar
LBautista
css
a month ago
803 B
3
Indexable
Never
/*START - fix popup info - WB Lloyd*/
div.score__help{
 .score__help-content a {
        font-weight: 400;
        position: relative;
        color:#FFF;
        transition: 0.4s;
        &:hover{
            color:#FFF;
        }
        &:before, &:after{
            transition: 0.4s;
            text-decoration: none;
            line-height: 1;
            content: "";
            height: 1px;
            position: absolute;
            bottom: 0;
            left: 0;
        }
        &:before {
            width: 100%!important;
            background-color: #ccc;
        }
        &:after{
            width: 0%!important;
            background-color: #FFF; 
        }
        &:hover:after{
            width: 100%!important;
        }
    }

}
/*END*/
Leave a Comment