try even smaller font size
[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
ac788e28
RK
22#overlayArea:-moz-system-metric(touch-enabled) {
23 font-size: 3mozmm;
24}
25
26#overlayArea input[type="button"]:-moz-system-metric(touch-enabled),
27#overlayArea select:-moz-system-metric(touch-enabled) {
28 font-size: 2.5mozmm;
29}
30
b395419b
RK
31#zoomLevel {
32 background-color: rgba(255, 255, 255, .8);
33 border-radius: 3px;
34 padding: 0 3px;
35}
36
37
993fd081
RK
38#settingsArea,
39#trackArea {
b47b4a65
RK
40 display: none;
41 background-color: rgba(255, 255, 255, .8);
42 border: 0;
43 border-radius: 5px;
44}
45
993fd081
RK
46#settingsArea > legend,
47#trackArea > legend {
b47b4a65
RK
48 display: none;
49 background-color: rgba(255, 255, 255, .8);
50 border-radius: 3px;
51}
52
53#map {
54 border: 0;
6b1e7340
RK
55 top: 1px;
56 left: 1px;
57 right: 1px;
58 bottom: 1px;
b47b4a65 59 z-index: 1;
23cd2dcc
RK
60}
61
b395419b
RK
62#debug {
63 position: absolute;
6b1e7340 64 bottom: 5px;
b395419b
RK
65 left: .5em;
66 margin: 0;
6b1e7340
RK
67 z-index: 3;
68 background-color: rgba(255, 255, 255, .8);
69 border-radius: 3px;
70 padding: 0 3px;
b395419b
RK
71}
72
4b12da3a
RK
73.debugHide {
74 display: none;
75}
76
23cd2dcc
RK
77#copyright {
78 position: absolute;
6b1e7340 79 bottom: 5px;
23cd2dcc
RK
80 right: .5em;
81 margin: 0;
82 font-size: small;
6b1e7340
RK
83 opacity: .66;
84 z-index: 2;
85 background-color: rgba(255, 255, 255, 1);
86 border-radius: 3px;
87 padding: 0 3px;
23cd2dcc 88}
1e48ccb4
RK
89
90
91@media screen and (max-width: 500px) {
a9c9022b 92 #copyright {
05d87bde 93 font-size: 8px;
1e48ccb4
RK
94 }
95}