Links

mail@pastecode.io avatar
unknown
plain_text
21 days ago
2.2 kB
1
Indexable
Never
/*fix underline links*/
div.score__help{
    .score__help-content a {
            font-weight: 400;
            color: #fff;
            text-transform: uppercase!important;
            &:hover{
                opacity: 0.8;
                &:after{
                    background-color: #fff;
                }
            }
        
    }
    /*START - fix link upon hover */
    .lp-link{
        text-transform: uppercase!important;
        font-weight: 400;
        position: relative!important;
        color: #fff!important;
        transition: 0.4s;
        opacity: 1 !important;
        &:hover{
            color: #fff!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: #999!important;
        }
        &:after{
            width: 0%!important;
            background-color: #fff!important; 
        }
        &:hover:after{
            width: 100%!important;
        }
}

/*END*/
}
.poi-table__card-link{
text-transform: none!important;
  text-decoration: none;
        font-weight: 400;
        position: relative!important;
        color: #000!important;
        transition: 0.4s;
        opacity: 1 !important;
        &:hover{
            color: #000!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;
        }
        &:after{
            width: 0%!important;
            background-color: #050E3D!important; 
        }
        &:hover:after{
            width: 100%!important;
        }
}
/*END*/
/*end*/
Leave a Comment