summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--index.html16
1 files changed, 13 insertions, 3 deletions
diff --git a/index.html b/index.html
index 633ec2a..5458a76 100644
--- a/index.html
+++ b/index.html
@@ -29,9 +29,14 @@
padding: 0.5rem;
}
- label {
+ nav > * {
display: flex;
gap: inherit;
+ justify-content: space-between;
+ }
+
+ nav > div {
+ align-items: baseline;
}
input {
@@ -51,13 +56,18 @@
</head>
<body>
<nav>
- <span id="preview"></span>
+ <div>
+ <span id="preview">loading…</span>
+ <a href="https://git.s-ol.nu/gps-precision/">source</a>
+ </div>
<label>
<span>precision:</span>
<input id="precision" type="range" min="0" max="6" />
</label>
</nav>
- <div id="map"></div>
+ <div id="map">
+ <noscript>this won't work unless you enable javascript.</noscript>
+ </div>
<script>
const preview = document.getElementById('preview');
const precision = document.getElementById('precision');