MinedMap/viewer/index.html

90 lines
1.9 KiB
HTML
Raw Permalink Normal View History

2015-02-02 09:08:36 +01:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
2015-02-02 10:47:32 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
2015-02-02 09:08:36 +01:00
<title>MinedMap</title>
2024-01-03 04:05:41 +01:00
<link rel="stylesheet" href="leaflet-1.9.4/leaflet.css" />
<script src="leaflet-1.9.4/leaflet.js"></script>
2015-02-02 09:08:36 +01:00
<script src="MinedMap.js"></script>
<style type="text/css">
2015-02-02 10:47:32 +01:00
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
2015-02-02 09:08:36 +01:00
}
body, .leaflet-container {
background: #333;
}
2024-01-07 16:01:29 +01:00
.leaflet-container a.leaflet-popup-close-button {
color: #ccc;
}
.leaflet-container a.leaflet-popup-close-button:hover {
color: #fff;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
background: rgba(64, 64, 64, 0.5);
}
.overzoomed {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
}
2024-01-07 16:01:29 +01:00
.sign-wrapper {
padding: 0;
padding-left: 4px;
margin-bottom: 2em;
}
.sign-wrapper:last-child {
margin-bottom: 0;
}
.sign-title {
color: #fff;
font-weight: bold;
margin-bottom: 0.5em;
}
.sign-container {
padding: 0;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.sign-content {
padding: 0;
font-size: 18px;
line-height: 1.5;
text-align: center;
font-family: sans;
}
span.obfuscated:hover {
background-color: transparent !important;
}
2015-02-02 09:08:36 +01:00
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
createMap();
</script>
</body>
</html>