2015-02-21 01:03:49 +01:00
|
|
|
#mapcontainer {
|
2015-02-19 16:02:56 +01:00
|
|
|
width: 98%;
|
|
|
|
height: 98%;
|
|
|
|
margin: 1% 1% 1% 1%;
|
2016-01-17 21:47:41 +01:00
|
|
|
image-rendering: -moz-crisp-edges; /* Firefox */
|
|
|
|
image-rendering: -webkit-crisp-edges; /* Safari */
|
|
|
|
image-rendering: pixelated; /* Chromium */
|
|
|
|
-ms-interpolation-mode: nearest-neighbor; /* iexplore.exe (but not edge) */
|
2015-02-21 01:03:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-01-17 21:47:41 +01:00
|
|
|
image-rendering: -moz-crisp-edges; /* Firefox */
|
|
|
|
image-rendering: -webkit-crisp-edges; /* Safari */
|
|
|
|
image-rendering: pixelated; /* Chromium */
|
|
|
|
-ms-interpolation-mode: nearest-neighbor; /* iexplore.exe (but not edge) */
|
2015-02-19 16:02:56 +01:00
|
|
|
}
|
2015-02-21 01:03:49 +01:00
|
|
|
|
|
|
|
#info {
|
|
|
|
background:#fff;
|
|
|
|
position:absolute;
|
|
|
|
top:calc(10px + 1%);
|
|
|
|
right:calc(10px + 1%);
|
|
|
|
padding:10px;
|
|
|
|
z-index:100;
|
|
|
|
border-radius:3px;
|
2016-01-17 21:47:41 +01:00
|
|
|
}
|