diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-07-15 01:47:15 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-07-15 01:48:53 +0200 |
commit | 7a4d4da77891ad1d6979b6fff1cd4ac92c2b30b0 (patch) | |
tree | 96511887357fdc63216b2576d54b1d88e7bf367d /index.html | |
download | aschaffenburg.fun-7a4d4da77891ad1d6979b6fff1cd4ac92c2b30b0.tar.xz |
initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..22d9d9a --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <title>Aschaffenburg.FUN</title> + <script src="init.js" type="module" defer></script> + <meta + name="viewport" + content="initial-scale=1,maximum-scale=1,user-scalable=no" + /> + <style> + body { + margin: 0; + padding: 0; + } + #map { + position: absolute; + top: 0; + bottom: 0; + width: 100%; + } + #reload { + font-size: 2em; + position: fixed; + left: 5px; + bottom: 5px; + } + .maplibregl-ctrl-bottom-right { + display: none; + } + </style> + </head> + <body> + <div id="map"></div> + <button id="reload" onclick="location.reload()">Reload</button> + </body> +</html> |