-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathradlkarte.css
228 lines (187 loc) · 3.14 KB
/
radlkarte.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
body {
padding: 0;
margin: 0;
}
html,
body,
#map {
height: 100%;
width: 100%;
}
#radlobby-logo {
position: fixed;
right: 0px;
bottom: 10px;
z-index: 900;
}
#radlobby-logo img {
padding: 5px;
width: 100px;
}
@media (max-width: 600px) {
#radlobby-logo img {
width: 50px;
}
}
.leaflet-container {
background-color: #fff;
}
h1,
h2,
h3,
h4 {
font-family: 'Museo 500 Regular', sans-serif;
color: #004B67;
}
h5,
a {
color: #004B67;
}
h5,
p,
li {
font-family: Roboto, arial, sans-serif;
}
h1 {
font-size: 100%;
margin-top: 0;
margin-bottom: 0.2em;
color: #B8CC24;
}
h3 {
font-size: 115%;
}
h4 {
font-size: 110%;
}
strong {
font-weight: bold;
}
input {
accent-color: #004B67;
}
.leaflet-sidebar {
font-size: medium;
}
.leaflet-sidebar-header,
.leaflet-sidebar-tabs > ul > li.active {
background-color: #B8CC24;
color: #fff
}
.leaflet-sidebar-tabs > ul > li.active > a > i {
color: #fff;
}
.leaflet-sidebar-pane a,
.leaflet-sidebar-pane a:visited,
.leaflet-sidebar-pane a:active,
.leaflet-control-attribution a {
color: #004B67;
/* text-decoration: none; */
}
a:hover {
color: white !important;
background-color: #B8CC24 !important;
/* text-decoration: underline; */
}
ul.legend-leftified {
padding-left: 0;
}
ul.legend li {
list-style-type: none;
margin-bottom: 0.5em;
}
div.legend {
width: 230px;
height: 10px;
border-radius: 5px;
}
div.legend-main {
vertical-align: middle;
background-color: #999;
}
div.legend-regional {
background-color: #999;
height: 4px;
}
div.legend-calm {
background-color: #004B67;
}
div.legend-medium {
background-color: #51A4B6;
}
div.legend-stressful {
background-color: #FF6600;
}
div.legend-oneway {
width: 0;
height: 0;
border-style: solid;
border-width: 15px 0 15px 15px;
border-color: transparent transparent transparent #999;
margin-left: 10px;
margin-right: 35px;
border-radius: 0;
}
div.legend-unpaved {
background: repeating-linear-gradient(90deg,
#999 0,
#999 20px,
#fff 20px,
#fff 30px);
}
div.legend-steep {
height: 25px;
background: repeating-linear-gradient(90deg,
transparent 0,
transparent 9px,
#999 9px,
#999 11px,
transparent 11px,
transparent 30px);
}
div.legend-container {
display: grid;
align-items: center;
}
div.legend-container div {
grid-column: 1;
grid-row: 1;
display: flex;
}
ul.legend li img {
float: right;
margin-left: 0.5em;
margin-bottom: 0.5em;
}
.leaflet-popup-content p,
.leaflet-popup-content ul {
margin-top: 0;
margin-bottom: 0.2em;
}
.leaflet-popup-content h2 {
font-size: 100%;
margin-top: 0;
margin-bottom: 0.2em;
}
.leaflet-popup-content .sidenote {
color: dimgray;
font-size: 85%;
margin-bottom: 0;
}
.leaflet-popup-content .sidenote a {
color: dimgray;
}
span.transitLine {
color: #fff;
font-weight: bold;
padding: 0.2em;
}
/*
- #AAB622 Grün für Schrift
- #F0F4D9 Grün für Flächen (sehr hell)
- #B8CC24 Grün für Logo, Flächen & andere Stilelemente (satt)
- #004B67 Blau für Text & andere Stilelemente (satt, dunkel)
- #51A4B6 Sekundärfarbe (Türkis)
- #A2C8D3 Sekundärfarbe (Hellblau)
- #FF6600 Sekundärfarbe (Orange)
*/