Header Nav - Link Underline
LBautista
css
a year ago
737 B
8
Indexable
/*START - link underline - WB Matthew*/
div#modal-global-contact-us{
div.contact-popup__info a {
position: relative!important;
&:before, &:after{
transition: 0.4s;
text-decoration: none!important;
line-height: 1;
content: """";
height: 1px;
position: absolute!important;
bottom: 0;
left: 0;
}
&:before {
width: 100%!important;
background-color: #000!important;
}
&:after{
width: 0%!important;
background-color: #005890!important;
}
&:hover:after{
width: 100%!important;
}
}
}
/*END - link underline*/Editor is loading...
Leave a Comment