summaryrefslogtreecommitdiffstats
path: root/web/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css62
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 @@
1html, 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
17dialog button {
18 float: right;
19}
20
21details summary {
22 user-select: none;
23 cursor: pointer;
24}
25
26table {
27 border-collapse: collapse;
28 border: 1px solid black;
29 margin: 5px 0px;
30}
31
32th, td {
33 border: 1px solid black;
34 padding: 5px 5px;
35}
36
37form[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}