diff options
| author | Rutger Broekhoff | 2026-08-28 18:03:05 +0200 |
|---|---|---|
| committer | Rutger Broekhoff | 2026-08-28 18:03:05 +0200 |
| commit | 973aec43ea54bbf95b64fbcb636403401d1ca60e (patch) | |
| tree | 41b7911c420766a9b463245b9296f44c5bf35258 /web/style.css | |
| download | routemon-973aec43ea54bbf95b64fbcb636403401d1ca60e.tar.gz routemon-973aec43ea54bbf95b64fbcb636403401d1ca60e.zip | |
Import from e4b104792206ee7ea64bf39c6b7d2c0c230f9d14
Diffstat (limited to 'web/style.css')
| -rw-r--r-- | web/style.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css new file mode 100644 index 0000000..a96354c --- /dev/null +++ b/web/style.css | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | html, body { | ||
| 2 | margin: 0px; | ||
| 3 | height: 100%; | ||
| 4 | font-family: sans-serif; | ||
| 5 | font-size: 14px; | ||
| 6 | } | ||
| 7 | |||
| 8 | #map { height: 100%; } | ||
| 9 | |||
| 10 | .box { | ||
| 11 | padding: 10px; | ||
| 12 | background-color: white; | ||
| 13 | border: 2px solid #b0b0b0; | ||
| 14 | border-radius: 4px; | ||
| 15 | } | ||
| 16 | |||
| 17 | dialog button { | ||
| 18 | float: right; | ||
| 19 | } | ||
| 20 | |||
| 21 | details summary { | ||
| 22 | user-select: none; | ||
| 23 | cursor: pointer; | ||
| 24 | } | ||
| 25 | |||
| 26 | table { | ||
| 27 | border-collapse: collapse; | ||
| 28 | border: 1px solid black; | ||
| 29 | margin: 5px 0px; | ||
| 30 | } | ||
| 31 | |||
| 32 | th, td { | ||
| 33 | border: 1px solid black; | ||
| 34 | padding: 5px 5px; | ||
| 35 | } | ||
| 36 | |||
| 37 | form[name="gpx-upload-form"] { | ||
| 38 | z-index: 1000; | ||
| 39 | display: flex; | ||
| 40 | gap: 16pt; | ||
| 41 | position: absolute; | ||
| 42 | top: 10px; | ||
| 43 | right: 10px; | ||
| 44 | } | ||
| 45 | |||
| 46 | #sysinfo { | ||
| 47 | z-index: 1000; | ||
| 48 | display: flex; | ||
| 49 | flex-direction: column; | ||
| 50 | gap: 5px; | ||
| 51 | position: absolute; | ||
| 52 | bottom: 10px; | ||
| 53 | left: 10px; | ||
| 54 | } | ||
| 55 | |||
| 56 | #sysinfo h3 { | ||
| 57 | margin: 0px 0px; | ||
| 58 | } | ||
| 59 | |||
| 60 | .help-cursor { | ||
| 61 | cursor: help; | ||
| 62 | } | ||