24 lines
391 B
CSS
24 lines
391 B
CSS
/* required styles */
|
|
|
|
.leaflet-container {
|
|
overflow: hidden;
|
|
}
|
|
.leaflet-map-pane {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.leaflet-tile {
|
|
position: absolute;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
|
|
/* visual appearance */
|
|
|
|
.leaflet-container {
|
|
background: #ddd;
|
|
/*-moz-box-shadow: 1px 1px 12px #999;
|
|
-webkit-box-shadow: 1px 1px 12px #999;*/
|
|
} |