-
Notifications
You must be signed in to change notification settings - Fork 9
/
qso-mapper.css
72 lines (59 loc) · 934 Bytes
/
qso-mapper.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
/* qso-mapper.css - Show Amateur Radio QSOs on an interactive map and table.
*
* 2020/09/05 Stephen Houser, N1SH
*/
html, body {
height: 100%;
width: 100%;
}
body {
padding-top: 3.5rem;
}
.starter-template {
padding: 3rem 1.5rem;
text-align: center;
}
.custom-file-label {
display: inline !important;
}
#container {
height: 100%;
width: 100%;
display: flex;
}
#map-canvas {
display: block;
height: 100%;
width: 100%;
}
#call-log {
display: none;
padding: 1em;
width: 100%;
height: 100%;
background: white;
}
.qth-icon {
/* https://stackoverflow.com/questions/23567203/leaflet-changing-marker-color */
filter: hue-rotate(120deg);
}
.background {
padding: 3em;
position: absolute;
text-align: center;
color: darkgray;
z-index: -10;
width: 100%
}
.qth h1 {
font-size: 2rem;
}
.qso h1 {
font-size: 2rem;
}
input:invalid {
border: 2px dashed red;
}
input:valid {
border: 2px solid green;
}