Fix link

mail@pastecode.io avatar
unknown
plain_text
a month ago
1.5 kB
1
Indexable
Never
h6 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.collection blockquote .read-more .link{
        text-decoration: none;
        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;
            }
        }
}
Leave a Comment