Iphone 6 modal
by Vladimir
HTML
<div id="O">
<div id="C">
<div id="S">%origin%</div>
<div id="T">Новая Opera для вашего iPhone. Установить?</div>
<a target="_blank" href="%href%" id="B1" onclick="%onclick%">Cancel</a>
<a target="_blank" href="%url%" id="B2" onclick="%onclick%">OK</a>
</div>
</div>
CSS
#O {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, .388);
-webkit-user-select: none;
}
#C {
font-family: HelveticaNeue-Light, Helvetica, Arial, sans-serif;
position: absolute;
background: #e3e3e3;
border-radius: 6px;
top: 50%;
left: 50%;
width: 270px;
margin-left: -135px;
margin-top: -180px;
font-size: 15px;
text-align: center;
}
#S {
padding: 20px 40px 0;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#T {
padding: 5px 15px 10px;
}
#B1, #B2 {
float: left;
color: #007aff;
width: 50%;
line-height: 45px;
border-top: 1px solid #b3b3b3;
text-decoration: none;
font-size: 17px;
}
#B1 {
border-right: 1px solid #b3b3b3;
}
#B2 {
font-weight: bold;
margin: 0 0 0 -1px;
}
@media only screen and (orientation : landscape){
#C {
margin-top: -180px!important;
}
}