gmarche/public/css/mapael.css

63 lines
1.2 KiB
CSS
Raw Normal View History

2019-11-21 14:52:57 +01:00
.mapael .map {
2019-11-25 23:24:13 +01:00
background-color: rgba(0, 0, 0, 0.3);
padding: 15px;
2019-11-21 14:52:57 +01:00
margin-bottom: 10px;
position: relative;
2019-11-25 23:24:13 +01:00
width: 60%;
left: 50%;
transform: translateX(-50%);
border-radius: 10%;
2019-11-21 14:52:57 +01:00
}
2019-11-25 23:24:13 +01:00
.home_map {
font-size:1.2rem;
font-weight:bold;
}
2019-11-21 14:52:57 +01:00
/* For all zoom buttons */
.mapael .zoomButton {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
width: 15px;
height: 15px;
line-height: 15px;
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;
}
/* Reset Zoom button first */
.mapael .zoomReset {
top: 10px;
}
/* Then Zoom In button */
.mapael .zoomIn {
top: 30px;
}
/* Then Zoom Out button */
.mapael .zoomOut {
top: 50px;
}
.mapael .mapTooltip {
position: absolute;
2019-11-25 23:24:13 +01:00
background-color: #1D1D1D;
2019-11-21 14:52:57 +01:00
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: #fff;
2019-11-25 23:24:13 +01:00
}