File "award-widget.scss"

Full Path: /home/adniftyx/public_html/wp-content/plugins/credio-addons/widgets/rs-award-widget/award-widget.scss
File size: 1.79 KB
MIME-type: text/plain
Charset: utf-8

@import '../../common';
.rs-award-wrapper {
    background-color: $page_color;
    .award-inner {
        padding: 30px;
        display: flex;
        flex-direction: column;
        border-radius: 4px;
        position: relative;

        .year {
            font-size: 18px;
            line-height: 30px;
            font-weight: 500;
            .top-area {
                margin: 0 0 5px 0;
                text-align: right;
                div {
                    text-align: center;
                }
                span {
                    font-size: 50px;
                    font-weight: 700;
                    line-height: 28px;
                    color: #e8eced;
                    display: block;
                }
            }
        }

        .award-middle-part {
            img {
                width: 80px;
                height: auto;
            }
            .logo-title {
                margin: 10px 0 0 0;
                font-size: 20px;
                line-height: 32px;
                font-weight: 500;
                text-transform: uppercase;
            }
        }

        .bottom-part {
            .title {
                margin: 75px 0 0 0;
                font-size: 18px;
                line-height: 32px;
                font-weight: 500;
                text-transform: capitalize;
             }
        }

        &:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            border-radius: 0 0 4px 4px;
            width: 0;
            background-color: #023B4A;
            transition: all 0.3s ease;
        }
        &:hover {
            &:after {
                width: 100%;
            }
        }
    }
}