summaryrefslogtreecommitdiffstats
path: root/web/style.css
blob: a96354ce8be4a233d5c0fea94605058818327371 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
html, body {
    margin: 0px;
    height: 100%;
    font-family: sans-serif;
    font-size: 14px;
}

#map { height: 100%; }

.box {
    padding: 10px;
    background-color: white;
    border: 2px solid #b0b0b0;
    border-radius: 4px;
}

dialog button {
    float: right;
}

details summary {
    user-select: none;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border: 1px solid black;
    margin: 5px 0px;
}

th, td {
    border: 1px solid black;
    padding: 5px 5px;
}

form[name="gpx-upload-form"] {
    z-index: 1000;
    display: flex;
    gap: 16pt;
    position: absolute;
    top: 10px;
    right: 10px;
}

#sysinfo {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

#sysinfo h3 {
    margin: 0px 0px;
}

.help-cursor {
    cursor: help;
}