/* ======= ======= ======= ======= ======= */ /* == POPOP.CSS - STYLES FOR YOUR MODAL == */ /* ======= ======= ======= ======= ======= */ /* === MODAL === */ .popop-modal { visibility: hidden; flex-direction: column; opacity: 0; z-index: 3; width: 50%; height: 75%; padding: 10px 20px; border: 1px solid #333; border-radius: 10px; background-color: #fff; box-shadow: 7px 7px rgba(54,54,54, 0.5); position: absolute; margin: auto; top: 0; left: 0; bottom: 0; right: 0; transition: 0.2s ease-in-out all; } .popop-content{ overflow: auto; height: 90%; padding: 10px; } .popop-fixed { position: fixed; height: 30px; padding: 10px; } /* === VISIBILITY === */ .popop-show { visibility: visible; opacity: 1; } @media only screen and (max-height: 450px) { .popop-fixed { padding-bottom: 50px; height: 300px; } }