concerto_weather 0.3.2 → 0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +43 -0
- data/app/assets/fonts/concerto_weather/weathericons-regular-webfont.eot +0 -0
- data/app/assets/fonts/concerto_weather/weathericons-regular-webfont.svg +257 -0
- data/app/assets/fonts/concerto_weather/weathericons-regular-webfont.ttf +0 -0
- data/app/assets/fonts/concerto_weather/weathericons-regular-webfont.woff +0 -0
- data/app/assets/fonts/concerto_weather/weathericons-regular-webfont.woff2 +0 -0
- data/app/assets/stylesheets/concerto_weather/application.css +2 -0
- data/app/assets/stylesheets/concerto_weather/weather-icons-wind.min.css.scss +6099 -0
- data/app/assets/stylesheets/concerto_weather/weather-icons.min.css.scss +1989 -0
- data/app/models/weather.rb +107 -26
- data/app/views/contents/weather/_form_top.html.erb +19 -0
- data/app/views/contents/weather/_render_default.html.erb +10 -0
- data/lib/concerto_weather/version.rb +1 -1
- metadata +10 -3
@@ -0,0 +1,1989 @@
|
|
1
|
+
/*!
|
2
|
+
* Weather Icons 2.0
|
3
|
+
* Updated August 1, 2015
|
4
|
+
* Weather themed icons for Bootstrap
|
5
|
+
* Author - Erik Flowers - erik@helloerik.com
|
6
|
+
* Email: erik@helloerik.com
|
7
|
+
* Twitter: http://twitter.com/Erik_UX
|
8
|
+
* ------------------------------------------------------------------------------
|
9
|
+
* Maintained at http://erikflowers.github.io/weather-icons
|
10
|
+
*
|
11
|
+
* License
|
12
|
+
* ------------------------------------------------------------------------------
|
13
|
+
* - Font licensed under SIL OFL 1.1 -
|
14
|
+
* http://scripts.sil.org/OFL
|
15
|
+
* - CSS, SCSS and LESS are licensed under MIT License -
|
16
|
+
* http://opensource.org/licenses/mit-license.html
|
17
|
+
* - Documentation licensed under CC BY 3.0 -
|
18
|
+
* http://creativecommons.org/licenses/by/3.0/
|
19
|
+
* - Inspired by and works great as a companion with Font Awesome
|
20
|
+
* "Font Awesome by Dave Gandy - http://fontawesome.io"
|
21
|
+
*/
|
22
|
+
|
23
|
+
/*!
|
24
|
+
* Weather Icons 2.0
|
25
|
+
* Updated August 1, 2015
|
26
|
+
* Weather themed icons for Bootstrap
|
27
|
+
* Author - Erik Flowers - erik@helloerik.com
|
28
|
+
* Email: erik@helloerik.com
|
29
|
+
* Twitter: http://twitter.com/Erik_UX
|
30
|
+
* ------------------------------------------------------------------------------
|
31
|
+
* Maintained at http://erikflowers.github.io/weather-icons
|
32
|
+
*
|
33
|
+
* License
|
34
|
+
* ------------------------------------------------------------------------------
|
35
|
+
* - Font licensed under SIL OFL 1.1 -
|
36
|
+
* http://scripts.sil.org/OFL
|
37
|
+
* - CSS, SCSS and LESS are licensed under MIT License -
|
38
|
+
* http://opensource.org/licenses/mit-license.html
|
39
|
+
* - Documentation licensed under CC BY 3.0 -
|
40
|
+
* http://creativecommons.org/licenses/by/3.0/
|
41
|
+
* - Inspired by and works great as a companion with Font Awesome
|
42
|
+
* "Font Awesome by Dave Gandy - http://fontawesome.io"
|
43
|
+
*/
|
44
|
+
|
45
|
+
@font-face {
|
46
|
+
font-family: weathericons;
|
47
|
+
src: font-url('concerto_weather/weathericons-regular-webfont.eot');
|
48
|
+
src: font-url('concerto_weather/weathericons-regular-webfont.eot?#iefix') format("embedded-opentype"),
|
49
|
+
font-url('concerto_weather/weathericons-regular-webfont.woff2') format("woff2"),
|
50
|
+
font-url('concerto_weather/weathericons-regular-webfont.woff') format("woff"),
|
51
|
+
font-url('concerto_weather/weathericons-regular-webfont.ttf') format("truetype"),
|
52
|
+
font-url('concerto_weather/weathericons-regular-webfont.svg#weather_iconsregular') format("svg");
|
53
|
+
font-weight: 400;
|
54
|
+
font-style: normal;
|
55
|
+
}
|
56
|
+
|
57
|
+
.wi {
|
58
|
+
display: inline-block;
|
59
|
+
font-family: weathericons;
|
60
|
+
font-style: normal;
|
61
|
+
font-weight: 400;
|
62
|
+
line-height: 1;
|
63
|
+
-webkit-font-smoothing: antialiased;
|
64
|
+
-moz-osx-font-smoothing: grayscale;
|
65
|
+
}
|
66
|
+
|
67
|
+
.wi-fw {
|
68
|
+
text-align: center;
|
69
|
+
width: 1.4em;
|
70
|
+
}
|
71
|
+
|
72
|
+
.wi-rotate-90 {
|
73
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
74
|
+
-webkit-transform: rotate(90deg);
|
75
|
+
-ms-transform: rotate(90deg);
|
76
|
+
transform: rotate(90deg);
|
77
|
+
}
|
78
|
+
|
79
|
+
.wi-rotate-180 {
|
80
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
81
|
+
-webkit-transform: rotate(180deg);
|
82
|
+
-ms-transform: rotate(180deg);
|
83
|
+
transform: rotate(180deg);
|
84
|
+
}
|
85
|
+
|
86
|
+
.wi-rotate-270 {
|
87
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
88
|
+
-webkit-transform: rotate(270deg);
|
89
|
+
-ms-transform: rotate(270deg);
|
90
|
+
transform: rotate(270deg);
|
91
|
+
}
|
92
|
+
|
93
|
+
.wi-flip-horizontal {
|
94
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
95
|
+
-webkit-transform: scale(-1, 1);
|
96
|
+
-ms-transform: scale(-1, 1);
|
97
|
+
transform: scale(-1, 1);
|
98
|
+
}
|
99
|
+
|
100
|
+
.wi-flip-vertical {
|
101
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
102
|
+
-webkit-transform: scale(1, -1);
|
103
|
+
-ms-transform: scale(1, -1);
|
104
|
+
transform: scale(1, -1);
|
105
|
+
}
|
106
|
+
|
107
|
+
.wi-day-sunny:before {
|
108
|
+
content: "\f00d";
|
109
|
+
}
|
110
|
+
|
111
|
+
.wi-day-cloudy:before {
|
112
|
+
content: "\f002";
|
113
|
+
}
|
114
|
+
|
115
|
+
.wi-day-cloudy-gusts:before {
|
116
|
+
content: "\f000";
|
117
|
+
}
|
118
|
+
|
119
|
+
.wi-day-cloudy-windy:before {
|
120
|
+
content: "\f001";
|
121
|
+
}
|
122
|
+
|
123
|
+
.wi-day-fog:before {
|
124
|
+
content: "\f003";
|
125
|
+
}
|
126
|
+
|
127
|
+
.wi-day-hail:before {
|
128
|
+
content: "\f004";
|
129
|
+
}
|
130
|
+
|
131
|
+
.wi-day-haze:before {
|
132
|
+
content: "\f0b6";
|
133
|
+
}
|
134
|
+
|
135
|
+
.wi-day-lightning:before {
|
136
|
+
content: "\f005";
|
137
|
+
}
|
138
|
+
|
139
|
+
.wi-day-rain:before {
|
140
|
+
content: "\f008";
|
141
|
+
}
|
142
|
+
|
143
|
+
.wi-day-rain-mix:before {
|
144
|
+
content: "\f006";
|
145
|
+
}
|
146
|
+
|
147
|
+
.wi-day-rain-wind:before {
|
148
|
+
content: "\f007";
|
149
|
+
}
|
150
|
+
|
151
|
+
.wi-day-showers:before {
|
152
|
+
content: "\f009";
|
153
|
+
}
|
154
|
+
|
155
|
+
.wi-day-sleet:before {
|
156
|
+
content: "\f0b2";
|
157
|
+
}
|
158
|
+
|
159
|
+
.wi-day-sleet-storm:before {
|
160
|
+
content: "\f068";
|
161
|
+
}
|
162
|
+
|
163
|
+
.wi-day-snow:before {
|
164
|
+
content: "\f00a";
|
165
|
+
}
|
166
|
+
|
167
|
+
.wi-day-snow-thunderstorm:before {
|
168
|
+
content: "\f06b";
|
169
|
+
}
|
170
|
+
|
171
|
+
.wi-day-snow-wind:before {
|
172
|
+
content: "\f065";
|
173
|
+
}
|
174
|
+
|
175
|
+
.wi-day-sprinkle:before {
|
176
|
+
content: "\f00b";
|
177
|
+
}
|
178
|
+
|
179
|
+
.wi-day-storm-showers:before {
|
180
|
+
content: "\f00e";
|
181
|
+
}
|
182
|
+
|
183
|
+
.wi-day-sunny-overcast:before {
|
184
|
+
content: "\f00c";
|
185
|
+
}
|
186
|
+
|
187
|
+
.wi-day-thunderstorm:before {
|
188
|
+
content: "\f010";
|
189
|
+
}
|
190
|
+
|
191
|
+
.wi-day-windy:before {
|
192
|
+
content: "\f085";
|
193
|
+
}
|
194
|
+
|
195
|
+
.wi-solar-eclipse:before {
|
196
|
+
content: "\f06e";
|
197
|
+
}
|
198
|
+
|
199
|
+
.wi-hot:before {
|
200
|
+
content: "\f072";
|
201
|
+
}
|
202
|
+
|
203
|
+
.wi-day-cloudy-high:before {
|
204
|
+
content: "\f07d";
|
205
|
+
}
|
206
|
+
|
207
|
+
.wi-day-light-wind:before {
|
208
|
+
content: "\f0c4";
|
209
|
+
}
|
210
|
+
|
211
|
+
.wi-night-clear:before {
|
212
|
+
content: "\f02e";
|
213
|
+
}
|
214
|
+
|
215
|
+
.wi-night-alt-cloudy:before {
|
216
|
+
content: "\f086";
|
217
|
+
}
|
218
|
+
|
219
|
+
.wi-night-alt-cloudy-gusts:before {
|
220
|
+
content: "\f022";
|
221
|
+
}
|
222
|
+
|
223
|
+
.wi-night-alt-cloudy-windy:before {
|
224
|
+
content: "\f023";
|
225
|
+
}
|
226
|
+
|
227
|
+
.wi-night-alt-hail:before {
|
228
|
+
content: "\f024";
|
229
|
+
}
|
230
|
+
|
231
|
+
.wi-night-alt-lightning:before {
|
232
|
+
content: "\f025";
|
233
|
+
}
|
234
|
+
|
235
|
+
.wi-night-alt-rain:before {
|
236
|
+
content: "\f028";
|
237
|
+
}
|
238
|
+
|
239
|
+
.wi-night-alt-rain-mix:before {
|
240
|
+
content: "\f026";
|
241
|
+
}
|
242
|
+
|
243
|
+
.wi-night-alt-rain-wind:before {
|
244
|
+
content: "\f027";
|
245
|
+
}
|
246
|
+
|
247
|
+
.wi-night-alt-showers:before {
|
248
|
+
content: "\f029";
|
249
|
+
}
|
250
|
+
|
251
|
+
.wi-night-alt-sleet:before {
|
252
|
+
content: "\f0b4";
|
253
|
+
}
|
254
|
+
|
255
|
+
.wi-night-alt-sleet-storm:before {
|
256
|
+
content: "\f06a";
|
257
|
+
}
|
258
|
+
|
259
|
+
.wi-night-alt-snow:before {
|
260
|
+
content: "\f02a";
|
261
|
+
}
|
262
|
+
|
263
|
+
.wi-night-alt-snow-thunderstorm:before {
|
264
|
+
content: "\f06d";
|
265
|
+
}
|
266
|
+
|
267
|
+
.wi-night-alt-snow-wind:before {
|
268
|
+
content: "\f067";
|
269
|
+
}
|
270
|
+
|
271
|
+
.wi-night-alt-sprinkle:before {
|
272
|
+
content: "\f02b";
|
273
|
+
}
|
274
|
+
|
275
|
+
.wi-night-alt-storm-showers:before {
|
276
|
+
content: "\f02c";
|
277
|
+
}
|
278
|
+
|
279
|
+
.wi-night-alt-thunderstorm:before {
|
280
|
+
content: "\f02d";
|
281
|
+
}
|
282
|
+
|
283
|
+
.wi-night-cloudy:before {
|
284
|
+
content: "\f031";
|
285
|
+
}
|
286
|
+
|
287
|
+
.wi-night-cloudy-gusts:before {
|
288
|
+
content: "\f02f";
|
289
|
+
}
|
290
|
+
|
291
|
+
.wi-night-cloudy-windy:before {
|
292
|
+
content: "\f030";
|
293
|
+
}
|
294
|
+
|
295
|
+
.wi-night-fog:before {
|
296
|
+
content: "\f04a";
|
297
|
+
}
|
298
|
+
|
299
|
+
.wi-night-hail:before {
|
300
|
+
content: "\f032";
|
301
|
+
}
|
302
|
+
|
303
|
+
.wi-night-lightning:before {
|
304
|
+
content: "\f033";
|
305
|
+
}
|
306
|
+
|
307
|
+
.wi-night-partly-cloudy:before {
|
308
|
+
content: "\f083";
|
309
|
+
}
|
310
|
+
|
311
|
+
.wi-night-rain:before {
|
312
|
+
content: "\f036";
|
313
|
+
}
|
314
|
+
|
315
|
+
.wi-night-rain-mix:before {
|
316
|
+
content: "\f034";
|
317
|
+
}
|
318
|
+
|
319
|
+
.wi-night-rain-wind:before {
|
320
|
+
content: "\f035";
|
321
|
+
}
|
322
|
+
|
323
|
+
.wi-night-showers:before {
|
324
|
+
content: "\f037";
|
325
|
+
}
|
326
|
+
|
327
|
+
.wi-night-sleet:before {
|
328
|
+
content: "\f0b3";
|
329
|
+
}
|
330
|
+
|
331
|
+
.wi-night-sleet-storm:before {
|
332
|
+
content: "\f069";
|
333
|
+
}
|
334
|
+
|
335
|
+
.wi-night-snow:before {
|
336
|
+
content: "\f038";
|
337
|
+
}
|
338
|
+
|
339
|
+
.wi-night-snow-thunderstorm:before {
|
340
|
+
content: "\f06c";
|
341
|
+
}
|
342
|
+
|
343
|
+
.wi-night-snow-wind:before {
|
344
|
+
content: "\f066";
|
345
|
+
}
|
346
|
+
|
347
|
+
.wi-night-sprinkle:before {
|
348
|
+
content: "\f039";
|
349
|
+
}
|
350
|
+
|
351
|
+
.wi-night-storm-showers:before {
|
352
|
+
content: "\f03a";
|
353
|
+
}
|
354
|
+
|
355
|
+
.wi-night-thunderstorm:before {
|
356
|
+
content: "\f03b";
|
357
|
+
}
|
358
|
+
|
359
|
+
.wi-lunar-eclipse:before {
|
360
|
+
content: "\f070";
|
361
|
+
}
|
362
|
+
|
363
|
+
.wi-stars:before {
|
364
|
+
content: "\f077";
|
365
|
+
}
|
366
|
+
|
367
|
+
.wi-storm-showers:before {
|
368
|
+
content: "\f01d";
|
369
|
+
}
|
370
|
+
|
371
|
+
.wi-thunderstorm:before {
|
372
|
+
content: "\f01e";
|
373
|
+
}
|
374
|
+
|
375
|
+
.wi-night-alt-cloudy-high:before {
|
376
|
+
content: "\f07e";
|
377
|
+
}
|
378
|
+
|
379
|
+
.wi-night-cloudy-high:before {
|
380
|
+
content: "\f080";
|
381
|
+
}
|
382
|
+
|
383
|
+
.wi-night-alt-partly-cloudy:before {
|
384
|
+
content: "\f081";
|
385
|
+
}
|
386
|
+
|
387
|
+
.wi-cloud:before {
|
388
|
+
content: "\f041";
|
389
|
+
}
|
390
|
+
|
391
|
+
.wi-cloudy:before {
|
392
|
+
content: "\f013";
|
393
|
+
}
|
394
|
+
|
395
|
+
.wi-cloudy-gusts:before {
|
396
|
+
content: "\f011";
|
397
|
+
}
|
398
|
+
|
399
|
+
.wi-cloudy-windy:before {
|
400
|
+
content: "\f012";
|
401
|
+
}
|
402
|
+
|
403
|
+
.wi-fog:before {
|
404
|
+
content: "\f014";
|
405
|
+
}
|
406
|
+
|
407
|
+
.wi-hail:before {
|
408
|
+
content: "\f015";
|
409
|
+
}
|
410
|
+
|
411
|
+
.wi-rain:before {
|
412
|
+
content: "\f019";
|
413
|
+
}
|
414
|
+
|
415
|
+
.wi-rain-mix:before {
|
416
|
+
content: "\f017";
|
417
|
+
}
|
418
|
+
|
419
|
+
.wi-rain-wind:before {
|
420
|
+
content: "\f018";
|
421
|
+
}
|
422
|
+
|
423
|
+
.wi-showers:before {
|
424
|
+
content: "\f01a";
|
425
|
+
}
|
426
|
+
|
427
|
+
.wi-sleet:before {
|
428
|
+
content: "\f0b5";
|
429
|
+
}
|
430
|
+
|
431
|
+
.wi-snow:before {
|
432
|
+
content: "\f01b";
|
433
|
+
}
|
434
|
+
|
435
|
+
.wi-sprinkle:before {
|
436
|
+
content: "\f01c";
|
437
|
+
}
|
438
|
+
|
439
|
+
.wi-storm-showers:before {
|
440
|
+
content: "\f01d";
|
441
|
+
}
|
442
|
+
|
443
|
+
.wi-thunderstorm:before {
|
444
|
+
content: "\f01e";
|
445
|
+
}
|
446
|
+
|
447
|
+
.wi-snow-wind:before {
|
448
|
+
content: "\f064";
|
449
|
+
}
|
450
|
+
|
451
|
+
.wi-snow:before {
|
452
|
+
content: "\f01b";
|
453
|
+
}
|
454
|
+
|
455
|
+
.wi-smog:before {
|
456
|
+
content: "\f074";
|
457
|
+
}
|
458
|
+
|
459
|
+
.wi-smoke:before {
|
460
|
+
content: "\f062";
|
461
|
+
}
|
462
|
+
|
463
|
+
.wi-lightning:before {
|
464
|
+
content: "\f016";
|
465
|
+
}
|
466
|
+
|
467
|
+
.wi-raindrops:before {
|
468
|
+
content: "\f04e";
|
469
|
+
}
|
470
|
+
|
471
|
+
.wi-raindrop:before {
|
472
|
+
content: "\f078";
|
473
|
+
}
|
474
|
+
|
475
|
+
.wi-dust:before {
|
476
|
+
content: "\f063";
|
477
|
+
}
|
478
|
+
|
479
|
+
.wi-snowflake-cold:before {
|
480
|
+
content: "\f076";
|
481
|
+
}
|
482
|
+
|
483
|
+
.wi-windy:before {
|
484
|
+
content: "\f021";
|
485
|
+
}
|
486
|
+
|
487
|
+
.wi-strong-wind:before {
|
488
|
+
content: "\f050";
|
489
|
+
}
|
490
|
+
|
491
|
+
.wi-sandstorm:before {
|
492
|
+
content: "\f082";
|
493
|
+
}
|
494
|
+
|
495
|
+
.wi-earthquake:before {
|
496
|
+
content: "\f0c6";
|
497
|
+
}
|
498
|
+
|
499
|
+
.wi-fire:before {
|
500
|
+
content: "\f0c7";
|
501
|
+
}
|
502
|
+
|
503
|
+
.wi-flood:before {
|
504
|
+
content: "\f07c";
|
505
|
+
}
|
506
|
+
|
507
|
+
.wi-meteor:before {
|
508
|
+
content: "\f071";
|
509
|
+
}
|
510
|
+
|
511
|
+
.wi-tsunami:before {
|
512
|
+
content: "\f0c5";
|
513
|
+
}
|
514
|
+
|
515
|
+
.wi-volcano:before {
|
516
|
+
content: "\f0c8";
|
517
|
+
}
|
518
|
+
|
519
|
+
.wi-hurricane:before {
|
520
|
+
content: "\f073";
|
521
|
+
}
|
522
|
+
|
523
|
+
.wi-tornado:before {
|
524
|
+
content: "\f056";
|
525
|
+
}
|
526
|
+
|
527
|
+
.wi-small-craft-advisory:before {
|
528
|
+
content: "\f0cc";
|
529
|
+
}
|
530
|
+
|
531
|
+
.wi-gale-warning:before {
|
532
|
+
content: "\f0cd";
|
533
|
+
}
|
534
|
+
|
535
|
+
.wi-storm-warning:before {
|
536
|
+
content: "\f0ce";
|
537
|
+
}
|
538
|
+
|
539
|
+
.wi-hurricane-warning:before {
|
540
|
+
content: "\f0cf";
|
541
|
+
}
|
542
|
+
|
543
|
+
.wi-wind-direction:before {
|
544
|
+
content: "\f0b1";
|
545
|
+
}
|
546
|
+
|
547
|
+
.wi-alien:before {
|
548
|
+
content: "\f075";
|
549
|
+
}
|
550
|
+
|
551
|
+
.wi-celsius:before {
|
552
|
+
content: "\f03c";
|
553
|
+
}
|
554
|
+
|
555
|
+
.wi-fahrenheit:before {
|
556
|
+
content: "\f045";
|
557
|
+
}
|
558
|
+
|
559
|
+
.wi-degrees:before {
|
560
|
+
content: "\f042";
|
561
|
+
}
|
562
|
+
|
563
|
+
.wi-thermometer:before {
|
564
|
+
content: "\f055";
|
565
|
+
}
|
566
|
+
|
567
|
+
.wi-thermometer-exterior:before {
|
568
|
+
content: "\f053";
|
569
|
+
}
|
570
|
+
|
571
|
+
.wi-thermometer-internal:before {
|
572
|
+
content: "\f054";
|
573
|
+
}
|
574
|
+
|
575
|
+
.wi-cloud-down:before {
|
576
|
+
content: "\f03d";
|
577
|
+
}
|
578
|
+
|
579
|
+
.wi-cloud-up:before {
|
580
|
+
content: "\f040";
|
581
|
+
}
|
582
|
+
|
583
|
+
.wi-cloud-refresh:before {
|
584
|
+
content: "\f03e";
|
585
|
+
}
|
586
|
+
|
587
|
+
.wi-horizon:before {
|
588
|
+
content: "\f047";
|
589
|
+
}
|
590
|
+
|
591
|
+
.wi-horizon-alt:before {
|
592
|
+
content: "\f046";
|
593
|
+
}
|
594
|
+
|
595
|
+
.wi-sunrise:before {
|
596
|
+
content: "\f051";
|
597
|
+
}
|
598
|
+
|
599
|
+
.wi-sunset:before {
|
600
|
+
content: "\f052";
|
601
|
+
}
|
602
|
+
|
603
|
+
.wi-moonrise:before {
|
604
|
+
content: "\f0c9";
|
605
|
+
}
|
606
|
+
|
607
|
+
.wi-moonset:before {
|
608
|
+
content: "\f0ca";
|
609
|
+
}
|
610
|
+
|
611
|
+
.wi-refresh:before {
|
612
|
+
content: "\f04c";
|
613
|
+
}
|
614
|
+
|
615
|
+
.wi-refresh-alt:before {
|
616
|
+
content: "\f04b";
|
617
|
+
}
|
618
|
+
|
619
|
+
.wi-umbrella:before {
|
620
|
+
content: "\f084";
|
621
|
+
}
|
622
|
+
|
623
|
+
.wi-barometer:before {
|
624
|
+
content: "\f079";
|
625
|
+
}
|
626
|
+
|
627
|
+
.wi-humidity:before {
|
628
|
+
content: "\f07a";
|
629
|
+
}
|
630
|
+
|
631
|
+
.wi-na:before {
|
632
|
+
content: "\f07b";
|
633
|
+
}
|
634
|
+
|
635
|
+
.wi-train:before {
|
636
|
+
content: "\f0cb";
|
637
|
+
}
|
638
|
+
|
639
|
+
.wi-moon-new:before {
|
640
|
+
content: "\f095";
|
641
|
+
}
|
642
|
+
|
643
|
+
.wi-moon-waxing-crescent-1:before {
|
644
|
+
content: "\f096";
|
645
|
+
}
|
646
|
+
|
647
|
+
.wi-moon-waxing-crescent-2:before {
|
648
|
+
content: "\f097";
|
649
|
+
}
|
650
|
+
|
651
|
+
.wi-moon-waxing-crescent-3:before {
|
652
|
+
content: "\f098";
|
653
|
+
}
|
654
|
+
|
655
|
+
.wi-moon-waxing-crescent-4:before {
|
656
|
+
content: "\f099";
|
657
|
+
}
|
658
|
+
|
659
|
+
.wi-moon-waxing-crescent-5:before {
|
660
|
+
content: "\f09a";
|
661
|
+
}
|
662
|
+
|
663
|
+
.wi-moon-waxing-crescent-6:before {
|
664
|
+
content: "\f09b";
|
665
|
+
}
|
666
|
+
|
667
|
+
.wi-moon-first-quarter:before {
|
668
|
+
content: "\f09c";
|
669
|
+
}
|
670
|
+
|
671
|
+
.wi-moon-waxing-gibbous-1:before {
|
672
|
+
content: "\f09d";
|
673
|
+
}
|
674
|
+
|
675
|
+
.wi-moon-waxing-gibbous-2:before {
|
676
|
+
content: "\f09e";
|
677
|
+
}
|
678
|
+
|
679
|
+
.wi-moon-waxing-gibbous-3:before {
|
680
|
+
content: "\f09f";
|
681
|
+
}
|
682
|
+
|
683
|
+
.wi-moon-waxing-gibbous-4:before {
|
684
|
+
content: "\f0a0";
|
685
|
+
}
|
686
|
+
|
687
|
+
.wi-moon-waxing-gibbous-5:before {
|
688
|
+
content: "\f0a1";
|
689
|
+
}
|
690
|
+
|
691
|
+
.wi-moon-waxing-gibbous-6:before {
|
692
|
+
content: "\f0a2";
|
693
|
+
}
|
694
|
+
|
695
|
+
.wi-moon-full:before {
|
696
|
+
content: "\f0a3";
|
697
|
+
}
|
698
|
+
|
699
|
+
.wi-moon-waning-gibbous-1:before {
|
700
|
+
content: "\f0a4";
|
701
|
+
}
|
702
|
+
|
703
|
+
.wi-moon-waning-gibbous-2:before {
|
704
|
+
content: "\f0a5";
|
705
|
+
}
|
706
|
+
|
707
|
+
.wi-moon-waning-gibbous-3:before {
|
708
|
+
content: "\f0a6";
|
709
|
+
}
|
710
|
+
|
711
|
+
.wi-moon-waning-gibbous-4:before {
|
712
|
+
content: "\f0a7";
|
713
|
+
}
|
714
|
+
|
715
|
+
.wi-moon-waning-gibbous-5:before {
|
716
|
+
content: "\f0a8";
|
717
|
+
}
|
718
|
+
|
719
|
+
.wi-moon-waning-gibbous-6:before {
|
720
|
+
content: "\f0a9";
|
721
|
+
}
|
722
|
+
|
723
|
+
.wi-moon-third-quarter:before {
|
724
|
+
content: "\f0aa";
|
725
|
+
}
|
726
|
+
|
727
|
+
.wi-moon-waning-crescent-1:before {
|
728
|
+
content: "\f0ab";
|
729
|
+
}
|
730
|
+
|
731
|
+
.wi-moon-waning-crescent-2:before {
|
732
|
+
content: "\f0ac";
|
733
|
+
}
|
734
|
+
|
735
|
+
.wi-moon-waning-crescent-3:before {
|
736
|
+
content: "\f0ad";
|
737
|
+
}
|
738
|
+
|
739
|
+
.wi-moon-waning-crescent-4:before {
|
740
|
+
content: "\f0ae";
|
741
|
+
}
|
742
|
+
|
743
|
+
.wi-moon-waning-crescent-5:before {
|
744
|
+
content: "\f0af";
|
745
|
+
}
|
746
|
+
|
747
|
+
.wi-moon-waning-crescent-6:before {
|
748
|
+
content: "\f0b0";
|
749
|
+
}
|
750
|
+
|
751
|
+
.wi-moon-alt-new:before {
|
752
|
+
content: "\f0eb";
|
753
|
+
}
|
754
|
+
|
755
|
+
.wi-moon-alt-waxing-crescent-1:before {
|
756
|
+
content: "\f0d0";
|
757
|
+
}
|
758
|
+
|
759
|
+
.wi-moon-alt-waxing-crescent-2:before {
|
760
|
+
content: "\f0d1";
|
761
|
+
}
|
762
|
+
|
763
|
+
.wi-moon-alt-waxing-crescent-3:before {
|
764
|
+
content: "\f0d2";
|
765
|
+
}
|
766
|
+
|
767
|
+
.wi-moon-alt-waxing-crescent-4:before {
|
768
|
+
content: "\f0d3";
|
769
|
+
}
|
770
|
+
|
771
|
+
.wi-moon-alt-waxing-crescent-5:before {
|
772
|
+
content: "\f0d4";
|
773
|
+
}
|
774
|
+
|
775
|
+
.wi-moon-alt-waxing-crescent-6:before {
|
776
|
+
content: "\f0d5";
|
777
|
+
}
|
778
|
+
|
779
|
+
.wi-moon-alt-first-quarter:before {
|
780
|
+
content: "\f0d6";
|
781
|
+
}
|
782
|
+
|
783
|
+
.wi-moon-alt-waxing-gibbous-1:before {
|
784
|
+
content: "\f0d7";
|
785
|
+
}
|
786
|
+
|
787
|
+
.wi-moon-alt-waxing-gibbous-2:before {
|
788
|
+
content: "\f0d8";
|
789
|
+
}
|
790
|
+
|
791
|
+
.wi-moon-alt-waxing-gibbous-3:before {
|
792
|
+
content: "\f0d9";
|
793
|
+
}
|
794
|
+
|
795
|
+
.wi-moon-alt-waxing-gibbous-4:before {
|
796
|
+
content: "\f0da";
|
797
|
+
}
|
798
|
+
|
799
|
+
.wi-moon-alt-waxing-gibbous-5:before {
|
800
|
+
content: "\f0db";
|
801
|
+
}
|
802
|
+
|
803
|
+
.wi-moon-alt-waxing-gibbous-6:before {
|
804
|
+
content: "\f0dc";
|
805
|
+
}
|
806
|
+
|
807
|
+
.wi-moon-alt-full:before {
|
808
|
+
content: "\f0dd";
|
809
|
+
}
|
810
|
+
|
811
|
+
.wi-moon-alt-waning-gibbous-1:before {
|
812
|
+
content: "\f0de";
|
813
|
+
}
|
814
|
+
|
815
|
+
.wi-moon-alt-waning-gibbous-2:before {
|
816
|
+
content: "\f0df";
|
817
|
+
}
|
818
|
+
|
819
|
+
.wi-moon-alt-waning-gibbous-3:before {
|
820
|
+
content: "\f0e0";
|
821
|
+
}
|
822
|
+
|
823
|
+
.wi-moon-alt-waning-gibbous-4:before {
|
824
|
+
content: "\f0e1";
|
825
|
+
}
|
826
|
+
|
827
|
+
.wi-moon-alt-waning-gibbous-5:before {
|
828
|
+
content: "\f0e2";
|
829
|
+
}
|
830
|
+
|
831
|
+
.wi-moon-alt-waning-gibbous-6:before {
|
832
|
+
content: "\f0e3";
|
833
|
+
}
|
834
|
+
|
835
|
+
.wi-moon-alt-third-quarter:before {
|
836
|
+
content: "\f0e4";
|
837
|
+
}
|
838
|
+
|
839
|
+
.wi-moon-alt-waning-crescent-1:before {
|
840
|
+
content: "\f0e5";
|
841
|
+
}
|
842
|
+
|
843
|
+
.wi-moon-alt-waning-crescent-2:before {
|
844
|
+
content: "\f0e6";
|
845
|
+
}
|
846
|
+
|
847
|
+
.wi-moon-alt-waning-crescent-3:before {
|
848
|
+
content: "\f0e7";
|
849
|
+
}
|
850
|
+
|
851
|
+
.wi-moon-alt-waning-crescent-4:before {
|
852
|
+
content: "\f0e8";
|
853
|
+
}
|
854
|
+
|
855
|
+
.wi-moon-alt-waning-crescent-5:before {
|
856
|
+
content: "\f0e9";
|
857
|
+
}
|
858
|
+
|
859
|
+
.wi-moon-alt-waning-crescent-6:before {
|
860
|
+
content: "\f0ea";
|
861
|
+
}
|
862
|
+
|
863
|
+
.wi-moon-0:before {
|
864
|
+
content: "\f095";
|
865
|
+
}
|
866
|
+
|
867
|
+
.wi-moon-1:before {
|
868
|
+
content: "\f096";
|
869
|
+
}
|
870
|
+
|
871
|
+
.wi-moon-2:before {
|
872
|
+
content: "\f097";
|
873
|
+
}
|
874
|
+
|
875
|
+
.wi-moon-3:before {
|
876
|
+
content: "\f098";
|
877
|
+
}
|
878
|
+
|
879
|
+
.wi-moon-4:before {
|
880
|
+
content: "\f099";
|
881
|
+
}
|
882
|
+
|
883
|
+
.wi-moon-5:before {
|
884
|
+
content: "\f09a";
|
885
|
+
}
|
886
|
+
|
887
|
+
.wi-moon-6:before {
|
888
|
+
content: "\f09b";
|
889
|
+
}
|
890
|
+
|
891
|
+
.wi-moon-7:before {
|
892
|
+
content: "\f09c";
|
893
|
+
}
|
894
|
+
|
895
|
+
.wi-moon-8:before {
|
896
|
+
content: "\f09d";
|
897
|
+
}
|
898
|
+
|
899
|
+
.wi-moon-9:before {
|
900
|
+
content: "\f09e";
|
901
|
+
}
|
902
|
+
|
903
|
+
.wi-moon-10:before {
|
904
|
+
content: "\f09f";
|
905
|
+
}
|
906
|
+
|
907
|
+
.wi-moon-11:before {
|
908
|
+
content: "\f0a0";
|
909
|
+
}
|
910
|
+
|
911
|
+
.wi-moon-12:before {
|
912
|
+
content: "\f0a1";
|
913
|
+
}
|
914
|
+
|
915
|
+
.wi-moon-13:before {
|
916
|
+
content: "\f0a2";
|
917
|
+
}
|
918
|
+
|
919
|
+
.wi-moon-14:before {
|
920
|
+
content: "\f0a3";
|
921
|
+
}
|
922
|
+
|
923
|
+
.wi-moon-15:before {
|
924
|
+
content: "\f0a4";
|
925
|
+
}
|
926
|
+
|
927
|
+
.wi-moon-16:before {
|
928
|
+
content: "\f0a5";
|
929
|
+
}
|
930
|
+
|
931
|
+
.wi-moon-17:before {
|
932
|
+
content: "\f0a6";
|
933
|
+
}
|
934
|
+
|
935
|
+
.wi-moon-18:before {
|
936
|
+
content: "\f0a7";
|
937
|
+
}
|
938
|
+
|
939
|
+
.wi-moon-19:before {
|
940
|
+
content: "\f0a8";
|
941
|
+
}
|
942
|
+
|
943
|
+
.wi-moon-20:before {
|
944
|
+
content: "\f0a9";
|
945
|
+
}
|
946
|
+
|
947
|
+
.wi-moon-21:before {
|
948
|
+
content: "\f0aa";
|
949
|
+
}
|
950
|
+
|
951
|
+
.wi-moon-22:before {
|
952
|
+
content: "\f0ab";
|
953
|
+
}
|
954
|
+
|
955
|
+
.wi-moon-23:before {
|
956
|
+
content: "\f0ac";
|
957
|
+
}
|
958
|
+
|
959
|
+
.wi-moon-24:before {
|
960
|
+
content: "\f0ad";
|
961
|
+
}
|
962
|
+
|
963
|
+
.wi-moon-25:before {
|
964
|
+
content: "\f0ae";
|
965
|
+
}
|
966
|
+
|
967
|
+
.wi-moon-26:before {
|
968
|
+
content: "\f0af";
|
969
|
+
}
|
970
|
+
|
971
|
+
.wi-moon-27:before {
|
972
|
+
content: "\f0b0";
|
973
|
+
}
|
974
|
+
|
975
|
+
.wi-time-1:before {
|
976
|
+
content: "\f08a";
|
977
|
+
}
|
978
|
+
|
979
|
+
.wi-time-2:before {
|
980
|
+
content: "\f08b";
|
981
|
+
}
|
982
|
+
|
983
|
+
.wi-time-3:before {
|
984
|
+
content: "\f08c";
|
985
|
+
}
|
986
|
+
|
987
|
+
.wi-time-4:before {
|
988
|
+
content: "\f08d";
|
989
|
+
}
|
990
|
+
|
991
|
+
.wi-time-5:before {
|
992
|
+
content: "\f08e";
|
993
|
+
}
|
994
|
+
|
995
|
+
.wi-time-6:before {
|
996
|
+
content: "\f08f";
|
997
|
+
}
|
998
|
+
|
999
|
+
.wi-time-7:before {
|
1000
|
+
content: "\f090";
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.wi-time-8:before {
|
1004
|
+
content: "\f091";
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
.wi-time-9:before {
|
1008
|
+
content: "\f092";
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
.wi-time-10:before {
|
1012
|
+
content: "\f093";
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
.wi-time-11:before {
|
1016
|
+
content: "\f094";
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
.wi-time-12:before {
|
1020
|
+
content: "\f089";
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
.wi-direction-up:before {
|
1024
|
+
content: "\f058";
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
.wi-direction-up-right:before {
|
1028
|
+
content: "\f057";
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
.wi-direction-right:before {
|
1032
|
+
content: "\f04d";
|
1033
|
+
}
|
1034
|
+
|
1035
|
+
.wi-direction-down-right:before {
|
1036
|
+
content: "\f088";
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
.wi-direction-down:before {
|
1040
|
+
content: "\f044";
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
.wi-direction-down-left:before {
|
1044
|
+
content: "\f043";
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
.wi-direction-left:before {
|
1048
|
+
content: "\f048";
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
.wi-direction-up-left:before {
|
1052
|
+
content: "\f087";
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
.wi-wind-beaufort-0:before {
|
1056
|
+
content: "\f0b7";
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
.wi-wind-beaufort-1:before {
|
1060
|
+
content: "\f0b8";
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
.wi-wind-beaufort-2:before {
|
1064
|
+
content: "\f0b9";
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
.wi-wind-beaufort-3:before {
|
1068
|
+
content: "\f0ba";
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.wi-wind-beaufort-4:before {
|
1072
|
+
content: "\f0bb";
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
.wi-wind-beaufort-5:before {
|
1076
|
+
content: "\f0bc";
|
1077
|
+
}
|
1078
|
+
|
1079
|
+
.wi-wind-beaufort-6:before {
|
1080
|
+
content: "\f0bd";
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.wi-wind-beaufort-7:before {
|
1084
|
+
content: "\f0be";
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
.wi-wind-beaufort-8:before {
|
1088
|
+
content: "\f0bf";
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
.wi-wind-beaufort-9:before {
|
1092
|
+
content: "\f0c0";
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
.wi-wind-beaufort-10:before {
|
1096
|
+
content: "\f0c1";
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
.wi-wind-beaufort-11:before {
|
1100
|
+
content: "\f0c2";
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
.wi-wind-beaufort-12:before {
|
1104
|
+
content: "\f0c3";
|
1105
|
+
}
|
1106
|
+
|
1107
|
+
.wi-yahoo-0:before {
|
1108
|
+
content: "\f056";
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.wi-yahoo-1:before {
|
1112
|
+
content: "\f00e";
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
.wi-yahoo-2:before {
|
1116
|
+
content: "\f073";
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
.wi-yahoo-3:before, .wi-yahoo-4:before {
|
1120
|
+
content: "\f01e";
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
.wi-yahoo-5:before, .wi-yahoo-6:before, .wi-yahoo-7:before {
|
1124
|
+
content: "\f017";
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.wi-yahoo-8:before {
|
1128
|
+
content: "\f015";
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
.wi-yahoo-9:before {
|
1132
|
+
content: "\f01a";
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
.wi-yahoo-10:before {
|
1136
|
+
content: "\f015";
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
.wi-yahoo-11:before, .wi-yahoo-12:before {
|
1140
|
+
content: "\f01a";
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
.wi-yahoo-13:before {
|
1144
|
+
content: "\f01b";
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
.wi-yahoo-14:before {
|
1148
|
+
content: "\f00a";
|
1149
|
+
}
|
1150
|
+
|
1151
|
+
.wi-yahoo-15:before {
|
1152
|
+
content: "\f064";
|
1153
|
+
}
|
1154
|
+
|
1155
|
+
.wi-yahoo-16:before {
|
1156
|
+
content: "\f01b";
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.wi-yahoo-17:before {
|
1160
|
+
content: "\f015";
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
.wi-yahoo-18:before {
|
1164
|
+
content: "\f017";
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
.wi-yahoo-19:before {
|
1168
|
+
content: "\f063";
|
1169
|
+
}
|
1170
|
+
|
1171
|
+
.wi-yahoo-20:before {
|
1172
|
+
content: "\f014";
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
.wi-yahoo-21:before {
|
1176
|
+
content: "\f021";
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
.wi-yahoo-22:before {
|
1180
|
+
content: "\f062";
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
.wi-yahoo-23:before, .wi-yahoo-24:before {
|
1184
|
+
content: "\f050";
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.wi-yahoo-25:before {
|
1188
|
+
content: "\f076";
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
.wi-yahoo-26:before {
|
1192
|
+
content: "\f013";
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.wi-yahoo-27:before {
|
1196
|
+
content: "\f031";
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
.wi-yahoo-28:before {
|
1200
|
+
content: "\f002";
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
.wi-yahoo-29:before {
|
1204
|
+
content: "\f031";
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
.wi-yahoo-30:before {
|
1208
|
+
content: "\f002";
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
.wi-yahoo-31:before {
|
1212
|
+
content: "\f02e";
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
.wi-yahoo-32:before {
|
1216
|
+
content: "\f00d";
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
.wi-yahoo-33:before {
|
1220
|
+
content: "\f083";
|
1221
|
+
}
|
1222
|
+
|
1223
|
+
.wi-yahoo-34:before {
|
1224
|
+
content: "\f00c";
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
.wi-yahoo-35:before {
|
1228
|
+
content: "\f017";
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
.wi-yahoo-36:before {
|
1232
|
+
content: "\f072";
|
1233
|
+
}
|
1234
|
+
|
1235
|
+
.wi-yahoo-37:before, .wi-yahoo-38:before, .wi-yahoo-39:before {
|
1236
|
+
content: "\f00e";
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
.wi-yahoo-40:before {
|
1240
|
+
content: "\f01a";
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
.wi-yahoo-41:before {
|
1244
|
+
content: "\f064";
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.wi-yahoo-42:before {
|
1248
|
+
content: "\f01b";
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.wi-yahoo-43:before {
|
1252
|
+
content: "\f064";
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
.wi-yahoo-44:before {
|
1256
|
+
content: "\f00c";
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
.wi-yahoo-45:before {
|
1260
|
+
content: "\f00e";
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
.wi-yahoo-46:before {
|
1264
|
+
content: "\f01b";
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
.wi-yahoo-47:before {
|
1268
|
+
content: "\f00e";
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
.wi-yahoo-3200:before {
|
1272
|
+
content: "\f077";
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
.wi-forecast-io-clear-day:before {
|
1276
|
+
content: "\f00d";
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.wi-forecast-io-clear-night:before {
|
1280
|
+
content: "\f02e";
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.wi-forecast-io-rain:before {
|
1284
|
+
content: "\f019";
|
1285
|
+
}
|
1286
|
+
|
1287
|
+
.wi-forecast-io-snow:before {
|
1288
|
+
content: "\f01b";
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
.wi-forecast-io-sleet:before {
|
1292
|
+
content: "\f0b5";
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
.wi-forecast-io-wind:before {
|
1296
|
+
content: "\f050";
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
.wi-forecast-io-fog:before {
|
1300
|
+
content: "\f014";
|
1301
|
+
}
|
1302
|
+
|
1303
|
+
.wi-forecast-io-cloudy:before {
|
1304
|
+
content: "\f013";
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
.wi-forecast-io-partly-cloudy-day:before {
|
1308
|
+
content: "\f002";
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
.wi-forecast-io-partly-cloudy-night:before {
|
1312
|
+
content: "\f031";
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
.wi-forecast-io-hail:before {
|
1316
|
+
content: "\f015";
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
.wi-forecast-io-thunderstorm:before {
|
1320
|
+
content: "\f01e";
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
.wi-forecast-io-tornado:before {
|
1324
|
+
content: "\f056";
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
.wi-wmo4680-00:before, .wi-wmo4680-0:before {
|
1328
|
+
content: "\f055";
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
.wi-wmo4680-01:before, .wi-wmo4680-1:before {
|
1332
|
+
content: "\f013";
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
.wi-wmo4680-02:before, .wi-wmo4680-2:before {
|
1336
|
+
content: "\f055";
|
1337
|
+
}
|
1338
|
+
|
1339
|
+
.wi-wmo4680-03:before, .wi-wmo4680-3:before {
|
1340
|
+
content: "\f013";
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
.wi-wmo4680-04:before, .wi-wmo4680-4:before, .wi-wmo4680-05:before, .wi-wmo4680-5:before, .wi-wmo4680-10:before, .wi-wmo4680-11:before {
|
1344
|
+
content: "\f014";
|
1345
|
+
}
|
1346
|
+
|
1347
|
+
.wi-wmo4680-12:before {
|
1348
|
+
content: "\f016";
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
.wi-wmo4680-18:before {
|
1352
|
+
content: "\f050";
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
.wi-wmo4680-20:before {
|
1356
|
+
content: "\f014";
|
1357
|
+
}
|
1358
|
+
|
1359
|
+
.wi-wmo4680-21:before, .wi-wmo4680-22:before {
|
1360
|
+
content: "\f017";
|
1361
|
+
}
|
1362
|
+
|
1363
|
+
.wi-wmo4680-23:before {
|
1364
|
+
content: "\f019";
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
.wi-wmo4680-24:before {
|
1368
|
+
content: "\f01b";
|
1369
|
+
}
|
1370
|
+
|
1371
|
+
.wi-wmo4680-25:before {
|
1372
|
+
content: "\f015";
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
.wi-wmo4680-26:before {
|
1376
|
+
content: "\f01e";
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
.wi-wmo4680-27:before, .wi-wmo4680-28:before, .wi-wmo4680-29:before {
|
1380
|
+
content: "\f063";
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
.wi-wmo4680-30:before, .wi-wmo4680-31:before, .wi-wmo4680-32:before, .wi-wmo4680-33:before, .wi-wmo4680-34:before, .wi-wmo4680-35:before {
|
1384
|
+
content: "\f014";
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
.wi-wmo4680-40:before {
|
1388
|
+
content: "\f017";
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
.wi-wmo4680-41:before {
|
1392
|
+
content: "\f01c";
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
.wi-wmo4680-42:before {
|
1396
|
+
content: "\f019";
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
.wi-wmo4680-43:before {
|
1400
|
+
content: "\f01c";
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
.wi-wmo4680-44:before {
|
1404
|
+
content: "\f019";
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
.wi-wmo4680-45:before, .wi-wmo4680-46:before {
|
1408
|
+
content: "\f015";
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
.wi-wmo4680-47:before, .wi-wmo4680-48:before {
|
1412
|
+
content: "\f01b";
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
.wi-wmo4680-50:before, .wi-wmo4680-51:before {
|
1416
|
+
content: "\f01c";
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
.wi-wmo4680-52:before, .wi-wmo4680-53:before {
|
1420
|
+
content: "\f019";
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
.wi-wmo4680-54:before, .wi-wmo4680-55:before, .wi-wmo4680-56:before {
|
1424
|
+
content: "\f076";
|
1425
|
+
}
|
1426
|
+
|
1427
|
+
.wi-wmo4680-57:before {
|
1428
|
+
content: "\f01c";
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
.wi-wmo4680-58:before {
|
1432
|
+
content: "\f019";
|
1433
|
+
}
|
1434
|
+
|
1435
|
+
.wi-wmo4680-60:before, .wi-wmo4680-61:before {
|
1436
|
+
content: "\f01c";
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
.wi-wmo4680-62:before, .wi-wmo4680-63:before {
|
1440
|
+
content: "\f019";
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.wi-wmo4680-64:before, .wi-wmo4680-65:before, .wi-wmo4680-66:before {
|
1444
|
+
content: "\f015";
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
.wi-wmo4680-67:before, .wi-wmo4680-68:before {
|
1448
|
+
content: "\f017";
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.wi-wmo4680-70:before, .wi-wmo4680-71:before, .wi-wmo4680-72:before, .wi-wmo4680-73:before {
|
1452
|
+
content: "\f01b";
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.wi-wmo4680-74:before, .wi-wmo4680-75:before, .wi-wmo4680-76:before {
|
1456
|
+
content: "\f076";
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.wi-wmo4680-77:before {
|
1460
|
+
content: "\f01b";
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
.wi-wmo4680-78:before {
|
1464
|
+
content: "\f076";
|
1465
|
+
}
|
1466
|
+
|
1467
|
+
.wi-wmo4680-80:before {
|
1468
|
+
content: "\f019";
|
1469
|
+
}
|
1470
|
+
|
1471
|
+
.wi-wmo4680-81:before {
|
1472
|
+
content: "\f01c";
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.wi-wmo4680-82:before, .wi-wmo4680-83:before {
|
1476
|
+
content: "\f019";
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
.wi-wmo4680-84:before {
|
1480
|
+
content: "\f01d";
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.wi-wmo4680-85:before, .wi-wmo4680-86:before, .wi-wmo4680-87:before {
|
1484
|
+
content: "\f017";
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
.wi-wmo4680-89:before {
|
1488
|
+
content: "\f015";
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.wi-wmo4680-90:before {
|
1492
|
+
content: "\f016";
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
.wi-wmo4680-91:before {
|
1496
|
+
content: "\f01d";
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
.wi-wmo4680-92:before, .wi-wmo4680-93:before {
|
1500
|
+
content: "\f01e";
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
.wi-wmo4680-94:before {
|
1504
|
+
content: "\f016";
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
.wi-wmo4680-95:before, .wi-wmo4680-96:before {
|
1508
|
+
content: "\f01e";
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
.wi-wmo4680-99:before {
|
1512
|
+
content: "\f056";
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.wi-owm-200:before, .wi-owm-201:before, .wi-owm-202:before {
|
1516
|
+
content: "\f01e";
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
.wi-owm-210:before, .wi-owm-211:before, .wi-owm-212:before, .wi-owm-221:before {
|
1520
|
+
content: "\f016";
|
1521
|
+
}
|
1522
|
+
|
1523
|
+
.wi-owm-230:before, .wi-owm-231:before, .wi-owm-232:before {
|
1524
|
+
content: "\f01e";
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
.wi-owm-300:before, .wi-owm-301:before {
|
1528
|
+
content: "\f01c";
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
.wi-owm-302:before {
|
1532
|
+
content: "\f019";
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
.wi-owm-310:before {
|
1536
|
+
content: "\f017";
|
1537
|
+
}
|
1538
|
+
|
1539
|
+
.wi-owm-311:before, .wi-owm-312:before {
|
1540
|
+
content: "\f019";
|
1541
|
+
}
|
1542
|
+
|
1543
|
+
.wi-owm-313:before {
|
1544
|
+
content: "\f01a";
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
.wi-owm-314:before {
|
1548
|
+
content: "\f019";
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
.wi-owm-321:before, .wi-owm-500:before {
|
1552
|
+
content: "\f01c";
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
.wi-owm-501:before, .wi-owm-502:before, .wi-owm-503:before, .wi-owm-504:before {
|
1556
|
+
content: "\f019";
|
1557
|
+
}
|
1558
|
+
|
1559
|
+
.wi-owm-511:before {
|
1560
|
+
content: "\f017";
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
.wi-owm-520:before, .wi-owm-521:before, .wi-owm-522:before {
|
1564
|
+
content: "\f01a";
|
1565
|
+
}
|
1566
|
+
|
1567
|
+
.wi-owm-531:before {
|
1568
|
+
content: "\f01d";
|
1569
|
+
}
|
1570
|
+
|
1571
|
+
.wi-owm-600:before, .wi-owm-601:before {
|
1572
|
+
content: "\f01b";
|
1573
|
+
}
|
1574
|
+
|
1575
|
+
.wi-owm-602:before {
|
1576
|
+
content: "\f0b5";
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
.wi-owm-611:before, .wi-owm-612:before, .wi-owm-615:before, .wi-owm-616:before, .wi-owm-620:before {
|
1580
|
+
content: "\f017";
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
.wi-owm-621:before, .wi-owm-622:before {
|
1584
|
+
content: "\f01b";
|
1585
|
+
}
|
1586
|
+
|
1587
|
+
.wi-owm-701:before {
|
1588
|
+
content: "\f01a";
|
1589
|
+
}
|
1590
|
+
|
1591
|
+
.wi-owm-711:before {
|
1592
|
+
content: "\f062";
|
1593
|
+
}
|
1594
|
+
|
1595
|
+
.wi-owm-721:before {
|
1596
|
+
content: "\f0b6";
|
1597
|
+
}
|
1598
|
+
|
1599
|
+
.wi-owm-731:before {
|
1600
|
+
content: "\f063";
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
.wi-owm-741:before {
|
1604
|
+
content: "\f014";
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
.wi-owm-761:before, .wi-owm-762:before {
|
1608
|
+
content: "\f063";
|
1609
|
+
}
|
1610
|
+
|
1611
|
+
.wi-owm-771:before {
|
1612
|
+
content: "\f011";
|
1613
|
+
}
|
1614
|
+
|
1615
|
+
.wi-owm-781:before {
|
1616
|
+
content: "\f056";
|
1617
|
+
}
|
1618
|
+
|
1619
|
+
.wi-owm-800:before {
|
1620
|
+
content: "\f00d";
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
.wi-owm-801:before, .wi-owm-802:before {
|
1624
|
+
content: "\f011";
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
.wi-owm-803:before {
|
1628
|
+
content: "\f012";
|
1629
|
+
}
|
1630
|
+
|
1631
|
+
.wi-owm-804:before {
|
1632
|
+
content: "\f013";
|
1633
|
+
}
|
1634
|
+
|
1635
|
+
.wi-owm-900:before {
|
1636
|
+
content: "\f056";
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
.wi-owm-901:before {
|
1640
|
+
content: "\f01d";
|
1641
|
+
}
|
1642
|
+
|
1643
|
+
.wi-owm-902:before {
|
1644
|
+
content: "\f073";
|
1645
|
+
}
|
1646
|
+
|
1647
|
+
.wi-owm-903:before {
|
1648
|
+
content: "\f076";
|
1649
|
+
}
|
1650
|
+
|
1651
|
+
.wi-owm-904:before {
|
1652
|
+
content: "\f072";
|
1653
|
+
}
|
1654
|
+
|
1655
|
+
.wi-owm-905:before {
|
1656
|
+
content: "\f021";
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
.wi-owm-906:before {
|
1660
|
+
content: "\f015";
|
1661
|
+
}
|
1662
|
+
|
1663
|
+
.wi-owm-957:before {
|
1664
|
+
content: "\f050";
|
1665
|
+
}
|
1666
|
+
|
1667
|
+
.wi-owm-day-200:before, .wi-owm-day-201:before, .wi-owm-day-202:before {
|
1668
|
+
content: "\f010";
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
.wi-owm-day-210:before, .wi-owm-day-211:before, .wi-owm-day-212:before, .wi-owm-day-221:before {
|
1672
|
+
content: "\f005";
|
1673
|
+
}
|
1674
|
+
|
1675
|
+
.wi-owm-day-230:before, .wi-owm-day-231:before, .wi-owm-day-232:before {
|
1676
|
+
content: "\f010";
|
1677
|
+
}
|
1678
|
+
|
1679
|
+
.wi-owm-day-300:before, .wi-owm-day-301:before {
|
1680
|
+
content: "\f00b";
|
1681
|
+
}
|
1682
|
+
|
1683
|
+
.wi-owm-day-302:before, .wi-owm-day-310:before, .wi-owm-day-311:before, .wi-owm-day-312:before, .wi-owm-day-313:before, .wi-owm-day-314:before {
|
1684
|
+
content: "\f008";
|
1685
|
+
}
|
1686
|
+
|
1687
|
+
.wi-owm-day-321:before, .wi-owm-day-500:before {
|
1688
|
+
content: "\f00b";
|
1689
|
+
}
|
1690
|
+
|
1691
|
+
.wi-owm-day-501:before, .wi-owm-day-502:before, .wi-owm-day-503:before, .wi-owm-day-504:before {
|
1692
|
+
content: "\f008";
|
1693
|
+
}
|
1694
|
+
|
1695
|
+
.wi-owm-day-511:before {
|
1696
|
+
content: "\f006";
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
.wi-owm-day-520:before, .wi-owm-day-521:before, .wi-owm-day-522:before {
|
1700
|
+
content: "\f009";
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
.wi-owm-day-531:before {
|
1704
|
+
content: "\f00e";
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
.wi-owm-day-600:before {
|
1708
|
+
content: "\f00a";
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
.wi-owm-day-601:before {
|
1712
|
+
content: "\f0b2";
|
1713
|
+
}
|
1714
|
+
|
1715
|
+
.wi-owm-day-602:before {
|
1716
|
+
content: "\f00a";
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
.wi-owm-day-611:before, .wi-owm-day-612:before, .wi-owm-day-615:before, .wi-owm-day-616:before, .wi-owm-day-620:before {
|
1720
|
+
content: "\f006";
|
1721
|
+
}
|
1722
|
+
|
1723
|
+
.wi-owm-day-621:before, .wi-owm-day-622:before {
|
1724
|
+
content: "\f00a";
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
.wi-owm-day-701:before {
|
1728
|
+
content: "\f009";
|
1729
|
+
}
|
1730
|
+
|
1731
|
+
.wi-owm-day-711:before {
|
1732
|
+
content: "\f062";
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
.wi-owm-day-721:before {
|
1736
|
+
content: "\f0b6";
|
1737
|
+
}
|
1738
|
+
|
1739
|
+
.wi-owm-day-731:before {
|
1740
|
+
content: "\f063";
|
1741
|
+
}
|
1742
|
+
|
1743
|
+
.wi-owm-day-741:before {
|
1744
|
+
content: "\f003";
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
.wi-owm-day-761:before, .wi-owm-day-762:before {
|
1748
|
+
content: "\f063";
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
.wi-owm-day-781:before {
|
1752
|
+
content: "\f056";
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
.wi-owm-day-800:before {
|
1756
|
+
content: "\f00d";
|
1757
|
+
}
|
1758
|
+
|
1759
|
+
.wi-owm-day-801:before, .wi-owm-day-802:before, .wi-owm-day-803:before {
|
1760
|
+
content: "\f000";
|
1761
|
+
}
|
1762
|
+
|
1763
|
+
.wi-owm-day-804:before {
|
1764
|
+
content: "\f00c";
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
.wi-owm-day-900:before {
|
1768
|
+
content: "\f056";
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
.wi-owm-day-902:before {
|
1772
|
+
content: "\f073";
|
1773
|
+
}
|
1774
|
+
|
1775
|
+
.wi-owm-day-903:before {
|
1776
|
+
content: "\f076";
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
.wi-owm-day-904:before {
|
1780
|
+
content: "\f072";
|
1781
|
+
}
|
1782
|
+
|
1783
|
+
.wi-owm-day-906:before {
|
1784
|
+
content: "\f004";
|
1785
|
+
}
|
1786
|
+
|
1787
|
+
.wi-owm-day-957:before {
|
1788
|
+
content: "\f050";
|
1789
|
+
}
|
1790
|
+
|
1791
|
+
.wi-owm-night-200:before, .wi-owm-night-201:before, .wi-owm-night-202:before {
|
1792
|
+
content: "\f02d";
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
.wi-owm-night-210:before, .wi-owm-night-211:before, .wi-owm-night-212:before, .wi-owm-night-221:before {
|
1796
|
+
content: "\f025";
|
1797
|
+
}
|
1798
|
+
|
1799
|
+
.wi-owm-night-230:before, .wi-owm-night-231:before, .wi-owm-night-232:before {
|
1800
|
+
content: "\f02d";
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
.wi-owm-night-300:before, .wi-owm-night-301:before {
|
1804
|
+
content: "\f02b";
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
.wi-owm-night-302:before, .wi-owm-night-310:before, .wi-owm-night-311:before, .wi-owm-night-312:before, .wi-owm-night-313:before, .wi-owm-night-314:before {
|
1808
|
+
content: "\f028";
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
.wi-owm-night-321:before, .wi-owm-night-500:before {
|
1812
|
+
content: "\f02b";
|
1813
|
+
}
|
1814
|
+
|
1815
|
+
.wi-owm-night-501:before, .wi-owm-night-502:before, .wi-owm-night-503:before, .wi-owm-night-504:before {
|
1816
|
+
content: "\f028";
|
1817
|
+
}
|
1818
|
+
|
1819
|
+
.wi-owm-night-511:before {
|
1820
|
+
content: "\f026";
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
.wi-owm-night-520:before, .wi-owm-night-521:before, .wi-owm-night-522:before {
|
1824
|
+
content: "\f029";
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
.wi-owm-night-531:before {
|
1828
|
+
content: "\f02c";
|
1829
|
+
}
|
1830
|
+
|
1831
|
+
.wi-owm-night-600:before {
|
1832
|
+
content: "\f02a";
|
1833
|
+
}
|
1834
|
+
|
1835
|
+
.wi-owm-night-601:before {
|
1836
|
+
content: "\f0b4";
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
.wi-owm-night-602:before {
|
1840
|
+
content: "\f02a";
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
.wi-owm-night-611:before, .wi-owm-night-612:before, .wi-owm-night-615:before, .wi-owm-night-616:before, .wi-owm-night-620:before {
|
1844
|
+
content: "\f026";
|
1845
|
+
}
|
1846
|
+
|
1847
|
+
.wi-owm-night-621:before, .wi-owm-night-622:before {
|
1848
|
+
content: "\f02a";
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
.wi-owm-night-701:before {
|
1852
|
+
content: "\f029";
|
1853
|
+
}
|
1854
|
+
|
1855
|
+
.wi-owm-night-711:before {
|
1856
|
+
content: "\f062";
|
1857
|
+
}
|
1858
|
+
|
1859
|
+
.wi-owm-night-721:before {
|
1860
|
+
content: "\f0b6";
|
1861
|
+
}
|
1862
|
+
|
1863
|
+
.wi-owm-night-731:before {
|
1864
|
+
content: "\f063";
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
.wi-owm-night-741:before {
|
1868
|
+
content: "\f04a";
|
1869
|
+
}
|
1870
|
+
|
1871
|
+
.wi-owm-night-761:before, .wi-owm-night-762:before {
|
1872
|
+
content: "\f063";
|
1873
|
+
}
|
1874
|
+
|
1875
|
+
.wi-owm-night-781:before {
|
1876
|
+
content: "\f056";
|
1877
|
+
}
|
1878
|
+
|
1879
|
+
.wi-owm-night-800:before {
|
1880
|
+
content: "\f02e";
|
1881
|
+
}
|
1882
|
+
|
1883
|
+
.wi-owm-night-801:before, .wi-owm-night-802:before, .wi-owm-night-803:before {
|
1884
|
+
content: "\f022";
|
1885
|
+
}
|
1886
|
+
|
1887
|
+
.wi-owm-night-804:before {
|
1888
|
+
content: "\f086";
|
1889
|
+
}
|
1890
|
+
|
1891
|
+
.wi-owm-night-900:before {
|
1892
|
+
content: "\f056";
|
1893
|
+
}
|
1894
|
+
|
1895
|
+
.wi-owm-night-902:before {
|
1896
|
+
content: "\f073";
|
1897
|
+
}
|
1898
|
+
|
1899
|
+
.wi-owm-night-903:before {
|
1900
|
+
content: "\f076";
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
.wi-owm-night-904:before {
|
1904
|
+
content: "\f072";
|
1905
|
+
}
|
1906
|
+
|
1907
|
+
.wi-owm-night-906:before {
|
1908
|
+
content: "\f024";
|
1909
|
+
}
|
1910
|
+
|
1911
|
+
.wi-owm-night-957:before {
|
1912
|
+
content: "\f050";
|
1913
|
+
}
|
1914
|
+
|
1915
|
+
.wi-wu-chanceflurries:before {
|
1916
|
+
content: "\f064";
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
.wi-wu-chancerain:before {
|
1920
|
+
content: "\f019";
|
1921
|
+
}
|
1922
|
+
|
1923
|
+
.wi-wu-chancesleat:before {
|
1924
|
+
content: "\f0b5";
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
.wi-wu-chancesnow:before {
|
1928
|
+
content: "\f01b";
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
.wi-wu-chancetstorms:before {
|
1932
|
+
content: "\f01e";
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
.wi-wu-clear:before {
|
1936
|
+
content: "\f00d";
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
.wi-wu-cloudy:before {
|
1940
|
+
content: "\f002";
|
1941
|
+
}
|
1942
|
+
|
1943
|
+
.wi-wu-flurries:before {
|
1944
|
+
content: "\f064";
|
1945
|
+
}
|
1946
|
+
|
1947
|
+
.wi-wu-hazy:before {
|
1948
|
+
content: "\f0b6";
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
.wi-wu-mostlycloudy:before {
|
1952
|
+
content: "\f002";
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
.wi-wu-mostlysunny:before {
|
1956
|
+
content: "\f00d";
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
.wi-wu-partlycloudy:before {
|
1960
|
+
content: "\f002";
|
1961
|
+
}
|
1962
|
+
|
1963
|
+
.wi-wu-partlysunny:before {
|
1964
|
+
content: "\f00d";
|
1965
|
+
}
|
1966
|
+
|
1967
|
+
.wi-wu-rain:before {
|
1968
|
+
content: "\f01a";
|
1969
|
+
}
|
1970
|
+
|
1971
|
+
.wi-wu-sleat:before {
|
1972
|
+
content: "\f0b5";
|
1973
|
+
}
|
1974
|
+
|
1975
|
+
.wi-wu-snow:before {
|
1976
|
+
content: "\f01b";
|
1977
|
+
}
|
1978
|
+
|
1979
|
+
.wi-wu-sunny:before {
|
1980
|
+
content: "\f00d";
|
1981
|
+
}
|
1982
|
+
|
1983
|
+
.wi-wu-tstorms:before {
|
1984
|
+
content: "\f01e";
|
1985
|
+
}
|
1986
|
+
|
1987
|
+
.wi-wu-unknown:before {
|
1988
|
+
content: "\f00d";
|
1989
|
+
}
|