diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-14 08:22:25 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-14 08:35:51 +0100 |
commit | ddbab65241d2dcc6cd3c12866fc88e9a8d357014 (patch) | |
tree | 2ea496021a5d11a6db064275fa8c8e464f3bf665 /index.html | |
parent | abc9c9b3f48b6eae4c44c44589f91a490ae9bb72 (diff) |
feat: implement sharing UI
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,4 @@ +<!doctype html> <html> <meta charset="utf-8"> <title>Share a geographic position</title> @@ -10,11 +11,16 @@ body { max-width: 40ch; margin: 1em auto; + padding: 0 0.5em; font-size: 1.2em; } li { padding: 1em; } + .input-group { display: flex; gap: 0.2em; margin-bottom: 1em; } + .input-group input { flex-grow: 1; } + input, button { font-size: inherit; } + .error { color: darkred; } </style> </body> </html> |