Agent Intro and Bio
JohnMatthewLumba
plain_text
a year ago
844 B
8
Indexable
/*START - fix hyperlink */
.agent-details__list a {
text-decoration: none !important;
}
.agent-details__list a:hover {
color: #88CE17 !important;
}
.agent-details__list a{
position: relative;
display: inline-block;
vertical-align: top;
&:after, &:before{
content: """""""""""""""";
height: 1px;
position: absolute;
bottom: 0;
left: 0;
box-sizing: border-box;
outline: none;
transition: 0.4s;
}
&:before{
background-color: #fff;
width: 100%;
}
&:after{
width: 0%;
background-color: #88CE17;
transition: 0.4s;
}
&:hover{
text-decoration: none!important;
&:after{
width: 100%;
}
}
}
/*END - add line to hyperlink*/
Editor is loading...
Leave a Comment