| Server IP : 145.239.37.162 / Your IP : 216.73.217.81 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www2024/wp-content/plugins/pop-up-aeb/public/ |
Upload File : |
/* client view */
#popup {
background: fuchsia;
position: fixed;
height: max-content;
width: max-content;
z-index: 400;
border: 1px solid #fff;
box-shadow: #fff 0 0 5px;
border-radius: 5px;
padding: 2em;
text-align: center;
scale: 1;
opacity: 1;
margin-left: 0;
margin-right: 0;
margin-top: 0;
margin-bottom: 0;
overflow-y: auto;
/* display: flex;
flex-direction: column; */
}
#popup h2 {
max-width: 85%;
}
#popup .close {
width: 30px;
aspect-ratio: 1;
position: absolute;
top: 0;
right: 0;
cursor: pointer;
}
#popup .close svg {
width: 100%;
height: 100%;
}
#popup .pop-up-body {
display: flex;
flex-direction: column;
align-items: center;
}
#popup .media {
margin-top: 1em;
margin-bottom: 1em;
/* padding: 2em; */
/* padding-right: 3em; */
position: relative;
}
.media video {
width: 100%;
cursor: pointer;
}
.poster {
object-fit: cover;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100%;
width: 100%;
pointer-events: none;
}
#popup .popup-link {
padding: .5em 2em;
border: none;
color: #FFF;
background: lightpink;
margin: 1em auto;
display: inline-block;
width: max-content;
text-transform: uppercase;
}
/* popup-size */
#popup.full {
width: 80vw;
height: 80vh;
max-width: 80vw;
max-height: 80vh;
}
#popup.small {
width: max-content;
height: max-content;
max-width: 500px;
max-height: 500px;
}
#popup.band {
width: 100vw;
max-width: 100vw;
height: max-content;
}
#popup.center-y {
bottom: 50%;
transform: translateY(50%);
}
#popup.center-x {
left: 50%;
transform: translateX(-50%);
}
#popup.center-x.center-y {
transform: translate(-50%, 50%);
}
#popup.left {
left: 1em;
}
#popup.right {
right: 1em;
}
/* #popup.band.left {
left: 0;
} */
#popup.band.right {
right: 0;
}
#popup.top {
top: 1em;
}
#popup.bottom {
bottom: 1em;
}