86 lines
1.4 KiB
SCSS
86 lines
1.4 KiB
SCSS
|
|
/**
|
|
* Not supported dialog for public maps
|
|
*
|
|
*/
|
|
|
|
#not_supported_dialog {
|
|
position: absolute;
|
|
z-index: 10000;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 356px;
|
|
height: 213px;
|
|
margin-top: -107px;
|
|
margin-left: -178px;
|
|
padding: 0;
|
|
background-color: #FFF;
|
|
color: #666;
|
|
font-family: "Helvetica", Arial, sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
#not_supported_dialog h2 {
|
|
display: inline-block;
|
|
width: 77px;
|
|
margin: 30px 0 0;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid #D9D9D9;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#not_supported_dialog p {
|
|
display: block;
|
|
margin: 12px 0 0;
|
|
padding: 0 40px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#not_supported_dialog ul {
|
|
display: block;
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-top: 1px solid #D9D9D9;
|
|
list-style: none;
|
|
}
|
|
|
|
#not_supported_dialog ul li {
|
|
margin: 0;
|
|
padding: 0;
|
|
float: left;
|
|
border-right: 1px solid #D9D9D9;
|
|
|
|
&.last {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
#not_supported_dialog ul li a {
|
|
display: block;
|
|
width: 118px;
|
|
height: 74px;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
font-size: 0;
|
|
line-height: 0;
|
|
text-indent: -9999px;
|
|
|
|
&.safari {
|
|
background: url($assetsDir + '/images/layout/safari.png');
|
|
}
|
|
|
|
&.chrome {
|
|
background: url($assetsDir + '/images/layout/chrome.png');
|
|
}
|
|
|
|
&.firefox {
|
|
background: url($assetsDir + '/images/layout/firefox.png');
|
|
}
|
|
}
|