Neighborhood Details Page - POI

 avatar
Bnnthpnzln
css
21 days ago
805 B
2
Indexable
Never
Melissa Temple
/*START - fix popup info - WB Benneth*/
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