/home/kueuepay/public_html/public/frontend/sass/pages/_blog.scss
/*-------------------------------------------------
    [ ### blog block ]
*/
.blog-item{
    .blog-thumb{
        height: 250px;
        border-radius: 15px;
        overflow: hidden;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
    }
    .blog-content{
        padding-top: 20px;
        .title{
            margin-bottom: 20px;
            line-height: 1.8em;
            a{
                transition: all 0.3s;
                &:hover{
                    color: $base--color;
                }
            }
        }
    }
    &:hover{
        .blog-thumb{
            img{
                transform: scale(1.1) rotate(3deg);
            }
        }
    }
}
.blog-details-section{
    .blog-item{
        .blog-thumb{
            height: 500px;
        }
    }
}
.blog-list {
    margin-top: 30px;
    margin-bottom: 20px;
    li{
        position: relative;
        font-weight: 400;
        padding-left: 35px;
        padding-bottom: 15px;
        &::before{
            position: absolute;
            top: 2px;
            left: 0;
            content: "\f00c";
            font-family: "Line Awesome Free";
            width: 20px;
            height: 20px;
            line-height: 20px;
            background-color: $base--color;
            border-radius: 50%;
            font-size: 14px;
            color: $white;
            text-align: center;
            font-weight: 900;
        }
    }
}
.blog-tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px dashed $border--base;
    padding-top: 20px;
    margin-top: 30px;
    span{
        font-weight: 600;
        margin-right: 10px;
    }
    .blog-footer-tag{
        li{
            display: inline-block;
            background: $base--color;
            padding: 3px 10px;
            font-weight: 500;
            font-size: 14px;
            border-radius: 5px;
        }
        li+li{
            margin-left: 10px;
        }
    }
}
.blog-comment-area{
    margin-top: 30px;
    .title{
        margin-bottom: 0 !important;
    }
}
User Registration
top