Viewing File: /home/ubuntu/walnutminds-ecom-frontend-base/src/components/Static/StaticPage.css

.static-page-bg{
    /* background-image: url(../../../public/images/static-bg.png); */
    background-size: cover;
    height: 30vh;
    position: relative;
}
.static-page-bg::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
}
.static-banner-content{
        display: flex;
            align-items: center;
            justify-content: center;
            height: 30vh;
            position: relative;
}
.static-banner-content h2{
    color: var(--secondary-color);
    font-size: 2em;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}
.static-page-content h3{
    color: var(--tertiary-color);
    font-weight: 600;
    font-size: 1.8em;
}
.static-page-content p {
    color: var(--quaternary-color);
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.1;
}
.static-page-content{
    padding: 4em 0;
}
Back to Directory File Manager