mirror of
https://github.com/est31/leaftest.git
synced 2024-11-15 07:00:28 +01:00
29 lines
697 B
CSS
29 lines
697 B
CSS
#mapcontainer {
|
|
width: 98%;
|
|
height: 98%;
|
|
margin: 1% 1% 1% 1%;
|
|
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) */
|
|
}
|
|
|
|
#map {
|
|
width: 100%;
|
|
height: 100%;
|
|
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) */
|
|
}
|
|
|
|
#info {
|
|
background:#fff;
|
|
position:absolute;
|
|
top:calc(10px + 1%);
|
|
right:calc(10px + 1%);
|
|
padding:10px;
|
|
z-index:100;
|
|
border-radius:3px;
|
|
}
|