Fix agent details

 avatar
unknown
plain_text
6 months ago
1.5 kB
4
Indexable

/*fix link, titles and mobile view*/
.contact li.full-width {
    text-transform: uppercase;
  
}
ul.contact a:not(.lp-socials__link){
       text-decoration: none;
       text-transform: none;
       font-weight: 400;
       position: relative!important;
       color: #000!important;
       &:hover{
           color: #000!important;
           opacity:1!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: #ccc!important;
           opacity:1;
       }
       &:after{
           width: 0%!important;
           background-color: #050E3D!important; 
       }
       &:hover:after{
           width: 100%!important;
       }
       @media only screen and (max-width: 1280px){
           overflow-wrap: anywhere;
           text-decoration: underline!important;
           white-space: normal!important;
               &:before {
                   background-color: transparent;
                   width: 0%!important;
               }
               &:after {
                   background-color: transparent;
               }
           &:hover:after{
               width: 0%!important;
           }
       }
}

@media only screen and (max-width:768px){
    .lp-socials li{
        margin: 12px 7px 0 7px;
    }

}
/*end*/
Editor is loading...
Leave a Comment