-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
186 lines (160 loc) · 3.3 KB
/
styles.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a:link,
a:visited,
a:hover,
a:active {
color: #c3252c;
}
.navbar-brand {
font-size: 16px;
font-weight: bold;
}
.navbar-inverse {
background-color: #222222;
border-color: #222222;
font-family: "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
font-size: 15px;
}
.navbar-toggle {
background-color: transparent;
border: none;
}
/* ensure navbar doesn't show borders or other artifacts on other devices*/
#airnav {
background: transparent;
border: none;
}
/* set color of items in navbar */
#airnav > ul > li,
#airnav > ul > li > a,
.mobileHide,
.mobileShow {
color: #fff;
background: transparent;
line-height: 21px;
}
/* sizing icons in navbar */
#airnav > ul.nav.navbar-nav.navbar-right > li > a > i {
font-size: 13px;
}
/* navbar dropdown menu mouse hover */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
color: #000000;
text-decoration: none;
background-color: #F8F8F8;
}
/* navbar dropdown menu hover color */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #000000;
text-decoration: none;
outline: 0;
background-color: #E8E8E8;
}
/* hide rmarkdown produced titles */
#header {
visibility: hidden;
position: absolute;
top: -9999px;
}
/* nav tab color for tabpanels */
.nav-tabs-custom > .nav-tabs > li.active {
border-top-color: #c3252c;
}
/* ensure process log dump is scrollable */
#log > div.chart-stage.chart-stage-flex,
#log > div.chart-stage.chart-stage-flex > div > pre {
background: transparent;
border: none;
overflow: scroll;
}
#log > div.chart-stage.chart-stage-flex > div > pre > code {
display:block;
}
.leaflet-control {
border: 1px solid rgba(0,0,0,0.1) !important;
}
.leaflet-control-layers {
padding-left: 15px;
padding-right: 15px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
color: #000000 !important;
}
.leaflet-control-layers-title {
font-size: 18px;
text-align: center;
}
.leaflet-popup-content {
margin: 10px;
margin-top: 15px;
}
.leaflet-popup-content > a > button {
margin-top: 7px;
}
.leaflet-popup-content-wrapper {
border-radius: 5px;
min-width: 215px;
}
.leaflet-popup-diagnostic-button {
position: absolute;
right: 21px;
top: 5px;
font-size: 11px;
color: #dedee2 !important;
}
/* map positioning below navbar */
.map {
width: 100%;
height: calc(100vh - 48px);
height: -o-calc(100% - 48px); /* opera */
height: -webkit-calc(100% - 48px); /* google, safari */
height: -moz-calc(100% - 48px); /* firefox */
position: fixed;
left: 0;
right: 0;
top: 0;
margin-top: 52px;
}
/* tracer div spacing */
.tracer-left {
width: 40px;
display: inline-block;
}
/* input group sizing */
.input-group-addon {
min-width: 53px;
text-align: center;
}
/* leaflet legend position */
.legend {
position: fixed;
bottom: 5px;
right: 5px;
}
/* custom responsive settings for mobile browsers */
.mobileHide {
display: inline;
}
.mobileShow {
display: none;
}
@media only screen and (max-device-width: 480px) {
.mobileHide { display: none; }
.mobileShow { display: inline; }
}
.content-page {
max-width: 700px;
margin: 40px 15px;
}
@media only screen and (min-width: 700px) {
.content-page {
margin: 40px auto;
}
}