diff options
| author | s-ol <s+removethis@s-ol.nu> | 2026-07-13 21:29:01 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2026-07-13 21:29:01 +0000 |
| commit | d7060ebb752e0658427e0dbf7bc588127322d2b7 (patch) | |
| tree | 589d51e4722b1002ab6080fc647958259014e289 /index.html | |
| parent | save settings/pos in hash (diff) | |
| download | gps-precision-main.tar.gz gps-precision-main.zip | |
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -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'); |
