-
Notifications
You must be signed in to change notification settings - Fork 11
/
igcviewer.css
94 lines (77 loc) · 1.4 KB
/
igcviewer.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
html {
font-size: 16px;
font-family: sans-serif;
}
#map {
width: 100%;
height: calc(100% - 115px);
margin-bottom: 15px;
}
#slider {
height: 100px;
}
#slider label {
width: 6em;
vertical-align: top;
}
#slider button {
width: 2em;
vertical-align: top;
}
#slider input[type='range'] {
width: calc(100% - 11em);
padding-bottom: 0px; /* Default padding is huge in Internet Explorer.*/
}
#mapWrapper, #barogram {
max-height: 110vw;
margin-top: 30px;
margin-bottom: 30px;
margin-left: auto;
margin-right: auto;
}
#mapWrapper {
height: 90vh;
}
#barogram {
cursor: crosshair;
}
@media print, screen and (max-width: 1100px) {
#mapWrapper, #barogram {
width: 90%;
display: inline-block;
position: relative;
}
#barogram {
height: calc(90vh - 130px);
}
}
@media screen and (min-width: 1100px) {
#mapWrapper, #barogram {
display: inline-block;
width: calc(50% - 30px);
}
#mapWrapper {
margin-left: 30px;
}
#barogram {
position: absolute;
right: 0px;
height: 90vh;
}
}
#errorMessage {
font-weight: bold;
color: Red;
margin-top: 30px;
margin-bottom: 30px;
}
#igcFileDisplay {
display: none;
}
table#headerInfo {
border-spacing: 1em 0;
}
#headerInfo th {
text-align: left;
font-weight: bold;
}