2013-10-03 16:59:40 +02:00
|
|
|
#contentOverlay {
|
|
|
|
background-color: rgba(255, 255, 255, 0.65);
|
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
2014-02-14 15:49:12 +01:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1024px;
|
2013-10-03 16:59:40 +02:00
|
|
|
height: 100%;
|
2014-02-14 15:49:12 +01:00
|
|
|
/*max-height: 768px;*/
|
2013-10-03 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup {
|
|
|
|
background-color: #fff;
|
|
|
|
z-index: 15;
|
|
|
|
|
|
|
|
position: absolute;
|
2014-02-14 15:49:12 +01:00
|
|
|
bottom: 6%;
|
2013-10-03 16:59:40 +02:00
|
|
|
left: 50%;
|
2014-02-14 15:49:12 +01:00
|
|
|
width: 80%;
|
|
|
|
height: 70%;
|
|
|
|
margin: -35% 0 0 -40%;
|
2013-10-03 16:59:40 +02:00
|
|
|
|
2014-02-14 15:49:12 +01:00
|
|
|
/*-moz-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);*/
|
|
|
|
/*-webkit-box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);*/
|
2013-10-03 16:59:40 +02:00
|
|
|
box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);
|
|
|
|
border: 2px solid #222;
|
|
|
|
border-radius: 15px;
|
2014-02-14 15:49:12 +01:00
|
|
|
/*-moz-border-radius: 15px;*/
|
|
|
|
/*-webkit-border-radius: 15px;*/
|
|
|
|
overflow-x: hidden;
|
2014-03-06 11:15:28 +01:00
|
|
|
overflow-y: auto;
|
2014-02-14 15:49:12 +01:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-10-03 16:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup .content {
|
|
|
|
margin: 0 1em;
|
2014-02-14 15:49:12 +01:00
|
|
|
}
|
|
|
|
|