-
Notifications
You must be signed in to change notification settings - Fork 25
/
vrmap.css
76 lines (65 loc) · 1.1 KB
/
vrmap.css
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
body {
font-family: sans-serif;
margin: 0;
}
.hidden {
display: none;
}
#introDialog {
position: absolute;
top: 20%;
right: 0;
left: 0;
width: 50ch;
max-width: 92%;
max-height: 96%;
overflow: auto;
z-index: 10;
background-color: rgba(255, 255, 255, .8);
border: 0;
margin: auto;
padding: .5em;
border-radius: 5px;
}
@media all and (max-height: 800px) {
#introDialog {
top: 2%;
}
}
#introDialog.hidden {
top: -1000%;
display: block;
}
h1 {
margin: 0 0 .5em;
font-weight: bold;
font-size: 1.5em;
}
#locationSettings select,
#locationSettings input,
#locationSettings button {
font-size: inherit;
}
.coords {
width: 15ch;
}
#legalinfo {
font-size: 0.75em;
}
.dialogButtonLine {
text-align: center;
}
@media all and (max-width: 450px) {
body {
font-size: 0.85em;
}
h1 {
font-size: 1.3em;
}
#legalinfo {
font-size: 0.85em;
}
}