Blog grid

mail@pastecode.io avatar
unknown
plain_text
16 days ago
1.1 kB
2
Indexable
Never
 /*START - add margin to pagination items CS*/
 .J-paginationjs-page{
    a{
       margin: 0 5px; 
    }
}
/*END add margin to pagination items CS*/


div.blog-list__item-content .link{
        font-weight: 700;
        position: relative!important;
        color:#000!important;
        transition: 0.4s;
        &: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;
            opacity: 0.4;
        }
        &:after{
            width: 0%!important;
            background-color: #7C7A61!important; 
        }
        &:hover:after{
            width: 100%!important;
        }
}


.blog-list__item-content h4 {
    text-transform: capitalize;
}
Leave a Comment