materialize-sass 0.95.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +50 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/material-design-icons/LICENSE.txt +428 -0
  8. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  9. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +751 -0
  10. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  11. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  12. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  13. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  14. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  15. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  16. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  17. data/app/assets/javascripts/materialize-sprokets.js +21 -0
  18. data/app/assets/javascripts/materialize.js +5327 -0
  19. data/app/assets/javascripts/materialize/cards.js +19 -0
  20. data/app/assets/javascripts/materialize/collapsible.js +87 -0
  21. data/app/assets/javascripts/materialize/date_picker/picker.date.js +1427 -0
  22. data/app/assets/javascripts/materialize/date_picker/picker.js +1123 -0
  23. data/app/assets/javascripts/materialize/dropdown.js +168 -0
  24. data/app/assets/javascripts/materialize/forms.js +245 -0
  25. data/app/assets/javascripts/materialize/hammer.min.js +1 -0
  26. data/app/assets/javascripts/materialize/init.js +152 -0
  27. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +205 -0
  28. data/app/assets/javascripts/materialize/jquery.hammer.js +33 -0
  29. data/app/assets/javascripts/materialize/jquery.timeago.min.js +1 -0
  30. data/app/assets/javascripts/materialize/leanModal.js +96 -0
  31. data/app/assets/javascripts/materialize/materialbox.js +237 -0
  32. data/app/assets/javascripts/materialize/parallax.js +50 -0
  33. data/app/assets/javascripts/materialize/prism.js +8 -0
  34. data/app/assets/javascripts/materialize/pushpin.js +87 -0
  35. data/app/assets/javascripts/materialize/scrollspy.js +287 -0
  36. data/app/assets/javascripts/materialize/sideNav.js +278 -0
  37. data/app/assets/javascripts/materialize/slider.js +257 -0
  38. data/app/assets/javascripts/materialize/tabs.js +130 -0
  39. data/app/assets/javascripts/materialize/toasts.js +100 -0
  40. data/app/assets/javascripts/materialize/tooltip.js +167 -0
  41. data/app/assets/javascripts/materialize/velocity.min.js +4 -0
  42. data/app/assets/javascripts/materialize/waves.js +335 -0
  43. data/app/assets/stylesheets/components/_buttons.scss +111 -0
  44. data/app/assets/stylesheets/components/_cards.scss +121 -0
  45. data/app/assets/stylesheets/components/_collapsible.scss +78 -0
  46. data/app/assets/stylesheets/components/_color.scss +411 -0
  47. data/app/assets/stylesheets/components/_dropdown.scss +31 -0
  48. data/app/assets/stylesheets/components/_form.scss +641 -0
  49. data/app/assets/stylesheets/components/_global.scss +582 -0
  50. data/app/assets/stylesheets/components/_grid.scss +119 -0
  51. data/app/assets/stylesheets/components/_icons-material-design.scss +2247 -0
  52. data/app/assets/stylesheets/components/_materialbox.scss +42 -0
  53. data/app/assets/stylesheets/components/_mixins.scss +5 -0
  54. data/app/assets/stylesheets/components/_modal.scss +50 -0
  55. data/app/assets/stylesheets/components/_navbar.scss +129 -0
  56. data/app/assets/stylesheets/components/_normalize.scss +427 -0
  57. data/app/assets/stylesheets/components/_prefixer.scss +417 -0
  58. data/app/assets/stylesheets/components/_preloader.scss +320 -0
  59. data/app/assets/stylesheets/components/_roboto.scss +28 -0
  60. data/app/assets/stylesheets/components/_sideNav.scss +143 -0
  61. data/app/assets/stylesheets/components/_slider.scss +87 -0
  62. data/app/assets/stylesheets/components/_table_of_contents.scss +33 -0
  63. data/app/assets/stylesheets/components/_tabs.scss +43 -0
  64. data/app/assets/stylesheets/components/_toast.scss +64 -0
  65. data/app/assets/stylesheets/components/_tooltip.scss +34 -0
  66. data/app/assets/stylesheets/components/_typography.scss +55 -0
  67. data/app/assets/stylesheets/components/_variables.scss +128 -0
  68. data/app/assets/stylesheets/components/_waves.scss +167 -0
  69. data/app/assets/stylesheets/components/date_picker/_default.date.scss +431 -0
  70. data/app/assets/stylesheets/components/date_picker/_default.scss +201 -0
  71. data/app/assets/stylesheets/components/date_picker/_default.time.scss +125 -0
  72. data/app/assets/stylesheets/materialize.scss +38 -0
  73. data/lib/materialize-sass.rb +8 -0
  74. data/lib/materialize-sass/version.rb +6 -0
  75. data/materialize-sass.gemspec +23 -0
  76. metadata +146 -0
