Home Valuation - Timeline 1

 avatar
LBautista
css
23 days ago
665 B
2
Indexable
Never
/*START - underline links - WB lloyd*/
.link{
    font-weight: 400;
    color: #000;
    &:before {
        width: 100%!important;
        background-color: #999!important;
    }
    &:after{
        width: 0%!important;
        background-color: #000!important; 
    }
    &:hover:after{
        width: 100%!important;
    }
    &:hover{
         color: #999!important;
     }
    
}
/*END*/
/*START Link on Mobile - WB lloyd*/
@media only screen and (max-width: 768px){
    .redesign .link {
        white-space: normal;
        text-decoration: underline;
		&:after, &:before {
        	width: 0%!important;
   		 }
    }
}
/*END*/
Leave a Comment