35 lines
451 B
CSS
35 lines
451 B
CSS
#dpd_popup {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
z-index: 100000;
|
|
display: none;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
#dpd_popup > a {
|
|
position: absolute;
|
|
right: 30px;
|
|
color: white;
|
|
top: 20px;
|
|
}
|
|
|
|
#dpd_map {
|
|
position: fixed;
|
|
z-index: 100001;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 50%;
|
|
height: 80%;
|
|
border: none;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
#dpd_map {
|
|
width: 90%;
|
|
}
|
|
}
|