@@ -0,0 +1,119 @@
1
+ .container {
2
+ padding: 0 $gutter-width;
3
+ margin: 0 auto;
4
+ max-width: 1280px;
5
+ width: 90%;
6
+ }
7
+ @media #{$medium-and-up} {
8
+ .container {
9
+ width: 85%;
10
+ }
11
+ }
12
+ @media #{$large-and-up} {
13
+ .container {
14
+ width: 70%;
15
+ }
16
+ }
17
+ .container .row {
18
+ margin-left: (-1 * $gutter-width / 2);
19
+ margin-right: (-1 * $gutter-width / 2);
20
+ }
21
+
22
+ .section {
23
+ padding-top: 1rem;
24
+ padding-bottom: 1rem;
25
+
26
+ &.no-pad {
27
+ padding: 0;
28
+ }
29
+ &.no-pad-bot {
30
+ padding-bottom: 0;
31
+ }
32
+ &.no-pad-top {
33
+ padding-top: 0;
34
+ }
35
+ }
36
+
37
+
38
+ .row {
39
+ margin-left: auto;
40
+ margin-right: auto;
41
+ margin-bottom: 20px;
42
+
43
+ // Clear floating children
44
+ &:after {
45
+ content: "";
46
+ display: table;
47
+ clear: both;
48
+ }
49
+
50
+ .col {
51
+ @include transition(all .3s);
52
+ float: left;
53
+ @include box-sizing(border-box);
54
+ padding: 0 $gutter-width / 2;
55
+
56
+ $i: 1;
57
+ @while $i <= $num-cols {
58
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
59
+ &.s#{$i} {
60
+ width: $perc;
61
+ margin-left: 0;
62
+ }
63
+ $i: $i + 1;
64
+ }
65
+ $i: 1;
66
+ @while $i <= $num-cols {
67
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
68
+ &.offset-s#{$i} {
69
+ margin-left: $perc;
70
+ }
71
+ $i: $i + 1;
72
+ }
73
+
74
+ @media #{$medium-and-up} {
75
+
76
+ $i: 1;
77
+ @while $i <= $num-cols {
78
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
79
+ &.m#{$i} {
80
+ width: $perc;
81
+ margin-left: 0;
82
+ }
83
+ $i: $i + 1;
84
+ }
85
+ $i: 1;
86
+ @while $i <= $num-cols {
87
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
88
+ &.offset-m#{$i} {
89
+ margin-left: $perc;
90
+ }
91
+ $i: $i + 1;
92
+ }
93
+
94
+ }
95
+
96
+ @media #{$large-and-up} {
97
+
98
+ $i: 1;
99
+ @while $i <= $num-cols {
100
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
101
+ &.l#{$i} {
102
+ width: $perc;
103
+ margin-left: 0;
104
+ }
105
+ $i: $i + 1;
106
+ }
107
+ $i: 1;
108
+ @while $i <= $num-cols {
109
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
110
+ &.offset-l#{$i} {
111
+ margin-left: $perc;
112
+ }
113
+ $i: $i + 1;
114
+ }
115
+
116
+ }
117
+
118
+ }
119
+ }
@@ -0,0 +1,2247 @@
1
+ @font-face {
2
+ font-family: "Material-Design-Icons";
3
+ src:font-url("material-design-icons/Material-Design-Icons.eot?-g7cqhn");
4
+ src:font-url("material-design-icons/Material-Design-Icons.eot?#iefix-g7cqhn") format("embedded-opentype"),
5
+ font-url("material-design-icons/Material-Design-Icons.woff?-g7cqhn") format("woff"),
6
+ font-url("material-design-icons/Material-Design-Icons.ttf?-g7cqhn") format("truetype"),
7
+ font-url("material-design-icons/Material-Design-Icons.svg?-g7cqhn#Material-Design-Icons") format("svg");
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ [class^="mdi-"], [class*=" mdi-"] {
13
+ font-family: "Material-Design-Icons";
14
+ speak: none;
15
+ font-style: normal;
16
+ font-weight: normal;
17
+ font-variant: normal;
18
+ text-transform: none;
19
+
20
+ /* Better Font Rendering =========== */
21
+ -webkit-font-smoothing: antialiased;
22
+ -moz-osx-font-smoothing: grayscale;
23
+ }
24
+
25
+ .mdi-action-3d-rotation:before {
26
+ content: "\e600";
27
+ }
28
+ .mdi-action-accessibility:before {
29
+ content: "\e601";
30
+ }
31
+ .mdi-action-account-balance:before {
32
+ content: "\e602";
33
+ }
34
+ .mdi-action-account-balance-wallet:before {
35
+ content: "\e603";
36
+ }
37
+ .mdi-action-account-box:before {
38
+ content: "\e604";
39
+ }
40
+ .mdi-action-account-child:before {
41
+ content: "\e605";
42
+ }
43
+ .mdi-action-account-circle:before {
44
+ content: "\e606";
45
+ }
46
+ .mdi-action-add-shopping-cart:before {
47
+ content: "\e607";
48
+ }
49
+ .mdi-action-alarm:before {
50
+ content: "\e608";
51
+ }
52
+ .mdi-action-alarm-add:before {
53
+ content: "\e609";
54
+ }
55
+ .mdi-action-alarm-off:before {
56
+ content: "\e60a";
57
+ }
58
+ .mdi-action-alarm-on:before {
59
+ content: "\e60b";
60
+ }
61
+ .mdi-action-android:before {
62
+ content: "\e60c";
63
+ }
64
+ .mdi-action-announcement:before {
65
+ content: "\e60d";
66
+ }
67
+ .mdi-action-aspect-ratio:before {
68
+ content: "\e60e";
69
+ }
70
+ .mdi-action-assessment:before {
71
+ content: "\e60f";
72
+ }
73
+ .mdi-action-assignment:before {
74
+ content: "\e610";
75
+ }
76
+ .mdi-action-assignment-ind:before {
77
+ content: "\e611";
78
+ }
79
+ .mdi-action-assignment-late:before {
80
+ content: "\e612";
81
+ }
82
+ .mdi-action-assignment-return:before {
83
+ content: "\e613";
84
+ }
85
+ .mdi-action-assignment-returned:before {
86
+ content: "\e614";
87
+ }
88
+ .mdi-action-assignment-turned-in:before {
89
+ content: "\e615";
90
+ }
91
+ .mdi-action-autorenew:before {
92
+ content: "\e616";
93
+ }
94
+ .mdi-action-backup:before {
95
+ content: "\e617";
96
+ }
97
+ .mdi-action-book:before {
98
+ content: "\e618";
99
+ }
100
+ .mdi-action-bookmark:before {
101
+ content: "\e619";
102
+ }
103
+ .mdi-action-bookmark-outline:before {
104
+ content: "\e61a";
105
+ }
106
+ .mdi-action-bug-report:before {
107
+ content: "\e61b";
108
+ }
109
+ .mdi-action-cached:before {
110
+ content: "\e61c";
111
+ }
112
+ .mdi-action-class:before {
113
+ content: "\e61d";
114
+ }
115
+ .mdi-action-credit-card:before {
116
+ content: "\e61e";
117
+ }
118
+ .mdi-action-dashboard:before {
119
+ content: "\e61f";
120
+ }
121
+ .mdi-action-delete:before {
122
+ content: "\e620";
123
+ }
124
+ .mdi-action-description:before {
125
+ content: "\e621";
126
+ }
127
+ .mdi-action-dns:before {
128
+ content: "\e622";
129
+ }
130
+ .mdi-action-done:before {
131
+ content: "\e623";
132
+ }
133
+ .mdi-action-done-all:before {
134
+ content: "\e624";
135
+ }
136
+ .mdi-action-event:before {
137
+ content: "\e625";
138
+ }
139
+ .mdi-action-exit-to-app:before {
140
+ content: "\e626";
141
+ }
142
+ .mdi-action-explore:before {
143
+ content: "\e627";
144
+ }
145
+ .mdi-action-extension:before {
146
+ content: "\e628";
147
+ }
148
+ .mdi-action-face-unlock:before {
149
+ content: "\e629";
150
+ }
151
+ .mdi-action-favorite:before {
152
+ content: "\e62a";
153
+ }
154
+ .mdi-action-favorite-outline:before {
155
+ content: "\e62b";
156
+ }
157
+ .mdi-action-find-in-page:before {
158
+ content: "\e62c";
159
+ }
160
+ .mdi-action-find-replace:before {
161
+ content: "\e62d";
162
+ }
163
+ .mdi-action-flip-to-back:before {
164
+ content: "\e62e";
165
+ }
166
+ .mdi-action-flip-to-front:before {
167
+ content: "\e62f";
168
+ }
169
+ .mdi-action-get-app:before {
170
+ content: "\e630";
171
+ }
172
+ .mdi-action-grade:before {
173
+ content: "\e631";
174
+ }
175
+ .mdi-action-group-work:before {
176
+ content: "\e632";
177
+ }
178
+ .mdi-action-help:before {
179
+ content: "\e633";
180
+ }
181
+ .mdi-action-highlight-remove:before {
182
+ content: "\e634";
183
+ }
184
+ .mdi-action-history:before {
185
+ content: "\e635";
186
+ }
187
+ .mdi-action-home:before {
188
+ content: "\e636";
189
+ }
190
+ .mdi-action-https:before {
191
+ content: "\e637";
192
+ }
193
+ .mdi-action-info:before {
194
+ content: "\e638";
195
+ }
196
+ .mdi-action-info-outline:before {
197
+ content: "\e639";
198
+ }
199
+ .mdi-action-input:before {
200
+ content: "\e63a";
201
+ }
202
+ .mdi-action-invert-colors:before {
203
+ content: "\e63b";
204
+ }
205
+ .mdi-action-label:before {
206
+ content: "\e63c";
207
+ }
208
+ .mdi-action-label-outline:before {
209
+ content: "\e63d";
210
+ }
211
+ .mdi-action-language:before {
212
+ content: "\e63e";
213
+ }
214
+ .mdi-action-launch:before {
215
+ content: "\e63f";
216
+ }
217
+ .mdi-action-list:before {
218
+ content: "\e640";
219
+ }
220
+ .mdi-action-lock:before {
221
+ content: "\e641";
222
+ }
223
+ .mdi-action-lock-open:before {
224
+ content: "\e642";
225
+ }
226
+ .mdi-action-lock-outline:before {
227
+ content: "\e643";
228
+ }
229
+ .mdi-action-loyalty:before {
230
+ content: "\e644";
231
+ }
232
+ .mdi-action-markunread-mailbox:before {
233
+ content: "\e645";
234
+ }
235
+ .mdi-action-note-add:before {
236
+ content: "\e646";
237
+ }
238
+ .mdi-action-open-in-browser:before {
239
+ content: "\e647";
240
+ }
241
+ .mdi-action-open-in-new:before {
242
+ content: "\e648";
243
+ }
244
+ .mdi-action-open-with:before {
245
+ content: "\e649";
246
+ }
247
+ .mdi-action-pageview:before {
248
+ content: "\e64a";
249
+ }
250
+ .mdi-action-payment:before {
251
+ content: "\e64b";
252
+ }
253
+ .mdi-action-perm-camera-mic:before {
254
+ content: "\e64c";
255
+ }
256
+ .mdi-action-perm-contact-cal:before {
257
+ content: "\e64d";
258
+ }
259
+ .mdi-action-perm-data-setting:before {
260
+ content: "\e64e";
261
+ }
262
+ .mdi-action-perm-device-info:before {
263
+ content: "\e64f";
264
+ }
265
+ .mdi-action-perm-identity:before {
266
+ content: "\e650";
267
+ }
268
+ .mdi-action-perm-media:before {
269
+ content: "\e651";
270
+ }
271
+ .mdi-action-perm-phone-msg:before {
272
+ content: "\e652";
273
+ }
274
+ .mdi-action-perm-scan-wifi:before {
275
+ content: "\e653";
276
+ }
277
+ .mdi-action-picture-in-picture:before {
278
+ content: "\e654";
279
+ }
280
+ .mdi-action-polymer:before {
281
+ content: "\e655";
282
+ }
283
+ .mdi-action-print:before {
284
+ content: "\e656";
285
+ }
286
+ .mdi-action-query-builder:before {
287
+ content: "\e657";
288
+ }
289
+ .mdi-action-question-answer:before {
290
+ content: "\e658";
291
+ }
292
+ .mdi-action-receipt:before {
293
+ content: "\e659";
294
+ }
295
+ .mdi-action-redeem:before {
296
+ content: "\e65a";
297
+ }
298
+ .mdi-action-report-problem:before {
299
+ content: "\e65b";
300
+ }
301
+ .mdi-action-restore:before {
302
+ content: "\e65c";
303
+ }
304
+ .mdi-action-room:before {
305
+ content: "\e65d";
306
+ }
307
+ .mdi-action-schedule:before {
308
+ content: "\e65e";
309
+ }
310
+ .mdi-action-search:before {
311
+ content: "\e65f";
312
+ }
313
+ .mdi-action-settings:before {
314
+ content: "\e660";
315
+ }
316
+ .mdi-action-settings-applications:before {
317
+ content: "\e661";
318
+ }
319
+ .mdi-action-settings-backup-restore:before {
320
+ content: "\e662";
321
+ }
322
+ .mdi-action-settings-bluetooth:before {
323
+ content: "\e663";
324
+ }
325
+ .mdi-action-settings-cell:before {
326
+ content: "\e664";
327
+ }
328
+ .mdi-action-settings-display:before {
329
+ content: "\e665";
330
+ }
331
+ .mdi-action-settings-ethernet:before {
332
+ content: "\e666";
333
+ }
334
+ .mdi-action-settings-input-antenna:before {
335
+ content: "\e667";
336
+ }
337
+ .mdi-action-settings-input-component:before {
338
+ content: "\e668";
339
+ }
340
+ .mdi-action-settings-input-composite:before {
341
+ content: "\e669";
342
+ }
343
+ .mdi-action-settings-input-hdmi:before {
344
+ content: "\e66a";
345
+ }
346
+ .mdi-action-settings-input-svideo:before {
347
+ content: "\e66b";
348
+ }
349
+ .mdi-action-settings-overscan:before {
350
+ content: "\e66c";
351
+ }
352
+ .mdi-action-settings-phone:before {
353
+ content: "\e66d";
354
+ }
355
+ .mdi-action-settings-power:before {
356
+ content: "\e66e";
357
+ }
358
+ .mdi-action-settings-remote:before {
359
+ content: "\e66f";
360
+ }
361
+ .mdi-action-settings-voice:before {
362
+ content: "\e670";
363
+ }
364
+ .mdi-action-shop:before {
365
+ content: "\e671";
366
+ }
367
+ .mdi-action-shopping-basket:before {
368
+ content: "\e672";
369
+ }
370
+ .mdi-action-shopping-cart:before {
371
+ content: "\e673";
372
+ }
373
+ .mdi-action-shop-two:before {
374
+ content: "\e674";
375
+ }
376
+ .mdi-action-speaker-notes:before {
377
+ content: "\e675";
378
+ }
379
+ .mdi-action-spellcheck:before {
380
+ content: "\e676";
381
+ }
382
+ .mdi-action-star-rate:before {
383
+ content: "\e677";
384
+ }
385
+ .mdi-action-stars:before {
386
+ content: "\e678";
387
+ }
388
+ .mdi-action-store:before {
389
+ content: "\e679";
390
+ }
391
+ .mdi-action-subject:before {
392
+ content: "\e67a";
393
+ }
394
+ .mdi-action-swap-horiz:before {
395
+ content: "\e67b";
396
+ }
397
+ .mdi-action-swap-vert:before {
398
+ content: "\e67c";
399
+ }
400
+ .mdi-action-swap-vert-circle:before {
401
+ content: "\e67d";
402
+ }
403
+ .mdi-action-system-update-tv:before {
404
+ content: "\e67e";
405
+ }
406
+ .mdi-action-tab:before {
407
+ content: "\e67f";
408
+ }
409
+ .mdi-action-tab-unselected:before {
410
+ content: "\e680";
411
+ }
412
+ .mdi-action-theaters:before {
413
+ content: "\e681";
414
+ }
415
+ .mdi-action-thumb-down:before {
416
+ content: "\e682";
417
+ }
418
+ .mdi-action-thumbs-up-down:before {
419
+ content: "\e683";
420
+ }
421
+ .mdi-action-thumb-up:before {
422
+ content: "\e684";
423
+ }
424
+ .mdi-action-toc:before {
425
+ content: "\e685";
426
+ }
427
+ .mdi-action-today:before {
428
+ content: "\e686";
429
+ }
430
+ .mdi-action-track-changes:before {
431
+ content: "\e687";
432
+ }
433
+ .mdi-action-translate:before {
434
+ content: "\e688";
435
+ }
436
+ .mdi-action-trending-down:before {
437
+ content: "\e689";
438
+ }
439
+ .mdi-action-trending-neutral:before {
440
+ content: "\e68a";
441
+ }
442
+ .mdi-action-trending-up:before {
443
+ content: "\e68b";
444
+ }
445
+ .mdi-action-turned-in:before {
446
+ content: "\e68c";
447
+ }
448
+ .mdi-action-turned-in-not:before {
449
+ content: "\e68d";
450
+ }
451
+ .mdi-action-verified-user:before {
452
+ content: "\e68e";
453
+ }
454
+ .mdi-action-view-agenda:before {
455
+ content: "\e68f";
456
+ }
457
+ .mdi-action-view-array:before {
458
+ content: "\e690";
459
+ }
460
+ .mdi-action-view-carousel:before {
461
+ content: "\e691";
462
+ }
463
+ .mdi-action-view-column:before {
464
+ content: "\e692";
465
+ }
466
+ .mdi-action-view-day:before {
467
+ content: "\e693";
468
+ }
469
+ .mdi-action-view-headline:before {
470
+ content: "\e694";
471
+ }
472
+ .mdi-action-view-list:before {
473
+ content: "\e695";
474
+ }
475
+ .mdi-action-view-module:before {
476
+ content: "\e696";
477
+ }
478
+ .mdi-action-view-quilt:before {
479
+ content: "\e697";
480
+ }
481
+ .mdi-action-view-stream:before {
482
+ content: "\e698";
483
+ }
484
+ .mdi-action-view-week:before {
485
+ content: "\e699";
486
+ }
487
+ .mdi-action-visibility:before {
488
+ content: "\e69a";
489
+ }
490
+ .mdi-action-visibility-off:before {
491
+ content: "\e69b";
492
+ }
493
+ .mdi-action-wallet-giftcard:before {
494
+ content: "\e69c";
495
+ }
496
+ .mdi-action-wallet-membership:before {
497
+ content: "\e69d";
498
+ }
499
+ .mdi-action-wallet-travel:before {
500
+ content: "\e69e";
501
+ }
502
+ .mdi-action-work:before {
503
+ content: "\e69f";
504
+ }
505
+ .mdi-alert-error:before {
506
+ content: "\e6a0";
507
+ }
508
+ .mdi-alert-warning:before {
509
+ content: "\e6a1";
510
+ }
511
+ .mdi-av-album:before {
512
+ content: "\e6a2";
513
+ }
514
+ .mdi-av-timer:before {
515
+ content: "\e6a3";
516
+ }
517
+ .mdi-av-closed-caption:before {
518
+ content: "\e6a4";
519
+ }
520
+ .mdi-av-equalizer:before {
521
+ content: "\e6a5";
522
+ }
523
+ .mdi-av-explicit:before {
524
+ content: "\e6a6";
525
+ }
526
+ .mdi-av-fast-forward:before {
527
+ content: "\e6a7";
528
+ }
529
+ .mdi-av-fast-rewind:before {
530
+ content: "\e6a8";
531
+ }
532
+ .mdi-av-games:before {
533
+ content: "\e6a9";
534
+ }
535
+ .mdi-av-hearing:before {
536
+ content: "\e6aa";
537
+ }
538
+ .mdi-av-high-quality:before {
539
+ content: "\e6ab";
540
+ }
541
+ .mdi-av-loop:before {
542
+ content: "\e6ac";
543
+ }
544
+ .mdi-av-mic:before {
545
+ content: "\e6ad";
546
+ }
547
+ .mdi-av-mic-none:before {
548
+ content: "\e6ae";
549
+ }
550
+ .mdi-av-mic-off:before {
551
+ content: "\e6af";
552
+ }
553
+ .mdi-av-movie:before {
554
+ content: "\e6b0";
555
+ }
556
+ .mdi-av-my-library-add:before {
557
+ content: "\e6b1";
558
+ }
559
+ .mdi-av-my-library-books:before {
560
+ content: "\e6b2";
561
+ }
562
+ .mdi-av-my-library-music:before {
563
+ content: "\e6b3";
564
+ }
565
+ .mdi-av-new-releases:before {
566
+ content: "\e6b4";
567
+ }
568
+ .mdi-av-not-interested:before {
569
+ content: "\e6b5";
570
+ }
571
+ .mdi-av-pause:before {
572
+ content: "\e6b6";
573
+ }
574
+ .mdi-av-pause-circle-fill:before {
575
+ content: "\e6b7";
576
+ }
577
+ .mdi-av-pause-circle-outline:before {
578
+ content: "\e6b8";
579
+ }
580
+ .mdi-av-play-arrow:before {
581
+ content: "\e6b9";
582
+ }
583
+ .mdi-av-play-circle-fill:before {
584
+ content: "\e6ba";
585
+ }
586
+ .mdi-av-play-circle-outline:before {
587
+ content: "\e6bb";
588
+ }
589
+ .mdi-av-playlist-add:before {
590
+ content: "\e6bc";
591
+ }
592
+ .mdi-av-play-shopping-bag:before {
593
+ content: "\e6bd";
594
+ }
595
+ .mdi-av-queue:before {
596
+ content: "\e6be";
597
+ }
598
+ .mdi-av-queue-music:before {
599
+ content: "\e6bf";
600
+ }
601
+ .mdi-av-radio:before {
602
+ content: "\e6c0";
603
+ }
604
+ .mdi-av-recent-actors:before {
605
+ content: "\e6c1";
606
+ }
607
+ .mdi-av-repeat:before {
608
+ content: "\e6c2";
609
+ }
610
+ .mdi-av-repeat-one:before {
611
+ content: "\e6c3";
612
+ }
613
+ .mdi-av-replay:before {
614
+ content: "\e6c4";
615
+ }
616
+ .mdi-av-shuffle:before {
617
+ content: "\e6c5";
618
+ }
619
+ .mdi-av-skip-next:before {
620
+ content: "\e6c6";
621
+ }
622
+ .mdi-av-skip-previous:before {
623
+ content: "\e6c7";
624
+ }
625
+ .mdi-av-snooze:before {
626
+ content: "\e6c8";
627
+ }
628
+ .mdi-av-stop:before {
629
+ content: "\e6c9";
630
+ }
631
+ .mdi-av-subtitles:before {
632
+ content: "\e6ca";
633
+ }
634
+ .mdi-av-surround-sound:before {
635
+ content: "\e6cb";
636
+ }
637
+ .mdi-av-videocam:before {
638
+ content: "\e6cc";
639
+ }
640
+ .mdi-av-videocam-off:before {
641
+ content: "\e6cd";
642
+ }
643
+ .mdi-av-video-collection:before {
644
+ content: "\e6ce";
645
+ }
646
+ .mdi-av-volume-down:before {
647
+ content: "\e6cf";
648
+ }
649
+ .mdi-av-volume-mute:before {
650
+ content: "\e6d0";
651
+ }
652
+ .mdi-av-volume-off:before {
653
+ content: "\e6d1";
654
+ }
655
+ .mdi-av-volume-up:before {
656
+ content: "\e6d2";
657
+ }
658
+ .mdi-av-web:before {
659
+ content: "\e6d3";
660
+ }
661
+ .mdi-communication-business:before {
662
+ content: "\e6d4";
663
+ }
664
+ .mdi-communication-call:before {
665
+ content: "\e6d5";
666
+ }
667
+ .mdi-communication-call-end:before {
668
+ content: "\e6d6";
669
+ }
670
+ .mdi-communication-call-made:before {
671
+ content: "\e6d7";
672
+ }
673
+ .mdi-communication-call-merge:before {
674
+ content: "\e6d8";
675
+ }
676
+ .mdi-communication-call-missed:before {
677
+ content: "\e6d9";
678
+ }
679
+ .mdi-communication-call-received:before {
680
+ content: "\e6da";
681
+ }
682
+ .mdi-communication-call-split:before {
683
+ content: "\e6db";
684
+ }
685
+ .mdi-communication-chat:before {
686
+ content: "\e6dc";
687
+ }
688
+ .mdi-communication-clear-all:before {
689
+ content: "\e6dd";
690
+ }
691
+ .mdi-communication-comment:before {
692
+ content: "\e6de";
693
+ }
694
+ .mdi-communication-contacts:before {
695
+ content: "\e6df";
696
+ }
697
+ .mdi-communication-dialer-sip:before {
698
+ content: "\e6e0";
699
+ }
700
+ .mdi-communication-dialpad:before {
701
+ content: "\e6e1";
702
+ }
703
+ .mdi-communication-dnd-on:before {
704
+ content: "\e6e2";
705
+ }
706
+ .mdi-communication-email:before {
707
+ content: "\e6e3";
708
+ }
709
+ .mdi-communication-forum:before {
710
+ content: "\e6e4";
711
+ }
712
+ .mdi-communication-import-export:before {
713
+ content: "\e6e5";
714
+ }
715
+ .mdi-communication-invert-colors-off:before {
716
+ content: "\e6e6";
717
+ }
718
+ .mdi-communication-invert-colors-on:before {
719
+ content: "\e6e7";
720
+ }
721
+ .mdi-communication-live-help:before {
722
+ content: "\e6e8";
723
+ }
724
+ .mdi-communication-location-off:before {
725
+ content: "\e6e9";
726
+ }
727
+ .mdi-communication-location-on:before {
728
+ content: "\e6ea";
729
+ }
730
+ .mdi-communication-message:before {
731
+ content: "\e6eb";
732
+ }
733
+ .mdi-communication-messenger:before {
734
+ content: "\e6ec";
735
+ }
736
+ .mdi-communication-no-sim:before {
737
+ content: "\e6ed";
738
+ }
739
+ .mdi-communication-phone:before {
740
+ content: "\e6ee";
741
+ }
742
+ .mdi-communication-portable-wifi-off:before {
743
+ content: "\e6ef";
744
+ }
745
+ .mdi-communication-quick-contacts-dialer:before {
746
+ content: "\e6f0";
747
+ }
748
+ .mdi-communication-quick-contacts-mail:before {
749
+ content: "\e6f1";
750
+ }
751
+ .mdi-communication-ring-volume:before {
752
+ content: "\e6f2";
753
+ }
754
+ .mdi-communication-stay-current-landscape:before {
755
+ content: "\e6f3";
756
+ }
757
+ .mdi-communication-stay-current-portrait:before {
758
+ content: "\e6f4";
759
+ }
760
+ .mdi-communication-stay-primary-landscape:before {
761
+ content: "\e6f5";
762
+ }
763
+ .mdi-communication-stay-primary-portrait:before {
764
+ content: "\e6f6";
765
+ }
766
+ .mdi-communication-swap-calls:before {
767
+ content: "\e6f7";
768
+ }
769
+ .mdi-communication-textsms:before {
770
+ content: "\e6f8";
771
+ }
772
+ .mdi-communication-voicemail:before {
773
+ content: "\e6f9";
774
+ }
775
+ .mdi-communication-vpn-key:before {
776
+ content: "\e6fa";
777
+ }
778
+ .mdi-content-add:before {
779
+ content: "\e6fb";
780
+ }
781
+ .mdi-content-add-box:before {
782
+ content: "\e6fc";
783
+ }
784
+ .mdi-content-add-circle:before {
785
+ content: "\e6fd";
786
+ }
787
+ .mdi-content-add-circle-outline:before {
788
+ content: "\e6fe";
789
+ }
790
+ .mdi-content-archive:before {
791
+ content: "\e6ff";
792
+ }
793
+ .mdi-content-backspace:before {
794
+ content: "\e700";
795
+ }
796
+ .mdi-content-block:before {
797
+ content: "\e701";
798
+ }
799
+ .mdi-content-clear:before {
800
+ content: "\e702";
801
+ }
802
+ .mdi-content-content-copy:before {
803
+ content: "\e703";
804
+ }
805
+ .mdi-content-content-cut:before {
806
+ content: "\e704";
807
+ }
808
+ .mdi-content-content-paste:before {
809
+ content: "\e705";
810
+ }
811
+ .mdi-content-create:before {
812
+ content: "\e706";
813
+ }
814
+ .mdi-content-drafts:before {
815
+ content: "\e707";
816
+ }
817
+ .mdi-content-filter-list:before {
818
+ content: "\e708";
819
+ }
820
+ .mdi-content-flag:before {
821
+ content: "\e709";
822
+ }
823
+ .mdi-content-forward:before {
824
+ content: "\e70a";
825
+ }
826
+ .mdi-content-gesture:before {
827
+ content: "\e70b";
828
+ }
829
+ .mdi-content-inbox:before {
830
+ content: "\e70c";
831
+ }
832
+ .mdi-content-link:before {
833
+ content: "\e70d";
834
+ }
835
+ .mdi-content-mail:before {
836
+ content: "\e70e";
837
+ }
838
+ .mdi-content-markunread:before {
839
+ content: "\e70f";
840
+ }
841
+ .mdi-content-redo:before {
842
+ content: "\e710";
843
+ }
844
+ .mdi-content-remove:before {
845
+ content: "\e711";
846
+ }
847
+ .mdi-content-remove-circle:before {
848
+ content: "\e712";
849
+ }
850
+ .mdi-content-remove-circle-outline:before {
851
+ content: "\e713";
852
+ }
853
+ .mdi-content-reply:before {
854
+ content: "\e714";
855
+ }
856
+ .mdi-content-reply-all:before {
857
+ content: "\e715";
858
+ }
859
+ .mdi-content-report:before {
860
+ content: "\e716";
861
+ }
862
+ .mdi-content-save:before {
863
+ content: "\e717";
864
+ }
865
+ .mdi-content-select-all:before {
866
+ content: "\e718";
867
+ }
868
+ .mdi-content-send:before {
869
+ content: "\e719";
870
+ }
871
+ .mdi-content-sort:before {
872
+ content: "\e71a";
873
+ }
874
+ .mdi-content-text-format:before {
875
+ content: "\e71b";
876
+ }
877
+ .mdi-content-undo:before {
878
+ content: "\e71c";
879
+ }
880
+ .mdi-device-access-alarm:before {
881
+ content: "\e71d";
882
+ }
883
+ .mdi-device-access-alarms:before {
884
+ content: "\e71e";
885
+ }
886
+ .mdi-device-access-time:before {
887
+ content: "\e71f";
888
+ }
889
+ .mdi-device-add-alarm:before {
890
+ content: "\e720";
891
+ }
892
+ .mdi-device-airplanemode-off:before {
893
+ content: "\e721";
894
+ }
895
+ .mdi-device-airplanemode-on:before {
896
+ content: "\e722";
897
+ }
898
+ .mdi-device-battery-20:before {
899
+ content: "\e723";
900
+ }
901
+ .mdi-device-battery-30:before {
902
+ content: "\e724";
903
+ }
904
+ .mdi-device-battery-50:before {
905
+ content: "\e725";
906
+ }
907
+ .mdi-device-battery-60:before {
908
+ content: "\e726";
909
+ }
910
+ .mdi-device-battery-80:before {
911
+ content: "\e727";
912
+ }
913
+ .mdi-device-battery-90:before {
914
+ content: "\e728";
915
+ }
916
+ .mdi-device-battery-alert:before {
917
+ content: "\e729";
918
+ }
919
+ .mdi-device-battery-charging-20:before {
920
+ content: "\e72a";
921
+ }
922
+ .mdi-device-battery-charging-30:before {
923
+ content: "\e72b";
924
+ }
925
+ .mdi-device-battery-charging-50:before {
926
+ content: "\e72c";
927
+ }
928
+ .mdi-device-battery-charging-60:before {
929
+ content: "\e72d";
930
+ }
931
+ .mdi-device-battery-charging-80:before {
932
+ content: "\e72e";
933
+ }
934
+ .mdi-device-battery-charging-90:before {
935
+ content: "\e72f";
936
+ }
937
+ .mdi-device-battery-charging-full:before {
938
+ content: "\e730";
939
+ }
940
+ .mdi-device-battery-full:before {
941
+ content: "\e731";
942
+ }
943
+ .mdi-device-battery-std:before {
944
+ content: "\e732";
945
+ }
946
+ .mdi-device-battery-unknown:before {
947
+ content: "\e733";
948
+ }
949
+ .mdi-device-bluetooth:before {
950
+ content: "\e734";
951
+ }
952
+ .mdi-device-bluetooth-connected:before {
953
+ content: "\e735";
954
+ }
955
+ .mdi-device-bluetooth-disabled:before {
956
+ content: "\e736";
957
+ }
958
+ .mdi-device-bluetooth-searching:before {
959
+ content: "\e737";
960
+ }
961
+ .mdi-device-brightness-auto:before {
962
+ content: "\e738";
963
+ }
964
+ .mdi-device-brightness-high:before {
965
+ content: "\e739";
966
+ }
967
+ .mdi-device-brightness-low:before {
968
+ content: "\e73a";
969
+ }
970
+ .mdi-device-brightness-medium:before {
971
+ content: "\e73b";
972
+ }
973
+ .mdi-device-data-usage:before {
974
+ content: "\e73c";
975
+ }
976
+ .mdi-device-developer-mode:before {
977
+ content: "\e73d";
978
+ }
979
+ .mdi-device-devices:before {
980
+ content: "\e73e";
981
+ }
982
+ .mdi-device-dvr:before {
983
+ content: "\e73f";
984
+ }
985
+ .mdi-device-gps-fixed:before {
986
+ content: "\e740";
987
+ }
988
+ .mdi-device-gps-not-fixed:before {
989
+ content: "\e741";
990
+ }
991
+ .mdi-device-gps-off:before {
992
+ content: "\e742";
993
+ }
994
+ .mdi-device-location-disabled:before {
995
+ content: "\e743";
996
+ }
997
+ .mdi-device-location-searching:before {
998
+ content: "\e744";
999
+ }
1000
+ .mdi-device-multitrack-audio:before {
1001
+ content: "\e745";
1002
+ }
1003
+ .mdi-device-network-cell:before {
1004
+ content: "\e746";
1005
+ }
1006
+ .mdi-device-network-wifi:before {
1007
+ content: "\e747";
1008
+ }
1009
+ .mdi-device-nfc:before {
1010
+ content: "\e748";
1011
+ }
1012
+ .mdi-device-now-wallpaper:before {
1013
+ content: "\e749";
1014
+ }
1015
+ .mdi-device-now-widgets:before {
1016
+ content: "\e74a";
1017
+ }
1018
+ .mdi-device-screen-lock-landscape:before {
1019
+ content: "\e74b";
1020
+ }
1021
+ .mdi-device-screen-lock-portrait:before {
1022
+ content: "\e74c";
1023
+ }
1024
+ .mdi-device-screen-lock-rotation:before {
1025
+ content: "\e74d";
1026
+ }
1027
+ .mdi-device-screen-rotation:before {
1028
+ content: "\e74e";
1029
+ }
1030
+ .mdi-device-sd-storage:before {
1031
+ content: "\e74f";
1032
+ }
1033
+ .mdi-device-settings-system-daydream:before {
1034
+ content: "\e750";
1035
+ }
1036
+ .mdi-device-signal-cellular-0-bar:before {
1037
+ content: "\e751";
1038
+ }
1039
+ .mdi-device-signal-cellular-1-bar:before {
1040
+ content: "\e752";
1041
+ }
1042
+ .mdi-device-signal-cellular-2-bar:before {
1043
+ content: "\e753";
1044
+ }
1045
+ .mdi-device-signal-cellular-3-bar:before {
1046
+ content: "\e754";
1047
+ }
1048
+ .mdi-device-signal-cellular-4-bar:before {
1049
+ content: "\e755";
1050
+ }
1051
+ .mdi-device-signal-cellular-connected-no-internet-0-bar:before {
1052
+ content: "\e756";
1053
+ }
1054
+ .mdi-device-signal-cellular-connected-no-internet-1-bar:before {
1055
+ content: "\e757";
1056
+ }
1057
+ .mdi-device-signal-cellular-connected-no-internet-2-bar:before {
1058
+ content: "\e758";
1059
+ }
1060
+ .mdi-device-signal-cellular-connected-no-internet-3-bar:before {
1061
+ content: "\e759";
1062
+ }
1063
+ .mdi-device-signal-cellular-connected-no-internet-4-bar:before {
1064
+ content: "\e75a";
1065
+ }
1066
+ .mdi-device-signal-cellular-no-sim:before {
1067
+ content: "\e75b";
1068
+ }
1069
+ .mdi-device-signal-cellular-null:before {
1070
+ content: "\e75c";
1071
+ }
1072
+ .mdi-device-signal-cellular-off:before {
1073
+ content: "\e75d";
1074
+ }
1075
+ .mdi-device-signal-wifi-0-bar:before {
1076
+ content: "\e75e";
1077
+ }
1078
+ .mdi-device-signal-wifi-1-bar:before {
1079
+ content: "\e75f";
1080
+ }
1081
+ .mdi-device-signal-wifi-2-bar:before {
1082
+ content: "\e760";
1083
+ }
1084
+ .mdi-device-signal-wifi-3-bar:before {
1085
+ content: "\e761";
1086
+ }
1087
+ .mdi-device-signal-wifi-4-bar:before {
1088
+ content: "\e762";
1089
+ }
1090
+ .mdi-device-signal-wifi-off:before {
1091
+ content: "\e763";
1092
+ }
1093
+ .mdi-device-storage:before {
1094
+ content: "\e764";
1095
+ }
1096
+ .mdi-device-usb:before {
1097
+ content: "\e765";
1098
+ }
1099
+ .mdi-device-wifi-lock:before {
1100
+ content: "\e766";
1101
+ }
1102
+ .mdi-device-wifi-tethering:before {
1103
+ content: "\e767";
1104
+ }
1105
+ .mdi-editor-attach-file:before {
1106
+ content: "\e768";
1107
+ }
1108
+ .mdi-editor-attach-money:before {
1109
+ content: "\e769";
1110
+ }
1111
+ .mdi-editor-border-all:before {
1112
+ content: "\e76a";
1113
+ }
1114
+ .mdi-editor-border-bottom:before {
1115
+ content: "\e76b";
1116
+ }
1117
+ .mdi-editor-border-clear:before {
1118
+ content: "\e76c";
1119
+ }
1120
+ .mdi-editor-border-color:before {
1121
+ content: "\e76d";
1122
+ }
1123
+ .mdi-editor-border-horizontal:before {
1124
+ content: "\e76e";
1125
+ }
1126
+ .mdi-editor-border-inner:before {
1127
+ content: "\e76f";
1128
+ }
1129
+ .mdi-editor-border-left:before {
1130
+ content: "\e770";
1131
+ }
1132
+ .mdi-editor-border-outer:before {
1133
+ content: "\e771";
1134
+ }
1135
+ .mdi-editor-border-right:before {
1136
+ content: "\e772";
1137
+ }
1138
+ .mdi-editor-border-style:before {
1139
+ content: "\e773";
1140
+ }
1141
+ .mdi-editor-border-top:before {
1142
+ content: "\e774";
1143
+ }
1144
+ .mdi-editor-border-vertical:before {
1145
+ content: "\e775";
1146
+ }
1147
+ .mdi-editor-format-align-center:before {
1148
+ content: "\e776";
1149
+ }
1150
+ .mdi-editor-format-align-justify:before {
1151
+ content: "\e777";
1152
+ }
1153
+ .mdi-editor-format-align-left:before {
1154
+ content: "\e778";
1155
+ }
1156
+ .mdi-editor-format-align-right:before {
1157
+ content: "\e779";
1158
+ }
1159
+ .mdi-editor-format-bold:before {
1160
+ content: "\e77a";
1161
+ }
1162
+ .mdi-editor-format-clear:before {
1163
+ content: "\e77b";
1164
+ }
1165
+ .mdi-editor-format-color-fill:before {
1166
+ content: "\e77c";
1167
+ }
1168
+ .mdi-editor-format-color-reset:before {
1169
+ content: "\e77d";
1170
+ }
1171
+ .mdi-editor-format-color-text:before {
1172
+ content: "\e77e";
1173
+ }
1174
+ .mdi-editor-format-indent-decrease:before {
1175
+ content: "\e77f";
1176
+ }
1177
+ .mdi-editor-format-indent-increase:before {
1178
+ content: "\e780";
1179
+ }
1180
+ .mdi-editor-format-italic:before {
1181
+ content: "\e781";
1182
+ }
1183
+ .mdi-editor-format-line-spacing:before {
1184
+ content: "\e782";
1185
+ }
1186
+ .mdi-editor-format-list-bulleted:before {
1187
+ content: "\e783";
1188
+ }
1189
+ .mdi-editor-format-list-numbered:before {
1190
+ content: "\e784";
1191
+ }
1192
+ .mdi-editor-format-paint:before {
1193
+ content: "\e785";
1194
+ }
1195
+ .mdi-editor-format-quote:before {
1196
+ content: "\e786";
1197
+ }
1198
+ .mdi-editor-format-size:before {
1199
+ content: "\e787";
1200
+ }
1201
+ .mdi-editor-format-strikethrough:before {
1202
+ content: "\e788";
1203
+ }
1204
+ .mdi-editor-functions:before {
1205
+ content: "\e789";
1206
+ }
1207
+ .mdi-editor-format-textdirection-l-to-r:before {
1208
+ content: "\e78a";
1209
+ }
1210
+ .mdi-editor-format-underline:before {
1211
+ content: "\e78b";
1212
+ }
1213
+ .mdi-editor-format-textdirection-r-to-l:before {
1214
+ content: "\e78c";
1215
+ }
1216
+ .mdi-editor-insert-chart:before {
1217
+ content: "\e78d";
1218
+ }
1219
+ .mdi-editor-insert-comment:before {
1220
+ content: "\e78e";
1221
+ }
1222
+ .mdi-editor-insert-drive-file:before {
1223
+ content: "\e78f";
1224
+ }
1225
+ .mdi-editor-insert-emoticon:before {
1226
+ content: "\e790";
1227
+ }
1228
+ .mdi-editor-insert-invitation:before {
1229
+ content: "\e791";
1230
+ }
1231
+ .mdi-editor-insert-link:before {
1232
+ content: "\e792";
1233
+ }
1234
+ .mdi-editor-insert-photo:before {
1235
+ content: "\e793";
1236
+ }
1237
+ .mdi-editor-merge-type:before {
1238
+ content: "\e794";
1239
+ }
1240
+ .mdi-editor-mode-comment:before {
1241
+ content: "\e795";
1242
+ }
1243
+ .mdi-editor-mode-edit:before {
1244
+ content: "\e796";
1245
+ }
1246
+ .mdi-editor-publish:before {
1247
+ content: "\e797";
1248
+ }
1249
+ .mdi-editor-vertical-align-bottom:before {
1250
+ content: "\e798";
1251
+ }
1252
+ .mdi-editor-vertical-align-center:before {
1253
+ content: "\e799";
1254
+ }
1255
+ .mdi-editor-vertical-align-top:before {
1256
+ content: "\e79a";
1257
+ }
1258
+ .mdi-editor-wrap-text:before {
1259
+ content: "\e79b";
1260
+ }
1261
+ .mdi-file-attachment:before {
1262
+ content: "\e79c";
1263
+ }
1264
+ .mdi-file-cloud:before {
1265
+ content: "\e79d";
1266
+ }
1267
+ .mdi-file-cloud-circle:before {
1268
+ content: "\e79e";
1269
+ }
1270
+ .mdi-file-cloud-done:before {
1271
+ content: "\e79f";
1272
+ }
1273
+ .mdi-file-cloud-download:before {
1274
+ content: "\e7a0";
1275
+ }
1276
+ .mdi-file-cloud-off:before {
1277
+ content: "\e7a1";
1278
+ }
1279
+ .mdi-file-cloud-queue:before {
1280
+ content: "\e7a2";
1281
+ }
1282
+ .mdi-file-cloud-upload:before {
1283
+ content: "\e7a3";
1284
+ }
1285
+ .mdi-file-file-download:before {
1286
+ content: "\e7a4";
1287
+ }
1288
+ .mdi-file-file-upload:before {
1289
+ content: "\e7a5";
1290
+ }
1291
+ .mdi-file-folder:before {
1292
+ content: "\e7a6";
1293
+ }
1294
+ .mdi-file-folder-open:before {
1295
+ content: "\e7a7";
1296
+ }
1297
+ .mdi-file-folder-shared:before {
1298
+ content: "\e7a8";
1299
+ }
1300
+ .mdi-hardware-cast:before {
1301
+ content: "\e7a9";
1302
+ }
1303
+ .mdi-hardware-cast-connected:before {
1304
+ content: "\e7aa";
1305
+ }
1306
+ .mdi-hardware-computer:before {
1307
+ content: "\e7ab";
1308
+ }
1309
+ .mdi-hardware-desktop-mac:before {
1310
+ content: "\e7ac";
1311
+ }
1312
+ .mdi-hardware-desktop-windows:before {
1313
+ content: "\e7ad";
1314
+ }
1315
+ .mdi-hardware-dock:before {
1316
+ content: "\e7ae";
1317
+ }
1318
+ .mdi-hardware-gamepad:before {
1319
+ content: "\e7af";
1320
+ }
1321
+ .mdi-hardware-headset:before {
1322
+ content: "\e7b0";
1323
+ }
1324
+ .mdi-hardware-headset-mic:before {
1325
+ content: "\e7b1";
1326
+ }
1327
+ .mdi-hardware-keyboard:before {
1328
+ content: "\e7b2";
1329
+ }
1330
+ .mdi-hardware-keyboard-alt:before {
1331
+ content: "\e7b3";
1332
+ }
1333
+ .mdi-hardware-keyboard-arrow-down:before {
1334
+ content: "\e7b4";
1335
+ }
1336
+ .mdi-hardware-keyboard-arrow-left:before {
1337
+ content: "\e7b5";
1338
+ }
1339
+ .mdi-hardware-keyboard-arrow-right:before {
1340
+ content: "\e7b6";
1341
+ }
1342
+ .mdi-hardware-keyboard-arrow-up:before {
1343
+ content: "\e7b7";
1344
+ }
1345
+ .mdi-hardware-keyboard-backspace:before {
1346
+ content: "\e7b8";
1347
+ }
1348
+ .mdi-hardware-keyboard-capslock:before {
1349
+ content: "\e7b9";
1350
+ }
1351
+ .mdi-hardware-keyboard-control:before {
1352
+ content: "\e7ba";
1353
+ }
1354
+ .mdi-hardware-keyboard-hide:before {
1355
+ content: "\e7bb";
1356
+ }
1357
+ .mdi-hardware-keyboard-return:before {
1358
+ content: "\e7bc";
1359
+ }
1360
+ .mdi-hardware-keyboard-tab:before {
1361
+ content: "\e7bd";
1362
+ }
1363
+ .mdi-hardware-keyboard-voice:before {
1364
+ content: "\e7be";
1365
+ }
1366
+ .mdi-hardware-laptop:before {
1367
+ content: "\e7bf";
1368
+ }
1369
+ .mdi-hardware-laptop-chromebook:before {
1370
+ content: "\e7c0";
1371
+ }
1372
+ .mdi-hardware-laptop-mac:before {
1373
+ content: "\e7c1";
1374
+ }
1375
+ .mdi-hardware-laptop-windows:before {
1376
+ content: "\e7c2";
1377
+ }
1378
+ .mdi-hardware-memory:before {
1379
+ content: "\e7c3";
1380
+ }
1381
+ .mdi-hardware-mouse:before {
1382
+ content: "\e7c4";
1383
+ }
1384
+ .mdi-hardware-phone-android:before {
1385
+ content: "\e7c5";
1386
+ }
1387
+ .mdi-hardware-phone-iphone:before {
1388
+ content: "\e7c6";
1389
+ }
1390
+ .mdi-hardware-phonelink:before {
1391
+ content: "\e7c7";
1392
+ }
1393
+ .mdi-hardware-phonelink-off:before {
1394
+ content: "\e7c8";
1395
+ }
1396
+ .mdi-hardware-security:before {
1397
+ content: "\e7c9";
1398
+ }
1399
+ .mdi-hardware-sim-card:before {
1400
+ content: "\e7ca";
1401
+ }
1402
+ .mdi-hardware-smartphone:before {
1403
+ content: "\e7cb";
1404
+ }
1405
+ .mdi-hardware-speaker:before {
1406
+ content: "\e7cc";
1407
+ }
1408
+ .mdi-hardware-tablet:before {
1409
+ content: "\e7cd";
1410
+ }
1411
+ .mdi-hardware-tablet-android:before {
1412
+ content: "\e7ce";
1413
+ }
1414
+ .mdi-hardware-tablet-mac:before {
1415
+ content: "\e7cf";
1416
+ }
1417
+ .mdi-hardware-tv:before {
1418
+ content: "\e7d0";
1419
+ }
1420
+ .mdi-hardware-watch:before {
1421
+ content: "\e7d1";
1422
+ }
1423
+ .mdi-image-add-to-photos:before {
1424
+ content: "\e7d2";
1425
+ }
1426
+ .mdi-image-adjust:before {
1427
+ content: "\e7d3";
1428
+ }
1429
+ .mdi-image-assistant-photo:before {
1430
+ content: "\e7d4";
1431
+ }
1432
+ .mdi-image-audiotrack:before {
1433
+ content: "\e7d5";
1434
+ }
1435
+ .mdi-image-blur-circular:before {
1436
+ content: "\e7d6";
1437
+ }
1438
+ .mdi-image-blur-linear:before {
1439
+ content: "\e7d7";
1440
+ }
1441
+ .mdi-image-blur-off:before {
1442
+ content: "\e7d8";
1443
+ }
1444
+ .mdi-image-blur-on:before {
1445
+ content: "\e7d9";
1446
+ }
1447
+ .mdi-image-brightness-1:before {
1448
+ content: "\e7da";
1449
+ }
1450
+ .mdi-image-brightness-2:before {
1451
+ content: "\e7db";
1452
+ }
1453
+ .mdi-image-brightness-3:before {
1454
+ content: "\e7dc";
1455
+ }
1456
+ .mdi-image-brightness-4:before {
1457
+ content: "\e7dd";
1458
+ }
1459
+ .mdi-image-brightness-5:before {
1460
+ content: "\e7de";
1461
+ }
1462
+ .mdi-image-brightness-6:before {
1463
+ content: "\e7df";
1464
+ }
1465
+ .mdi-image-brightness-7:before {
1466
+ content: "\e7e0";
1467
+ }
1468
+ .mdi-image-brush:before {
1469
+ content: "\e7e1";
1470
+ }
1471
+ .mdi-image-camera:before {
1472
+ content: "\e7e2";
1473
+ }
1474
+ .mdi-image-camera-alt:before {
1475
+ content: "\e7e3";
1476
+ }
1477
+ .mdi-image-camera-front:before {
1478
+ content: "\e7e4";
1479
+ }
1480
+ .mdi-image-camera-rear:before {
1481
+ content: "\e7e5";
1482
+ }
1483
+ .mdi-image-camera-roll:before {
1484
+ content: "\e7e6";
1485
+ }
1486
+ .mdi-image-center-focus-strong:before {
1487
+ content: "\e7e7";
1488
+ }
1489
+ .mdi-image-center-focus-weak:before {
1490
+ content: "\e7e8";
1491
+ }
1492
+ .mdi-image-collections:before {
1493
+ content: "\e7e9";
1494
+ }
1495
+ .mdi-image-colorize:before {
1496
+ content: "\e7ea";
1497
+ }
1498
+ .mdi-image-color-lens:before {
1499
+ content: "\e7eb";
1500
+ }
1501
+ .mdi-image-compare:before {
1502
+ content: "\e7ec";
1503
+ }
1504
+ .mdi-image-control-point:before {
1505
+ content: "\e7ed";
1506
+ }
1507
+ .mdi-image-control-point-duplicate:before {
1508
+ content: "\e7ee";
1509
+ }
1510
+ .mdi-image-crop:before {
1511
+ content: "\e7ef";
1512
+ }
1513
+ .mdi-image-crop-3-2:before {
1514
+ content: "\e7f0";
1515
+ }
1516
+ .mdi-image-crop-5-4:before {
1517
+ content: "\e7f1";
1518
+ }
1519
+ .mdi-image-crop-7-5:before {
1520
+ content: "\e7f2";
1521
+ }
1522
+ .mdi-image-crop-16-9:before {
1523
+ content: "\e7f3";
1524
+ }
1525
+ .mdi-image-crop-din:before {
1526
+ content: "\e7f4";
1527
+ }
1528
+ .mdi-image-crop-free:before {
1529
+ content: "\e7f5";
1530
+ }
1531
+ .mdi-image-crop-landscape:before {
1532
+ content: "\e7f6";
1533
+ }
1534
+ .mdi-image-crop-original:before {
1535
+ content: "\e7f7";
1536
+ }
1537
+ .mdi-image-crop-portrait:before {
1538
+ content: "\e7f8";
1539
+ }
1540
+ .mdi-image-crop-square:before {
1541
+ content: "\e7f9";
1542
+ }
1543
+ .mdi-image-dehaze:before {
1544
+ content: "\e7fa";
1545
+ }
1546
+ .mdi-image-details:before {
1547
+ content: "\e7fb";
1548
+ }
1549
+ .mdi-image-edit:before {
1550
+ content: "\e7fc";
1551
+ }
1552
+ .mdi-image-exposure:before {
1553
+ content: "\e7fd";
1554
+ }
1555
+ .mdi-image-exposure-minus-1:before {
1556
+ content: "\e7fe";
1557
+ }
1558
+ .mdi-image-exposure-minus-2:before {
1559
+ content: "\e7ff";
1560
+ }
1561
+ .mdi-image-exposure-plus-1:before {
1562
+ content: "\e800";
1563
+ }
1564
+ .mdi-image-exposure-plus-2:before {
1565
+ content: "\e801";
1566
+ }
1567
+ .mdi-image-exposure-zero:before {
1568
+ content: "\e802";
1569
+ }
1570
+ .mdi-image-filter:before {
1571
+ content: "\e803";
1572
+ }
1573
+ .mdi-image-filter-1:before {
1574
+ content: "\e804";
1575
+ }
1576
+ .mdi-image-filter-2:before {
1577
+ content: "\e805";
1578
+ }
1579
+ .mdi-image-filter-3:before {
1580
+ content: "\e806";
1581
+ }
1582
+ .mdi-image-filter-4:before {
1583
+ content: "\e807";
1584
+ }
1585
+ .mdi-image-filter-5:before {
1586
+ content: "\e808";
1587
+ }
1588
+ .mdi-image-filter-6:before {
1589
+ content: "\e809";
1590
+ }
1591
+ .mdi-image-filter-7:before {
1592
+ content: "\e80a";
1593
+ }
1594
+ .mdi-image-filter-8:before {
1595
+ content: "\e80b";
1596
+ }
1597
+ .mdi-image-filter-9:before {
1598
+ content: "\e80c";
1599
+ }
1600
+ .mdi-image-filter-9-plus:before {
1601
+ content: "\e80d";
1602
+ }
1603
+ .mdi-image-filter-b-and-w:before {
1604
+ content: "\e80e";
1605
+ }
1606
+ .mdi-image-filter-center-focus:before {
1607
+ content: "\e80f";
1608
+ }
1609
+ .mdi-image-filter-drama:before {
1610
+ content: "\e810";
1611
+ }
1612
+ .mdi-image-filter-frames:before {
1613
+ content: "\e811";
1614
+ }
1615
+ .mdi-image-filter-hdr:before {
1616
+ content: "\e812";
1617
+ }
1618
+ .mdi-image-filter-none:before {
1619
+ content: "\e813";
1620
+ }
1621
+ .mdi-image-filter-tilt-shift:before {
1622
+ content: "\e814";
1623
+ }
1624
+ .mdi-image-filter-vintage:before {
1625
+ content: "\e815";
1626
+ }
1627
+ .mdi-image-flare:before {
1628
+ content: "\e816";
1629
+ }
1630
+ .mdi-image-flash-auto:before {
1631
+ content: "\e817";
1632
+ }
1633
+ .mdi-image-flash-off:before {
1634
+ content: "\e818";
1635
+ }
1636
+ .mdi-image-flash-on:before {
1637
+ content: "\e819";
1638
+ }
1639
+ .mdi-image-flip:before {
1640
+ content: "\e81a";
1641
+ }
1642
+ .mdi-image-gradient:before {
1643
+ content: "\e81b";
1644
+ }
1645
+ .mdi-image-grain:before {
1646
+ content: "\e81c";
1647
+ }
1648
+ .mdi-image-grid-off:before {
1649
+ content: "\e81d";
1650
+ }
1651
+ .mdi-image-grid-on:before {
1652
+ content: "\e81e";
1653
+ }
1654
+ .mdi-image-hdr-off:before {
1655
+ content: "\e81f";
1656
+ }
1657
+ .mdi-image-hdr-on:before {
1658
+ content: "\e820";
1659
+ }
1660
+ .mdi-image-hdr-strong:before {
1661
+ content: "\e821";
1662
+ }
1663
+ .mdi-image-hdr-weak:before {
1664
+ content: "\e822";
1665
+ }
1666
+ .mdi-image-healing:before {
1667
+ content: "\e823";
1668
+ }
1669
+ .mdi-image-image:before {
1670
+ content: "\e824";
1671
+ }
1672
+ .mdi-image-image-aspect-ratio:before {
1673
+ content: "\e825";
1674
+ }
1675
+ .mdi-image-iso:before {
1676
+ content: "\e826";
1677
+ }
1678
+ .mdi-image-landscape:before {
1679
+ content: "\e827";
1680
+ }
1681
+ .mdi-image-leak-add:before {
1682
+ content: "\e828";
1683
+ }
1684
+ .mdi-image-leak-remove:before {
1685
+ content: "\e829";
1686
+ }
1687
+ .mdi-image-lens:before {
1688
+ content: "\e82a";
1689
+ }
1690
+ .mdi-image-looks:before {
1691
+ content: "\e82b";
1692
+ }
1693
+ .mdi-image-looks-3:before {
1694
+ content: "\e82c";
1695
+ }
1696
+ .mdi-image-looks-4:before {
1697
+ content: "\e82d";
1698
+ }
1699
+ .mdi-image-looks-5:before {
1700
+ content: "\e82e";
1701
+ }
1702
+ .mdi-image-looks-6:before {
1703
+ content: "\e82f";
1704
+ }
1705
+ .mdi-image-looks-one:before {
1706
+ content: "\e830";
1707
+ }
1708
+ .mdi-image-looks-two:before {
1709
+ content: "\e831";
1710
+ }
1711
+ .mdi-image-loupe:before {
1712
+ content: "\e832";
1713
+ }
1714
+ .mdi-image-movie-creation:before {
1715
+ content: "\e833";
1716
+ }
1717
+ .mdi-image-nature:before {
1718
+ content: "\e834";
1719
+ }
1720
+ .mdi-image-nature-people:before {
1721
+ content: "\e835";
1722
+ }
1723
+ .mdi-image-navigate-before:before {
1724
+ content: "\e836";
1725
+ }
1726
+ .mdi-image-navigate-next:before {
1727
+ content: "\e837";
1728
+ }
1729
+ .mdi-image-palette:before {
1730
+ content: "\e838";
1731
+ }
1732
+ .mdi-image-panorama:before {
1733
+ content: "\e839";
1734
+ }
1735
+ .mdi-image-panorama-fisheye:before {
1736
+ content: "\e83a";
1737
+ }
1738
+ .mdi-image-panorama-horizontal:before {
1739
+ content: "\e83b";
1740
+ }
1741
+ .mdi-image-panorama-vertical:before {
1742
+ content: "\e83c";
1743
+ }
1744
+ .mdi-image-panorama-wide-angle:before {
1745
+ content: "\e83d";
1746
+ }
1747
+ .mdi-image-photo:before {
1748
+ content: "\e83e";
1749
+ }
1750
+ .mdi-image-photo-album:before {
1751
+ content: "\e83f";
1752
+ }
1753
+ .mdi-image-photo-camera:before {
1754
+ content: "\e840";
1755
+ }
1756
+ .mdi-image-photo-library:before {
1757
+ content: "\e841";
1758
+ }
1759
+ .mdi-image-portrait:before {
1760
+ content: "\e842";
1761
+ }
1762
+ .mdi-image-remove-red-eye:before {
1763
+ content: "\e843";
1764
+ }
1765
+ .mdi-image-rotate-left:before {
1766
+ content: "\e844";
1767
+ }
1768
+ .mdi-image-rotate-right:before {
1769
+ content: "\e845";
1770
+ }
1771
+ .mdi-image-slideshow:before {
1772
+ content: "\e846";
1773
+ }
1774
+ .mdi-image-straighten:before {
1775
+ content: "\e847";
1776
+ }
1777
+ .mdi-image-style:before {
1778
+ content: "\e848";
1779
+ }
1780
+ .mdi-image-switch-camera:before {
1781
+ content: "\e849";
1782
+ }
1783
+ .mdi-image-switch-video:before {
1784
+ content: "\e84a";
1785
+ }
1786
+ .mdi-image-tag-faces:before {
1787
+ content: "\e84b";
1788
+ }
1789
+ .mdi-image-texture:before {
1790
+ content: "\e84c";
1791
+ }
1792
+ .mdi-image-timelapse:before {
1793
+ content: "\e84d";
1794
+ }
1795
+ .mdi-image-timer:before {
1796
+ content: "\e84e";
1797
+ }
1798
+ .mdi-image-timer-3:before {
1799
+ content: "\e84f";
1800
+ }
1801
+ .mdi-image-timer-10:before {
1802
+ content: "\e850";
1803
+ }
1804
+ .mdi-image-timer-auto:before {
1805
+ content: "\e851";
1806
+ }
1807
+ .mdi-image-timer-off:before {
1808
+ content: "\e852";
1809
+ }
1810
+ .mdi-image-tonality:before {
1811
+ content: "\e853";
1812
+ }
1813
+ .mdi-image-transform:before {
1814
+ content: "\e854";
1815
+ }
1816
+ .mdi-image-tune:before {
1817
+ content: "\e855";
1818
+ }
1819
+ .mdi-image-wb-auto:before {
1820
+ content: "\e856";
1821
+ }
1822
+ .mdi-image-wb-cloudy:before {
1823
+ content: "\e857";
1824
+ }
1825
+ .mdi-image-wb-incandescent:before {
1826
+ content: "\e858";
1827
+ }
1828
+ .mdi-image-wb-irradescent:before {
1829
+ content: "\e859";
1830
+ }
1831
+ .mdi-image-wb-sunny:before {
1832
+ content: "\e85a";
1833
+ }
1834
+ .mdi-maps-beenhere:before {
1835
+ content: "\e85b";
1836
+ }
1837
+ .mdi-maps-directions:before {
1838
+ content: "\e85c";
1839
+ }
1840
+ .mdi-maps-directions-bike:before {
1841
+ content: "\e85d";
1842
+ }
1843
+ .mdi-maps-directions-bus:before {
1844
+ content: "\e85e";
1845
+ }
1846
+ .mdi-maps-directions-car:before {
1847
+ content: "\e85f";
1848
+ }
1849
+ .mdi-maps-directions-ferry:before {
1850
+ content: "\e860";
1851
+ }
1852
+ .mdi-maps-directions-subway:before {
1853
+ content: "\e861";
1854
+ }
1855
+ .mdi-maps-directions-train:before {
1856
+ content: "\e862";
1857
+ }
1858
+ .mdi-maps-directions-transit:before {
1859
+ content: "\e863";
1860
+ }
1861
+ .mdi-maps-directions-walk:before {
1862
+ content: "\e864";
1863
+ }
1864
+ .mdi-maps-flight:before {
1865
+ content: "\e865";
1866
+ }
1867
+ .mdi-maps-hotel:before {
1868
+ content: "\e866";
1869
+ }
1870
+ .mdi-maps-layers:before {
1871
+ content: "\e867";
1872
+ }
1873
+ .mdi-maps-layers-clear:before {
1874
+ content: "\e868";
1875
+ }
1876
+ .mdi-maps-local-airport:before {
1877
+ content: "\e869";
1878
+ }
1879
+ .mdi-maps-local-atm:before {
1880
+ content: "\e86a";
1881
+ }
1882
+ .mdi-maps-local-attraction:before {
1883
+ content: "\e86b";
1884
+ }
1885
+ .mdi-maps-local-bar:before {
1886
+ content: "\e86c";
1887
+ }
1888
+ .mdi-maps-local-cafe:before {
1889
+ content: "\e86d";
1890
+ }
1891
+ .mdi-maps-local-car-wash:before {
1892
+ content: "\e86e";
1893
+ }
1894
+ .mdi-maps-local-convenience-store:before {
1895
+ content: "\e86f";
1896
+ }
1897
+ .mdi-maps-local-drink:before {
1898
+ content: "\e870";
1899
+ }
1900
+ .mdi-maps-local-florist:before {
1901
+ content: "\e871";
1902
+ }
1903
+ .mdi-maps-local-gas-station:before {
1904
+ content: "\e872";
1905
+ }
1906
+ .mdi-maps-local-grocery-store:before {
1907
+ content: "\e873";
1908
+ }
1909
+ .mdi-maps-local-hospital:before {
1910
+ content: "\e874";
1911
+ }
1912
+ .mdi-maps-local-hotel:before {
1913
+ content: "\e875";
1914
+ }
1915
+ .mdi-maps-local-laundry-service:before {
1916
+ content: "\e876";
1917
+ }
1918
+ .mdi-maps-local-library:before {
1919
+ content: "\e877";
1920
+ }
1921
+ .mdi-maps-local-mall:before {
1922
+ content: "\e878";
1923
+ }
1924
+ .mdi-maps-local-movies:before {
1925
+ content: "\e879";
1926
+ }
1927
+ .mdi-maps-local-offer:before {
1928
+ content: "\e87a";
1929
+ }
1930
+ .mdi-maps-local-parking:before {
1931
+ content: "\e87b";
1932
+ }
1933
+ .mdi-maps-local-pharmacy:before {
1934
+ content: "\e87c";
1935
+ }
1936
+ .mdi-maps-local-phone:before {
1937
+ content: "\e87d";
1938
+ }
1939
+ .mdi-maps-local-pizza:before {
1940
+ content: "\e87e";
1941
+ }
1942
+ .mdi-maps-local-play:before {
1943
+ content: "\e87f";
1944
+ }
1945
+ .mdi-maps-local-post-office:before {
1946
+ content: "\e880";
1947
+ }
1948
+ .mdi-maps-local-print-shop:before {
1949
+ content: "\e881";
1950
+ }
1951
+ .mdi-maps-local-restaurant:before {
1952
+ content: "\e882";
1953
+ }
1954
+ .mdi-maps-local-see:before {
1955
+ content: "\e883";
1956
+ }
1957
+ .mdi-maps-local-shipping:before {
1958
+ content: "\e884";
1959
+ }
1960
+ .mdi-maps-local-taxi:before {
1961
+ content: "\e885";
1962
+ }
1963
+ .mdi-maps-location-history:before {
1964
+ content: "\e886";
1965
+ }
1966
+ .mdi-maps-map:before {
1967
+ content: "\e887";
1968
+ }
1969
+ .mdi-maps-my-location:before {
1970
+ content: "\e888";
1971
+ }
1972
+ .mdi-maps-navigation:before {
1973
+ content: "\e889";
1974
+ }
1975
+ .mdi-maps-pin-drop:before {
1976
+ content: "\e88a";
1977
+ }
1978
+ .mdi-maps-place:before {
1979
+ content: "\e88b";
1980
+ }
1981
+ .mdi-maps-rate-review:before {
1982
+ content: "\e88c";
1983
+ }
1984
+ .mdi-maps-restaurant-menu:before {
1985
+ content: "\e88d";
1986
+ }
1987
+ .mdi-maps-satellite:before {
1988
+ content: "\e88e";
1989
+ }
1990
+ .mdi-maps-store-mall-directory:before {
1991
+ content: "\e88f";
1992
+ }
1993
+ .mdi-maps-terrain:before {
1994
+ content: "\e890";
1995
+ }
1996
+ .mdi-maps-traffic:before {
1997
+ content: "\e891";
1998
+ }
1999
+ .mdi-navigation-apps:before {
2000
+ content: "\e892";
2001
+ }
2002
+ .mdi-navigation-arrow-back:before {
2003
+ content: "\e893";
2004
+ }
2005
+ .mdi-navigation-arrow-drop-down:before {
2006
+ content: "\e894";
2007
+ }
2008
+ .mdi-navigation-arrow-drop-down-circle:before {
2009
+ content: "\e895";
2010
+ }
2011
+ .mdi-navigation-arrow-drop-up:before {
2012
+ content: "\e896";
2013
+ }
2014
+ .mdi-navigation-arrow-forward:before {
2015
+ content: "\e897";
2016
+ }
2017
+ .mdi-navigation-cancel:before {
2018
+ content: "\e898";
2019
+ }
2020
+ .mdi-navigation-check:before {
2021
+ content: "\e899";
2022
+ }
2023
+ .mdi-navigation-chevron-left:before {
2024
+ content: "\e89a";
2025
+ }
2026
+ .mdi-navigation-chevron-right:before {
2027
+ content: "\e89b";
2028
+ }
2029
+ .mdi-navigation-close:before {
2030
+ content: "\e89c";
2031
+ }
2032
+ .mdi-navigation-expand-less:before {
2033
+ content: "\e89d";
2034
+ }
2035
+ .mdi-navigation-expand-more:before {
2036
+ content: "\e89e";
2037
+ }
2038
+ .mdi-navigation-fullscreen:before {
2039
+ content: "\e89f";
2040
+ }
2041
+ .mdi-navigation-fullscreen-exit:before {
2042
+ content: "\e8a0";
2043
+ }
2044
+ .mdi-navigation-menu:before {
2045
+ content: "\e8a1";
2046
+ }
2047
+ .mdi-navigation-more-horiz:before {
2048
+ content: "\e8a2";
2049
+ }
2050
+ .mdi-navigation-more-vert:before {
2051
+ content: "\e8a3";
2052
+ }
2053
+ .mdi-navigation-refresh:before {
2054
+ content: "\e8a4";
2055
+ }
2056
+ .mdi-navigation-unfold-less:before {
2057
+ content: "\e8a5";
2058
+ }
2059
+ .mdi-navigation-unfold-more:before {
2060
+ content: "\e8a6";
2061
+ }
2062
+ .mdi-notification-adb:before {
2063
+ content: "\e8a7";
2064
+ }
2065
+ .mdi-notification-bluetooth-audio:before {
2066
+ content: "\e8a8";
2067
+ }
2068
+ .mdi-notification-disc-full:before {
2069
+ content: "\e8a9";
2070
+ }
2071
+ .mdi-notification-dnd-forwardslash:before {
2072
+ content: "\e8aa";
2073
+ }
2074
+ .mdi-notification-do-not-disturb:before {
2075
+ content: "\e8ab";
2076
+ }
2077
+ .mdi-notification-drive-eta:before {
2078
+ content: "\e8ac";
2079
+ }
2080
+ .mdi-notification-event-available:before {
2081
+ content: "\e8ad";
2082
+ }
2083
+ .mdi-notification-event-busy:before {
2084
+ content: "\e8ae";
2085
+ }
2086
+ .mdi-notification-event-note:before {
2087
+ content: "\e8af";
2088
+ }
2089
+ .mdi-notification-folder-special:before {
2090
+ content: "\e8b0";
2091
+ }
2092
+ .mdi-notification-mms:before {
2093
+ content: "\e8b1";
2094
+ }
2095
+ .mdi-notification-more:before {
2096
+ content: "\e8b2";
2097
+ }
2098
+ .mdi-notification-network-locked:before {
2099
+ content: "\e8b3";
2100
+ }
2101
+ .mdi-notification-phone-bluetooth-speaker:before {
2102
+ content: "\e8b4";
2103
+ }
2104
+ .mdi-notification-phone-forwarded:before {
2105
+ content: "\e8b5";
2106
+ }
2107
+ .mdi-notification-phone-in-talk:before {
2108
+ content: "\e8b6";
2109
+ }
2110
+ .mdi-notification-phone-locked:before {
2111
+ content: "\e8b7";
2112
+ }
2113
+ .mdi-notification-phone-missed:before {
2114
+ content: "\e8b8";
2115
+ }
2116
+ .mdi-notification-phone-paused:before {
2117
+ content: "\e8b9";
2118
+ }
2119
+ .mdi-notification-play-download:before {
2120
+ content: "\e8ba";
2121
+ }
2122
+ .mdi-notification-play-install:before {
2123
+ content: "\e8bb";
2124
+ }
2125
+ .mdi-notification-sd-card:before {
2126
+ content: "\e8bc";
2127
+ }
2128
+ .mdi-notification-sim-card-alert:before {
2129
+ content: "\e8bd";
2130
+ }
2131
+ .mdi-notification-sms:before {
2132
+ content: "\e8be";
2133
+ }
2134
+ .mdi-notification-sms-failed:before {
2135
+ content: "\e8bf";
2136
+ }
2137
+ .mdi-notification-sync:before {
2138
+ content: "\e8c0";
2139
+ }
2140
+ .mdi-notification-sync-disabled:before {
2141
+ content: "\e8c1";
2142
+ }
2143
+ .mdi-notification-sync-problem:before {
2144
+ content: "\e8c2";
2145
+ }
2146
+ .mdi-notification-system-update:before {
2147
+ content: "\e8c3";
2148
+ }
2149
+ .mdi-notification-tap-and-play:before {
2150
+ content: "\e8c4";
2151
+ }
2152
+ .mdi-notification-time-to-leave:before {
2153
+ content: "\e8c5";
2154
+ }
2155
+ .mdi-notification-vibration:before {
2156
+ content: "\e8c6";
2157
+ }
2158
+ .mdi-notification-voice-chat:before {
2159
+ content: "\e8c7";
2160
+ }
2161
+ .mdi-notification-vpn-lock:before {
2162
+ content: "\e8c8";
2163
+ }
2164
+ .mdi-social-cake:before {
2165
+ content: "\e8c9";
2166
+ }
2167
+ .mdi-social-domain:before {
2168
+ content: "\e8ca";
2169
+ }
2170
+ .mdi-social-group:before {
2171
+ content: "\e8cb";
2172
+ }
2173
+ .mdi-social-group-add:before {
2174
+ content: "\e8cc";
2175
+ }
2176
+ .mdi-social-location-city:before {
2177
+ content: "\e8cd";
2178
+ }
2179
+ .mdi-social-mood:before {
2180
+ content: "\e8ce";
2181
+ }
2182
+ .mdi-social-notifications:before {
2183
+ content: "\e8cf";
2184
+ }
2185
+ .mdi-social-notifications-none:before {
2186
+ content: "\e8d0";
2187
+ }
2188
+ .mdi-social-notifications-off:before {
2189
+ content: "\e8d1";
2190
+ }
2191
+ .mdi-social-notifications-on:before {
2192
+ content: "\e8d2";
2193
+ }
2194
+ .mdi-social-notifications-paused:before {
2195
+ content: "\e8d3";
2196
+ }
2197
+ .mdi-social-pages:before {
2198
+ content: "\e8d4";
2199
+ }
2200
+ .mdi-social-party-mode:before {
2201
+ content: "\e8d5";
2202
+ }
2203
+ .mdi-social-people:before {
2204
+ content: "\e8d6";
2205
+ }
2206
+ .mdi-social-people-outline:before {
2207
+ content: "\e8d7";
2208
+ }
2209
+ .mdi-social-person:before {
2210
+ content: "\e8d8";
2211
+ }
2212
+ .mdi-social-person-add:before {
2213
+ content: "\e8d9";
2214
+ }
2215
+ .mdi-social-person-outline:before {
2216
+ content: "\e8da";
2217
+ }
2218
+ .mdi-social-plus-one:before {
2219
+ content: "\e8db";
2220
+ }
2221
+ .mdi-social-poll:before {
2222
+ content: "\e8dc";
2223
+ }
2224
+ .mdi-social-public:before {
2225
+ content: "\e8dd";
2226
+ }
2227
+ .mdi-social-school:before {
2228
+ content: "\e8de";
2229
+ }
2230
+ .mdi-social-share:before {
2231
+ content: "\e8df";
2232
+ }
2233
+ .mdi-social-whatshot:before {
2234
+ content: "\e8e0";
2235
+ }
2236
+ .mdi-toggle-check-box:before {
2237
+ content: "\e8e1";
2238
+ }
2239
+ .mdi-toggle-check-box-outline-blank:before {
2240
+ content: "\e8e2";
2241
+ }
2242
+ .mdi-toggle-radio-button-off:before {
2243
+ content: "\e8e3";
2244
+ }
2245
+ .mdi-toggle-radio-button-on:before {
2246
+ content: "\e8e4";
2247
+ }