Untitled

mail@pastecode.io avatar
unknown
plain_text
13 days ago
3.7 kB
1
Indexable
Never
/* SLIDER CSS */
html body .eg-banner .eg-container .eg-image img {
    width: 100%;
}

html body .banner__media+.banner__content {
    z-index: 99;
    align-items: baseline;
}

html body .eg-banner {
    z-index: 9;
}

html body .eg-banner [aria-label="Carousel Navigation"],
html body .shopify-section-group-header-group .color-background-1,
html body .eg-banner [data-action="stop"] {
    display: none;
}

html body .eg-banner [aria-label="Carousel Pagination"] {
    width: fit-content;
    margin: auto;
    position: absolute;
    z-index: 999;
    display: flex;
    grid-gap: 10px;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
}

html body .eg-banner [aria-label="Carousel Pagination"] button {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: var(--Gray, #BABABA);
    border: unset;
}

html body .eg-banner [aria-label="Carousel Pagination"] button.tns-nav-active {
    width: 27px;
    height: 15px;
    background: var(--Light-Blue, #2897DF) !important;
}

html body .banner__media+.banner__content .banner__box {
    background: transparent;
}

@media only screen and (max-width:510px) {
    html body .banner__media {
        height: 31rem !important;
    }

    html body .eg-banner .eg-container .eg-image img {
        height: 308px;
        object-fit: cover;
    }
}

@media only screen and (min-width:767px) {
    html body .banner__media+.banner__content .banner__heading {
        text-transform: capitalize;
        font-family: Poppins;
        font-size: 40px;
        font-weight: 600;
        line-height: 26px;
        text-align: left;
    }

    html body .banner__media+.banner__content .banner__text {
        display: none;
    }

    html body .banner__media+.banner__content .banner__buttons a:after {
        border-radius: 8px;
    }

    html body .banner__media+.banner__content .banner__buttons a {
        margin-top: 43px;
        border-radius: 8px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (max-width:767px) {
    html body .eg-mobsection {
        z-index: 9;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 0px 43px;
        height: fit-content !important;
    }

    html body .eg-mobsection h1 {
        font-family: Poppins;
        font-size: 32px;
        font-weight: 600;
        line-height: 32px;
        text-align: left;
        color: #000000;
        text-transform: capitalize;
        margin-top: 54px;
    }

    html body .eg-mobsection a {
        border-radius: 8px;
        background: #000000;
        height: 46px;
        font-family: Poppins;
        font-size: 16px;
        font-weight: 600;
        line-height: 26px;
        text-align: left;
        color: #FFFFFF;
        text-decoration: unset;
        text-transform: capitalize;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    html body .eg-banner [aria-label="Carousel Pagination"] {
        bottom: 43px;
    }

    html body .eg-banner [aria-label="Carousel Pagination"] button.tns-nav-active {
        height: 10px;
    }

    html body .eg-banner [aria-label="Carousel Pagination"] button {
        width: 10px;
        height: 10px;
    }
}

/* SLIDER CSS END*/

/* STICKY CSS */
html body .eg-stickyelement {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: var(--White, #FFFFFF);
    border-top: 1px solid var(--Gray, #BABABA);
    padding: 7px 4px;
}

/* STICKY CSS END*/
Leave a Comment