try to deal with the default scaling of mobile devices, eliminate white borders aroun...
[lantea.git] / style / lantea.css
CommitLineData
a7393a71
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
23cd2dcc
RK
4
5body {
6 font-family: sans-serif;
b47b4a65
RK
7 margin: 0;
8}
9
10h1 {
11 display: none;
12}
13
14#overlayArea {
15 position: absolute;
16 /* width: 30em; */
17 left: 1%;
18 top: 1em;
19 z-index: 5;
20}
21
b395419b
RK
22#zoomLevel {
23 background-color: rgba(255, 255, 255, .8);
24 border-radius: 3px;
25 padding: 0 3px;
26}
27
28
993fd081
RK
29#settingsArea,
30#trackArea {
b47b4a65
RK
31 display: none;
32 background-color: rgba(255, 255, 255, .8);
33 border: 0;
34 border-radius: 5px;
35}
36
993fd081
RK
37#settingsArea > legend,
38#trackArea > legend {
b47b4a65
RK
39 display: none;
40 background-color: rgba(255, 255, 255, .8);
41 border-radius: 3px;
42}
43
44#map {
45 border: 0;
6b1e7340
RK
46 top: 1px;
47 left: 1px;
48 right: 1px;
49 bottom: 1px;
b47b4a65 50 z-index: 1;
23cd2dcc
RK
51}
52
b395419b
RK
53#debug {
54 position: absolute;
6b1e7340 55 bottom: 5px;
b395419b
RK
56 left: .5em;
57 margin: 0;
6b1e7340
RK
58 z-index: 3;
59 background-color: rgba(255, 255, 255, .8);
60 border-radius: 3px;
61 padding: 0 3px;
b395419b
RK
62}
63
4b12da3a
RK
64.debugHide {
65 display: none;
66}
67
23cd2dcc
RK
68#copyright {
69 position: absolute;
6b1e7340 70 bottom: 5px;
23cd2dcc
RK
71 right: .5em;
72 margin: 0;
73 font-size: small;
6b1e7340
RK
74 opacity: .66;
75 z-index: 2;
76 background-color: rgba(255, 255, 255, 1);
77 border-radius: 3px;
78 padding: 0 3px;
23cd2dcc 79}