49 lines
899 B
SCSS
49 lines
899 B
SCSS
/* For all zoom buttons */
|
|
|
|
.mapael {
|
|
.map {
|
|
position: relative;
|
|
}
|
|
.zoomButton {
|
|
background-color: #292929;
|
|
border: 1px solid #292929;
|
|
color: $white-color;
|
|
width: 15px;
|
|
height: 15px;
|
|
line-height: 12px;
|
|
text-align: center;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 0;
|
|
font-weight: bold;
|
|
left: 10px;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.zoomReset {
|
|
top: 10px;
|
|
}
|
|
.zoomIn {
|
|
top: 30px;
|
|
}
|
|
.zoomOut {
|
|
top: 50px;
|
|
}
|
|
.mapTooltip {
|
|
position: absolute;
|
|
background-color: #474c4b;
|
|
moz-opacity: 0.70;
|
|
opacity: 0.70;
|
|
filter: alpha(opacity = 70);
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
z-index: 1000;
|
|
max-width: 200px;
|
|
display: none;
|
|
color: $white-color;
|
|
}
|
|
} |