Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
1.4 kB
2
Indexable
Never
html body .eg-popup_easton {
    width: 100% !important;
    height: 100% !important;
    position: fixed;
    top: 0px;
    z-index: 9999;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000006b;
}

html body .eg-popup_easton .eg-container_new {
    width: 60% !important;
    background: #ffffff !important;
    padding: 20px 20px;
}

html body .eg-popup_easton .eg-container_new h1 {
    font-family: Libre Baskerville, serif;
    font-weight: 700;
    font-size: 2.5rem;
}

html body .eg-popup_easton .eg-container_new p {
    font-family: Nunito, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}

html body .eg-popup_easton .eg-container_new .eg-close_icon {
    display: flex;
    justify-content: right;
}

html body .eg-popup_easton .eg-container_new .eg-close_icon span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

@media only screen and (max-width:767px){
    html body .eg-popup_easton .eg-container_new {
        width: 92% !important;
    }

    html body .eg-popup_easton .eg-container_new h1 {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width:767px) and (max-width:1024px){
    html body .eg-popup_easton .eg-container_new {
        width: 80% !important;
    }
}
Leave a Comment