90 lines
1.3 KiB
CSS
90 lines
1.3 KiB
CSS
|
body,
|
||
|
html {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
#map {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.map-overlay {
|
||
|
font: bold 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||
|
position: absolute;
|
||
|
width: 25%;
|
||
|
bottom: 10px;
|
||
|
right: 0;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.map-overlay .map-overlay-inner {
|
||
|
background-color: #fff;
|
||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||
|
border-radius: 3px;
|
||
|
padding: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.map-overlay label {
|
||
|
display: block;
|
||
|
margin: 0 0 10px;
|
||
|
}
|
||
|
|
||
|
.map-overlay input {
|
||
|
background-color: transparent;
|
||
|
display: inline-block;
|
||
|
width: 100%;
|
||
|
position: relative;
|
||
|
margin: 0;
|
||
|
cursor: ew-resize;
|
||
|
}
|
||
|
|
||
|
#menu {
|
||
|
background: #fff;
|
||
|
position: absolute;
|
||
|
z-index: 1;
|
||
|
top: 10px;
|
||
|
right: 10px;
|
||
|
border-radius: 3px;
|
||
|
width: 120px;
|
||
|
border: 1px solid rgba(0, 0, 0, 0.4);
|
||
|
font-family: "Open Sans", sans-serif;
|
||
|
}
|
||
|
|
||
|
#menu a {
|
||
|
font-size: 13px;
|
||
|
color: #404040;
|
||
|
display: block;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
padding: 10px;
|
||
|
text-decoration: none;
|
||
|
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#menu a:last-child {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#menu a:hover {
|
||
|
background-color: #f8f8f8;
|
||
|
color: #404040;
|
||
|
}
|
||
|
|
||
|
#menu a.active {
|
||
|
background-color: #3887be;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
#menu a.active:hover {
|
||
|
background: #3074a4;
|
||
|
}
|