turn on debug in production for a bit of experimenting
[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;
46 top: 1em;
47 left: 1%;
48 right: 1%;
49 z-index: 1;
23cd2dcc
RK
50}
51
b395419b
RK
52#debug {
53 position: absolute;
54 bottom: .5em;
55 left: .5em;
56 margin: 0;
57}
58
4b12da3a
RK
59.debugHide {
60 display: none;
61}
62
23cd2dcc
RK
63#copyright {
64 position: absolute;
65 bottom: .5em;
66 right: .5em;
67 margin: 0;
68 font-size: small;
69 opacity: .5;
70}