material_icons 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +85 -0
- data/Rakefile +36 -0
- data/app/assets/fonts/LICENSE +393 -0
- data/app/assets/fonts/MaterialIcons-Regular.eot +0 -0
- data/app/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- data/app/assets/fonts/MaterialIcons-Regular.woff +0 -0
- data/app/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- data/app/assets/stylesheets/material_icons.css.erb +92 -0
- data/app/assets/stylesheets/material_icons_unicode.css.erb +3265 -0
- data/lib/material_icons/engine.rb +7 -0
- data/lib/material_icons/version.rb +7 -0
- data/lib/material_icons.rb +3 -0
- metadata +59 -0
@@ -0,0 +1,3265 @@
|
|
1
|
+
/*
|
2
|
+
* CSS File of Material icons.
|
3
|
+
* CSS code based on:
|
4
|
+
* https://google.github.io/material-design-icons/#icon-font-for-the-web
|
5
|
+
*/
|
6
|
+
|
7
|
+
//= depend_on_asset "MaterialIcons-Regular.eot"
|
8
|
+
//= depend_on_asset "MaterialIcons-Regular.woff2"
|
9
|
+
//= depend_on_asset "MaterialIcons-Regular.woff"
|
10
|
+
//= depend_on_asset "MaterialIcons-Regular.ttf"
|
11
|
+
|
12
|
+
/* Use the font */
|
13
|
+
@font-face {
|
14
|
+
font-family: 'Material Icons';
|
15
|
+
font-style: normal;
|
16
|
+
font-weight: 400;
|
17
|
+
src: url('<%= font_path('MaterialIcons-Regular.eot') %>'); /* For IE6-8 */
|
18
|
+
src: local('Material Icons'),
|
19
|
+
local('MaterialIcons-Regular'),
|
20
|
+
url('<%= font_path('MaterialIcons-Regular.woff2') %>') format('woff2'),
|
21
|
+
url('<%= font_path('MaterialIcons-Regular.woff') %>') format('woff'),
|
22
|
+
url('<%= font_path('MaterialIcons-Regular.ttf') %>') format('truetype');
|
23
|
+
}
|
24
|
+
|
25
|
+
/* Base class */
|
26
|
+
.material-icons,
|
27
|
+
.mi {
|
28
|
+
font-family: 'Material Icons';
|
29
|
+
font-weight: normal;
|
30
|
+
font-style: normal;
|
31
|
+
font-size: 24px; /* Preferred icon size */
|
32
|
+
display: inline-block;
|
33
|
+
text-rendering: auto;
|
34
|
+
-webkit-font-smoothing: antialiased;
|
35
|
+
-moz-osx-font-smoothing: grayscale;
|
36
|
+
transform: translate(0, 0);
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Rules for sizing the icon. */
|
40
|
+
.material-icons.md-18, .mi.md-18 { font-size: 18px; }
|
41
|
+
.material-icons.md-24, .mi.md-24 { font-size: 24px; }
|
42
|
+
.material-icons.md-36, .mi.md-36 { font-size: 36px; }
|
43
|
+
.material-icons.md-48, .mi.md-48 { font-size: 48px; }
|
44
|
+
|
45
|
+
/* Rules for using icons as black on a light background. */
|
46
|
+
.material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
|
47
|
+
.material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive. { color: rgba(0, 0, 0, 0.26); }
|
48
|
+
|
49
|
+
/* Rules for using icons as white on a dark background. */
|
50
|
+
.material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
|
51
|
+
.material-icons.md-light.md-inactive, .mi.md-inactive { color: rgba(255, 255, 255, 0.3); }
|
52
|
+
|
53
|
+
/* Rules to rotate items */
|
54
|
+
.material-icons.r90, .mi.r90 {
|
55
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
56
|
+
-webkit-transform: rotate(90deg);
|
57
|
+
-ms-transform: rotate(90deg);
|
58
|
+
transform: rotate(90deg);
|
59
|
+
}
|
60
|
+
.material-icons.r180, .mi.r180 {
|
61
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
62
|
+
-webkit-transform: rotate(180deg);
|
63
|
+
-ms-transform: rotate(180deg);
|
64
|
+
transform: rotate(180deg);
|
65
|
+
}
|
66
|
+
.material-icons.r270, .mi.r270 {
|
67
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
68
|
+
-webkit-transform: rotate(270deg);
|
69
|
+
-ms-transform: rotate(270deg);
|
70
|
+
transform: rotate(270deg);
|
71
|
+
}
|
72
|
+
.material-icons.flip-horizontal, .mi.flip-horizontal {
|
73
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
74
|
+
-webkit-transform: scale(-1, 1);
|
75
|
+
-ms-transform: scale(-1, 1);
|
76
|
+
transform: scale(-1, 1);
|
77
|
+
}
|
78
|
+
.material-icons.flip-vertical, .mi.flip-vertical {
|
79
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
80
|
+
-webkit-transform: scale(1, -1);
|
81
|
+
-ms-transform: scale(1, -1);
|
82
|
+
transform: scale(1, -1);
|
83
|
+
}
|
84
|
+
|
85
|
+
/* Unicode */
|
86
|
+
.material-icons.3d-rotation:before,
|
87
|
+
.mi.3d-rotation:before {
|
88
|
+
content: '\e84d';
|
89
|
+
}
|
90
|
+
.material-icons.access-alarm:before,
|
91
|
+
.mi.access-alarm:before {
|
92
|
+
content: '\e190';
|
93
|
+
}
|
94
|
+
.material-icons.access-alarms:before,
|
95
|
+
.mi.access-alarms:before {
|
96
|
+
content: '\e191';
|
97
|
+
}
|
98
|
+
.material-icons.access-time:before,
|
99
|
+
.mi.access-time:before {
|
100
|
+
content: '\e192';
|
101
|
+
}
|
102
|
+
.material-icons.accessibility:before,
|
103
|
+
.mi.accessibility:before {
|
104
|
+
content: '\e84e';
|
105
|
+
}
|
106
|
+
.material-icons.account-balance:before,
|
107
|
+
.mi.account-balance:before {
|
108
|
+
content: '\e84f';
|
109
|
+
}
|
110
|
+
.material-icons.account-balance-wallet:before,
|
111
|
+
.mi.account-balance-wallet:before {
|
112
|
+
content: '\e850';
|
113
|
+
}
|
114
|
+
.material-icons.account-box:before,
|
115
|
+
.mi.account-box:before {
|
116
|
+
content: '\e851';
|
117
|
+
}
|
118
|
+
.material-icons.account-circle:before,
|
119
|
+
.mi.account-circle:before {
|
120
|
+
content: '\e853';
|
121
|
+
}
|
122
|
+
.material-icons.adb:before,
|
123
|
+
.mi.adb:before {
|
124
|
+
content: '\e60e';
|
125
|
+
}
|
126
|
+
.material-icons.add:before,
|
127
|
+
.mi.add:before {
|
128
|
+
content: '\e145';
|
129
|
+
}
|
130
|
+
.material-icons.add-alarm:before,
|
131
|
+
.mi.add-alarm:before {
|
132
|
+
content: '\e193';
|
133
|
+
}
|
134
|
+
.material-icons.add-alert:before,
|
135
|
+
.mi.add-alert:before {
|
136
|
+
content: '\e003';
|
137
|
+
}
|
138
|
+
.material-icons.add-box:before,
|
139
|
+
.mi.add-box:before {
|
140
|
+
content: '\e146';
|
141
|
+
}
|
142
|
+
.material-icons.add-circle:before,
|
143
|
+
.mi.add-circle:before {
|
144
|
+
content: '\e147';
|
145
|
+
}
|
146
|
+
.material-icons.add-circle-outline:before,
|
147
|
+
.mi.add-circle-outline:before {
|
148
|
+
content: '\e148';
|
149
|
+
}
|
150
|
+
.material-icons.add-shopping-cart:before,
|
151
|
+
.mi.add-shopping-cart:before {
|
152
|
+
content: '\e854';
|
153
|
+
}
|
154
|
+
.material-icons.add-to-photos:before,
|
155
|
+
.mi.add-to-photos:before {
|
156
|
+
content: '\e39d';
|
157
|
+
}
|
158
|
+
.material-icons.adjust:before,
|
159
|
+
.mi.adjust:before {
|
160
|
+
content: '\e39e';
|
161
|
+
}
|
162
|
+
.material-icons.airline-seat-flat:before,
|
163
|
+
.mi.airline-seat-flat:before {
|
164
|
+
content: '\e630';
|
165
|
+
}
|
166
|
+
.material-icons.airline-seat-flat-angled:before,
|
167
|
+
.mi.airline-seat-flat-angled:before {
|
168
|
+
content: '\e631';
|
169
|
+
}
|
170
|
+
.material-icons.airline-seat-individual-suite:before,
|
171
|
+
.mi.airline-seat-individual-suite:before {
|
172
|
+
content: '\e632';
|
173
|
+
}
|
174
|
+
.material-icons.airline-seat-legroom-extra:before,
|
175
|
+
.mi.airline-seat-legroom-extra:before {
|
176
|
+
content: '\e633';
|
177
|
+
}
|
178
|
+
.material-icons.airline-seat-legroom-normal:before,
|
179
|
+
.mi.airline-seat-legroom-normal:before {
|
180
|
+
content: '\e634';
|
181
|
+
}
|
182
|
+
.material-icons.airline-seat-legroom-reduced:before,
|
183
|
+
.mi.airline-seat-legroom-reduced:before {
|
184
|
+
content: '\e635';
|
185
|
+
}
|
186
|
+
.material-icons.airline-seat-recline-extra:before,
|
187
|
+
.mi.airline-seat-recline-extra:before {
|
188
|
+
content: '\e636';
|
189
|
+
}
|
190
|
+
.material-icons.airline-seat-recline-normal:before,
|
191
|
+
.mi.airline-seat-recline-normal:before {
|
192
|
+
content: '\e637';
|
193
|
+
}
|
194
|
+
.material-icons.airplanemode-active:before,
|
195
|
+
.mi.airplanemode-active:before {
|
196
|
+
content: '\e195';
|
197
|
+
}
|
198
|
+
.material-icons.airplanemode-inactive:before,
|
199
|
+
.mi.airplanemode-inactive:before {
|
200
|
+
content: '\e194';
|
201
|
+
}
|
202
|
+
.material-icons.airplay:before,
|
203
|
+
.mi.airplay:before {
|
204
|
+
content: '\e055';
|
205
|
+
}
|
206
|
+
.material-icons.alarm:before,
|
207
|
+
.mi.alarm:before {
|
208
|
+
content: '\e855';
|
209
|
+
}
|
210
|
+
.material-icons.alarm-add:before,
|
211
|
+
.mi.alarm-add:before {
|
212
|
+
content: '\e856';
|
213
|
+
}
|
214
|
+
.material-icons.alarm-off:before,
|
215
|
+
.mi.alarm-off:before {
|
216
|
+
content: '\e857';
|
217
|
+
}
|
218
|
+
.material-icons.alarm-on:before,
|
219
|
+
.mi.alarm-on:before {
|
220
|
+
content: '\e858';
|
221
|
+
}
|
222
|
+
.material-icons.album:before,
|
223
|
+
.mi.album:before {
|
224
|
+
content: '\e019';
|
225
|
+
}
|
226
|
+
.material-icons.android:before,
|
227
|
+
.mi.android:before {
|
228
|
+
content: '\e859';
|
229
|
+
}
|
230
|
+
.material-icons.announcement:before,
|
231
|
+
.mi.announcement:before {
|
232
|
+
content: '\e85a';
|
233
|
+
}
|
234
|
+
.material-icons.apps:before,
|
235
|
+
.mi.apps:before {
|
236
|
+
content: '\e5c3';
|
237
|
+
}
|
238
|
+
.material-icons.archive:before,
|
239
|
+
.mi.archive:before {
|
240
|
+
content: '\e149';
|
241
|
+
}
|
242
|
+
.material-icons.arrow-back:before,
|
243
|
+
.mi.arrow-back:before {
|
244
|
+
content: '\e5c4';
|
245
|
+
}
|
246
|
+
.material-icons.arrow-drop-down:before,
|
247
|
+
.mi.arrow-drop-down:before {
|
248
|
+
content: '\e5c5';
|
249
|
+
}
|
250
|
+
.material-icons.arrow-drop-down-circle:before,
|
251
|
+
.mi.arrow-drop-down-circle:before {
|
252
|
+
content: '\e5c6';
|
253
|
+
}
|
254
|
+
.material-icons.arrow-drop-up:before,
|
255
|
+
.mi.arrow-drop-up:before {
|
256
|
+
content: '\e5c7';
|
257
|
+
}
|
258
|
+
.material-icons.arrow-forward:before,
|
259
|
+
.mi.arrow-forward:before {
|
260
|
+
content: '\e5c8';
|
261
|
+
}
|
262
|
+
.material-icons.aspect-ratio:before,
|
263
|
+
.mi.aspect-ratio:before {
|
264
|
+
content: '\e85b';
|
265
|
+
}
|
266
|
+
.material-icons.assessment:before,
|
267
|
+
.mi.assessment:before {
|
268
|
+
content: '\e85c';
|
269
|
+
}
|
270
|
+
.material-icons.assignment:before,
|
271
|
+
.mi.assignment:before {
|
272
|
+
content: '\e85d';
|
273
|
+
}
|
274
|
+
.material-icons.assignment-ind:before,
|
275
|
+
.mi.assignment-ind:before {
|
276
|
+
content: '\e85e';
|
277
|
+
}
|
278
|
+
.material-icons.assignment-late:before,
|
279
|
+
.mi.assignment-late:before {
|
280
|
+
content: '\e85f';
|
281
|
+
}
|
282
|
+
.material-icons.assignment-return:before,
|
283
|
+
.mi.assignment-return:before {
|
284
|
+
content: '\e860';
|
285
|
+
}
|
286
|
+
.material-icons.assignment-returned:before,
|
287
|
+
.mi.assignment-returned:before {
|
288
|
+
content: '\e861';
|
289
|
+
}
|
290
|
+
.material-icons.assignment-turned-in:before,
|
291
|
+
.mi.assignment-turned-in:before {
|
292
|
+
content: '\e862';
|
293
|
+
}
|
294
|
+
.material-icons.assistant:before,
|
295
|
+
.mi.assistant:before {
|
296
|
+
content: '\e39f';
|
297
|
+
}
|
298
|
+
.material-icons.assistant-photo:before,
|
299
|
+
.mi.assistant-photo:before {
|
300
|
+
content: '\e3a0';
|
301
|
+
}
|
302
|
+
.material-icons.attach-file:before,
|
303
|
+
.mi.attach-file:before {
|
304
|
+
content: '\e226';
|
305
|
+
}
|
306
|
+
.material-icons.attach-money:before,
|
307
|
+
.mi.attach-money:before {
|
308
|
+
content: '\e227';
|
309
|
+
}
|
310
|
+
.material-icons.attachment:before,
|
311
|
+
.mi.attachment:before {
|
312
|
+
content: '\e2bc';
|
313
|
+
}
|
314
|
+
.material-icons.audiotrack:before,
|
315
|
+
.mi.audiotrack:before {
|
316
|
+
content: '\e3a1';
|
317
|
+
}
|
318
|
+
.material-icons.autorenew:before,
|
319
|
+
.mi.autorenew:before {
|
320
|
+
content: '\e863';
|
321
|
+
}
|
322
|
+
.material-icons.av-timer:before,
|
323
|
+
.mi.av-timer:before {
|
324
|
+
content: '\e01b';
|
325
|
+
}
|
326
|
+
.material-icons.backspace:before,
|
327
|
+
.mi.backspace:before {
|
328
|
+
content: '\e14a';
|
329
|
+
}
|
330
|
+
.material-icons.backup:before,
|
331
|
+
.mi.backup:before {
|
332
|
+
content: '\e864';
|
333
|
+
}
|
334
|
+
.material-icons.battery-alert:before,
|
335
|
+
.mi.battery-alert:before {
|
336
|
+
content: '\e19c';
|
337
|
+
}
|
338
|
+
.material-icons.battery-charging-full:before,
|
339
|
+
.mi.battery-charging-full:before {
|
340
|
+
content: '\e1a3';
|
341
|
+
}
|
342
|
+
.material-icons.battery-full:before,
|
343
|
+
.mi.battery-full:before {
|
344
|
+
content: '\e1a4';
|
345
|
+
}
|
346
|
+
.material-icons.battery-std:before,
|
347
|
+
.mi.battery-std:before {
|
348
|
+
content: '\e1a5';
|
349
|
+
}
|
350
|
+
.material-icons.battery-unknown:before,
|
351
|
+
.mi.battery-unknown:before {
|
352
|
+
content: '\e1a6';
|
353
|
+
}
|
354
|
+
.material-icons.beenhere:before,
|
355
|
+
.mi.beenhere:before {
|
356
|
+
content: '\e52d';
|
357
|
+
}
|
358
|
+
.material-icons.block:before,
|
359
|
+
.mi.block:before {
|
360
|
+
content: '\e14b';
|
361
|
+
}
|
362
|
+
.material-icons.bluetooth:before,
|
363
|
+
.mi.bluetooth:before {
|
364
|
+
content: '\e1a7';
|
365
|
+
}
|
366
|
+
.material-icons.bluetooth-audio:before,
|
367
|
+
.mi.bluetooth-audio:before {
|
368
|
+
content: '\e60f';
|
369
|
+
}
|
370
|
+
.material-icons.bluetooth-connected:before,
|
371
|
+
.mi.bluetooth-connected:before {
|
372
|
+
content: '\e1a8';
|
373
|
+
}
|
374
|
+
.material-icons.bluetooth-disabled:before,
|
375
|
+
.mi.bluetooth-disabled:before {
|
376
|
+
content: '\e1a9';
|
377
|
+
}
|
378
|
+
.material-icons.bluetooth-searching:before,
|
379
|
+
.mi.bluetooth-searching:before {
|
380
|
+
content: '\e1aa';
|
381
|
+
}
|
382
|
+
.material-icons.blur-circular:before,
|
383
|
+
.mi.blur-circular:before {
|
384
|
+
content: '\e3a2';
|
385
|
+
}
|
386
|
+
.material-icons.blur-linear:before,
|
387
|
+
.mi.blur-linear:before {
|
388
|
+
content: '\e3a3';
|
389
|
+
}
|
390
|
+
.material-icons.blur-off:before,
|
391
|
+
.mi.blur-off:before {
|
392
|
+
content: '\e3a4';
|
393
|
+
}
|
394
|
+
.material-icons.blur-on:before,
|
395
|
+
.mi.blur-on:before {
|
396
|
+
content: '\e3a5';
|
397
|
+
}
|
398
|
+
.material-icons.book:before,
|
399
|
+
.mi.book:before {
|
400
|
+
content: '\e865';
|
401
|
+
}
|
402
|
+
.material-icons.bookmark:before,
|
403
|
+
.mi.bookmark:before {
|
404
|
+
content: '\e866';
|
405
|
+
}
|
406
|
+
.material-icons.bookmark-border:before,
|
407
|
+
.mi.bookmark-border:before {
|
408
|
+
content: '\e867';
|
409
|
+
}
|
410
|
+
.material-icons.border-all:before,
|
411
|
+
.mi.border-all:before {
|
412
|
+
content: '\e228';
|
413
|
+
}
|
414
|
+
.material-icons.border-bottom:before,
|
415
|
+
.mi.border-bottom:before {
|
416
|
+
content: '\e229';
|
417
|
+
}
|
418
|
+
.material-icons.border-clear:before,
|
419
|
+
.mi.border-clear:before {
|
420
|
+
content: '\e22a';
|
421
|
+
}
|
422
|
+
.material-icons.border-color:before,
|
423
|
+
.mi.border-color:before {
|
424
|
+
content: '\e22b';
|
425
|
+
}
|
426
|
+
.material-icons.border-horizontal:before,
|
427
|
+
.mi.border-horizontal:before {
|
428
|
+
content: '\e22c';
|
429
|
+
}
|
430
|
+
.material-icons.border-inner:before,
|
431
|
+
.mi.border-inner:before {
|
432
|
+
content: '\e22d';
|
433
|
+
}
|
434
|
+
.material-icons.border-left:before,
|
435
|
+
.mi.border-left:before {
|
436
|
+
content: '\e22e';
|
437
|
+
}
|
438
|
+
.material-icons.border-outer:before,
|
439
|
+
.mi.border-outer:before {
|
440
|
+
content: '\e22f';
|
441
|
+
}
|
442
|
+
.material-icons.border-right:before,
|
443
|
+
.mi.border-right:before {
|
444
|
+
content: '\e230';
|
445
|
+
}
|
446
|
+
.material-icons.border-style:before,
|
447
|
+
.mi.border-style:before {
|
448
|
+
content: '\e231';
|
449
|
+
}
|
450
|
+
.material-icons.border-top:before,
|
451
|
+
.mi.border-top:before {
|
452
|
+
content: '\e232';
|
453
|
+
}
|
454
|
+
.material-icons.border-vertical:before,
|
455
|
+
.mi.border-vertical:before {
|
456
|
+
content: '\e233';
|
457
|
+
}
|
458
|
+
.material-icons.brightness-1:before,
|
459
|
+
.mi.brightness-1:before {
|
460
|
+
content: '\e3a6';
|
461
|
+
}
|
462
|
+
.material-icons.brightness-2:before,
|
463
|
+
.mi.brightness-2:before {
|
464
|
+
content: '\e3a7';
|
465
|
+
}
|
466
|
+
.material-icons.brightness-3:before,
|
467
|
+
.mi.brightness-3:before {
|
468
|
+
content: '\e3a8';
|
469
|
+
}
|
470
|
+
.material-icons.brightness-4:before,
|
471
|
+
.mi.brightness-4:before {
|
472
|
+
content: '\e3a9';
|
473
|
+
}
|
474
|
+
.material-icons.brightness-5:before,
|
475
|
+
.mi.brightness-5:before {
|
476
|
+
content: '\e3aa';
|
477
|
+
}
|
478
|
+
.material-icons.brightness-6:before,
|
479
|
+
.mi.brightness-6:before {
|
480
|
+
content: '\e3ab';
|
481
|
+
}
|
482
|
+
.material-icons.brightness-7:before,
|
483
|
+
.mi.brightness-7:before {
|
484
|
+
content: '\e3ac';
|
485
|
+
}
|
486
|
+
.material-icons.brightness-auto:before,
|
487
|
+
.mi.brightness-auto:before {
|
488
|
+
content: '\e1ab';
|
489
|
+
}
|
490
|
+
.material-icons.brightness-high:before,
|
491
|
+
.mi.brightness-high:before {
|
492
|
+
content: '\e1ac';
|
493
|
+
}
|
494
|
+
.material-icons.brightness-low:before,
|
495
|
+
.mi.brightness-low:before {
|
496
|
+
content: '\e1ad';
|
497
|
+
}
|
498
|
+
.material-icons.brightness-medium:before,
|
499
|
+
.mi.brightness-medium:before {
|
500
|
+
content: '\e1ae';
|
501
|
+
}
|
502
|
+
.material-icons.broken-image:before,
|
503
|
+
.mi.broken-image:before {
|
504
|
+
content: '\e3ad';
|
505
|
+
}
|
506
|
+
.material-icons.brush:before,
|
507
|
+
.mi.brush:before {
|
508
|
+
content: '\e3ae';
|
509
|
+
}
|
510
|
+
.material-icons.bug-report:before,
|
511
|
+
.mi.bug-report:before {
|
512
|
+
content: '\e868';
|
513
|
+
}
|
514
|
+
.material-icons.build:before,
|
515
|
+
.mi.build:before {
|
516
|
+
content: '\e869';
|
517
|
+
}
|
518
|
+
.material-icons.business:before,
|
519
|
+
.mi.business:before {
|
520
|
+
content: '\e0af';
|
521
|
+
}
|
522
|
+
.material-icons.cached:before,
|
523
|
+
.mi.cached:before {
|
524
|
+
content: '\e86a';
|
525
|
+
}
|
526
|
+
.material-icons.cake:before,
|
527
|
+
.mi.cake:before {
|
528
|
+
content: '\e7e9';
|
529
|
+
}
|
530
|
+
.material-icons.call:before,
|
531
|
+
.mi.call:before {
|
532
|
+
content: '\e0b0';
|
533
|
+
}
|
534
|
+
.material-icons.call-end:before,
|
535
|
+
.mi.call-end:before {
|
536
|
+
content: '\e0b1';
|
537
|
+
}
|
538
|
+
.material-icons.call-made:before,
|
539
|
+
.mi.call-made:before {
|
540
|
+
content: '\e0b2';
|
541
|
+
}
|
542
|
+
.material-icons.call-merge:before,
|
543
|
+
.mi.call-merge:before {
|
544
|
+
content: '\e0b3';
|
545
|
+
}
|
546
|
+
.material-icons.call-missed:before,
|
547
|
+
.mi.call-missed:before {
|
548
|
+
content: '\e0b4';
|
549
|
+
}
|
550
|
+
.material-icons.call-received:before,
|
551
|
+
.mi.call-received:before {
|
552
|
+
content: '\e0b5';
|
553
|
+
}
|
554
|
+
.material-icons.call-split:before,
|
555
|
+
.mi.call-split:before {
|
556
|
+
content: '\e0b6';
|
557
|
+
}
|
558
|
+
.material-icons.camera:before,
|
559
|
+
.mi.camera:before {
|
560
|
+
content: '\e3af';
|
561
|
+
}
|
562
|
+
.material-icons.camera-alt:before,
|
563
|
+
.mi.camera-alt:before {
|
564
|
+
content: '\e3b0';
|
565
|
+
}
|
566
|
+
.material-icons.camera-enhance:before,
|
567
|
+
.mi.camera-enhance:before {
|
568
|
+
content: '\e8fc';
|
569
|
+
}
|
570
|
+
.material-icons.camera-front:before,
|
571
|
+
.mi.camera-front:before {
|
572
|
+
content: '\e3b1';
|
573
|
+
}
|
574
|
+
.material-icons.camera-rear:before,
|
575
|
+
.mi.camera-rear:before {
|
576
|
+
content: '\e3b2';
|
577
|
+
}
|
578
|
+
.material-icons.camera-roll:before,
|
579
|
+
.mi.camera-roll:before {
|
580
|
+
content: '\e3b3';
|
581
|
+
}
|
582
|
+
.material-icons.cancel:before,
|
583
|
+
.mi.cancel:before {
|
584
|
+
content: '\e5c9';
|
585
|
+
}
|
586
|
+
.material-icons.card-giftcard:before,
|
587
|
+
.mi.card-giftcard:before {
|
588
|
+
content: '\e8f6';
|
589
|
+
}
|
590
|
+
.material-icons.card-membership:before,
|
591
|
+
.mi.card-membership:before {
|
592
|
+
content: '\e8f7';
|
593
|
+
}
|
594
|
+
.material-icons.card-travel:before,
|
595
|
+
.mi.card-travel:before {
|
596
|
+
content: '\e8f8';
|
597
|
+
}
|
598
|
+
.material-icons.cast:before,
|
599
|
+
.mi.cast:before {
|
600
|
+
content: '\e307';
|
601
|
+
}
|
602
|
+
.material-icons.cast-connected:before,
|
603
|
+
.mi.cast-connected:before {
|
604
|
+
content: '\e308';
|
605
|
+
}
|
606
|
+
.material-icons.center-focus-strong:before,
|
607
|
+
.mi.center-focus-strong:before {
|
608
|
+
content: '\e3b4';
|
609
|
+
}
|
610
|
+
.material-icons.center-focus-weak:before,
|
611
|
+
.mi.center-focus-weak:before {
|
612
|
+
content: '\e3b5';
|
613
|
+
}
|
614
|
+
.material-icons.change-history:before,
|
615
|
+
.mi.change-history:before {
|
616
|
+
content: '\e86b';
|
617
|
+
}
|
618
|
+
.material-icons.chat:before,
|
619
|
+
.mi.chat:before {
|
620
|
+
content: '\e0b7';
|
621
|
+
}
|
622
|
+
.material-icons.chat-bubble:before,
|
623
|
+
.mi.chat-bubble:before {
|
624
|
+
content: '\e0ca';
|
625
|
+
}
|
626
|
+
.material-icons.chat-bubble-outline:before,
|
627
|
+
.mi.chat-bubble-outline:before {
|
628
|
+
content: '\e0cb';
|
629
|
+
}
|
630
|
+
.material-icons.check:before,
|
631
|
+
.mi.check:before {
|
632
|
+
content: '\e5ca';
|
633
|
+
}
|
634
|
+
.material-icons.check-box:before,
|
635
|
+
.mi.check-box:before {
|
636
|
+
content: '\e834';
|
637
|
+
}
|
638
|
+
.material-icons.check-box-outline-blank:before,
|
639
|
+
.mi.check-box-outline-blank:before {
|
640
|
+
content: '\e835';
|
641
|
+
}
|
642
|
+
.material-icons.check-circle:before,
|
643
|
+
.mi.check-circle:before {
|
644
|
+
content: '\e86c';
|
645
|
+
}
|
646
|
+
.material-icons.chevron-left:before,
|
647
|
+
.mi.chevron-left:before {
|
648
|
+
content: '\e5cb';
|
649
|
+
}
|
650
|
+
.material-icons.chevron-right:before,
|
651
|
+
.mi.chevron-right:before {
|
652
|
+
content: '\e5cc';
|
653
|
+
}
|
654
|
+
.material-icons.chrome-reader-mode:before,
|
655
|
+
.mi.chrome-reader-mode:before {
|
656
|
+
content: '\e86d';
|
657
|
+
}
|
658
|
+
.material-icons.class:before,
|
659
|
+
.mi.class:before {
|
660
|
+
content: '\e86e';
|
661
|
+
}
|
662
|
+
.material-icons.clear:before,
|
663
|
+
.mi.clear:before {
|
664
|
+
content: '\e14c';
|
665
|
+
}
|
666
|
+
.material-icons.clear-all:before,
|
667
|
+
.mi.clear-all:before {
|
668
|
+
content: '\e0b8';
|
669
|
+
}
|
670
|
+
.material-icons.close:before,
|
671
|
+
.mi.close:before {
|
672
|
+
content: '\e5cd';
|
673
|
+
}
|
674
|
+
.material-icons.closed-caption:before,
|
675
|
+
.mi.closed-caption:before {
|
676
|
+
content: '\e01c';
|
677
|
+
}
|
678
|
+
.material-icons.cloud:before,
|
679
|
+
.mi.cloud:before {
|
680
|
+
content: '\e2bd';
|
681
|
+
}
|
682
|
+
.material-icons.cloud-circle:before,
|
683
|
+
.mi.cloud-circle:before {
|
684
|
+
content: '\e2be';
|
685
|
+
}
|
686
|
+
.material-icons.cloud-done:before,
|
687
|
+
.mi.cloud-done:before {
|
688
|
+
content: '\e2bf';
|
689
|
+
}
|
690
|
+
.material-icons.cloud-download:before,
|
691
|
+
.mi.cloud-download:before {
|
692
|
+
content: '\e2c0';
|
693
|
+
}
|
694
|
+
.material-icons.cloud-off:before,
|
695
|
+
.mi.cloud-off:before {
|
696
|
+
content: '\e2c1';
|
697
|
+
}
|
698
|
+
.material-icons.cloud-queue:before,
|
699
|
+
.mi.cloud-queue:before {
|
700
|
+
content: '\e2c2';
|
701
|
+
}
|
702
|
+
.material-icons.cloud-upload:before,
|
703
|
+
.mi.cloud-upload:before {
|
704
|
+
content: '\e2c3';
|
705
|
+
}
|
706
|
+
.material-icons.code:before,
|
707
|
+
.mi.code:before {
|
708
|
+
content: '\e86f';
|
709
|
+
}
|
710
|
+
.material-icons.collections:before,
|
711
|
+
.mi.collections:before {
|
712
|
+
content: '\e3b6';
|
713
|
+
}
|
714
|
+
.material-icons.collections-bookmark:before,
|
715
|
+
.mi.collections-bookmark:before {
|
716
|
+
content: '\e431';
|
717
|
+
}
|
718
|
+
.material-icons.color-lens:before,
|
719
|
+
.mi.color-lens:before {
|
720
|
+
content: '\e3b7';
|
721
|
+
}
|
722
|
+
.material-icons.colorize:before,
|
723
|
+
.mi.colorize:before {
|
724
|
+
content: '\e3b8';
|
725
|
+
}
|
726
|
+
.material-icons.comment:before,
|
727
|
+
.mi.comment:before {
|
728
|
+
content: '\e0b9';
|
729
|
+
}
|
730
|
+
.material-icons.compare:before,
|
731
|
+
.mi.compare:before {
|
732
|
+
content: '\e3b9';
|
733
|
+
}
|
734
|
+
.material-icons.computer:before,
|
735
|
+
.mi.computer:before {
|
736
|
+
content: '\e30a';
|
737
|
+
}
|
738
|
+
.material-icons.confirmation-number:before,
|
739
|
+
.mi.confirmation-number:before {
|
740
|
+
content: '\e638';
|
741
|
+
}
|
742
|
+
.material-icons.contact-phone:before,
|
743
|
+
.mi.contact-phone:before {
|
744
|
+
content: '\e0cf';
|
745
|
+
}
|
746
|
+
.material-icons.contacts:before,
|
747
|
+
.mi.contacts:before {
|
748
|
+
content: '\e0ba';
|
749
|
+
}
|
750
|
+
.material-icons.content-copy:before,
|
751
|
+
.mi.content-copy:before {
|
752
|
+
content: '\e14d';
|
753
|
+
}
|
754
|
+
.material-icons.content-cut:before,
|
755
|
+
.mi.content-cut:before {
|
756
|
+
content: '\e14e';
|
757
|
+
}
|
758
|
+
.material-icons.content-paste:before,
|
759
|
+
.mi.content-paste:before {
|
760
|
+
content: '\e14f';
|
761
|
+
}
|
762
|
+
.material-icons.control-point:before,
|
763
|
+
.mi.control-point:before {
|
764
|
+
content: '\e3ba';
|
765
|
+
}
|
766
|
+
.material-icons.control-point-duplicate:before,
|
767
|
+
.mi.control-point-duplicate:before {
|
768
|
+
content: '\e3bb';
|
769
|
+
}
|
770
|
+
.material-icons.create:before,
|
771
|
+
.mi.create:before {
|
772
|
+
content: '\e150';
|
773
|
+
}
|
774
|
+
.material-icons.credit-card:before,
|
775
|
+
.mi.credit-card:before {
|
776
|
+
content: '\e870';
|
777
|
+
}
|
778
|
+
.material-icons.crop:before,
|
779
|
+
.mi.crop:before {
|
780
|
+
content: '\e3be';
|
781
|
+
}
|
782
|
+
.material-icons.crop-16-9:before,
|
783
|
+
.mi.crop-16-9:before {
|
784
|
+
content: '\e3bc';
|
785
|
+
}
|
786
|
+
.material-icons.crop-3-2:before,
|
787
|
+
.mi.crop-3-2:before {
|
788
|
+
content: '\e3bd';
|
789
|
+
}
|
790
|
+
.material-icons.crop-5-4:before,
|
791
|
+
.mi.crop-5-4:before {
|
792
|
+
content: '\e3bf';
|
793
|
+
}
|
794
|
+
.material-icons.crop-7-5:before,
|
795
|
+
.mi.crop-7-5:before {
|
796
|
+
content: '\e3c0';
|
797
|
+
}
|
798
|
+
.material-icons.crop-din:before,
|
799
|
+
.mi.crop-din:before {
|
800
|
+
content: '\e3c1';
|
801
|
+
}
|
802
|
+
.material-icons.crop-free:before,
|
803
|
+
.mi.crop-free:before {
|
804
|
+
content: '\e3c2';
|
805
|
+
}
|
806
|
+
.material-icons.crop-landscape:before,
|
807
|
+
.mi.crop-landscape:before {
|
808
|
+
content: '\e3c3';
|
809
|
+
}
|
810
|
+
.material-icons.crop-original:before,
|
811
|
+
.mi.crop-original:before {
|
812
|
+
content: '\e3c4';
|
813
|
+
}
|
814
|
+
.material-icons.crop-portrait:before,
|
815
|
+
.mi.crop-portrait:before {
|
816
|
+
content: '\e3c5';
|
817
|
+
}
|
818
|
+
.material-icons.crop-square:before,
|
819
|
+
.mi.crop-square:before {
|
820
|
+
content: '\e3c6';
|
821
|
+
}
|
822
|
+
.material-icons.dashboard:before,
|
823
|
+
.mi.dashboard:before {
|
824
|
+
content: '\e871';
|
825
|
+
}
|
826
|
+
.material-icons.data-usage:before,
|
827
|
+
.mi.data-usage:before {
|
828
|
+
content: '\e1af';
|
829
|
+
}
|
830
|
+
.material-icons.dehaze:before,
|
831
|
+
.mi.dehaze:before {
|
832
|
+
content: '\e3c7';
|
833
|
+
}
|
834
|
+
.material-icons.delete:before,
|
835
|
+
.mi.delete:before {
|
836
|
+
content: '\e872';
|
837
|
+
}
|
838
|
+
.material-icons.description:before,
|
839
|
+
.mi.description:before {
|
840
|
+
content: '\e873';
|
841
|
+
}
|
842
|
+
.material-icons.desktop-mac:before,
|
843
|
+
.mi.desktop-mac:before {
|
844
|
+
content: '\e30b';
|
845
|
+
}
|
846
|
+
.material-icons.desktop-windows:before,
|
847
|
+
.mi.desktop-windows:before {
|
848
|
+
content: '\e30c';
|
849
|
+
}
|
850
|
+
.material-icons.details:before,
|
851
|
+
.mi.details:before {
|
852
|
+
content: '\e3c8';
|
853
|
+
}
|
854
|
+
.material-icons.developer-board:before,
|
855
|
+
.mi.developer-board:before {
|
856
|
+
content: '\e30d';
|
857
|
+
}
|
858
|
+
.material-icons.developer-mode:before,
|
859
|
+
.mi.developer-mode:before {
|
860
|
+
content: '\e1b0';
|
861
|
+
}
|
862
|
+
.material-icons.device-hub:before,
|
863
|
+
.mi.device-hub:before {
|
864
|
+
content: '\e335';
|
865
|
+
}
|
866
|
+
.material-icons.devices:before,
|
867
|
+
.mi.devices:before {
|
868
|
+
content: '\e1b1';
|
869
|
+
}
|
870
|
+
.material-icons.dialer-sip:before,
|
871
|
+
.mi.dialer-sip:before {
|
872
|
+
content: '\e0bb';
|
873
|
+
}
|
874
|
+
.material-icons.dialpad:before,
|
875
|
+
.mi.dialpad:before {
|
876
|
+
content: '\e0bc';
|
877
|
+
}
|
878
|
+
.material-icons.directions:before,
|
879
|
+
.mi.directions:before {
|
880
|
+
content: '\e52e';
|
881
|
+
}
|
882
|
+
.material-icons.directions-bike:before,
|
883
|
+
.mi.directions-bike:before {
|
884
|
+
content: '\e52f';
|
885
|
+
}
|
886
|
+
.material-icons.directions-boat:before,
|
887
|
+
.mi.directions-boat:before {
|
888
|
+
content: '\e532';
|
889
|
+
}
|
890
|
+
.material-icons.directions-bus:before,
|
891
|
+
.mi.directions-bus:before {
|
892
|
+
content: '\e530';
|
893
|
+
}
|
894
|
+
.material-icons.directions-car:before,
|
895
|
+
.mi.directions-car:before {
|
896
|
+
content: '\e531';
|
897
|
+
}
|
898
|
+
.material-icons.directions-railway:before,
|
899
|
+
.mi.directions-railway:before {
|
900
|
+
content: '\e534';
|
901
|
+
}
|
902
|
+
.material-icons.directions-run:before,
|
903
|
+
.mi.directions-run:before {
|
904
|
+
content: '\e566';
|
905
|
+
}
|
906
|
+
.material-icons.directions-subway:before,
|
907
|
+
.mi.directions-subway:before {
|
908
|
+
content: '\e533';
|
909
|
+
}
|
910
|
+
.material-icons.directions-transit:before,
|
911
|
+
.mi.directions-transit:before {
|
912
|
+
content: '\e535';
|
913
|
+
}
|
914
|
+
.material-icons.directions-walk:before,
|
915
|
+
.mi.directions-walk:before {
|
916
|
+
content: '\e536';
|
917
|
+
}
|
918
|
+
.material-icons.disc-full:before,
|
919
|
+
.mi.disc-full:before {
|
920
|
+
content: '\e610';
|
921
|
+
}
|
922
|
+
.material-icons.dns:before,
|
923
|
+
.mi.dns:before {
|
924
|
+
content: '\e875';
|
925
|
+
}
|
926
|
+
.material-icons.do-not-disturb:before,
|
927
|
+
.mi.do-not-disturb:before {
|
928
|
+
content: '\e612';
|
929
|
+
}
|
930
|
+
.material-icons.do-not-disturb-alt:before,
|
931
|
+
.mi.do-not-disturb-alt:before {
|
932
|
+
content: '\e611';
|
933
|
+
}
|
934
|
+
.material-icons.dock:before,
|
935
|
+
.mi.dock:before {
|
936
|
+
content: '\e30e';
|
937
|
+
}
|
938
|
+
.material-icons.domain:before,
|
939
|
+
.mi.domain:before {
|
940
|
+
content: '\e7ee';
|
941
|
+
}
|
942
|
+
.material-icons.done:before,
|
943
|
+
.mi.done:before {
|
944
|
+
content: '\e876';
|
945
|
+
}
|
946
|
+
.material-icons.done-all:before,
|
947
|
+
.mi.done-all:before {
|
948
|
+
content: '\e877';
|
949
|
+
}
|
950
|
+
.material-icons.drafts:before,
|
951
|
+
.mi.drafts:before {
|
952
|
+
content: '\e151';
|
953
|
+
}
|
954
|
+
.material-icons.drive-eta:before,
|
955
|
+
.mi.drive-eta:before {
|
956
|
+
content: '\e613';
|
957
|
+
}
|
958
|
+
.material-icons.dvr:before,
|
959
|
+
.mi.dvr:before {
|
960
|
+
content: '\e1b2';
|
961
|
+
}
|
962
|
+
.material-icons.edit:before,
|
963
|
+
.mi.edit:before {
|
964
|
+
content: '\e3c9';
|
965
|
+
}
|
966
|
+
.material-icons.eject:before,
|
967
|
+
.mi.eject:before {
|
968
|
+
content: '\e8fb';
|
969
|
+
}
|
970
|
+
.material-icons.email:before,
|
971
|
+
.mi.email:before {
|
972
|
+
content: '\e0be';
|
973
|
+
}
|
974
|
+
.material-icons.equalizer:before,
|
975
|
+
.mi.equalizer:before {
|
976
|
+
content: '\e01d';
|
977
|
+
}
|
978
|
+
.material-icons.error:before,
|
979
|
+
.mi.error:before {
|
980
|
+
content: '\e000';
|
981
|
+
}
|
982
|
+
.material-icons.error-outline:before,
|
983
|
+
.mi.error-outline:before {
|
984
|
+
content: '\e001';
|
985
|
+
}
|
986
|
+
.material-icons.event:before,
|
987
|
+
.mi.event:before {
|
988
|
+
content: '\e878';
|
989
|
+
}
|
990
|
+
.material-icons.event-available:before,
|
991
|
+
.mi.event-available:before {
|
992
|
+
content: '\e614';
|
993
|
+
}
|
994
|
+
.material-icons.event-busy:before,
|
995
|
+
.mi.event-busy:before {
|
996
|
+
content: '\e615';
|
997
|
+
}
|
998
|
+
.material-icons.event-note:before,
|
999
|
+
.mi.event-note:before {
|
1000
|
+
content: '\e616';
|
1001
|
+
}
|
1002
|
+
.material-icons.event-seat:before,
|
1003
|
+
.mi.event-seat:before {
|
1004
|
+
content: '\e903';
|
1005
|
+
}
|
1006
|
+
.material-icons.exit-to-app:before,
|
1007
|
+
.mi.exit-to-app:before {
|
1008
|
+
content: '\e879';
|
1009
|
+
}
|
1010
|
+
.material-icons.expand-less:before,
|
1011
|
+
.mi.expand-less:before {
|
1012
|
+
content: '\e5ce';
|
1013
|
+
}
|
1014
|
+
.material-icons.expand-more:before,
|
1015
|
+
.mi.expand-more:before {
|
1016
|
+
content: '\e5cf';
|
1017
|
+
}
|
1018
|
+
.material-icons.explicit:before,
|
1019
|
+
.mi.explicit:before {
|
1020
|
+
content: '\e01e';
|
1021
|
+
}
|
1022
|
+
.material-icons.explore:before,
|
1023
|
+
.mi.explore:before {
|
1024
|
+
content: '\e87a';
|
1025
|
+
}
|
1026
|
+
.material-icons.exposure:before,
|
1027
|
+
.mi.exposure:before {
|
1028
|
+
content: '\e3ca';
|
1029
|
+
}
|
1030
|
+
.material-icons.exposure-neg-1:before,
|
1031
|
+
.mi.exposure-neg-1:before {
|
1032
|
+
content: '\e3cb';
|
1033
|
+
}
|
1034
|
+
.material-icons.exposure-neg-2:before,
|
1035
|
+
.mi.exposure-neg-2:before {
|
1036
|
+
content: '\e3cc';
|
1037
|
+
}
|
1038
|
+
.material-icons.exposure-plus-1:before,
|
1039
|
+
.mi.exposure-plus-1:before {
|
1040
|
+
content: '\e3cd';
|
1041
|
+
}
|
1042
|
+
.material-icons.exposure-plus-2:before,
|
1043
|
+
.mi.exposure-plus-2:before {
|
1044
|
+
content: '\e3ce';
|
1045
|
+
}
|
1046
|
+
.material-icons.exposure-zero:before,
|
1047
|
+
.mi.exposure-zero:before {
|
1048
|
+
content: '\e3cf';
|
1049
|
+
}
|
1050
|
+
.material-icons.extension:before,
|
1051
|
+
.mi.extension:before {
|
1052
|
+
content: '\e87b';
|
1053
|
+
}
|
1054
|
+
.material-icons.face:before,
|
1055
|
+
.mi.face:before {
|
1056
|
+
content: '\e87c';
|
1057
|
+
}
|
1058
|
+
.material-icons.fast-forward:before,
|
1059
|
+
.mi.fast-forward:before {
|
1060
|
+
content: '\e01f';
|
1061
|
+
}
|
1062
|
+
.material-icons.fast-rewind:before,
|
1063
|
+
.mi.fast-rewind:before {
|
1064
|
+
content: '\e020';
|
1065
|
+
}
|
1066
|
+
.material-icons.favorite:before,
|
1067
|
+
.mi.favorite:before {
|
1068
|
+
content: '\e87d';
|
1069
|
+
}
|
1070
|
+
.material-icons.favorite-border:before,
|
1071
|
+
.mi.favorite-border:before {
|
1072
|
+
content: '\e87e';
|
1073
|
+
}
|
1074
|
+
.material-icons.feedback:before,
|
1075
|
+
.mi.feedback:before {
|
1076
|
+
content: '\e87f';
|
1077
|
+
}
|
1078
|
+
.material-icons.file-download:before,
|
1079
|
+
.mi.file-download:before {
|
1080
|
+
content: '\e2c4';
|
1081
|
+
}
|
1082
|
+
.material-icons.file-upload:before,
|
1083
|
+
.mi.file-upload:before {
|
1084
|
+
content: '\e2c6';
|
1085
|
+
}
|
1086
|
+
.material-icons.filter:before,
|
1087
|
+
.mi.filter:before {
|
1088
|
+
content: '\e3d3';
|
1089
|
+
}
|
1090
|
+
.material-icons.filter-1:before,
|
1091
|
+
.mi.filter-1:before {
|
1092
|
+
content: '\e3d0';
|
1093
|
+
}
|
1094
|
+
.material-icons.filter-2:before,
|
1095
|
+
.mi.filter-2:before {
|
1096
|
+
content: '\e3d1';
|
1097
|
+
}
|
1098
|
+
.material-icons.filter-3:before,
|
1099
|
+
.mi.filter-3:before {
|
1100
|
+
content: '\e3d2';
|
1101
|
+
}
|
1102
|
+
.material-icons.filter-4:before,
|
1103
|
+
.mi.filter-4:before {
|
1104
|
+
content: '\e3d4';
|
1105
|
+
}
|
1106
|
+
.material-icons.filter-5:before,
|
1107
|
+
.mi.filter-5:before {
|
1108
|
+
content: '\e3d5';
|
1109
|
+
}
|
1110
|
+
.material-icons.filter-6:before,
|
1111
|
+
.mi.filter-6:before {
|
1112
|
+
content: '\e3d6';
|
1113
|
+
}
|
1114
|
+
.material-icons.filter-7:before,
|
1115
|
+
.mi.filter-7:before {
|
1116
|
+
content: '\e3d7';
|
1117
|
+
}
|
1118
|
+
.material-icons.filter-8:before,
|
1119
|
+
.mi.filter-8:before {
|
1120
|
+
content: '\e3d8';
|
1121
|
+
}
|
1122
|
+
.material-icons.filter-9:before,
|
1123
|
+
.mi.filter-9:before {
|
1124
|
+
content: '\e3d9';
|
1125
|
+
}
|
1126
|
+
.material-icons.filter-9-plus:before,
|
1127
|
+
.mi.filter-9-plus:before {
|
1128
|
+
content: '\e3da';
|
1129
|
+
}
|
1130
|
+
.material-icons.filter-b-and-w:before,
|
1131
|
+
.mi.filter-b-and-w:before {
|
1132
|
+
content: '\e3db';
|
1133
|
+
}
|
1134
|
+
.material-icons.filter-center-focus:before,
|
1135
|
+
.mi.filter-center-focus:before {
|
1136
|
+
content: '\e3dc';
|
1137
|
+
}
|
1138
|
+
.material-icons.filter-drama:before,
|
1139
|
+
.mi.filter-drama:before {
|
1140
|
+
content: '\e3dd';
|
1141
|
+
}
|
1142
|
+
.material-icons.filter-frames:before,
|
1143
|
+
.mi.filter-frames:before {
|
1144
|
+
content: '\e3de';
|
1145
|
+
}
|
1146
|
+
.material-icons.filter-hdr:before,
|
1147
|
+
.mi.filter-hdr:before {
|
1148
|
+
content: '\e3df';
|
1149
|
+
}
|
1150
|
+
.material-icons.filter-list:before,
|
1151
|
+
.mi.filter-list:before {
|
1152
|
+
content: '\e152';
|
1153
|
+
}
|
1154
|
+
.material-icons.filter-none:before,
|
1155
|
+
.mi.filter-none:before {
|
1156
|
+
content: '\e3e0';
|
1157
|
+
}
|
1158
|
+
.material-icons.filter-tilt-shift:before,
|
1159
|
+
.mi.filter-tilt-shift:before {
|
1160
|
+
content: '\e3e2';
|
1161
|
+
}
|
1162
|
+
.material-icons.filter-vintage:before,
|
1163
|
+
.mi.filter-vintage:before {
|
1164
|
+
content: '\e3e3';
|
1165
|
+
}
|
1166
|
+
.material-icons.find-in-page:before,
|
1167
|
+
.mi.find-in-page:before {
|
1168
|
+
content: '\e880';
|
1169
|
+
}
|
1170
|
+
.material-icons.find-replace:before,
|
1171
|
+
.mi.find-replace:before {
|
1172
|
+
content: '\e881';
|
1173
|
+
}
|
1174
|
+
.material-icons.flag:before,
|
1175
|
+
.mi.flag:before {
|
1176
|
+
content: '\e153';
|
1177
|
+
}
|
1178
|
+
.material-icons.flare:before,
|
1179
|
+
.mi.flare:before {
|
1180
|
+
content: '\e3e4';
|
1181
|
+
}
|
1182
|
+
.material-icons.flash-auto:before,
|
1183
|
+
.mi.flash-auto:before {
|
1184
|
+
content: '\e3e5';
|
1185
|
+
}
|
1186
|
+
.material-icons.flash-off:before,
|
1187
|
+
.mi.flash-off:before {
|
1188
|
+
content: '\e3e6';
|
1189
|
+
}
|
1190
|
+
.material-icons.flash-on:before,
|
1191
|
+
.mi.flash-on:before {
|
1192
|
+
content: '\e3e7';
|
1193
|
+
}
|
1194
|
+
.material-icons.flight:before,
|
1195
|
+
.mi.flight:before {
|
1196
|
+
content: '\e539';
|
1197
|
+
}
|
1198
|
+
.material-icons.flight-land:before,
|
1199
|
+
.mi.flight-land:before {
|
1200
|
+
content: '\e904';
|
1201
|
+
}
|
1202
|
+
.material-icons.flight-takeoff:before,
|
1203
|
+
.mi.flight-takeoff:before {
|
1204
|
+
content: '\e905';
|
1205
|
+
}
|
1206
|
+
.material-icons.flip:before,
|
1207
|
+
.mi.flip:before {
|
1208
|
+
content: '\e3e8';
|
1209
|
+
}
|
1210
|
+
.material-icons.flip-to-back:before,
|
1211
|
+
.mi.flip-to-back:before {
|
1212
|
+
content: '\e882';
|
1213
|
+
}
|
1214
|
+
.material-icons.flip-to-front:before,
|
1215
|
+
.mi.flip-to-front:before {
|
1216
|
+
content: '\e883';
|
1217
|
+
}
|
1218
|
+
.material-icons.folder:before,
|
1219
|
+
.mi.folder:before {
|
1220
|
+
content: '\e2c7';
|
1221
|
+
}
|
1222
|
+
.material-icons.folder-open:before,
|
1223
|
+
.mi.folder-open:before {
|
1224
|
+
content: '\e2c8';
|
1225
|
+
}
|
1226
|
+
.material-icons.folder-shared:before,
|
1227
|
+
.mi.folder-shared:before {
|
1228
|
+
content: '\e2c9';
|
1229
|
+
}
|
1230
|
+
.material-icons.folder-special:before,
|
1231
|
+
.mi.folder-special:before {
|
1232
|
+
content: '\e617';
|
1233
|
+
}
|
1234
|
+
.material-icons.font-download:before,
|
1235
|
+
.mi.font-download:before {
|
1236
|
+
content: '\e167';
|
1237
|
+
}
|
1238
|
+
.material-icons.format-align-center:before,
|
1239
|
+
.mi.format-align-center:before {
|
1240
|
+
content: '\e234';
|
1241
|
+
}
|
1242
|
+
.material-icons.format-align-justify:before,
|
1243
|
+
.mi.format-align-justify:before {
|
1244
|
+
content: '\e235';
|
1245
|
+
}
|
1246
|
+
.material-icons.format-align-left:before,
|
1247
|
+
.mi.format-align-left:before {
|
1248
|
+
content: '\e236';
|
1249
|
+
}
|
1250
|
+
.material-icons.format-align-right:before,
|
1251
|
+
.mi.format-align-right:before {
|
1252
|
+
content: '\e237';
|
1253
|
+
}
|
1254
|
+
.material-icons.format-bold:before,
|
1255
|
+
.mi.format-bold:before {
|
1256
|
+
content: '\e238';
|
1257
|
+
}
|
1258
|
+
.material-icons.format-clear:before,
|
1259
|
+
.mi.format-clear:before {
|
1260
|
+
content: '\e239';
|
1261
|
+
}
|
1262
|
+
.material-icons.format-color-fill:before,
|
1263
|
+
.mi.format-color-fill:before {
|
1264
|
+
content: '\e23a';
|
1265
|
+
}
|
1266
|
+
.material-icons.format-color-reset:before,
|
1267
|
+
.mi.format-color-reset:before {
|
1268
|
+
content: '\e23b';
|
1269
|
+
}
|
1270
|
+
.material-icons.format-color-text:before,
|
1271
|
+
.mi.format-color-text:before {
|
1272
|
+
content: '\e23c';
|
1273
|
+
}
|
1274
|
+
.material-icons.format-indent-decrease:before,
|
1275
|
+
.mi.format-indent-decrease:before {
|
1276
|
+
content: '\e23d';
|
1277
|
+
}
|
1278
|
+
.material-icons.format-indent-increase:before,
|
1279
|
+
.mi.format-indent-increase:before {
|
1280
|
+
content: '\e23e';
|
1281
|
+
}
|
1282
|
+
.material-icons.format-italic:before,
|
1283
|
+
.mi.format-italic:before {
|
1284
|
+
content: '\e23f';
|
1285
|
+
}
|
1286
|
+
.material-icons.format-line-spacing:before,
|
1287
|
+
.mi.format-line-spacing:before {
|
1288
|
+
content: '\e240';
|
1289
|
+
}
|
1290
|
+
.material-icons.format-list-bulleted:before,
|
1291
|
+
.mi.format-list-bulleted:before {
|
1292
|
+
content: '\e241';
|
1293
|
+
}
|
1294
|
+
.material-icons.format-list-numbered:before,
|
1295
|
+
.mi.format-list-numbered:before {
|
1296
|
+
content: '\e242';
|
1297
|
+
}
|
1298
|
+
.material-icons.format-paint:before,
|
1299
|
+
.mi.format-paint:before {
|
1300
|
+
content: '\e243';
|
1301
|
+
}
|
1302
|
+
.material-icons.format-quote:before,
|
1303
|
+
.mi.format-quote:before {
|
1304
|
+
content: '\e244';
|
1305
|
+
}
|
1306
|
+
.material-icons.format-size:before,
|
1307
|
+
.mi.format-size:before {
|
1308
|
+
content: '\e245';
|
1309
|
+
}
|
1310
|
+
.material-icons.format-strikethrough:before,
|
1311
|
+
.mi.format-strikethrough:before {
|
1312
|
+
content: '\e246';
|
1313
|
+
}
|
1314
|
+
.material-icons.format-textdirection-l-to-r:before,
|
1315
|
+
.mi.format-textdirection-l-to-r:before {
|
1316
|
+
content: '\e247';
|
1317
|
+
}
|
1318
|
+
.material-icons.format-textdirection-r-to-l:before,
|
1319
|
+
.mi.format-textdirection-r-to-l:before {
|
1320
|
+
content: '\e248';
|
1321
|
+
}
|
1322
|
+
.material-icons.format-underlined:before,
|
1323
|
+
.mi.format-underlined:before {
|
1324
|
+
content: '\e249';
|
1325
|
+
}
|
1326
|
+
.material-icons.forum:before,
|
1327
|
+
.mi.forum:before {
|
1328
|
+
content: '\e0bf';
|
1329
|
+
}
|
1330
|
+
.material-icons.forward:before,
|
1331
|
+
.mi.forward:before {
|
1332
|
+
content: '\e154';
|
1333
|
+
}
|
1334
|
+
.material-icons.forward-10:before,
|
1335
|
+
.mi.forward-10:before {
|
1336
|
+
content: '\e056';
|
1337
|
+
}
|
1338
|
+
.material-icons.forward-30:before,
|
1339
|
+
.mi.forward-30:before {
|
1340
|
+
content: '\e057';
|
1341
|
+
}
|
1342
|
+
.material-icons.forward-5:before,
|
1343
|
+
.mi.forward-5:before {
|
1344
|
+
content: '\e058';
|
1345
|
+
}
|
1346
|
+
.material-icons.fullscreen:before,
|
1347
|
+
.mi.fullscreen:before {
|
1348
|
+
content: '\e5d0';
|
1349
|
+
}
|
1350
|
+
.material-icons.fullscreen-exit:before,
|
1351
|
+
.mi.fullscreen-exit:before {
|
1352
|
+
content: '\e5d1';
|
1353
|
+
}
|
1354
|
+
.material-icons.functions:before,
|
1355
|
+
.mi.functions:before {
|
1356
|
+
content: '\e24a';
|
1357
|
+
}
|
1358
|
+
.material-icons.gamepad:before,
|
1359
|
+
.mi.gamepad:before {
|
1360
|
+
content: '\e30f';
|
1361
|
+
}
|
1362
|
+
.material-icons.games:before,
|
1363
|
+
.mi.games:before {
|
1364
|
+
content: '\e021';
|
1365
|
+
}
|
1366
|
+
.material-icons.gesture:before,
|
1367
|
+
.mi.gesture:before {
|
1368
|
+
content: '\e155';
|
1369
|
+
}
|
1370
|
+
.material-icons.get-app:before,
|
1371
|
+
.mi.get-app:before {
|
1372
|
+
content: '\e884';
|
1373
|
+
}
|
1374
|
+
.material-icons.gif:before,
|
1375
|
+
.mi.gif:before {
|
1376
|
+
content: '\e908';
|
1377
|
+
}
|
1378
|
+
.material-icons.gps-fixed:before,
|
1379
|
+
.mi.gps-fixed:before {
|
1380
|
+
content: '\e1b3';
|
1381
|
+
}
|
1382
|
+
.material-icons.gps-not-fixed:before,
|
1383
|
+
.mi.gps-not-fixed:before {
|
1384
|
+
content: '\e1b4';
|
1385
|
+
}
|
1386
|
+
.material-icons.gps-off:before,
|
1387
|
+
.mi.gps-off:before {
|
1388
|
+
content: '\e1b5';
|
1389
|
+
}
|
1390
|
+
.material-icons.grade:before,
|
1391
|
+
.mi.grade:before {
|
1392
|
+
content: '\e885';
|
1393
|
+
}
|
1394
|
+
.material-icons.gradient:before,
|
1395
|
+
.mi.gradient:before {
|
1396
|
+
content: '\e3e9';
|
1397
|
+
}
|
1398
|
+
.material-icons.grain:before,
|
1399
|
+
.mi.grain:before {
|
1400
|
+
content: '\e3ea';
|
1401
|
+
}
|
1402
|
+
.material-icons.graphic-eq:before,
|
1403
|
+
.mi.graphic-eq:before {
|
1404
|
+
content: '\e1b8';
|
1405
|
+
}
|
1406
|
+
.material-icons.grid-off:before,
|
1407
|
+
.mi.grid-off:before {
|
1408
|
+
content: '\e3eb';
|
1409
|
+
}
|
1410
|
+
.material-icons.grid-on:before,
|
1411
|
+
.mi.grid-on:before {
|
1412
|
+
content: '\e3ec';
|
1413
|
+
}
|
1414
|
+
.material-icons.group:before,
|
1415
|
+
.mi.group:before {
|
1416
|
+
content: '\e7ef';
|
1417
|
+
}
|
1418
|
+
.material-icons.group-add:before,
|
1419
|
+
.mi.group-add:before {
|
1420
|
+
content: '\e7f0';
|
1421
|
+
}
|
1422
|
+
.material-icons.group-work:before,
|
1423
|
+
.mi.group-work:before {
|
1424
|
+
content: '\e886';
|
1425
|
+
}
|
1426
|
+
.material-icons.hd:before,
|
1427
|
+
.mi.hd:before {
|
1428
|
+
content: '\e052';
|
1429
|
+
}
|
1430
|
+
.material-icons.hdr-off:before,
|
1431
|
+
.mi.hdr-off:before {
|
1432
|
+
content: '\e3ed';
|
1433
|
+
}
|
1434
|
+
.material-icons.hdr-on:before,
|
1435
|
+
.mi.hdr-on:before {
|
1436
|
+
content: '\e3ee';
|
1437
|
+
}
|
1438
|
+
.material-icons.hdr-strong:before,
|
1439
|
+
.mi.hdr-strong:before {
|
1440
|
+
content: '\e3f1';
|
1441
|
+
}
|
1442
|
+
.material-icons.hdr-weak:before,
|
1443
|
+
.mi.hdr-weak:before {
|
1444
|
+
content: '\e3f2';
|
1445
|
+
}
|
1446
|
+
.material-icons.headset:before,
|
1447
|
+
.mi.headset:before {
|
1448
|
+
content: '\e310';
|
1449
|
+
}
|
1450
|
+
.material-icons.headset-mic:before,
|
1451
|
+
.mi.headset-mic:before {
|
1452
|
+
content: '\e311';
|
1453
|
+
}
|
1454
|
+
.material-icons.healing:before,
|
1455
|
+
.mi.healing:before {
|
1456
|
+
content: '\e3f3';
|
1457
|
+
}
|
1458
|
+
.material-icons.hearing:before,
|
1459
|
+
.mi.hearing:before {
|
1460
|
+
content: '\e023';
|
1461
|
+
}
|
1462
|
+
.material-icons.help:before,
|
1463
|
+
.mi.help:before {
|
1464
|
+
content: '\e887';
|
1465
|
+
}
|
1466
|
+
.material-icons.help-outline:before,
|
1467
|
+
.mi.help-outline:before {
|
1468
|
+
content: '\e8fd';
|
1469
|
+
}
|
1470
|
+
.material-icons.high-quality:before,
|
1471
|
+
.mi.high-quality:before {
|
1472
|
+
content: '\e024';
|
1473
|
+
}
|
1474
|
+
.material-icons.highlight-off:before,
|
1475
|
+
.mi.highlight-off:before {
|
1476
|
+
content: '\e888';
|
1477
|
+
}
|
1478
|
+
.material-icons.history:before,
|
1479
|
+
.mi.history:before {
|
1480
|
+
content: '\e889';
|
1481
|
+
}
|
1482
|
+
.material-icons.home:before,
|
1483
|
+
.mi.home:before {
|
1484
|
+
content: '\e88a';
|
1485
|
+
}
|
1486
|
+
.material-icons.hotel:before,
|
1487
|
+
.mi.hotel:before {
|
1488
|
+
content: '\e53a';
|
1489
|
+
}
|
1490
|
+
.material-icons.hourglass-empty:before,
|
1491
|
+
.mi.hourglass-empty:before {
|
1492
|
+
content: '\e88b';
|
1493
|
+
}
|
1494
|
+
.material-icons.hourglass-full:before,
|
1495
|
+
.mi.hourglass-full:before {
|
1496
|
+
content: '\e88c';
|
1497
|
+
}
|
1498
|
+
.material-icons.http:before,
|
1499
|
+
.mi.http:before {
|
1500
|
+
content: '\e902';
|
1501
|
+
}
|
1502
|
+
.material-icons.https:before,
|
1503
|
+
.mi.https:before {
|
1504
|
+
content: '\e88d';
|
1505
|
+
}
|
1506
|
+
.material-icons.image:before,
|
1507
|
+
.mi.image:before {
|
1508
|
+
content: '\e3f4';
|
1509
|
+
}
|
1510
|
+
.material-icons.image-aspect-ratio:before,
|
1511
|
+
.mi.image-aspect-ratio:before {
|
1512
|
+
content: '\e3f5';
|
1513
|
+
}
|
1514
|
+
.material-icons.import-export:before,
|
1515
|
+
.mi.import-export:before {
|
1516
|
+
content: '\e0c3';
|
1517
|
+
}
|
1518
|
+
.material-icons.inbox:before,
|
1519
|
+
.mi.inbox:before {
|
1520
|
+
content: '\e156';
|
1521
|
+
}
|
1522
|
+
.material-icons.indeterminate-check-box:before,
|
1523
|
+
.mi.indeterminate-check-box:before {
|
1524
|
+
content: '\e909';
|
1525
|
+
}
|
1526
|
+
.material-icons.info:before,
|
1527
|
+
.mi.info:before {
|
1528
|
+
content: '\e88e';
|
1529
|
+
}
|
1530
|
+
.material-icons.info-outline:before,
|
1531
|
+
.mi.info-outline:before {
|
1532
|
+
content: '\e88f';
|
1533
|
+
}
|
1534
|
+
.material-icons.input:before,
|
1535
|
+
.mi.input:before {
|
1536
|
+
content: '\e890';
|
1537
|
+
}
|
1538
|
+
.material-icons.insert-chart:before,
|
1539
|
+
.mi.insert-chart:before {
|
1540
|
+
content: '\e24b';
|
1541
|
+
}
|
1542
|
+
.material-icons.insert-comment:before,
|
1543
|
+
.mi.insert-comment:before {
|
1544
|
+
content: '\e24c';
|
1545
|
+
}
|
1546
|
+
.material-icons.insert-drive-file:before,
|
1547
|
+
.mi.insert-drive-file:before {
|
1548
|
+
content: '\e24d';
|
1549
|
+
}
|
1550
|
+
.material-icons.insert-emoticon:before,
|
1551
|
+
.mi.insert-emoticon:before {
|
1552
|
+
content: '\e24e';
|
1553
|
+
}
|
1554
|
+
.material-icons.insert-invitation:before,
|
1555
|
+
.mi.insert-invitation:before {
|
1556
|
+
content: '\e24f';
|
1557
|
+
}
|
1558
|
+
.material-icons.insert-link:before,
|
1559
|
+
.mi.insert-link:before {
|
1560
|
+
content: '\e250';
|
1561
|
+
}
|
1562
|
+
.material-icons.insert-photo:before,
|
1563
|
+
.mi.insert-photo:before {
|
1564
|
+
content: '\e251';
|
1565
|
+
}
|
1566
|
+
.material-icons.invert-colors:before,
|
1567
|
+
.mi.invert-colors:before {
|
1568
|
+
content: '\e891';
|
1569
|
+
}
|
1570
|
+
.material-icons.invert-colors-off:before,
|
1571
|
+
.mi.invert-colors-off:before {
|
1572
|
+
content: '\e0c4';
|
1573
|
+
}
|
1574
|
+
.material-icons.iso:before,
|
1575
|
+
.mi.iso:before {
|
1576
|
+
content: '\e3f6';
|
1577
|
+
}
|
1578
|
+
.material-icons.keyboard:before,
|
1579
|
+
.mi.keyboard:before {
|
1580
|
+
content: '\e312';
|
1581
|
+
}
|
1582
|
+
.material-icons.keyboard-arrow-down:before,
|
1583
|
+
.mi.keyboard-arrow-down:before {
|
1584
|
+
content: '\e313';
|
1585
|
+
}
|
1586
|
+
.material-icons.keyboard-arrow-left:before,
|
1587
|
+
.mi.keyboard-arrow-left:before {
|
1588
|
+
content: '\e314';
|
1589
|
+
}
|
1590
|
+
.material-icons.keyboard-arrow-right:before,
|
1591
|
+
.mi.keyboard-arrow-right:before {
|
1592
|
+
content: '\e315';
|
1593
|
+
}
|
1594
|
+
.material-icons.keyboard-arrow-up:before,
|
1595
|
+
.mi.keyboard-arrow-up:before {
|
1596
|
+
content: '\e316';
|
1597
|
+
}
|
1598
|
+
.material-icons.keyboard-backspace:before,
|
1599
|
+
.mi.keyboard-backspace:before {
|
1600
|
+
content: '\e317';
|
1601
|
+
}
|
1602
|
+
.material-icons.keyboard-capslock:before,
|
1603
|
+
.mi.keyboard-capslock:before {
|
1604
|
+
content: '\e318';
|
1605
|
+
}
|
1606
|
+
.material-icons.keyboard-hide:before,
|
1607
|
+
.mi.keyboard-hide:before {
|
1608
|
+
content: '\e31a';
|
1609
|
+
}
|
1610
|
+
.material-icons.keyboard-return:before,
|
1611
|
+
.mi.keyboard-return:before {
|
1612
|
+
content: '\e31b';
|
1613
|
+
}
|
1614
|
+
.material-icons.keyboard-tab:before,
|
1615
|
+
.mi.keyboard-tab:before {
|
1616
|
+
content: '\e31c';
|
1617
|
+
}
|
1618
|
+
.material-icons.keyboard-voice:before,
|
1619
|
+
.mi.keyboard-voice:before {
|
1620
|
+
content: '\e31d';
|
1621
|
+
}
|
1622
|
+
.material-icons.label:before,
|
1623
|
+
.mi.label:before {
|
1624
|
+
content: '\e892';
|
1625
|
+
}
|
1626
|
+
.material-icons.label-outline:before,
|
1627
|
+
.mi.label-outline:before {
|
1628
|
+
content: '\e893';
|
1629
|
+
}
|
1630
|
+
.material-icons.landscape:before,
|
1631
|
+
.mi.landscape:before {
|
1632
|
+
content: '\e3f7';
|
1633
|
+
}
|
1634
|
+
.material-icons.language:before,
|
1635
|
+
.mi.language:before {
|
1636
|
+
content: '\e894';
|
1637
|
+
}
|
1638
|
+
.material-icons.laptop:before,
|
1639
|
+
.mi.laptop:before {
|
1640
|
+
content: '\e31e';
|
1641
|
+
}
|
1642
|
+
.material-icons.laptop-chromebook:before,
|
1643
|
+
.mi.laptop-chromebook:before {
|
1644
|
+
content: '\e31f';
|
1645
|
+
}
|
1646
|
+
.material-icons.laptop-mac:before,
|
1647
|
+
.mi.laptop-mac:before {
|
1648
|
+
content: '\e320';
|
1649
|
+
}
|
1650
|
+
.material-icons.laptop-windows:before,
|
1651
|
+
.mi.laptop-windows:before {
|
1652
|
+
content: '\e321';
|
1653
|
+
}
|
1654
|
+
.material-icons.launch:before,
|
1655
|
+
.mi.launch:before {
|
1656
|
+
content: '\e895';
|
1657
|
+
}
|
1658
|
+
.material-icons.layers:before,
|
1659
|
+
.mi.layers:before {
|
1660
|
+
content: '\e53b';
|
1661
|
+
}
|
1662
|
+
.material-icons.layers-clear:before,
|
1663
|
+
.mi.layers-clear:before {
|
1664
|
+
content: '\e53c';
|
1665
|
+
}
|
1666
|
+
.material-icons.leak-add:before,
|
1667
|
+
.mi.leak-add:before {
|
1668
|
+
content: '\e3f8';
|
1669
|
+
}
|
1670
|
+
.material-icons.leak-remove:before,
|
1671
|
+
.mi.leak-remove:before {
|
1672
|
+
content: '\e3f9';
|
1673
|
+
}
|
1674
|
+
.material-icons.lens:before,
|
1675
|
+
.mi.lens:before {
|
1676
|
+
content: '\e3fa';
|
1677
|
+
}
|
1678
|
+
.material-icons.library-add:before,
|
1679
|
+
.mi.library-add:before {
|
1680
|
+
content: '\e02e';
|
1681
|
+
}
|
1682
|
+
.material-icons.library-books:before,
|
1683
|
+
.mi.library-books:before {
|
1684
|
+
content: '\e02f';
|
1685
|
+
}
|
1686
|
+
.material-icons.library-music:before,
|
1687
|
+
.mi.library-music:before {
|
1688
|
+
content: '\e030';
|
1689
|
+
}
|
1690
|
+
.material-icons.link:before,
|
1691
|
+
.mi.link:before {
|
1692
|
+
content: '\e157';
|
1693
|
+
}
|
1694
|
+
.material-icons.list:before,
|
1695
|
+
.mi.list:before {
|
1696
|
+
content: '\e896';
|
1697
|
+
}
|
1698
|
+
.material-icons.live-help:before,
|
1699
|
+
.mi.live-help:before {
|
1700
|
+
content: '\e0c6';
|
1701
|
+
}
|
1702
|
+
.material-icons.live-tv:before,
|
1703
|
+
.mi.live-tv:before {
|
1704
|
+
content: '\e639';
|
1705
|
+
}
|
1706
|
+
.material-icons.local-activity:before,
|
1707
|
+
.mi.local-activity:before {
|
1708
|
+
content: '\e53f';
|
1709
|
+
}
|
1710
|
+
.material-icons.local-airport:before,
|
1711
|
+
.mi.local-airport:before {
|
1712
|
+
content: '\e53d';
|
1713
|
+
}
|
1714
|
+
.material-icons.local-atm:before,
|
1715
|
+
.mi.local-atm:before {
|
1716
|
+
content: '\e53e';
|
1717
|
+
}
|
1718
|
+
.material-icons.local-bar:before,
|
1719
|
+
.mi.local-bar:before {
|
1720
|
+
content: '\e540';
|
1721
|
+
}
|
1722
|
+
.material-icons.local-cafe:before,
|
1723
|
+
.mi.local-cafe:before {
|
1724
|
+
content: '\e541';
|
1725
|
+
}
|
1726
|
+
.material-icons.local-car-wash:before,
|
1727
|
+
.mi.local-car-wash:before {
|
1728
|
+
content: '\e542';
|
1729
|
+
}
|
1730
|
+
.material-icons.local-convenience-store:before,
|
1731
|
+
.mi.local-convenience-store:before {
|
1732
|
+
content: '\e543';
|
1733
|
+
}
|
1734
|
+
.material-icons.local-dining:before,
|
1735
|
+
.mi.local-dining:before {
|
1736
|
+
content: '\e556';
|
1737
|
+
}
|
1738
|
+
.material-icons.local-drink:before,
|
1739
|
+
.mi.local-drink:before {
|
1740
|
+
content: '\e544';
|
1741
|
+
}
|
1742
|
+
.material-icons.local-florist:before,
|
1743
|
+
.mi.local-florist:before {
|
1744
|
+
content: '\e545';
|
1745
|
+
}
|
1746
|
+
.material-icons.local-gas-station:before,
|
1747
|
+
.mi.local-gas-station:before {
|
1748
|
+
content: '\e546';
|
1749
|
+
}
|
1750
|
+
.material-icons.local-grocery-store:before,
|
1751
|
+
.mi.local-grocery-store:before {
|
1752
|
+
content: '\e547';
|
1753
|
+
}
|
1754
|
+
.material-icons.local-hospital:before,
|
1755
|
+
.mi.local-hospital:before {
|
1756
|
+
content: '\e548';
|
1757
|
+
}
|
1758
|
+
.material-icons.local-hotel:before,
|
1759
|
+
.mi.local-hotel:before {
|
1760
|
+
content: '\e549';
|
1761
|
+
}
|
1762
|
+
.material-icons.local-laundry-service:before,
|
1763
|
+
.mi.local-laundry-service:before {
|
1764
|
+
content: '\e54a';
|
1765
|
+
}
|
1766
|
+
.material-icons.local-library:before,
|
1767
|
+
.mi.local-library:before {
|
1768
|
+
content: '\e54b';
|
1769
|
+
}
|
1770
|
+
.material-icons.local-mall:before,
|
1771
|
+
.mi.local-mall:before {
|
1772
|
+
content: '\e54c';
|
1773
|
+
}
|
1774
|
+
.material-icons.local-movies:before,
|
1775
|
+
.mi.local-movies:before {
|
1776
|
+
content: '\e54d';
|
1777
|
+
}
|
1778
|
+
.material-icons.local-offer:before,
|
1779
|
+
.mi.local-offer:before {
|
1780
|
+
content: '\e54e';
|
1781
|
+
}
|
1782
|
+
.material-icons.local-parking:before,
|
1783
|
+
.mi.local-parking:before {
|
1784
|
+
content: '\e54f';
|
1785
|
+
}
|
1786
|
+
.material-icons.local-pharmacy:before,
|
1787
|
+
.mi.local-pharmacy:before {
|
1788
|
+
content: '\e550';
|
1789
|
+
}
|
1790
|
+
.material-icons.local-phone:before,
|
1791
|
+
.mi.local-phone:before {
|
1792
|
+
content: '\e551';
|
1793
|
+
}
|
1794
|
+
.material-icons.local-pizza:before,
|
1795
|
+
.mi.local-pizza:before {
|
1796
|
+
content: '\e552';
|
1797
|
+
}
|
1798
|
+
.material-icons.local-play:before,
|
1799
|
+
.mi.local-play:before {
|
1800
|
+
content: '\e553';
|
1801
|
+
}
|
1802
|
+
.material-icons.local-post-office:before,
|
1803
|
+
.mi.local-post-office:before {
|
1804
|
+
content: '\e554';
|
1805
|
+
}
|
1806
|
+
.material-icons.local-printshop:before,
|
1807
|
+
.mi.local-printshop:before {
|
1808
|
+
content: '\e555';
|
1809
|
+
}
|
1810
|
+
.material-icons.local-see:before,
|
1811
|
+
.mi.local-see:before {
|
1812
|
+
content: '\e557';
|
1813
|
+
}
|
1814
|
+
.material-icons.local-shipping:before,
|
1815
|
+
.mi.local-shipping:before {
|
1816
|
+
content: '\e558';
|
1817
|
+
}
|
1818
|
+
.material-icons.local-taxi:before,
|
1819
|
+
.mi.local-taxi:before {
|
1820
|
+
content: '\e559';
|
1821
|
+
}
|
1822
|
+
.material-icons.location-city:before,
|
1823
|
+
.mi.location-city:before {
|
1824
|
+
content: '\e7f1';
|
1825
|
+
}
|
1826
|
+
.material-icons.location-disabled:before,
|
1827
|
+
.mi.location-disabled:before {
|
1828
|
+
content: '\e1b6';
|
1829
|
+
}
|
1830
|
+
.material-icons.location-off:before,
|
1831
|
+
.mi.location-off:before {
|
1832
|
+
content: '\e0c7';
|
1833
|
+
}
|
1834
|
+
.material-icons.location-on:before,
|
1835
|
+
.mi.location-on:before {
|
1836
|
+
content: '\e0c8';
|
1837
|
+
}
|
1838
|
+
.material-icons.location-searching:before,
|
1839
|
+
.mi.location-searching:before {
|
1840
|
+
content: '\e1b7';
|
1841
|
+
}
|
1842
|
+
.material-icons.lock:before,
|
1843
|
+
.mi.lock:before {
|
1844
|
+
content: '\e897';
|
1845
|
+
}
|
1846
|
+
.material-icons.lock-open:before,
|
1847
|
+
.mi.lock-open:before {
|
1848
|
+
content: '\e898';
|
1849
|
+
}
|
1850
|
+
.material-icons.lock-outline:before,
|
1851
|
+
.mi.lock-outline:before {
|
1852
|
+
content: '\e899';
|
1853
|
+
}
|
1854
|
+
.material-icons.looks:before,
|
1855
|
+
.mi.looks:before {
|
1856
|
+
content: '\e3fc';
|
1857
|
+
}
|
1858
|
+
.material-icons.looks-3:before,
|
1859
|
+
.mi.looks-3:before {
|
1860
|
+
content: '\e3fb';
|
1861
|
+
}
|
1862
|
+
.material-icons.looks-4:before,
|
1863
|
+
.mi.looks-4:before {
|
1864
|
+
content: '\e3fd';
|
1865
|
+
}
|
1866
|
+
.material-icons.looks-5:before,
|
1867
|
+
.mi.looks-5:before {
|
1868
|
+
content: '\e3fe';
|
1869
|
+
}
|
1870
|
+
.material-icons.looks-6:before,
|
1871
|
+
.mi.looks-6:before {
|
1872
|
+
content: '\e3ff';
|
1873
|
+
}
|
1874
|
+
.material-icons.looks-one:before,
|
1875
|
+
.mi.looks-one:before {
|
1876
|
+
content: '\e400';
|
1877
|
+
}
|
1878
|
+
.material-icons.looks-two:before,
|
1879
|
+
.mi.looks-two:before {
|
1880
|
+
content: '\e401';
|
1881
|
+
}
|
1882
|
+
.material-icons.loop:before,
|
1883
|
+
.mi.loop:before {
|
1884
|
+
content: '\e028';
|
1885
|
+
}
|
1886
|
+
.material-icons.loupe:before,
|
1887
|
+
.mi.loupe:before {
|
1888
|
+
content: '\e402';
|
1889
|
+
}
|
1890
|
+
.material-icons.loyalty:before,
|
1891
|
+
.mi.loyalty:before {
|
1892
|
+
content: '\e89a';
|
1893
|
+
}
|
1894
|
+
.material-icons.mail:before,
|
1895
|
+
.mi.mail:before {
|
1896
|
+
content: '\e158';
|
1897
|
+
}
|
1898
|
+
.material-icons.map:before,
|
1899
|
+
.mi.map:before {
|
1900
|
+
content: '\e55b';
|
1901
|
+
}
|
1902
|
+
.material-icons.markunread:before,
|
1903
|
+
.mi.markunread:before {
|
1904
|
+
content: '\e159';
|
1905
|
+
}
|
1906
|
+
.material-icons.markunread-mailbox:before,
|
1907
|
+
.mi.markunread-mailbox:before {
|
1908
|
+
content: '\e89b';
|
1909
|
+
}
|
1910
|
+
.material-icons.memory:before,
|
1911
|
+
.mi.memory:before {
|
1912
|
+
content: '\e322';
|
1913
|
+
}
|
1914
|
+
.material-icons.menu:before,
|
1915
|
+
.mi.menu:before {
|
1916
|
+
content: '\e5d2';
|
1917
|
+
}
|
1918
|
+
.material-icons.merge-type:before,
|
1919
|
+
.mi.merge-type:before {
|
1920
|
+
content: '\e252';
|
1921
|
+
}
|
1922
|
+
.material-icons.message:before,
|
1923
|
+
.mi.message:before {
|
1924
|
+
content: '\e0c9';
|
1925
|
+
}
|
1926
|
+
.material-icons.mic:before,
|
1927
|
+
.mi.mic:before {
|
1928
|
+
content: '\e029';
|
1929
|
+
}
|
1930
|
+
.material-icons.mic-none:before,
|
1931
|
+
.mi.mic-none:before {
|
1932
|
+
content: '\e02a';
|
1933
|
+
}
|
1934
|
+
.material-icons.mic-off:before,
|
1935
|
+
.mi.mic-off:before {
|
1936
|
+
content: '\e02b';
|
1937
|
+
}
|
1938
|
+
.material-icons.mms:before,
|
1939
|
+
.mi.mms:before {
|
1940
|
+
content: '\e618';
|
1941
|
+
}
|
1942
|
+
.material-icons.mode-comment:before,
|
1943
|
+
.mi.mode-comment:before {
|
1944
|
+
content: '\e253';
|
1945
|
+
}
|
1946
|
+
.material-icons.mode-edit:before,
|
1947
|
+
.mi.mode-edit:before {
|
1948
|
+
content: '\e254';
|
1949
|
+
}
|
1950
|
+
.material-icons.money-off:before,
|
1951
|
+
.mi.money-off:before {
|
1952
|
+
content: '\e25c';
|
1953
|
+
}
|
1954
|
+
.material-icons.monochrome-photos:before,
|
1955
|
+
.mi.monochrome-photos:before {
|
1956
|
+
content: '\e403';
|
1957
|
+
}
|
1958
|
+
.material-icons.mood:before,
|
1959
|
+
.mi.mood:before {
|
1960
|
+
content: '\e7f2';
|
1961
|
+
}
|
1962
|
+
.material-icons.mood-bad:before,
|
1963
|
+
.mi.mood-bad:before {
|
1964
|
+
content: '\e7f3';
|
1965
|
+
}
|
1966
|
+
.material-icons.more:before,
|
1967
|
+
.mi.more:before {
|
1968
|
+
content: '\e619';
|
1969
|
+
}
|
1970
|
+
.material-icons.more-horiz:before,
|
1971
|
+
.mi.more-horiz:before {
|
1972
|
+
content: '\e5d3';
|
1973
|
+
}
|
1974
|
+
.material-icons.more-vert:before,
|
1975
|
+
.mi.more-vert:before {
|
1976
|
+
content: '\e5d4';
|
1977
|
+
}
|
1978
|
+
.material-icons.mouse:before,
|
1979
|
+
.mi.mouse:before {
|
1980
|
+
content: '\e323';
|
1981
|
+
}
|
1982
|
+
.material-icons.movie:before,
|
1983
|
+
.mi.movie:before {
|
1984
|
+
content: '\e02c';
|
1985
|
+
}
|
1986
|
+
.material-icons.movie-creation:before,
|
1987
|
+
.mi.movie-creation:before {
|
1988
|
+
content: '\e404';
|
1989
|
+
}
|
1990
|
+
.material-icons.music-note:before,
|
1991
|
+
.mi.music-note:before {
|
1992
|
+
content: '\e405';
|
1993
|
+
}
|
1994
|
+
.material-icons.my-location:before,
|
1995
|
+
.mi.my-location:before {
|
1996
|
+
content: '\e55c';
|
1997
|
+
}
|
1998
|
+
.material-icons.nature:before,
|
1999
|
+
.mi.nature:before {
|
2000
|
+
content: '\e406';
|
2001
|
+
}
|
2002
|
+
.material-icons.nature-people:before,
|
2003
|
+
.mi.nature-people:before {
|
2004
|
+
content: '\e407';
|
2005
|
+
}
|
2006
|
+
.material-icons.navigate-before:before,
|
2007
|
+
.mi.navigate-before:before {
|
2008
|
+
content: '\e408';
|
2009
|
+
}
|
2010
|
+
.material-icons.navigate-next:before,
|
2011
|
+
.mi.navigate-next:before {
|
2012
|
+
content: '\e409';
|
2013
|
+
}
|
2014
|
+
.material-icons.navigation:before,
|
2015
|
+
.mi.navigation:before {
|
2016
|
+
content: '\e55d';
|
2017
|
+
}
|
2018
|
+
.material-icons.network-cell:before,
|
2019
|
+
.mi.network-cell:before {
|
2020
|
+
content: '\e1b9';
|
2021
|
+
}
|
2022
|
+
.material-icons.network-locked:before,
|
2023
|
+
.mi.network-locked:before {
|
2024
|
+
content: '\e61a';
|
2025
|
+
}
|
2026
|
+
.material-icons.network-wifi:before,
|
2027
|
+
.mi.network-wifi:before {
|
2028
|
+
content: '\e1ba';
|
2029
|
+
}
|
2030
|
+
.material-icons.new-releases:before,
|
2031
|
+
.mi.new-releases:before {
|
2032
|
+
content: '\e031';
|
2033
|
+
}
|
2034
|
+
.material-icons.nfc:before,
|
2035
|
+
.mi.nfc:before {
|
2036
|
+
content: '\e1bb';
|
2037
|
+
}
|
2038
|
+
.material-icons.no-sim:before,
|
2039
|
+
.mi.no-sim:before {
|
2040
|
+
content: '\e0cc';
|
2041
|
+
}
|
2042
|
+
.material-icons.not-interested:before,
|
2043
|
+
.mi.not-interested:before {
|
2044
|
+
content: '\e033';
|
2045
|
+
}
|
2046
|
+
.material-icons.note-add:before,
|
2047
|
+
.mi.note-add:before {
|
2048
|
+
content: '\e89c';
|
2049
|
+
}
|
2050
|
+
.material-icons.notifications:before,
|
2051
|
+
.mi.notifications:before {
|
2052
|
+
content: '\e7f4';
|
2053
|
+
}
|
2054
|
+
.material-icons.notifications-active:before,
|
2055
|
+
.mi.notifications-active:before {
|
2056
|
+
content: '\e7f7';
|
2057
|
+
}
|
2058
|
+
.material-icons.notifications-none:before,
|
2059
|
+
.mi.notifications-none:before {
|
2060
|
+
content: '\e7f5';
|
2061
|
+
}
|
2062
|
+
.material-icons.notifications-off:before,
|
2063
|
+
.mi.notifications-off:before {
|
2064
|
+
content: '\e7f6';
|
2065
|
+
}
|
2066
|
+
.material-icons.notifications-paused:before,
|
2067
|
+
.mi.notifications-paused:before {
|
2068
|
+
content: '\e7f8';
|
2069
|
+
}
|
2070
|
+
.material-icons.offline-pin:before,
|
2071
|
+
.mi.offline-pin:before {
|
2072
|
+
content: '\e90a';
|
2073
|
+
}
|
2074
|
+
.material-icons.ondemand-video:before,
|
2075
|
+
.mi.ondemand-video:before {
|
2076
|
+
content: '\e63a';
|
2077
|
+
}
|
2078
|
+
.material-icons.open-in-browser:before,
|
2079
|
+
.mi.open-in-browser:before {
|
2080
|
+
content: '\e89d';
|
2081
|
+
}
|
2082
|
+
.material-icons.open-in-new:before,
|
2083
|
+
.mi.open-in-new:before {
|
2084
|
+
content: '\e89e';
|
2085
|
+
}
|
2086
|
+
.material-icons.open-with:before,
|
2087
|
+
.mi.open-with:before {
|
2088
|
+
content: '\e89f';
|
2089
|
+
}
|
2090
|
+
.material-icons.pages:before,
|
2091
|
+
.mi.pages:before {
|
2092
|
+
content: '\e7f9';
|
2093
|
+
}
|
2094
|
+
.material-icons.pageview:before,
|
2095
|
+
.mi.pageview:before {
|
2096
|
+
content: '\e8a0';
|
2097
|
+
}
|
2098
|
+
.material-icons.palette:before,
|
2099
|
+
.mi.palette:before {
|
2100
|
+
content: '\e40a';
|
2101
|
+
}
|
2102
|
+
.material-icons.panorama:before,
|
2103
|
+
.mi.panorama:before {
|
2104
|
+
content: '\e40b';
|
2105
|
+
}
|
2106
|
+
.material-icons.panorama-fish-eye:before,
|
2107
|
+
.mi.panorama-fish-eye:before {
|
2108
|
+
content: '\e40c';
|
2109
|
+
}
|
2110
|
+
.material-icons.panorama-horizontal:before,
|
2111
|
+
.mi.panorama-horizontal:before {
|
2112
|
+
content: '\e40d';
|
2113
|
+
}
|
2114
|
+
.material-icons.panorama-vertical:before,
|
2115
|
+
.mi.panorama-vertical:before {
|
2116
|
+
content: '\e40e';
|
2117
|
+
}
|
2118
|
+
.material-icons.panorama-wide-angle:before,
|
2119
|
+
.mi.panorama-wide-angle:before {
|
2120
|
+
content: '\e40f';
|
2121
|
+
}
|
2122
|
+
.material-icons.party-mode:before,
|
2123
|
+
.mi.party-mode:before {
|
2124
|
+
content: '\e7fa';
|
2125
|
+
}
|
2126
|
+
.material-icons.pause:before,
|
2127
|
+
.mi.pause:before {
|
2128
|
+
content: '\e034';
|
2129
|
+
}
|
2130
|
+
.material-icons.pause-circle-filled:before,
|
2131
|
+
.mi.pause-circle-filled:before {
|
2132
|
+
content: '\e035';
|
2133
|
+
}
|
2134
|
+
.material-icons.pause-circle-outline:before,
|
2135
|
+
.mi.pause-circle-outline:before {
|
2136
|
+
content: '\e036';
|
2137
|
+
}
|
2138
|
+
.material-icons.payment:before,
|
2139
|
+
.mi.payment:before {
|
2140
|
+
content: '\e8a1';
|
2141
|
+
}
|
2142
|
+
.material-icons.people:before,
|
2143
|
+
.mi.people:before {
|
2144
|
+
content: '\e7fb';
|
2145
|
+
}
|
2146
|
+
.material-icons.people-outline:before,
|
2147
|
+
.mi.people-outline:before {
|
2148
|
+
content: '\e7fc';
|
2149
|
+
}
|
2150
|
+
.material-icons.perm-camera-mic:before,
|
2151
|
+
.mi.perm-camera-mic:before {
|
2152
|
+
content: '\e8a2';
|
2153
|
+
}
|
2154
|
+
.material-icons.perm-contact-calendar:before,
|
2155
|
+
.mi.perm-contact-calendar:before {
|
2156
|
+
content: '\e8a3';
|
2157
|
+
}
|
2158
|
+
.material-icons.perm-data-setting:before,
|
2159
|
+
.mi.perm-data-setting:before {
|
2160
|
+
content: '\e8a4';
|
2161
|
+
}
|
2162
|
+
.material-icons.perm-device-information:before,
|
2163
|
+
.mi.perm-device-information:before {
|
2164
|
+
content: '\e8a5';
|
2165
|
+
}
|
2166
|
+
.material-icons.perm-identity:before,
|
2167
|
+
.mi.perm-identity:before {
|
2168
|
+
content: '\e8a6';
|
2169
|
+
}
|
2170
|
+
.material-icons.perm-media:before,
|
2171
|
+
.mi.perm-media:before {
|
2172
|
+
content: '\e8a7';
|
2173
|
+
}
|
2174
|
+
.material-icons.perm-phone-msg:before,
|
2175
|
+
.mi.perm-phone-msg:before {
|
2176
|
+
content: '\e8a8';
|
2177
|
+
}
|
2178
|
+
.material-icons.perm-scan-wifi:before,
|
2179
|
+
.mi.perm-scan-wifi:before {
|
2180
|
+
content: '\e8a9';
|
2181
|
+
}
|
2182
|
+
.material-icons.person:before,
|
2183
|
+
.mi.person:before {
|
2184
|
+
content: '\e7fd';
|
2185
|
+
}
|
2186
|
+
.material-icons.person-add:before,
|
2187
|
+
.mi.person-add:before {
|
2188
|
+
content: '\e7fe';
|
2189
|
+
}
|
2190
|
+
.material-icons.person-outline:before,
|
2191
|
+
.mi.person-outline:before {
|
2192
|
+
content: '\e7ff';
|
2193
|
+
}
|
2194
|
+
.material-icons.person-pin:before,
|
2195
|
+
.mi.person-pin:before {
|
2196
|
+
content: '\e55a';
|
2197
|
+
}
|
2198
|
+
.material-icons.personal-video:before,
|
2199
|
+
.mi.personal-video:before {
|
2200
|
+
content: '\e63b';
|
2201
|
+
}
|
2202
|
+
.material-icons.phone:before,
|
2203
|
+
.mi.phone:before {
|
2204
|
+
content: '\e0cd';
|
2205
|
+
}
|
2206
|
+
.material-icons.phone-android:before,
|
2207
|
+
.mi.phone-android:before {
|
2208
|
+
content: '\e324';
|
2209
|
+
}
|
2210
|
+
.material-icons.phone-bluetooth-speaker:before,
|
2211
|
+
.mi.phone-bluetooth-speaker:before {
|
2212
|
+
content: '\e61b';
|
2213
|
+
}
|
2214
|
+
.material-icons.phone-forwarded:before,
|
2215
|
+
.mi.phone-forwarded:before {
|
2216
|
+
content: '\e61c';
|
2217
|
+
}
|
2218
|
+
.material-icons.phone-in-talk:before,
|
2219
|
+
.mi.phone-in-talk:before {
|
2220
|
+
content: '\e61d';
|
2221
|
+
}
|
2222
|
+
.material-icons.phone-iphone:before,
|
2223
|
+
.mi.phone-iphone:before {
|
2224
|
+
content: '\e325';
|
2225
|
+
}
|
2226
|
+
.material-icons.phone-locked:before,
|
2227
|
+
.mi.phone-locked:before {
|
2228
|
+
content: '\e61e';
|
2229
|
+
}
|
2230
|
+
.material-icons.phone-missed:before,
|
2231
|
+
.mi.phone-missed:before {
|
2232
|
+
content: '\e61f';
|
2233
|
+
}
|
2234
|
+
.material-icons.phone-paused:before,
|
2235
|
+
.mi.phone-paused:before {
|
2236
|
+
content: '\e620';
|
2237
|
+
}
|
2238
|
+
.material-icons.phonelink:before,
|
2239
|
+
.mi.phonelink:before {
|
2240
|
+
content: '\e326';
|
2241
|
+
}
|
2242
|
+
.material-icons.phonelink-erase:before,
|
2243
|
+
.mi.phonelink-erase:before {
|
2244
|
+
content: '\e0db';
|
2245
|
+
}
|
2246
|
+
.material-icons.phonelink-lock:before,
|
2247
|
+
.mi.phonelink-lock:before {
|
2248
|
+
content: '\e0dc';
|
2249
|
+
}
|
2250
|
+
.material-icons.phonelink-off:before,
|
2251
|
+
.mi.phonelink-off:before {
|
2252
|
+
content: '\e327';
|
2253
|
+
}
|
2254
|
+
.material-icons.phonelink-ring:before,
|
2255
|
+
.mi.phonelink-ring:before {
|
2256
|
+
content: '\e0dd';
|
2257
|
+
}
|
2258
|
+
.material-icons.phonelink-setup:before,
|
2259
|
+
.mi.phonelink-setup:before {
|
2260
|
+
content: '\e0de';
|
2261
|
+
}
|
2262
|
+
.material-icons.photo:before,
|
2263
|
+
.mi.photo:before {
|
2264
|
+
content: '\e410';
|
2265
|
+
}
|
2266
|
+
.material-icons.photo-album:before,
|
2267
|
+
.mi.photo-album:before {
|
2268
|
+
content: '\e411';
|
2269
|
+
}
|
2270
|
+
.material-icons.photo-camera:before,
|
2271
|
+
.mi.photo-camera:before {
|
2272
|
+
content: '\e412';
|
2273
|
+
}
|
2274
|
+
.material-icons.photo-library:before,
|
2275
|
+
.mi.photo-library:before {
|
2276
|
+
content: '\e413';
|
2277
|
+
}
|
2278
|
+
.material-icons.photo-size-select-actual:before,
|
2279
|
+
.mi.photo-size-select-actual:before {
|
2280
|
+
content: '\e432';
|
2281
|
+
}
|
2282
|
+
.material-icons.photo-size-select-large:before,
|
2283
|
+
.mi.photo-size-select-large:before {
|
2284
|
+
content: '\e433';
|
2285
|
+
}
|
2286
|
+
.material-icons.photo-size-select-small:before,
|
2287
|
+
.mi.photo-size-select-small:before {
|
2288
|
+
content: '\e434';
|
2289
|
+
}
|
2290
|
+
.material-icons.picture-as-pdf:before,
|
2291
|
+
.mi.picture-as-pdf:before {
|
2292
|
+
content: '\e415';
|
2293
|
+
}
|
2294
|
+
.material-icons.picture-in-picture:before,
|
2295
|
+
.mi.picture-in-picture:before {
|
2296
|
+
content: '\e8aa';
|
2297
|
+
}
|
2298
|
+
.material-icons.pin-drop:before,
|
2299
|
+
.mi.pin-drop:before {
|
2300
|
+
content: '\e55e';
|
2301
|
+
}
|
2302
|
+
.material-icons.place:before,
|
2303
|
+
.mi.place:before {
|
2304
|
+
content: '\e55f';
|
2305
|
+
}
|
2306
|
+
.material-icons.play-arrow:before,
|
2307
|
+
.mi.play-arrow:before {
|
2308
|
+
content: '\e037';
|
2309
|
+
}
|
2310
|
+
.material-icons.play-circle-filled:before,
|
2311
|
+
.mi.play-circle-filled:before {
|
2312
|
+
content: '\e038';
|
2313
|
+
}
|
2314
|
+
.material-icons.play-circle-outline:before,
|
2315
|
+
.mi.play-circle-outline:before {
|
2316
|
+
content: '\e039';
|
2317
|
+
}
|
2318
|
+
.material-icons.play-for-work:before,
|
2319
|
+
.mi.play-for-work:before {
|
2320
|
+
content: '\e906';
|
2321
|
+
}
|
2322
|
+
.material-icons.playlist-add:before,
|
2323
|
+
.mi.playlist-add:before {
|
2324
|
+
content: '\e03b';
|
2325
|
+
}
|
2326
|
+
.material-icons.plus-one:before,
|
2327
|
+
.mi.plus-one:before {
|
2328
|
+
content: '\e800';
|
2329
|
+
}
|
2330
|
+
.material-icons.poll:before,
|
2331
|
+
.mi.poll:before {
|
2332
|
+
content: '\e801';
|
2333
|
+
}
|
2334
|
+
.material-icons.polymer:before,
|
2335
|
+
.mi.polymer:before {
|
2336
|
+
content: '\e8ab';
|
2337
|
+
}
|
2338
|
+
.material-icons.portable-wifi-off:before,
|
2339
|
+
.mi.portable-wifi-off:before {
|
2340
|
+
content: '\e0ce';
|
2341
|
+
}
|
2342
|
+
.material-icons.portrait:before,
|
2343
|
+
.mi.portrait:before {
|
2344
|
+
content: '\e416';
|
2345
|
+
}
|
2346
|
+
.material-icons.power:before,
|
2347
|
+
.mi.power:before {
|
2348
|
+
content: '\e63c';
|
2349
|
+
}
|
2350
|
+
.material-icons.power-input:before,
|
2351
|
+
.mi.power-input:before {
|
2352
|
+
content: '\e336';
|
2353
|
+
}
|
2354
|
+
.material-icons.power-settings-new:before,
|
2355
|
+
.mi.power-settings-new:before {
|
2356
|
+
content: '\e8ac';
|
2357
|
+
}
|
2358
|
+
.material-icons.present-to-all:before,
|
2359
|
+
.mi.present-to-all:before {
|
2360
|
+
content: '\e0df';
|
2361
|
+
}
|
2362
|
+
.material-icons.print:before,
|
2363
|
+
.mi.print:before {
|
2364
|
+
content: '\e8ad';
|
2365
|
+
}
|
2366
|
+
.material-icons.public:before,
|
2367
|
+
.mi.public:before {
|
2368
|
+
content: '\e80b';
|
2369
|
+
}
|
2370
|
+
.material-icons.publish:before,
|
2371
|
+
.mi.publish:before {
|
2372
|
+
content: '\e255';
|
2373
|
+
}
|
2374
|
+
.material-icons.query-builder:before,
|
2375
|
+
.mi.query-builder:before {
|
2376
|
+
content: '\e8ae';
|
2377
|
+
}
|
2378
|
+
.material-icons.question-answer:before,
|
2379
|
+
.mi.question-answer:before {
|
2380
|
+
content: '\e8af';
|
2381
|
+
}
|
2382
|
+
.material-icons.queue:before,
|
2383
|
+
.mi.queue:before {
|
2384
|
+
content: '\e03c';
|
2385
|
+
}
|
2386
|
+
.material-icons.queue-music:before,
|
2387
|
+
.mi.queue-music:before {
|
2388
|
+
content: '\e03d';
|
2389
|
+
}
|
2390
|
+
.material-icons.radio:before,
|
2391
|
+
.mi.radio:before {
|
2392
|
+
content: '\e03e';
|
2393
|
+
}
|
2394
|
+
.material-icons.radio-button-checked:before,
|
2395
|
+
.mi.radio-button-checked:before {
|
2396
|
+
content: '\e837';
|
2397
|
+
}
|
2398
|
+
.material-icons.radio-button-unchecked:before,
|
2399
|
+
.mi.radio-button-unchecked:before {
|
2400
|
+
content: '\e836';
|
2401
|
+
}
|
2402
|
+
.material-icons.rate-review:before,
|
2403
|
+
.mi.rate-review:before {
|
2404
|
+
content: '\e560';
|
2405
|
+
}
|
2406
|
+
.material-icons.receipt:before,
|
2407
|
+
.mi.receipt:before {
|
2408
|
+
content: '\e8b0';
|
2409
|
+
}
|
2410
|
+
.material-icons.recent-actors:before,
|
2411
|
+
.mi.recent-actors:before {
|
2412
|
+
content: '\e03f';
|
2413
|
+
}
|
2414
|
+
.material-icons.redeem:before,
|
2415
|
+
.mi.redeem:before {
|
2416
|
+
content: '\e8b1';
|
2417
|
+
}
|
2418
|
+
.material-icons.redo:before,
|
2419
|
+
.mi.redo:before {
|
2420
|
+
content: '\e15a';
|
2421
|
+
}
|
2422
|
+
.material-icons.refresh:before,
|
2423
|
+
.mi.refresh:before {
|
2424
|
+
content: '\e5d5';
|
2425
|
+
}
|
2426
|
+
.material-icons.remove:before,
|
2427
|
+
.mi.remove:before {
|
2428
|
+
content: '\e15b';
|
2429
|
+
}
|
2430
|
+
.material-icons.remove-circle:before,
|
2431
|
+
.mi.remove-circle:before {
|
2432
|
+
content: '\e15c';
|
2433
|
+
}
|
2434
|
+
.material-icons.remove-circle-outline:before,
|
2435
|
+
.mi.remove-circle-outline:before {
|
2436
|
+
content: '\e15d';
|
2437
|
+
}
|
2438
|
+
.material-icons.remove-red-eye:before,
|
2439
|
+
.mi.remove-red-eye:before {
|
2440
|
+
content: '\e417';
|
2441
|
+
}
|
2442
|
+
.material-icons.reorder:before,
|
2443
|
+
.mi.reorder:before {
|
2444
|
+
content: '\e8fe';
|
2445
|
+
}
|
2446
|
+
.material-icons.repeat:before,
|
2447
|
+
.mi.repeat:before {
|
2448
|
+
content: '\e040';
|
2449
|
+
}
|
2450
|
+
.material-icons.repeat-one:before,
|
2451
|
+
.mi.repeat-one:before {
|
2452
|
+
content: '\e041';
|
2453
|
+
}
|
2454
|
+
.material-icons.replay:before,
|
2455
|
+
.mi.replay:before {
|
2456
|
+
content: '\e042';
|
2457
|
+
}
|
2458
|
+
.material-icons.replay-10:before,
|
2459
|
+
.mi.replay-10:before {
|
2460
|
+
content: '\e059';
|
2461
|
+
}
|
2462
|
+
.material-icons.replay-30:before,
|
2463
|
+
.mi.replay-30:before {
|
2464
|
+
content: '\e05a';
|
2465
|
+
}
|
2466
|
+
.material-icons.replay-5:before,
|
2467
|
+
.mi.replay-5:before {
|
2468
|
+
content: '\e05b';
|
2469
|
+
}
|
2470
|
+
.material-icons.reply:before,
|
2471
|
+
.mi.reply:before {
|
2472
|
+
content: '\e15e';
|
2473
|
+
}
|
2474
|
+
.material-icons.reply-all:before,
|
2475
|
+
.mi.reply-all:before {
|
2476
|
+
content: '\e15f';
|
2477
|
+
}
|
2478
|
+
.material-icons.report:before,
|
2479
|
+
.mi.report:before {
|
2480
|
+
content: '\e160';
|
2481
|
+
}
|
2482
|
+
.material-icons.report-problem:before,
|
2483
|
+
.mi.report-problem:before {
|
2484
|
+
content: '\e8b2';
|
2485
|
+
}
|
2486
|
+
.material-icons.restaurant-menu:before,
|
2487
|
+
.mi.restaurant-menu:before {
|
2488
|
+
content: '\e561';
|
2489
|
+
}
|
2490
|
+
.material-icons.restore:before,
|
2491
|
+
.mi.restore:before {
|
2492
|
+
content: '\e8b3';
|
2493
|
+
}
|
2494
|
+
.material-icons.ring-volume:before,
|
2495
|
+
.mi.ring-volume:before {
|
2496
|
+
content: '\e0d1';
|
2497
|
+
}
|
2498
|
+
.material-icons.room:before,
|
2499
|
+
.mi.room:before {
|
2500
|
+
content: '\e8b4';
|
2501
|
+
}
|
2502
|
+
.material-icons.rotate-90-degrees-ccw:before,
|
2503
|
+
.mi.rotate-90-degrees-ccw:before {
|
2504
|
+
content: '\e418';
|
2505
|
+
}
|
2506
|
+
.material-icons.rotate-left:before,
|
2507
|
+
.mi.rotate-left:before {
|
2508
|
+
content: '\e419';
|
2509
|
+
}
|
2510
|
+
.material-icons.rotate-right:before,
|
2511
|
+
.mi.rotate-right:before {
|
2512
|
+
content: '\e41a';
|
2513
|
+
}
|
2514
|
+
.material-icons.router:before,
|
2515
|
+
.mi.router:before {
|
2516
|
+
content: '\e328';
|
2517
|
+
}
|
2518
|
+
.material-icons.satellite:before,
|
2519
|
+
.mi.satellite:before {
|
2520
|
+
content: '\e562';
|
2521
|
+
}
|
2522
|
+
.material-icons.save:before,
|
2523
|
+
.mi.save:before {
|
2524
|
+
content: '\e161';
|
2525
|
+
}
|
2526
|
+
.material-icons.scanner:before,
|
2527
|
+
.mi.scanner:before {
|
2528
|
+
content: '\e329';
|
2529
|
+
}
|
2530
|
+
.material-icons.schedule:before,
|
2531
|
+
.mi.schedule:before {
|
2532
|
+
content: '\e8b5';
|
2533
|
+
}
|
2534
|
+
.material-icons.school:before,
|
2535
|
+
.mi.school:before {
|
2536
|
+
content: '\e80c';
|
2537
|
+
}
|
2538
|
+
.material-icons.screen-lock-landscape:before,
|
2539
|
+
.mi.screen-lock-landscape:before {
|
2540
|
+
content: '\e1be';
|
2541
|
+
}
|
2542
|
+
.material-icons.screen-lock-portrait:before,
|
2543
|
+
.mi.screen-lock-portrait:before {
|
2544
|
+
content: '\e1bf';
|
2545
|
+
}
|
2546
|
+
.material-icons.screen-lock-rotation:before,
|
2547
|
+
.mi.screen-lock-rotation:before {
|
2548
|
+
content: '\e1c0';
|
2549
|
+
}
|
2550
|
+
.material-icons.screen-rotation:before,
|
2551
|
+
.mi.screen-rotation:before {
|
2552
|
+
content: '\e1c1';
|
2553
|
+
}
|
2554
|
+
.material-icons.sd-card:before,
|
2555
|
+
.mi.sd-card:before {
|
2556
|
+
content: '\e623';
|
2557
|
+
}
|
2558
|
+
.material-icons.sd-storage:before,
|
2559
|
+
.mi.sd-storage:before {
|
2560
|
+
content: '\e1c2';
|
2561
|
+
}
|
2562
|
+
.material-icons.search:before,
|
2563
|
+
.mi.search:before {
|
2564
|
+
content: '\e8b6';
|
2565
|
+
}
|
2566
|
+
.material-icons.security:before,
|
2567
|
+
.mi.security:before {
|
2568
|
+
content: '\e32a';
|
2569
|
+
}
|
2570
|
+
.material-icons.select-all:before,
|
2571
|
+
.mi.select-all:before {
|
2572
|
+
content: '\e162';
|
2573
|
+
}
|
2574
|
+
.material-icons.send:before,
|
2575
|
+
.mi.send:before {
|
2576
|
+
content: '\e163';
|
2577
|
+
}
|
2578
|
+
.material-icons.settings:before,
|
2579
|
+
.mi.settings:before {
|
2580
|
+
content: '\e8b8';
|
2581
|
+
}
|
2582
|
+
.material-icons.settings-applications:before,
|
2583
|
+
.mi.settings-applications:before {
|
2584
|
+
content: '\e8b9';
|
2585
|
+
}
|
2586
|
+
.material-icons.settings-backup-restore:before,
|
2587
|
+
.mi.settings-backup-restore:before {
|
2588
|
+
content: '\e8ba';
|
2589
|
+
}
|
2590
|
+
.material-icons.settings-bluetooth:before,
|
2591
|
+
.mi.settings-bluetooth:before {
|
2592
|
+
content: '\e8bb';
|
2593
|
+
}
|
2594
|
+
.material-icons.settings-brightness:before,
|
2595
|
+
.mi.settings-brightness:before {
|
2596
|
+
content: '\e8bd';
|
2597
|
+
}
|
2598
|
+
.material-icons.settings-cell:before,
|
2599
|
+
.mi.settings-cell:before {
|
2600
|
+
content: '\e8bc';
|
2601
|
+
}
|
2602
|
+
.material-icons.settings-ethernet:before,
|
2603
|
+
.mi.settings-ethernet:before {
|
2604
|
+
content: '\e8be';
|
2605
|
+
}
|
2606
|
+
.material-icons.settings-input-antenna:before,
|
2607
|
+
.mi.settings-input-antenna:before {
|
2608
|
+
content: '\e8bf';
|
2609
|
+
}
|
2610
|
+
.material-icons.settings-input-component:before,
|
2611
|
+
.mi.settings-input-component:before {
|
2612
|
+
content: '\e8c0';
|
2613
|
+
}
|
2614
|
+
.material-icons.settings-input-composite:before,
|
2615
|
+
.mi.settings-input-composite:before {
|
2616
|
+
content: '\e8c1';
|
2617
|
+
}
|
2618
|
+
.material-icons.settings-input-hdmi:before,
|
2619
|
+
.mi.settings-input-hdmi:before {
|
2620
|
+
content: '\e8c2';
|
2621
|
+
}
|
2622
|
+
.material-icons.settings-input-svideo:before,
|
2623
|
+
.mi.settings-input-svideo:before {
|
2624
|
+
content: '\e8c3';
|
2625
|
+
}
|
2626
|
+
.material-icons.settings-overscan:before,
|
2627
|
+
.mi.settings-overscan:before {
|
2628
|
+
content: '\e8c4';
|
2629
|
+
}
|
2630
|
+
.material-icons.settings-phone:before,
|
2631
|
+
.mi.settings-phone:before {
|
2632
|
+
content: '\e8c5';
|
2633
|
+
}
|
2634
|
+
.material-icons.settings-power:before,
|
2635
|
+
.mi.settings-power:before {
|
2636
|
+
content: '\e8c6';
|
2637
|
+
}
|
2638
|
+
.material-icons.settings-remote:before,
|
2639
|
+
.mi.settings-remote:before {
|
2640
|
+
content: '\e8c7';
|
2641
|
+
}
|
2642
|
+
.material-icons.settings-system-daydream:before,
|
2643
|
+
.mi.settings-system-daydream:before {
|
2644
|
+
content: '\e1c3';
|
2645
|
+
}
|
2646
|
+
.material-icons.settings-voice:before,
|
2647
|
+
.mi.settings-voice:before {
|
2648
|
+
content: '\e8c8';
|
2649
|
+
}
|
2650
|
+
.material-icons.share:before,
|
2651
|
+
.mi.share:before {
|
2652
|
+
content: '\e80d';
|
2653
|
+
}
|
2654
|
+
.material-icons.shop:before,
|
2655
|
+
.mi.shop:before {
|
2656
|
+
content: '\e8c9';
|
2657
|
+
}
|
2658
|
+
.material-icons.shop-two:before,
|
2659
|
+
.mi.shop-two:before {
|
2660
|
+
content: '\e8ca';
|
2661
|
+
}
|
2662
|
+
.material-icons.shopping-basket:before,
|
2663
|
+
.mi.shopping-basket:before {
|
2664
|
+
content: '\e8cb';
|
2665
|
+
}
|
2666
|
+
.material-icons.shopping-cart:before,
|
2667
|
+
.mi.shopping-cart:before {
|
2668
|
+
content: '\e8cc';
|
2669
|
+
}
|
2670
|
+
.material-icons.shuffle:before,
|
2671
|
+
.mi.shuffle:before {
|
2672
|
+
content: '\e043';
|
2673
|
+
}
|
2674
|
+
.material-icons.signal-cellular-4-bar:before,
|
2675
|
+
.mi.signal-cellular-4-bar:before {
|
2676
|
+
content: '\e1c8';
|
2677
|
+
}
|
2678
|
+
.material-icons.signal-cellular-connected-no-internet-4-bar:before,
|
2679
|
+
.mi.signal-cellular-connected-no-internet-4-bar:before {
|
2680
|
+
content: '\e1cd';
|
2681
|
+
}
|
2682
|
+
.material-icons.signal-cellular-no-sim:before,
|
2683
|
+
.mi.signal-cellular-no-sim:before {
|
2684
|
+
content: '\e1ce';
|
2685
|
+
}
|
2686
|
+
.material-icons.signal-cellular-null:before,
|
2687
|
+
.mi.signal-cellular-null:before {
|
2688
|
+
content: '\e1cf';
|
2689
|
+
}
|
2690
|
+
.material-icons.signal-cellular-off:before,
|
2691
|
+
.mi.signal-cellular-off:before {
|
2692
|
+
content: '\e1d0';
|
2693
|
+
}
|
2694
|
+
.material-icons.signal-wifi-4-bar:before,
|
2695
|
+
.mi.signal-wifi-4-bar:before {
|
2696
|
+
content: '\e1d8';
|
2697
|
+
}
|
2698
|
+
.material-icons.signal-wifi-4-bar-lock:before,
|
2699
|
+
.mi.signal-wifi-4-bar-lock:before {
|
2700
|
+
content: '\e1d9';
|
2701
|
+
}
|
2702
|
+
.material-icons.signal-wifi-off:before,
|
2703
|
+
.mi.signal-wifi-off:before {
|
2704
|
+
content: '\e1da';
|
2705
|
+
}
|
2706
|
+
.material-icons.sim-card:before,
|
2707
|
+
.mi.sim-card:before {
|
2708
|
+
content: '\e32b';
|
2709
|
+
}
|
2710
|
+
.material-icons.sim-card-alert:before,
|
2711
|
+
.mi.sim-card-alert:before {
|
2712
|
+
content: '\e624';
|
2713
|
+
}
|
2714
|
+
.material-icons.skip-next:before,
|
2715
|
+
.mi.skip-next:before {
|
2716
|
+
content: '\e044';
|
2717
|
+
}
|
2718
|
+
.material-icons.skip-previous:before,
|
2719
|
+
.mi.skip-previous:before {
|
2720
|
+
content: '\e045';
|
2721
|
+
}
|
2722
|
+
.material-icons.slideshow:before,
|
2723
|
+
.mi.slideshow:before {
|
2724
|
+
content: '\e41b';
|
2725
|
+
}
|
2726
|
+
.material-icons.smartphone:before,
|
2727
|
+
.mi.smartphone:before {
|
2728
|
+
content: '\e32c';
|
2729
|
+
}
|
2730
|
+
.material-icons.sms:before,
|
2731
|
+
.mi.sms:before {
|
2732
|
+
content: '\e625';
|
2733
|
+
}
|
2734
|
+
.material-icons.sms-failed:before,
|
2735
|
+
.mi.sms-failed:before {
|
2736
|
+
content: '\e626';
|
2737
|
+
}
|
2738
|
+
.material-icons.snooze:before,
|
2739
|
+
.mi.snooze:before {
|
2740
|
+
content: '\e046';
|
2741
|
+
}
|
2742
|
+
.material-icons.sort:before,
|
2743
|
+
.mi.sort:before {
|
2744
|
+
content: '\e164';
|
2745
|
+
}
|
2746
|
+
.material-icons.sort-by-alpha:before,
|
2747
|
+
.mi.sort-by-alpha:before {
|
2748
|
+
content: '\e053';
|
2749
|
+
}
|
2750
|
+
.material-icons.space-bar:before,
|
2751
|
+
.mi.space-bar:before {
|
2752
|
+
content: '\e256';
|
2753
|
+
}
|
2754
|
+
.material-icons.speaker:before,
|
2755
|
+
.mi.speaker:before {
|
2756
|
+
content: '\e32d';
|
2757
|
+
}
|
2758
|
+
.material-icons.speaker-group:before,
|
2759
|
+
.mi.speaker-group:before {
|
2760
|
+
content: '\e32e';
|
2761
|
+
}
|
2762
|
+
.material-icons.speaker-notes:before,
|
2763
|
+
.mi.speaker-notes:before {
|
2764
|
+
content: '\e8cd';
|
2765
|
+
}
|
2766
|
+
.material-icons.speaker-phone:before,
|
2767
|
+
.mi.speaker-phone:before {
|
2768
|
+
content: '\e0d2';
|
2769
|
+
}
|
2770
|
+
.material-icons.spellcheck:before,
|
2771
|
+
.mi.spellcheck:before {
|
2772
|
+
content: '\e8ce';
|
2773
|
+
}
|
2774
|
+
.material-icons.star:before,
|
2775
|
+
.mi.star:before {
|
2776
|
+
content: '\e838';
|
2777
|
+
}
|
2778
|
+
.material-icons.star-border:before,
|
2779
|
+
.mi.star-border:before {
|
2780
|
+
content: '\e83a';
|
2781
|
+
}
|
2782
|
+
.material-icons.star-half:before,
|
2783
|
+
.mi.star-half:before {
|
2784
|
+
content: '\e839';
|
2785
|
+
}
|
2786
|
+
.material-icons.stars:before,
|
2787
|
+
.mi.stars:before {
|
2788
|
+
content: '\e8d0';
|
2789
|
+
}
|
2790
|
+
.material-icons.stay-current-landscape:before,
|
2791
|
+
.mi.stay-current-landscape:before {
|
2792
|
+
content: '\e0d3';
|
2793
|
+
}
|
2794
|
+
.material-icons.stay-current-portrait:before,
|
2795
|
+
.mi.stay-current-portrait:before {
|
2796
|
+
content: '\e0d4';
|
2797
|
+
}
|
2798
|
+
.material-icons.stay-primary-landscape:before,
|
2799
|
+
.mi.stay-primary-landscape:before {
|
2800
|
+
content: '\e0d5';
|
2801
|
+
}
|
2802
|
+
.material-icons.stay-primary-portrait:before,
|
2803
|
+
.mi.stay-primary-portrait:before {
|
2804
|
+
content: '\e0d6';
|
2805
|
+
}
|
2806
|
+
.material-icons.stop:before,
|
2807
|
+
.mi.stop:before {
|
2808
|
+
content: '\e047';
|
2809
|
+
}
|
2810
|
+
.material-icons.storage:before,
|
2811
|
+
.mi.storage:before {
|
2812
|
+
content: '\e1db';
|
2813
|
+
}
|
2814
|
+
.material-icons.store:before,
|
2815
|
+
.mi.store:before {
|
2816
|
+
content: '\e8d1';
|
2817
|
+
}
|
2818
|
+
.material-icons.store-mall-directory:before,
|
2819
|
+
.mi.store-mall-directory:before {
|
2820
|
+
content: '\e563';
|
2821
|
+
}
|
2822
|
+
.material-icons.straighten:before,
|
2823
|
+
.mi.straighten:before {
|
2824
|
+
content: '\e41c';
|
2825
|
+
}
|
2826
|
+
.material-icons.strikethrough-s:before,
|
2827
|
+
.mi.strikethrough-s:before {
|
2828
|
+
content: '\e257';
|
2829
|
+
}
|
2830
|
+
.material-icons.style:before,
|
2831
|
+
.mi.style:before {
|
2832
|
+
content: '\e41d';
|
2833
|
+
}
|
2834
|
+
.material-icons.subject:before,
|
2835
|
+
.mi.subject:before {
|
2836
|
+
content: '\e8d2';
|
2837
|
+
}
|
2838
|
+
.material-icons.subtitles:before,
|
2839
|
+
.mi.subtitles:before {
|
2840
|
+
content: '\e048';
|
2841
|
+
}
|
2842
|
+
.material-icons.supervisor-account:before,
|
2843
|
+
.mi.supervisor-account:before {
|
2844
|
+
content: '\e8d3';
|
2845
|
+
}
|
2846
|
+
.material-icons.surround-sound:before,
|
2847
|
+
.mi.surround-sound:before {
|
2848
|
+
content: '\e049';
|
2849
|
+
}
|
2850
|
+
.material-icons.swap-calls:before,
|
2851
|
+
.mi.swap-calls:before {
|
2852
|
+
content: '\e0d7';
|
2853
|
+
}
|
2854
|
+
.material-icons.swap-horiz:before,
|
2855
|
+
.mi.swap-horiz:before {
|
2856
|
+
content: '\e8d4';
|
2857
|
+
}
|
2858
|
+
.material-icons.swap-vert:before,
|
2859
|
+
.mi.swap-vert:before {
|
2860
|
+
content: '\e8d5';
|
2861
|
+
}
|
2862
|
+
.material-icons.swap-vertical-circle:before,
|
2863
|
+
.mi.swap-vertical-circle:before {
|
2864
|
+
content: '\e8d6';
|
2865
|
+
}
|
2866
|
+
.material-icons.switch-camera:before,
|
2867
|
+
.mi.switch-camera:before {
|
2868
|
+
content: '\e41e';
|
2869
|
+
}
|
2870
|
+
.material-icons.switch-video:before,
|
2871
|
+
.mi.switch-video:before {
|
2872
|
+
content: '\e41f';
|
2873
|
+
}
|
2874
|
+
.material-icons.sync:before,
|
2875
|
+
.mi.sync:before {
|
2876
|
+
content: '\e627';
|
2877
|
+
}
|
2878
|
+
.material-icons.sync-disabled:before,
|
2879
|
+
.mi.sync-disabled:before {
|
2880
|
+
content: '\e628';
|
2881
|
+
}
|
2882
|
+
.material-icons.sync-problem:before,
|
2883
|
+
.mi.sync-problem:before {
|
2884
|
+
content: '\e629';
|
2885
|
+
}
|
2886
|
+
.material-icons.system-update:before,
|
2887
|
+
.mi.system-update:before {
|
2888
|
+
content: '\e62a';
|
2889
|
+
}
|
2890
|
+
.material-icons.system-update-alt:before,
|
2891
|
+
.mi.system-update-alt:before {
|
2892
|
+
content: '\e8d7';
|
2893
|
+
}
|
2894
|
+
.material-icons.tab:before,
|
2895
|
+
.mi.tab:before {
|
2896
|
+
content: '\e8d8';
|
2897
|
+
}
|
2898
|
+
.material-icons.tab-unselected:before,
|
2899
|
+
.mi.tab-unselected:before {
|
2900
|
+
content: '\e8d9';
|
2901
|
+
}
|
2902
|
+
.material-icons.tablet:before,
|
2903
|
+
.mi.tablet:before {
|
2904
|
+
content: '\e32f';
|
2905
|
+
}
|
2906
|
+
.material-icons.tablet-android:before,
|
2907
|
+
.mi.tablet-android:before {
|
2908
|
+
content: '\e330';
|
2909
|
+
}
|
2910
|
+
.material-icons.tablet-mac:before,
|
2911
|
+
.mi.tablet-mac:before {
|
2912
|
+
content: '\e331';
|
2913
|
+
}
|
2914
|
+
.material-icons.tag-faces:before,
|
2915
|
+
.mi.tag-faces:before {
|
2916
|
+
content: '\e420';
|
2917
|
+
}
|
2918
|
+
.material-icons.tap-and-play:before,
|
2919
|
+
.mi.tap-and-play:before {
|
2920
|
+
content: '\e62b';
|
2921
|
+
}
|
2922
|
+
.material-icons.terrain:before,
|
2923
|
+
.mi.terrain:before {
|
2924
|
+
content: '\e564';
|
2925
|
+
}
|
2926
|
+
.material-icons.text-format:before,
|
2927
|
+
.mi.text-format:before {
|
2928
|
+
content: '\e165';
|
2929
|
+
}
|
2930
|
+
.material-icons.textsms:before,
|
2931
|
+
.mi.textsms:before {
|
2932
|
+
content: '\e0d8';
|
2933
|
+
}
|
2934
|
+
.material-icons.texture:before,
|
2935
|
+
.mi.texture:before {
|
2936
|
+
content: '\e421';
|
2937
|
+
}
|
2938
|
+
.material-icons.theaters:before,
|
2939
|
+
.mi.theaters:before {
|
2940
|
+
content: '\e8da';
|
2941
|
+
}
|
2942
|
+
.material-icons.thumb-down:before,
|
2943
|
+
.mi.thumb-down:before {
|
2944
|
+
content: '\e8db';
|
2945
|
+
}
|
2946
|
+
.material-icons.thumb-up:before,
|
2947
|
+
.mi.thumb-up:before {
|
2948
|
+
content: '\e8dc';
|
2949
|
+
}
|
2950
|
+
.material-icons.thumbs-up-down:before,
|
2951
|
+
.mi.thumbs-up-down:before {
|
2952
|
+
content: '\e8dd';
|
2953
|
+
}
|
2954
|
+
.material-icons.time-to-leave:before,
|
2955
|
+
.mi.time-to-leave:before {
|
2956
|
+
content: '\e62c';
|
2957
|
+
}
|
2958
|
+
.material-icons.timelapse:before,
|
2959
|
+
.mi.timelapse:before {
|
2960
|
+
content: '\e422';
|
2961
|
+
}
|
2962
|
+
.material-icons.timer:before,
|
2963
|
+
.mi.timer:before {
|
2964
|
+
content: '\e425';
|
2965
|
+
}
|
2966
|
+
.material-icons.timer-10:before,
|
2967
|
+
.mi.timer-10:before {
|
2968
|
+
content: '\e423';
|
2969
|
+
}
|
2970
|
+
.material-icons.timer-3:before,
|
2971
|
+
.mi.timer-3:before {
|
2972
|
+
content: '\e424';
|
2973
|
+
}
|
2974
|
+
.material-icons.timer-off:before,
|
2975
|
+
.mi.timer-off:before {
|
2976
|
+
content: '\e426';
|
2977
|
+
}
|
2978
|
+
.material-icons.toc:before,
|
2979
|
+
.mi.toc:before {
|
2980
|
+
content: '\e8de';
|
2981
|
+
}
|
2982
|
+
.material-icons.today:before,
|
2983
|
+
.mi.today:before {
|
2984
|
+
content: '\e8df';
|
2985
|
+
}
|
2986
|
+
.material-icons.toll:before,
|
2987
|
+
.mi.toll:before {
|
2988
|
+
content: '\e8e0';
|
2989
|
+
}
|
2990
|
+
.material-icons.tonality:before,
|
2991
|
+
.mi.tonality:before {
|
2992
|
+
content: '\e427';
|
2993
|
+
}
|
2994
|
+
.material-icons.toys:before,
|
2995
|
+
.mi.toys:before {
|
2996
|
+
content: '\e332';
|
2997
|
+
}
|
2998
|
+
.material-icons.track-changes:before,
|
2999
|
+
.mi.track-changes:before {
|
3000
|
+
content: '\e8e1';
|
3001
|
+
}
|
3002
|
+
.material-icons.traffic:before,
|
3003
|
+
.mi.traffic:before {
|
3004
|
+
content: '\e565';
|
3005
|
+
}
|
3006
|
+
.material-icons.transform:before,
|
3007
|
+
.mi.transform:before {
|
3008
|
+
content: '\e428';
|
3009
|
+
}
|
3010
|
+
.material-icons.translate:before,
|
3011
|
+
.mi.translate:before {
|
3012
|
+
content: '\e8e2';
|
3013
|
+
}
|
3014
|
+
.material-icons.trending-down:before,
|
3015
|
+
.mi.trending-down:before {
|
3016
|
+
content: '\e8e3';
|
3017
|
+
}
|
3018
|
+
.material-icons.trending-flat:before,
|
3019
|
+
.mi.trending-flat:before {
|
3020
|
+
content: '\e8e4';
|
3021
|
+
}
|
3022
|
+
.material-icons.trending-up:before,
|
3023
|
+
.mi.trending-up:before {
|
3024
|
+
content: '\e8e5';
|
3025
|
+
}
|
3026
|
+
.material-icons.tune:before,
|
3027
|
+
.mi.tune:before {
|
3028
|
+
content: '\e429';
|
3029
|
+
}
|
3030
|
+
.material-icons.turned-in:before,
|
3031
|
+
.mi.turned-in:before {
|
3032
|
+
content: '\e8e6';
|
3033
|
+
}
|
3034
|
+
.material-icons.turned-in-not:before,
|
3035
|
+
.mi.turned-in-not:before {
|
3036
|
+
content: '\e8e7';
|
3037
|
+
}
|
3038
|
+
.material-icons.tv:before,
|
3039
|
+
.mi.tv:before {
|
3040
|
+
content: '\e333';
|
3041
|
+
}
|
3042
|
+
.material-icons.undo:before,
|
3043
|
+
.mi.undo:before {
|
3044
|
+
content: '\e166';
|
3045
|
+
}
|
3046
|
+
.material-icons.unfold-less:before,
|
3047
|
+
.mi.unfold-less:before {
|
3048
|
+
content: '\e5d6';
|
3049
|
+
}
|
3050
|
+
.material-icons.unfold-more:before,
|
3051
|
+
.mi.unfold-more:before {
|
3052
|
+
content: '\e5d7';
|
3053
|
+
}
|
3054
|
+
.material-icons.usb:before,
|
3055
|
+
.mi.usb:before {
|
3056
|
+
content: '\e1e0';
|
3057
|
+
}
|
3058
|
+
.material-icons.verified-user:before,
|
3059
|
+
.mi.verified-user:before {
|
3060
|
+
content: '\e8e8';
|
3061
|
+
}
|
3062
|
+
.material-icons.vertical-align-bottom:before,
|
3063
|
+
.mi.vertical-align-bottom:before {
|
3064
|
+
content: '\e258';
|
3065
|
+
}
|
3066
|
+
.material-icons.vertical-align-center:before,
|
3067
|
+
.mi.vertical-align-center:before {
|
3068
|
+
content: '\e259';
|
3069
|
+
}
|
3070
|
+
.material-icons.vertical-align-top:before,
|
3071
|
+
.mi.vertical-align-top:before {
|
3072
|
+
content: '\e25a';
|
3073
|
+
}
|
3074
|
+
.material-icons.vibration:before,
|
3075
|
+
.mi.vibration:before {
|
3076
|
+
content: '\e62d';
|
3077
|
+
}
|
3078
|
+
.material-icons.video-library:before,
|
3079
|
+
.mi.video-library:before {
|
3080
|
+
content: '\e04a';
|
3081
|
+
}
|
3082
|
+
.material-icons.videocam:before,
|
3083
|
+
.mi.videocam:before {
|
3084
|
+
content: '\e04b';
|
3085
|
+
}
|
3086
|
+
.material-icons.videocam-off:before,
|
3087
|
+
.mi.videocam-off:before {
|
3088
|
+
content: '\e04c';
|
3089
|
+
}
|
3090
|
+
.material-icons.view-agenda:before,
|
3091
|
+
.mi.view-agenda:before {
|
3092
|
+
content: '\e8e9';
|
3093
|
+
}
|
3094
|
+
.material-icons.view-array:before,
|
3095
|
+
.mi.view-array:before {
|
3096
|
+
content: '\e8ea';
|
3097
|
+
}
|
3098
|
+
.material-icons.view-carousel:before,
|
3099
|
+
.mi.view-carousel:before {
|
3100
|
+
content: '\e8eb';
|
3101
|
+
}
|
3102
|
+
.material-icons.view-column:before,
|
3103
|
+
.mi.view-column:before {
|
3104
|
+
content: '\e8ec';
|
3105
|
+
}
|
3106
|
+
.material-icons.view-comfy:before,
|
3107
|
+
.mi.view-comfy:before {
|
3108
|
+
content: '\e42a';
|
3109
|
+
}
|
3110
|
+
.material-icons.view-compact:before,
|
3111
|
+
.mi.view-compact:before {
|
3112
|
+
content: '\e42b';
|
3113
|
+
}
|
3114
|
+
.material-icons.view-day:before,
|
3115
|
+
.mi.view-day:before {
|
3116
|
+
content: '\e8ed';
|
3117
|
+
}
|
3118
|
+
.material-icons.view-headline:before,
|
3119
|
+
.mi.view-headline:before {
|
3120
|
+
content: '\e8ee';
|
3121
|
+
}
|
3122
|
+
.material-icons.view-list:before,
|
3123
|
+
.mi.view-list:before {
|
3124
|
+
content: '\e8ef';
|
3125
|
+
}
|
3126
|
+
.material-icons.view-module:before,
|
3127
|
+
.mi.view-module:before {
|
3128
|
+
content: '\e8f0';
|
3129
|
+
}
|
3130
|
+
.material-icons.view-quilt:before,
|
3131
|
+
.mi.view-quilt:before {
|
3132
|
+
content: '\e8f1';
|
3133
|
+
}
|
3134
|
+
.material-icons.view-stream:before,
|
3135
|
+
.mi.view-stream:before {
|
3136
|
+
content: '\e8f2';
|
3137
|
+
}
|
3138
|
+
.material-icons.view-week:before,
|
3139
|
+
.mi.view-week:before {
|
3140
|
+
content: '\e8f3';
|
3141
|
+
}
|
3142
|
+
.material-icons.vignette:before,
|
3143
|
+
.mi.vignette:before {
|
3144
|
+
content: '\e435';
|
3145
|
+
}
|
3146
|
+
.material-icons.visibility:before,
|
3147
|
+
.mi.visibility:before {
|
3148
|
+
content: '\e8f4';
|
3149
|
+
}
|
3150
|
+
.material-icons.visibility-off:before,
|
3151
|
+
.mi.visibility-off:before {
|
3152
|
+
content: '\e8f5';
|
3153
|
+
}
|
3154
|
+
.material-icons.voice-chat:before,
|
3155
|
+
.mi.voice-chat:before {
|
3156
|
+
content: '\e62e';
|
3157
|
+
}
|
3158
|
+
.material-icons.voicemail:before,
|
3159
|
+
.mi.voicemail:before {
|
3160
|
+
content: '\e0d9';
|
3161
|
+
}
|
3162
|
+
.material-icons.volume-down:before,
|
3163
|
+
.mi.volume-down:before {
|
3164
|
+
content: '\e04d';
|
3165
|
+
}
|
3166
|
+
.material-icons.volume-mute:before,
|
3167
|
+
.mi.volume-mute:before {
|
3168
|
+
content: '\e04e';
|
3169
|
+
}
|
3170
|
+
.material-icons.volume-off:before,
|
3171
|
+
.mi.volume-off:before {
|
3172
|
+
content: '\e04f';
|
3173
|
+
}
|
3174
|
+
.material-icons.volume-up:before,
|
3175
|
+
.mi.volume-up:before {
|
3176
|
+
content: '\e050';
|
3177
|
+
}
|
3178
|
+
.material-icons.vpn-key:before,
|
3179
|
+
.mi.vpn-key:before {
|
3180
|
+
content: '\e0da';
|
3181
|
+
}
|
3182
|
+
.material-icons.vpn-lock:before,
|
3183
|
+
.mi.vpn-lock:before {
|
3184
|
+
content: '\e62f';
|
3185
|
+
}
|
3186
|
+
.material-icons.wallpaper:before,
|
3187
|
+
.mi.wallpaper:before {
|
3188
|
+
content: '\e1bc';
|
3189
|
+
}
|
3190
|
+
.material-icons.warning:before,
|
3191
|
+
.mi.warning:before {
|
3192
|
+
content: '\e002';
|
3193
|
+
}
|
3194
|
+
.material-icons.watch:before,
|
3195
|
+
.mi.watch:before {
|
3196
|
+
content: '\e334';
|
3197
|
+
}
|
3198
|
+
.material-icons.wb-auto:before,
|
3199
|
+
.mi.wb-auto:before {
|
3200
|
+
content: '\e42c';
|
3201
|
+
}
|
3202
|
+
.material-icons.wb-cloudy:before,
|
3203
|
+
.mi.wb-cloudy:before {
|
3204
|
+
content: '\e42d';
|
3205
|
+
}
|
3206
|
+
.material-icons.wb-incandescent:before,
|
3207
|
+
.mi.wb-incandescent:before {
|
3208
|
+
content: '\e42e';
|
3209
|
+
}
|
3210
|
+
.material-icons.wb-iridescent:before,
|
3211
|
+
.mi.wb-iridescent:before {
|
3212
|
+
content: '\e436';
|
3213
|
+
}
|
3214
|
+
.material-icons.wb-sunny:before,
|
3215
|
+
.mi.wb-sunny:before {
|
3216
|
+
content: '\e430';
|
3217
|
+
}
|
3218
|
+
.material-icons.wc:before,
|
3219
|
+
.mi.wc:before {
|
3220
|
+
content: '\e63d';
|
3221
|
+
}
|
3222
|
+
.material-icons.web:before,
|
3223
|
+
.mi.web:before {
|
3224
|
+
content: '\e051';
|
3225
|
+
}
|
3226
|
+
.material-icons.whatshot:before,
|
3227
|
+
.mi.whatshot:before {
|
3228
|
+
content: '\e80e';
|
3229
|
+
}
|
3230
|
+
.material-icons.widgets:before,
|
3231
|
+
.mi.widgets:before {
|
3232
|
+
content: '\e1bd';
|
3233
|
+
}
|
3234
|
+
.material-icons.wifi:before,
|
3235
|
+
.mi.wifi:before {
|
3236
|
+
content: '\e63e';
|
3237
|
+
}
|
3238
|
+
.material-icons.wifi-lock:before,
|
3239
|
+
.mi.wifi-lock:before {
|
3240
|
+
content: '\e1e1';
|
3241
|
+
}
|
3242
|
+
.material-icons.wifi-tethering:before,
|
3243
|
+
.mi.wifi-tethering:before {
|
3244
|
+
content: '\e1e2';
|
3245
|
+
}
|
3246
|
+
.material-icons.work:before,
|
3247
|
+
.mi.work:before {
|
3248
|
+
content: '\e8f9';
|
3249
|
+
}
|
3250
|
+
.material-icons.wrap-text:before,
|
3251
|
+
.mi.wrap-text:before {
|
3252
|
+
content: '\e25b';
|
3253
|
+
}
|
3254
|
+
.material-icons.youtube-searched-for:before,
|
3255
|
+
.mi.youtube-searched-for:before {
|
3256
|
+
content: '\e8fa';
|
3257
|
+
}
|
3258
|
+
.material-icons.zoom-in:before,
|
3259
|
+
.mi.zoom-in:before {
|
3260
|
+
content: '\e8ff';
|
3261
|
+
}
|
3262
|
+
.material-icons.zoom-out:before,
|
3263
|
+
.mi.zoom-out:before {
|
3264
|
+
content: '\e900';
|
3265
|
+
}
|