materialize-sass 0.97.5 → 0.97.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/materialize.js +230 -141
  3. data/app/assets/javascripts/materialize.min.js +6 -6
  4. data/app/assets/javascripts/materialize/character_counter.js +20 -7
  5. data/app/assets/javascripts/materialize/collapsible.js +1 -1
  6. data/app/assets/javascripts/materialize/date_picker/picker.js +5 -5
  7. data/app/assets/javascripts/materialize/dropdown.js +12 -3
  8. data/app/assets/javascripts/materialize/extras/nouislider.js +1 -1
  9. data/app/assets/javascripts/materialize/extras/nouislider.min.js +0 -5
  10. data/app/assets/javascripts/materialize/forms.js +6 -5
  11. data/app/assets/javascripts/materialize/init.js +26 -9
  12. data/app/assets/javascripts/materialize/initial.js +2 -2
  13. data/app/assets/javascripts/materialize/leanModal.js +19 -6
  14. data/app/assets/javascripts/materialize/materialbox.js +9 -9
  15. data/app/assets/javascripts/materialize/pushpin.js +48 -53
  16. data/app/assets/javascripts/materialize/scrollFire.js +7 -3
  17. data/app/assets/javascripts/materialize/scrollspy.js +6 -6
  18. data/app/assets/javascripts/materialize/sideNav.js +66 -37
  19. data/app/assets/javascripts/materialize/slider.js +2 -2
  20. data/app/assets/javascripts/materialize/tabs.js +12 -6
  21. data/app/assets/stylesheets/materialize.scss +1 -1
  22. data/app/assets/stylesheets/materialize/components/_buttons.scss +49 -33
  23. data/app/assets/stylesheets/materialize/components/_cards.scss +9 -5
  24. data/app/assets/stylesheets/materialize/components/_color.scss +21 -21
  25. data/app/assets/stylesheets/materialize/components/_global.scss +27 -11
  26. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +0 -3258
  27. data/app/assets/stylesheets/materialize/components/_materialbox.scss +1 -1
  28. data/app/assets/stylesheets/materialize/components/_navbar.scss +1 -1
  29. data/app/assets/stylesheets/materialize/components/_normalize.scss +9 -12
  30. data/app/assets/stylesheets/materialize/components/_sideNav.scss +16 -11
  31. data/app/assets/stylesheets/materialize/components/_tooltip.scss +1 -0
  32. data/app/assets/stylesheets/materialize/components/_variables.scss +181 -34
  33. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +1 -1
  34. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +2 -2
  35. data/app/assets/stylesheets/materialize/components/forms/_checkboxes.scss +220 -0
  36. data/app/assets/stylesheets/materialize/components/forms/_file-input.scss +38 -0
  37. data/app/assets/stylesheets/materialize/components/forms/_forms.scss +22 -0
  38. data/app/assets/stylesheets/materialize/components/forms/_input-fields.scss +254 -0
  39. data/app/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +119 -0
  40. data/app/assets/stylesheets/materialize/components/forms/_range.scss +159 -0
  41. data/app/assets/stylesheets/materialize/components/forms/_select.scss +116 -0
  42. data/app/assets/stylesheets/materialize/components/forms/_switches.scss +78 -0
  43. data/app/assets/stylesheets/materialize/extras/nouislider.css +2 -1
  44. data/lib/materialize-sass/version.rb +1 -1
  45. metadata +10 -9
  46. data/app/assets/fonts/material-design-icons/LICENSE.txt +0 -428
  47. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  48. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +0 -769
  49. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  50. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  51. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
  52. data/app/assets/stylesheets/materialize/components/_form.scss +0 -954
@@ -43,8 +43,6 @@
43
43
  bottom: 0;
44
44
  left: 0;
45
45
  right: 0;
46
- z-index: 1;
47
- background-color: inherit;
48
46
  }
49
47
  }
50
48
 
@@ -90,7 +88,6 @@
90
88
  padding: $card-padding;
91
89
  border-radius: 0 0 2px 2px;
92
90
 
93
-
94
91
  p {
95
92
  margin: 0;
96
93
  color: inherit;
@@ -101,8 +98,11 @@
101
98
  }
102
99
 
103
100
  .card-action {
101
+ position: relative;
102
+ background-color: inherit;
104
103
  border-top: 1px solid rgba(160,160,160,.2);
105
104
  padding: $card-padding;
105
+ z-index: 2;
106
106
 
107
107
  a:not(.btn):not(.btn-large):not(.btn-floating) {
108
108
  color: $card-link-color;
@@ -112,6 +112,11 @@
112
112
 
113
113
  &:hover { color: $card-link-color-light; }
114
114
  }
115
+
116
+ & + .card-reveal {
117
+ z-index: 1;
118
+ padding-bottom: 64px;
119
+ }
115
120
  }
116
121
 
117
122
  .card-reveal {
@@ -122,13 +127,12 @@
122
127
  overflow-y: auto;
123
128
  top: 100%;
124
129
  height: 100%;
125
- z-index: 1;
130
+ z-index: 3;
126
131
  display: none;
127
132
 
128
133
  .card-title {
129
134
  cursor: pointer;
130
135
  display: block;
131
136
  }
132
-
133
137
  }
134
138
  }
@@ -8,12 +8,12 @@
8
8
 
9
9
 
10
10
  $materialize-red: (
11
+ "base": #e51c23,
11
12
  "lighten-5": #fdeaeb,
12
13
  "lighten-4": #f8c1c3,
13
14
  "lighten-3": #f3989b,
14
15
  "lighten-2": #ee6e73,
15
16
  "lighten-1": #ea454b,
16
- "base": #e51c23,
17
17
  "darken-1": #d0181e,
18
18
  "darken-2": #b9151b,
19
19
  "darken-3": #a21318,
@@ -21,12 +21,12 @@ $materialize-red: (
21
21
  );
22
22
 
23
23
  $red: (
24
+ "base": #F44336,
24
25
  "lighten-5": #FFEBEE,
25
26
  "lighten-4": #FFCDD2,
26
27
  "lighten-3": #EF9A9A,
27
28
  "lighten-2": #E57373,
28
29
  "lighten-1": #EF5350,
29
- "base": #F44336,
30
30
  "darken-1": #E53935,
31
31
  "darken-2": #D32F2F,
32
32
  "darken-3": #C62828,
@@ -38,12 +38,12 @@ $red: (
38
38
  );
39
39
 
40
40
  $pink: (
41
+ "base": #e91e63,
41
42
  "lighten-5": #fce4ec,
42
43
  "lighten-4": #f8bbd0,
43
44
  "lighten-3": #f48fb1,
44
45
  "lighten-2": #f06292,
45
46
  "lighten-1": #ec407a,
46
- "base": #e91e63,
47
47
  "darken-1": #d81b60,
48
48
  "darken-2": #c2185b,
49
49
  "darken-3": #ad1457,
@@ -55,12 +55,12 @@ $pink: (
55
55
  );
56
56
 
57
57
  $purple: (
58
+ "base": #9c27b0,
58
59
  "lighten-5": #f3e5f5,
59
60
  "lighten-4": #e1bee7,
60
61
  "lighten-3": #ce93d8,
61
62
  "lighten-2": #ba68c8,
62
63
  "lighten-1": #ab47bc,
63
- "base": #9c27b0,
64
64
  "darken-1": #8e24aa,
65
65
  "darken-2": #7b1fa2,
66
66
  "darken-3": #6a1b9a,
@@ -72,12 +72,12 @@ $purple: (
72
72
  );
73
73
 
74
74
  $deep-purple: (
75
+ "base": #673ab7,
75
76
  "lighten-5": #ede7f6,
76
77
  "lighten-4": #d1c4e9,
77
78
  "lighten-3": #b39ddb,
78
79
  "lighten-2": #9575cd,
79
80
  "lighten-1": #7e57c2,
80
- "base": #673ab7,
81
81
  "darken-1": #5e35b1,
82
82
  "darken-2": #512da8,
83
83
  "darken-3": #4527a0,
@@ -89,12 +89,12 @@ $deep-purple: (
89
89
  );
90
90
 
91
91
  $indigo: (
92
+ "base": #3f51b5,
92
93
  "lighten-5": #e8eaf6,
93
94
  "lighten-4": #c5cae9,
94
95
  "lighten-3": #9fa8da,
95
96
  "lighten-2": #7986cb,
96
97
  "lighten-1": #5c6bc0,
97
- "base": #3f51b5,
98
98
  "darken-1": #3949ab,
99
99
  "darken-2": #303f9f,
100
100
  "darken-3": #283593,
@@ -106,12 +106,12 @@ $indigo: (
106
106
  );
107
107
 
108
108
  $blue: (
109
+ "base": #2196F3,
109
110
  "lighten-5": #E3F2FD,
110
111
  "lighten-4": #BBDEFB,
111
112
  "lighten-3": #90CAF9,
112
113
  "lighten-2": #64B5F6,
113
114
  "lighten-1": #42A5F5,
114
- "base": #2196F3,
115
115
  "darken-1": #1E88E5,
116
116
  "darken-2": #1976D2,
117
117
  "darken-3": #1565C0,
@@ -123,12 +123,12 @@ $blue: (
123
123
  );
124
124
 
125
125
  $light-blue: (
126
+ "base": #03a9f4,
126
127
  "lighten-5": #e1f5fe,
127
128
  "lighten-4": #b3e5fc,
128
129
  "lighten-3": #81d4fa,
129
130
  "lighten-2": #4fc3f7,
130
131
  "lighten-1": #29b6f6,
131
- "base": #03a9f4,
132
132
  "darken-1": #039be5,
133
133
  "darken-2": #0288d1,
134
134
  "darken-3": #0277bd,
@@ -140,12 +140,12 @@ $light-blue: (
140
140
  );
141
141
 
142
142
  $cyan: (
143
+ "base": #00bcd4,
143
144
  "lighten-5": #e0f7fa,
144
145
  "lighten-4": #b2ebf2,
145
146
  "lighten-3": #80deea,
146
147
  "lighten-2": #4dd0e1,
147
148
  "lighten-1": #26c6da,
148
- "base": #00bcd4,
149
149
  "darken-1": #00acc1,
150
150
  "darken-2": #0097a7,
151
151
  "darken-3": #00838f,
@@ -157,12 +157,12 @@ $cyan: (
157
157
  );
158
158
 
159
159
  $teal: (
160
+ "base": #009688,
160
161
  "lighten-5": #e0f2f1,
161
162
  "lighten-4": #b2dfdb,
162
163
  "lighten-3": #80cbc4,
163
164
  "lighten-2": #4db6ac,
164
165
  "lighten-1": #26a69a,
165
- "base": #009688,
166
166
  "darken-1": #00897b,
167
167
  "darken-2": #00796b,
168
168
  "darken-3": #00695c,
@@ -174,12 +174,12 @@ $teal: (
174
174
  );
175
175
 
176
176
  $green: (
177
+ "base": #4CAF50,
177
178
  "lighten-5": #E8F5E9,
178
179
  "lighten-4": #C8E6C9,
179
180
  "lighten-3": #A5D6A7,
180
181
  "lighten-2": #81C784,
181
182
  "lighten-1": #66BB6A,
182
- "base": #4CAF50,
183
183
  "darken-1": #43A047,
184
184
  "darken-2": #388E3C,
185
185
  "darken-3": #2E7D32,
@@ -191,12 +191,12 @@ $green: (
191
191
  );
192
192
 
193
193
  $light-green: (
194
+ "base": #8bc34a,
194
195
  "lighten-5": #f1f8e9,
195
196
  "lighten-4": #dcedc8,
196
197
  "lighten-3": #c5e1a5,
197
198
  "lighten-2": #aed581,
198
199
  "lighten-1": #9ccc65,
199
- "base": #8bc34a,
200
200
  "darken-1": #7cb342,
201
201
  "darken-2": #689f38,
202
202
  "darken-3": #558b2f,
@@ -208,12 +208,12 @@ $light-green: (
208
208
  );
209
209
 
210
210
  $lime: (
211
+ "base": #cddc39,
211
212
  "lighten-5": #f9fbe7,
212
213
  "lighten-4": #f0f4c3,
213
214
  "lighten-3": #e6ee9c,
214
215
  "lighten-2": #dce775,
215
216
  "lighten-1": #d4e157,
216
- "base": #cddc39,
217
217
  "darken-1": #c0ca33,
218
218
  "darken-2": #afb42b,
219
219
  "darken-3": #9e9d24,
@@ -225,12 +225,12 @@ $lime: (
225
225
  );
226
226
 
227
227
  $yellow: (
228
+ "base": #ffeb3b,
228
229
  "lighten-5": #fffde7,
229
230
  "lighten-4": #fff9c4,
230
231
  "lighten-3": #fff59d,
231
232
  "lighten-2": #fff176,
232
233
  "lighten-1": #ffee58,
233
- "base": #ffeb3b,
234
234
  "darken-1": #fdd835,
235
235
  "darken-2": #fbc02d,
236
236
  "darken-3": #f9a825,
@@ -242,12 +242,12 @@ $yellow: (
242
242
  );
243
243
 
244
244
  $amber: (
245
+ "base": #ffc107,
245
246
  "lighten-5": #fff8e1,
246
247
  "lighten-4": #ffecb3,
247
248
  "lighten-3": #ffe082,
248
249
  "lighten-2": #ffd54f,
249
250
  "lighten-1": #ffca28,
250
- "base": #ffc107,
251
251
  "darken-1": #ffb300,
252
252
  "darken-2": #ffa000,
253
253
  "darken-3": #ff8f00,
@@ -259,12 +259,12 @@ $amber: (
259
259
  );
260
260
 
261
261
  $orange: (
262
+ "base": #ff9800,
262
263
  "lighten-5": #fff3e0,
263
264
  "lighten-4": #ffe0b2,
264
265
  "lighten-3": #ffcc80,
265
266
  "lighten-2": #ffb74d,
266
267
  "lighten-1": #ffa726,
267
- "base": #ff9800,
268
268
  "darken-1": #fb8c00,
269
269
  "darken-2": #f57c00,
270
270
  "darken-3": #ef6c00,
@@ -276,12 +276,12 @@ $orange: (
276
276
  );
277
277
 
278
278
  $deep-orange: (
279
+ "base": #ff5722,
279
280
  "lighten-5": #fbe9e7,
280
281
  "lighten-4": #ffccbc,
281
282
  "lighten-3": #ffab91,
282
283
  "lighten-2": #ff8a65,
283
284
  "lighten-1": #ff7043,
284
- "base": #ff5722,
285
285
  "darken-1": #f4511e,
286
286
  "darken-2": #e64a19,
287
287
  "darken-3": #d84315,
@@ -293,12 +293,12 @@ $deep-orange: (
293
293
  );
294
294
 
295
295
  $brown: (
296
+ "base": #795548,
296
297
  "lighten-5": #efebe9,
297
298
  "lighten-4": #d7ccc8,
298
299
  "lighten-3": #bcaaa4,
299
300
  "lighten-2": #a1887f,
300
301
  "lighten-1": #8d6e63,
301
- "base": #795548,
302
302
  "darken-1": #6d4c41,
303
303
  "darken-2": #5d4037,
304
304
  "darken-3": #4e342e,
@@ -306,12 +306,12 @@ $brown: (
306
306
  );
307
307
 
308
308
  $blue-grey: (
309
+ "base": #607d8b,
309
310
  "lighten-5": #eceff1,
310
311
  "lighten-4": #cfd8dc,
311
312
  "lighten-3": #b0bec5,
312
313
  "lighten-2": #90a4ae,
313
314
  "lighten-1": #78909c,
314
- "base": #607d8b,
315
315
  "darken-1": #546e7a,
316
316
  "darken-2": #455a64,
317
317
  "darken-3": #37474f,
@@ -319,12 +319,12 @@ $blue-grey: (
319
319
  );
320
320
 
321
321
  $grey: (
322
+ "base": #9e9e9e,
322
323
  "lighten-5": #fafafa,
323
324
  "lighten-4": #f5f5f5,
324
325
  "lighten-3": #eeeeee,
325
326
  "lighten-2": #e0e0e0,
326
327
  "lighten-1": #bdbdbd,
327
- "base": #9e9e9e,
328
328
  "darken-1": #757575,
329
329
  "darken-2": #616161,
330
330
  "darken-3": #424242,
@@ -406,7 +406,7 @@ $colors: (
406
406
  @return map-get($curr_color, $type);
407
407
  }
408
408
  }
409
- @warn "Unknown `#{$color} #{$type}` in $colors.";
409
+ @warn "Unknown `#{name}` in $colors.";
410
410
  @return null;
411
411
  }
412
412
 
@@ -18,7 +18,11 @@ main {
18
18
  }
19
19
 
20
20
  ul {
21
- list-style-type: none;
21
+ &.browser-default {
22
+ list-style-type: initial;
23
+ }
24
+
25
+ list-style-type: none;
22
26
  }
23
27
 
24
28
  a {
@@ -145,13 +149,18 @@ video.responsive-video {
145
149
 
146
150
  li {
147
151
  display: inline-block;
148
- font-size: 1.2rem;
149
- padding: 0 10px;
150
- line-height: 30px;
151
152
  border-radius: 2px;
152
153
  text-align: center;
153
-
154
- a { color: #444; }
154
+ vertical-align: top;
155
+ height: 30px;
156
+
157
+ a {
158
+ color: #444;
159
+ display: inline-block;
160
+ font-size: 1.2rem;
161
+ padding: 0 10px;
162
+ line-height: 30px;
163
+ }
155
164
 
156
165
  &.active a { color: #fff; }
157
166
 
@@ -163,8 +172,7 @@ video.responsive-video {
163
172
  }
164
173
 
165
174
  i {
166
- font-size: 2.2rem;
167
- vertical-align: middle;
175
+ font-size: 2rem;
168
176
  }
169
177
  }
170
178
 
@@ -375,7 +383,7 @@ table {
375
383
  }
376
384
 
377
385
  > tr > td {
378
- border-radius: 0px;
386
+ border-radius: 0;
379
387
  }
380
388
  }
381
389
 
@@ -389,7 +397,6 @@ table {
389
397
  &.centered {
390
398
  thead tr th, tbody tr td {
391
399
  text-align: center;
392
-
393
400
  }
394
401
  }
395
402
 
@@ -417,6 +424,10 @@ td, th{
417
424
  display: block;
418
425
  position: relative;
419
426
 
427
+ td:empty:before {
428
+ content: '\00a0';
429
+ }
430
+
420
431
  th,
421
432
  td {
422
433
  margin: 0;
@@ -607,6 +618,12 @@ span.badge {
607
618
  &.new:after {
608
619
  content: " new";
609
620
  }
621
+
622
+ &[data-badge-caption]::after {
623
+ content: " " attr(data-badge-caption);
624
+ }
625
+
626
+
610
627
  }
611
628
  nav ul a span.badge {
612
629
  position: static;
@@ -642,7 +659,6 @@ nav ul a span.badge {
642
659
  overflow: hidden;
643
660
  .determinate {
644
661
  position: absolute;
645
- background-color: inherit;
646
662
  top: 0;
647
663
  left: 0;
648
664
  bottom: 0;
@@ -3,3261 +3,3 @@
3
3
  text-rendering: optimizeLegibility;
4
4
  font-feature-settings: 'liga';
5
5
  }
6
-
7
- $font-mdi : 'Material-Design-Icons';
8
- $mdi-prefix : 'mdi-';
9
-
10
- @font-face {
11
- font-family: "#{$font-mdi}";
12
- src:font-url("#{$icons-font-path}#{$font-mdi}.eot?#iefix") format("embedded-opentype"),
13
- font-url("#{$icons-font-path}#{$font-mdi}.woff2") format("woff2"),
14
- font-url("#{$icons-font-path}#{$font-mdi}.woff") format("woff"),
15
- font-url("#{$icons-font-path}#{$font-mdi}.ttf") format("truetype"),
16
- font-url("#{$icons-font-path}#{$font-mdi}.svg##{$font-mdi}") format("svg");
17
- font-weight: normal;
18
- font-style: normal;
19
- }
20
-
21
- [class^="mdi-"], [class*="mdi-"] {
22
- speak: none;
23
- display: inline-block;
24
- font-family: "Material-Design-Icons";
25
- font-style: normal;
26
- font-weight: normal;
27
- font-variant: normal;
28
- text-rendering: auto;
29
- /* Better Font Rendering =========== */
30
- -webkit-font-smoothing: antialiased;
31
- -moz-osx-font-smoothing: grayscale;
32
- transform: translate(0, 0);
33
- &:before {
34
- display: inline-block;
35
- speak: none;
36
- text-decoration: inherit;
37
- }
38
- &.pull-left {
39
- margin-right: .3em;
40
- }
41
- &.pull-right{
42
- margin-left: .3em;
43
- }
44
- &.mdi-lg:before, &.mdi-lg:after {
45
- font-size: 1.33333333em;
46
- line-height: 0.75em;
47
- vertical-align: -15%;
48
- }
49
- &.mdi-2x:before, &.mdi-2x:after {
50
- font-size: 2em;
51
- }
52
- &.mdi-3x:before, &.mdi-3x:after {
53
- font-size: 3em;
54
- }
55
- &.mdi-4x:before, &.mdi-4x:after {
56
- font-size: 4em;
57
- }
58
- &.mdi-5x:before, &.mdi-5x:after {
59
- font-size: 5em;
60
- }
61
- }
62
-
63
- [class^="mdi-device-signal-cellular-"],
64
- [class^="mdi-device-battery-"],
65
- [class^="mdi-device-battery-charging-"],
66
- [class^="mdi-device-signal-cellular-connected-no-internet-"],
67
- [class^="mdi-device-signal-wifi-"],
68
- [class^="mdi-device-signal-wifi-statusbar-not-connected"],
69
- .mdi-device-network-wifi{
70
- &:after {
71
- opacity: .3;
72
- position: absolute;
73
- left: 0;
74
- top: 0;
75
- z-index: 1;
76
- display: inline-block;
77
- speak: none;
78
- text-decoration: inherit;
79
- }
80
- }
81
-
82
- [class^="mdi-device-signal-cellular-"]:after {content:"\e758";}
83
- [class^="mdi-device-battery-"]:after {content:"\e735";}
84
- [class^="mdi-device-battery-charging-"]:after {content:"\e733";}
85
- [class^="mdi-device-signal-cellular-connected-no-internet-"]:after {content:"\e75d";}
86
- [class^="mdi-device-signal-wifi-"]:after, .mdi-device-network-wifi:after {content:"\e765";}
87
- [class^="mdi-device-signal-wifi-statusbasr-not-connected"]:after {content:"\e8f7";}
88
-
89
- .mdi-device-signal-cellular-off, .mdi-device-signal-cellular-null, .mdi-device-signal-cellular-no-sim, .mdi-device-signal-wifi-off, .mdi-device-signal-wifi-4-bar, .mdi-device-signal-cellular-4-bar, .mdi-device-battery-alert, .mdi-device-signal-cellular-connected-no-internet-4-bar, .mdi-device-battery-std, .mdi-device-battery-full .mdi-device-battery-unknown {
90
- &:after {
91
- content: "";
92
- }
93
- }
94
-
95
- .mdi-fw {
96
- width: 1.28571429em;
97
- text-align: center;
98
- }
99
- .mdi-ul {
100
- padding-left: 0;
101
- margin-left: 2.14285714em;
102
- list-style-type: none;
103
- }
104
- .mdi-ul > li {
105
- position: relative;
106
- }
107
- .mdi-li {
108
- position: absolute;
109
- left: -2.14285714em;
110
- width: 2.14285714em;
111
- top: 0.14285714em;
112
- text-align: center;
113
- }
114
- .mdi-li.mdi-lg {
115
- left: -1.85714286em;
116
- }
117
- .mdi-border {
118
- padding: .2em .25em .15em;
119
- border: solid 0.08em #eeeeee;
120
- border-radius: .1em;
121
- }
122
-
123
- .mdi-spin {
124
- -webkit-animation: mdi-spin 2s infinite linear;
125
- animation: mdi-spin 2s infinite linear;
126
- -webkit-transform-origin: 50% 50%;
127
- -moz-transform-origin: 50% 50%;
128
- -o-transform-origin: 50% 50%;
129
- transform-origin: 50% 50%;
130
- }
131
- .mdi-pulse {
132
- -webkit-animation: mdi-spin 1s steps(8) infinite;
133
- animation: mdi-spin 1s steps(8) infinite ;
134
- -webkit-transform-origin: 50% 50%;
135
- -moz-transform-origin: 50% 50%;
136
- -o-transform-origin: 50% 50%;
137
- transform-origin: 50% 50%;
138
- }
139
- @-webkit-keyframes mdi-spin {
140
- 0% {
141
- -webkit-transform: rotate(0deg);
142
- transform: rotate(0deg);
143
- }
144
- 100% {
145
- -webkit-transform: rotate(359deg);
146
- transform: rotate(359deg);
147
- }
148
- }
149
- @keyframes mdi-spin {
150
- 0% {
151
- -webkit-transform: rotate(0deg);
152
- transform: rotate(0deg);
153
- }
154
- 100% {
155
- -webkit-transform: rotate(359deg);
156
- transform: rotate(359deg);
157
- }
158
- }
159
- .mdi-rotate-90 {
160
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
161
- -webkit-transform: rotate(90deg);
162
- -ms-transform: rotate(90deg);
163
- transform: rotate(90deg);
164
- }
165
- .mdi-rotate-180 {
166
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
167
- -webkit-transform: rotate(180deg);
168
- -ms-transform: rotate(180deg);
169
- transform: rotate(180deg);
170
- }
171
- .mdi-rotate-270 {
172
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
173
- -webkit-transform: rotate(270deg);
174
- -ms-transform: rotate(270deg);
175
- transform: rotate(270deg);
176
- }
177
- .mdi-flip-horizontal {
178
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
179
- -webkit-transform: scale(-1, 1);
180
- -ms-transform: scale(-1, 1);
181
- transform: scale(-1, 1);
182
- }
183
- .mdi-flip-vertical {
184
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
185
- -webkit-transform: scale(1, -1);
186
- -ms-transform: scale(1, -1);
187
- transform: scale(1, -1);
188
- }
189
- :root .mdi-rotate-90,
190
- :root .mdi-rotate-180,
191
- :root .mdi-rotate-270,
192
- :root .mdi-flip-horizontal,
193
- :root .mdi-flip-vertical {
194
- filter: none;
195
- }
196
- .mdi-stack {
197
- position: relative;
198
- display: inline-block;
199
- width: 2em;
200
- height: 2em;
201
- line-height: 2em;
202
- vertical-align: middle;
203
- }
204
- .mdi-stack-1x,
205
- .mdi-stack-2x {
206
- position: absolute;
207
- left: 0;
208
- width: 100%;
209
- text-align: center;
210
- }
211
- .mdi-stack-1x {
212
- line-height: inherit;
213
- }
214
- .mdi-stack-2x {
215
- font-size: 2em;
216
- }
217
- .mdi-inverse {
218
- color: #ffffff;
219
- }
220
-
221
-
222
- /* Start Icons */
223
-
224
-
225
- .mdi-action-3d-rotation:before {
226
- content: "\e600";
227
- }
228
-
229
- .mdi-action-accessibility:before {
230
- content: "\e601";
231
- }
232
-
233
- .mdi-action-account-balance-wallet:before {
234
- content: "\e602";
235
- }
236
-
237
- .mdi-action-account-balance:before {
238
- content: "\e603";
239
- }
240
-
241
- .mdi-action-account-box:before {
242
- content: "\e604";
243
- }
244
-
245
- .mdi-action-account-child:before {
246
- content: "\e605";
247
- }
248
-
249
- .mdi-action-account-circle:before {
250
- content: "\e606";
251
- }
252
-
253
- .mdi-action-add-shopping-cart:before {
254
- content: "\e607";
255
- }
256
-
257
- .mdi-action-alarm-add:before {
258
- content: "\e608";
259
- }
260
-
261
- .mdi-action-alarm-off:before {
262
- content: "\e609";
263
- }
264
-
265
- .mdi-action-alarm-on:before {
266
- content: "\e60a";
267
- }
268
-
269
- .mdi-action-alarm:before {
270
- content: "\e60b";
271
- }
272
-
273
- .mdi-action-android:before {
274
- content: "\e60c";
275
- }
276
-
277
- .mdi-action-announcement:before {
278
- content: "\e60d";
279
- }
280
-
281
- .mdi-action-aspect-ratio:before {
282
- content: "\e60e";
283
- }
284
-
285
- .mdi-action-assessment:before {
286
- content: "\e60f";
287
- }
288
-
289
- .mdi-action-assignment-ind:before {
290
- content: "\e610";
291
- }
292
-
293
- .mdi-action-assignment-late:before {
294
- content: "\e611";
295
- }
296
-
297
- .mdi-action-assignment-return:before {
298
- content: "\e612";
299
- }
300
-
301
- .mdi-action-assignment-returned:before {
302
- content: "\e613";
303
- }
304
-
305
- .mdi-action-assignment-turned-in:before {
306
- content: "\e614";
307
- }
308
-
309
- .mdi-action-assignment:before {
310
- content: "\e615";
311
- }
312
-
313
- .mdi-action-autorenew:before {
314
- content: "\e616";
315
- }
316
-
317
- .mdi-action-backup:before {
318
- content: "\e617";
319
- }
320
-
321
- .mdi-action-book:before {
322
- content: "\e618";
323
- }
324
-
325
- .mdi-action-bookmark-outline:before {
326
- content: "\e619";
327
- }
328
-
329
- .mdi-action-bookmark:before {
330
- content: "\e61a";
331
- }
332
-
333
- .mdi-action-bug-report:before {
334
- content: "\e61b";
335
- }
336
-
337
- .mdi-action-cached:before {
338
- content: "\e61c";
339
- }
340
-
341
- .mdi-action-check-circle:before {
342
- content: "\e61d";
343
- }
344
-
345
- .mdi-action-class:before {
346
- content: "\e61e";
347
- }
348
-
349
- .mdi-action-credit-card:before {
350
- content: "\e61f";
351
- }
352
-
353
- .mdi-action-dashboard:before {
354
- content: "\e620";
355
- }
356
-
357
- .mdi-action-delete:before {
358
- content: "\e621";
359
- }
360
-
361
- .mdi-action-description:before {
362
- content: "\e622";
363
- }
364
-
365
- .mdi-action-dns:before {
366
- content: "\e623";
367
- }
368
-
369
- .mdi-action-done-all:before {
370
- content: "\e624";
371
- }
372
-
373
- .mdi-action-done:before {
374
- content: "\e625";
375
- }
376
-
377
- .mdi-action-event:before {
378
- content: "\e626";
379
- }
380
-
381
- .mdi-action-exit-to-app:before {
382
- content: "\e627";
383
- }
384
-
385
- .mdi-action-explore:before {
386
- content: "\e628";
387
- }
388
-
389
- .mdi-action-extension:before {
390
- content: "\e629";
391
- }
392
-
393
- .mdi-action-face-unlock:before {
394
- content: "\e62a";
395
- }
396
-
397
- .mdi-action-favorite-outline:before {
398
- content: "\e62b";
399
- }
400
-
401
- .mdi-action-favorite:before {
402
- content: "\e62c";
403
- }
404
-
405
- .mdi-action-find-in-page:before {
406
- content: "\e62d";
407
- }
408
-
409
- .mdi-action-find-replace:before {
410
- content: "\e62e";
411
- }
412
-
413
- .mdi-action-flip-to-back:before {
414
- content: "\e62f";
415
- }
416
-
417
- .mdi-action-flip-to-front:before {
418
- content: "\e630";
419
- }
420
-
421
- .mdi-action-get-app:before {
422
- content: "\e631";
423
- }
424
-
425
- .mdi-action-grade:before {
426
- content: "\e632";
427
- }
428
-
429
- .mdi-action-group-work:before {
430
- content: "\e633";
431
- }
432
-
433
- .mdi-action-help:before {
434
- content: "\e634";
435
- }
436
-
437
- .mdi-action-highlight-remove:before {
438
- content: "\e635";
439
- }
440
-
441
- .mdi-action-history:before {
442
- content: "\e636";
443
- }
444
-
445
- .mdi-action-home:before {
446
- content: "\e637";
447
- }
448
-
449
- .mdi-action-https:before {
450
- content: "\e638";
451
- }
452
-
453
- .mdi-action-info-outline:before {
454
- content: "\e639";
455
- }
456
-
457
- .mdi-action-info:before {
458
- content: "\e63a";
459
- }
460
-
461
- .mdi-action-input:before {
462
- content: "\e63b";
463
- }
464
-
465
- .mdi-action-invert-colors:before {
466
- content: "\e63c";
467
- }
468
-
469
- .mdi-action-label-outline:before {
470
- content: "\e63d";
471
- }
472
-
473
- .mdi-action-label:before {
474
- content: "\e63e";
475
- }
476
-
477
- .mdi-action-language:before {
478
- content: "\e63f";
479
- }
480
-
481
- .mdi-action-launch:before {
482
- content: "\e640";
483
- }
484
-
485
- .mdi-action-list:before {
486
- content: "\e641";
487
- }
488
-
489
- .mdi-action-lock-open:before {
490
- content: "\e642";
491
- }
492
-
493
- .mdi-action-lock-outline:before {
494
- content: "\e643";
495
- }
496
-
497
- .mdi-action-lock:before {
498
- content: "\e644";
499
- }
500
-
501
- .mdi-action-loyalty:before {
502
- content: "\e645";
503
- }
504
-
505
- .mdi-action-markunread-mailbox:before {
506
- content: "\e646";
507
- }
508
-
509
- .mdi-action-note-add:before {
510
- content: "\e647";
511
- }
512
-
513
- .mdi-action-open-in-browser:before {
514
- content: "\e648";
515
- }
516
-
517
- .mdi-action-open-in-new:before {
518
- content: "\e649";
519
- }
520
-
521
- .mdi-action-open-with:before {
522
- content: "\e64a";
523
- }
524
-
525
- .mdi-action-pageview:before {
526
- content: "\e64b";
527
- }
528
-
529
- .mdi-action-payment:before {
530
- content: "\e64c";
531
- }
532
-
533
- .mdi-action-perm-camera-mic:before {
534
- content: "\e64d";
535
- }
536
-
537
- .mdi-action-perm-contact-cal:before {
538
- content: "\e64e";
539
- }
540
-
541
- .mdi-action-perm-data-setting:before {
542
- content: "\e64f";
543
- }
544
-
545
- .mdi-action-perm-device-info:before {
546
- content: "\e650";
547
- }
548
-
549
- .mdi-action-perm-identity:before {
550
- content: "\e651";
551
- }
552
-
553
- .mdi-action-perm-media:before {
554
- content: "\e652";
555
- }
556
-
557
- .mdi-action-perm-phone-msg:before {
558
- content: "\e653";
559
- }
560
-
561
- .mdi-action-perm-scan-wifi:before {
562
- content: "\e654";
563
- }
564
-
565
- .mdi-action-picture-in-picture:before {
566
- content: "\e655";
567
- }
568
-
569
- .mdi-action-polymer:before {
570
- content: "\e656";
571
- }
572
-
573
- .mdi-action-print:before {
574
- content: "\e657";
575
- }
576
-
577
- .mdi-action-query-builder:before {
578
- content: "\e658";
579
- }
580
-
581
- .mdi-action-question-answer:before {
582
- content: "\e659";
583
- }
584
-
585
- .mdi-action-receipt:before {
586
- content: "\e65a";
587
- }
588
-
589
- .mdi-action-redeem:before {
590
- content: "\e65b";
591
- }
592
-
593
- .mdi-action-reorder:before {
594
- content: "\e65c";
595
- }
596
-
597
- .mdi-action-report-problem:before {
598
- content: "\e65d";
599
- }
600
-
601
- .mdi-action-restore:before {
602
- content: "\e65e";
603
- }
604
-
605
- .mdi-action-room:before {
606
- content: "\e65f";
607
- }
608
-
609
- .mdi-action-schedule:before {
610
- content: "\e660";
611
- }
612
-
613
- .mdi-action-search:before {
614
- content: "\e661";
615
- }
616
-
617
- .mdi-action-settings-applications:before {
618
- content: "\e662";
619
- }
620
-
621
- .mdi-action-settings-backup-restore:before {
622
- content: "\e663";
623
- }
624
-
625
- .mdi-action-settings-bluetooth:before {
626
- content: "\e664";
627
- }
628
-
629
- .mdi-action-settings-cell:before {
630
- content: "\e665";
631
- }
632
-
633
- .mdi-action-settings-display:before {
634
- content: "\e666";
635
- }
636
-
637
- .mdi-action-settings-ethernet:before {
638
- content: "\e667";
639
- }
640
-
641
- .mdi-action-settings-input-antenna:before {
642
- content: "\e668";
643
- }
644
-
645
- .mdi-action-settings-input-component:before {
646
- content: "\e669";
647
- }
648
-
649
- .mdi-action-settings-input-composite:before {
650
- content: "\e66a";
651
- }
652
-
653
- .mdi-action-settings-input-hdmi:before {
654
- content: "\e66b";
655
- }
656
-
657
- .mdi-action-settings-input-svideo:before {
658
- content: "\e66c";
659
- }
660
-
661
- .mdi-action-settings-overscan:before {
662
- content: "\e66d";
663
- }
664
-
665
- .mdi-action-settings-phone:before {
666
- content: "\e66e";
667
- }
668
-
669
- .mdi-action-settings-power:before {
670
- content: "\e66f";
671
- }
672
-
673
- .mdi-action-settings-remote:before {
674
- content: "\e670";
675
- }
676
-
677
- .mdi-action-settings-voice:before {
678
- content: "\e671";
679
- }
680
-
681
- .mdi-action-settings:before {
682
- content: "\e672";
683
- }
684
-
685
- .mdi-action-shop-two:before {
686
- content: "\e673";
687
- }
688
-
689
- .mdi-action-shop:before {
690
- content: "\e674";
691
- }
692
-
693
- .mdi-action-shopping-basket:before {
694
- content: "\e675";
695
- }
696
-
697
- .mdi-action-shopping-cart:before {
698
- content: "\e676";
699
- }
700
-
701
- .mdi-action-speaker-notes:before {
702
- content: "\e677";
703
- }
704
-
705
- .mdi-action-spellcheck:before {
706
- content: "\e678";
707
- }
708
-
709
- .mdi-action-star-rate:before {
710
- content: "\e679";
711
- }
712
-
713
- .mdi-action-stars:before {
714
- content: "\e67a";
715
- }
716
-
717
- .mdi-action-store:before {
718
- content: "\e67b";
719
- }
720
-
721
- .mdi-action-subject:before {
722
- content: "\e67c";
723
- }
724
-
725
- .mdi-action-supervisor-account:before {
726
- content: "\e67d";
727
- }
728
-
729
- .mdi-action-swap-horiz:before {
730
- content: "\e67e";
731
- }
732
-
733
- .mdi-action-swap-vert-circle:before {
734
- content: "\e67f";
735
- }
736
-
737
- .mdi-action-swap-vert:before {
738
- content: "\e680";
739
- }
740
-
741
- .mdi-action-system-update-tv:before {
742
- content: "\e681";
743
- }
744
-
745
- .mdi-action-tab-unselected:before {
746
- content: "\e682";
747
- }
748
-
749
- .mdi-action-tab:before {
750
- content: "\e683";
751
- }
752
-
753
- .mdi-action-theaters:before {
754
- content: "\e684";
755
- }
756
-
757
- .mdi-action-thumb-down:before {
758
- content: "\e685";
759
- }
760
-
761
- .mdi-action-thumb-up:before {
762
- content: "\e686";
763
- }
764
-
765
- .mdi-action-thumbs-up-down:before {
766
- content: "\e687";
767
- }
768
-
769
- .mdi-action-toc:before {
770
- content: "\e688";
771
- }
772
-
773
- .mdi-action-today:before {
774
- content: "\e689";
775
- }
776
-
777
- .mdi-action-track-changes:before {
778
- content: "\e68a";
779
- }
780
-
781
- .mdi-action-translate:before {
782
- content: "\e68b";
783
- }
784
-
785
- .mdi-action-trending-down:before {
786
- content: "\e68c";
787
- }
788
-
789
- .mdi-action-trending-neutral:before {
790
- content: "\e68d";
791
- }
792
-
793
- .mdi-action-trending-up:before {
794
- content: "\e68e";
795
- }
796
-
797
- .mdi-action-turned-in-not:before {
798
- content: "\e68f";
799
- }
800
-
801
- .mdi-action-turned-in:before {
802
- content: "\e690";
803
- }
804
-
805
- .mdi-action-verified-user:before {
806
- content: "\e691";
807
- }
808
-
809
- .mdi-action-view-agenda:before {
810
- content: "\e692";
811
- }
812
-
813
- .mdi-action-view-array:before {
814
- content: "\e693";
815
- }
816
-
817
- .mdi-action-view-carousel:before {
818
- content: "\e694";
819
- }
820
-
821
- .mdi-action-view-column:before {
822
- content: "\e695";
823
- }
824
-
825
- .mdi-action-view-day:before {
826
- content: "\e696";
827
- }
828
-
829
- .mdi-action-view-headline:before {
830
- content: "\e697";
831
- }
832
-
833
- .mdi-action-view-list:before {
834
- content: "\e698";
835
- }
836
-
837
- .mdi-action-view-module:before {
838
- content: "\e699";
839
- }
840
-
841
- .mdi-action-view-quilt:before {
842
- content: "\e69a";
843
- }
844
-
845
- .mdi-action-view-stream:before {
846
- content: "\e69b";
847
- }
848
-
849
- .mdi-action-view-week:before {
850
- content: "\e69c";
851
- }
852
-
853
- .mdi-action-visibility-off:before {
854
- content: "\e69d";
855
- }
856
-
857
- .mdi-action-visibility:before {
858
- content: "\e69e";
859
- }
860
-
861
- .mdi-action-wallet-giftcard:before {
862
- content: "\e69f";
863
- }
864
-
865
- .mdi-action-wallet-membership:before {
866
- content: "\e6a0";
867
- }
868
-
869
- .mdi-action-wallet-travel:before {
870
- content: "\e6a1";
871
- }
872
-
873
- .mdi-action-work:before {
874
- content: "\e6a2";
875
- }
876
-
877
- .mdi-alert-error:before {
878
- content: "\e6a3";
879
- }
880
-
881
- .mdi-alert-warning:before {
882
- content: "\e6a4";
883
- }
884
-
885
- .mdi-av-album:before {
886
- content: "\e6a5";
887
- }
888
-
889
- .mdi-av-closed-caption:before {
890
- content: "\e6a6";
891
- }
892
-
893
- .mdi-av-equalizer:before {
894
- content: "\e6a7";
895
- }
896
-
897
- .mdi-av-explicit:before {
898
- content: "\e6a8";
899
- }
900
-
901
- .mdi-av-fast-forward:before {
902
- content: "\e6a9";
903
- }
904
-
905
- .mdi-av-fast-rewind:before {
906
- content: "\e6aa";
907
- }
908
-
909
- .mdi-av-games:before {
910
- content: "\e6ab";
911
- }
912
-
913
- .mdi-av-hearing:before {
914
- content: "\e6ac";
915
- }
916
-
917
- .mdi-av-high-quality:before {
918
- content: "\e6ad";
919
- }
920
-
921
- .mdi-av-loop:before {
922
- content: "\e6ae";
923
- }
924
-
925
- .mdi-av-mic-none:before {
926
- content: "\e6af";
927
- }
928
-
929
- .mdi-av-mic-off:before {
930
- content: "\e6b0";
931
- }
932
-
933
- .mdi-av-mic:before {
934
- content: "\e6b1";
935
- }
936
-
937
- .mdi-av-movie:before {
938
- content: "\e6b2";
939
- }
940
-
941
- .mdi-av-my-library-add:before {
942
- content: "\e6b3";
943
- }
944
-
945
- .mdi-av-my-library-books:before {
946
- content: "\e6b4";
947
- }
948
-
949
- .mdi-av-my-library-music:before {
950
- content: "\e6b5";
951
- }
952
-
953
- .mdi-av-new-releases:before {
954
- content: "\e6b6";
955
- }
956
-
957
- .mdi-av-not-interested:before {
958
- content: "\e6b7";
959
- }
960
-
961
- .mdi-av-pause-circle-fill:before {
962
- content: "\e6b8";
963
- }
964
-
965
- .mdi-av-pause-circle-outline:before {
966
- content: "\e6b9";
967
- }
968
-
969
- .mdi-av-pause:before {
970
- content: "\e6ba";
971
- }
972
-
973
- .mdi-av-play-arrow:before {
974
- content: "\e6bb";
975
- }
976
-
977
- .mdi-av-play-circle-fill:before {
978
- content: "\e6bc";
979
- }
980
-
981
- .mdi-av-play-circle-outline:before {
982
- content: "\e6bd";
983
- }
984
-
985
- .mdi-av-play-shopping-bag:before {
986
- content: "\e6be";
987
- }
988
-
989
- .mdi-av-playlist-add:before {
990
- content: "\e6bf";
991
- }
992
-
993
- .mdi-av-queue-music:before {
994
- content: "\e6c0";
995
- }
996
-
997
- .mdi-av-queue:before {
998
- content: "\e6c1";
999
- }
1000
-
1001
- .mdi-av-radio:before {
1002
- content: "\e6c2";
1003
- }
1004
-
1005
- .mdi-av-recent-actors:before {
1006
- content: "\e6c3";
1007
- }
1008
-
1009
- .mdi-av-repeat-one:before {
1010
- content: "\e6c4";
1011
- }
1012
-
1013
- .mdi-av-repeat:before {
1014
- content: "\e6c5";
1015
- }
1016
-
1017
- .mdi-av-replay:before {
1018
- content: "\e6c6";
1019
- }
1020
-
1021
- .mdi-av-shuffle:before {
1022
- content: "\e6c7";
1023
- }
1024
-
1025
- .mdi-av-skip-next:before {
1026
- content: "\e6c8";
1027
- }
1028
-
1029
- .mdi-av-skip-previous:before {
1030
- content: "\e6c9";
1031
- }
1032
-
1033
- .mdi-av-snooze:before {
1034
- content: "\e6ca";
1035
- }
1036
-
1037
- .mdi-av-stop:before {
1038
- content: "\e6cb";
1039
- }
1040
-
1041
- .mdi-av-subtitles:before {
1042
- content: "\e6cc";
1043
- }
1044
-
1045
- .mdi-av-surround-sound:before {
1046
- content: "\e6cd";
1047
- }
1048
-
1049
- .mdi-av-timer:before {
1050
- content: "\e6ce";
1051
- }
1052
-
1053
- .mdi-av-video-collection:before {
1054
- content: "\e6cf";
1055
- }
1056
-
1057
- .mdi-av-videocam-off:before {
1058
- content: "\e6d0";
1059
- }
1060
-
1061
- .mdi-av-videocam:before {
1062
- content: "\e6d1";
1063
- }
1064
-
1065
- .mdi-av-volume-down:before {
1066
- content: "\e6d2";
1067
- }
1068
-
1069
- .mdi-av-volume-mute:before {
1070
- content: "\e6d3";
1071
- }
1072
-
1073
- .mdi-av-volume-off:before {
1074
- content: "\e6d4";
1075
- }
1076
-
1077
- .mdi-av-volume-up:before {
1078
- content: "\e6d5";
1079
- }
1080
-
1081
- .mdi-av-web:before {
1082
- content: "\e6d6";
1083
- }
1084
-
1085
- .mdi-communication-business:before {
1086
- content: "\e6d7";
1087
- }
1088
-
1089
- .mdi-communication-call-end:before {
1090
- content: "\e6d8";
1091
- }
1092
-
1093
- .mdi-communication-call-made:before {
1094
- content: "\e6d9";
1095
- }
1096
-
1097
- .mdi-communication-call-merge:before {
1098
- content: "\e6da";
1099
- }
1100
-
1101
- .mdi-communication-call-missed:before {
1102
- content: "\e6db";
1103
- }
1104
-
1105
- .mdi-communication-call-received:before {
1106
- content: "\e6dc";
1107
- }
1108
-
1109
- .mdi-communication-call-split:before {
1110
- content: "\e6dd";
1111
- }
1112
-
1113
- .mdi-communication-call:before {
1114
- content: "\e6de";
1115
- }
1116
-
1117
- .mdi-communication-chat:before {
1118
- content: "\e6df";
1119
- }
1120
-
1121
- .mdi-communication-clear-all:before {
1122
- content: "\e6e0";
1123
- }
1124
-
1125
- .mdi-communication-comment:before {
1126
- content: "\e6e1";
1127
- }
1128
-
1129
- .mdi-communication-contacts:before {
1130
- content: "\e6e2";
1131
- }
1132
-
1133
- .mdi-communication-dialer-sip:before {
1134
- content: "\e6e3";
1135
- }
1136
-
1137
- .mdi-communication-dialpad:before {
1138
- content: "\e6e4";
1139
- }
1140
-
1141
- .mdi-communication-dnd-on:before {
1142
- content: "\e6e5";
1143
- }
1144
-
1145
- .mdi-communication-email:before {
1146
- content: "\e6e6";
1147
- }
1148
-
1149
- .mdi-communication-forum:before {
1150
- content: "\e6e7";
1151
- }
1152
-
1153
- .mdi-communication-import-export:before {
1154
- content: "\e6e8";
1155
- }
1156
-
1157
- .mdi-communication-invert-colors-off:before {
1158
- content: "\e6e9";
1159
- }
1160
-
1161
- .mdi-communication-invert-colors-on:before {
1162
- content: "\e6ea";
1163
- }
1164
-
1165
- .mdi-communication-live-help:before {
1166
- content: "\e6eb";
1167
- }
1168
-
1169
- .mdi-communication-location-off:before {
1170
- content: "\e6ec";
1171
- }
1172
-
1173
- .mdi-communication-location-on:before {
1174
- content: "\e6ed";
1175
- }
1176
-
1177
- .mdi-communication-message:before {
1178
- content: "\e6ee";
1179
- }
1180
-
1181
- .mdi-communication-messenger:before {
1182
- content: "\e6ef";
1183
- }
1184
-
1185
- .mdi-communication-no-sim:before {
1186
- content: "\e6f0";
1187
- }
1188
-
1189
- .mdi-communication-phone:before {
1190
- content: "\e6f1";
1191
- }
1192
-
1193
- .mdi-communication-portable-wifi-off:before {
1194
- content: "\e6f2";
1195
- }
1196
-
1197
- .mdi-communication-quick-contacts-dialer:before {
1198
- content: "\e6f3";
1199
- }
1200
-
1201
- .mdi-communication-quick-contacts-mail:before {
1202
- content: "\e6f4";
1203
- }
1204
-
1205
- .mdi-communication-ring-volume:before {
1206
- content: "\e6f5";
1207
- }
1208
-
1209
- .mdi-communication-stay-current-landscape:before {
1210
- content: "\e6f6";
1211
- }
1212
-
1213
- .mdi-communication-stay-current-portrait:before {
1214
- content: "\e6f7";
1215
- }
1216
-
1217
- .mdi-communication-stay-primary-landscape:before {
1218
- content: "\e6f8";
1219
- }
1220
-
1221
- .mdi-communication-stay-primary-portrait:before {
1222
- content: "\e6f9";
1223
- }
1224
-
1225
- .mdi-communication-swap-calls:before {
1226
- content: "\e6fa";
1227
- }
1228
-
1229
- .mdi-communication-textsms:before {
1230
- content: "\e6fb";
1231
- }
1232
-
1233
- .mdi-communication-voicemail:before {
1234
- content: "\e6fc";
1235
- }
1236
-
1237
- .mdi-communication-vpn-key:before {
1238
- content: "\e6fd";
1239
- }
1240
-
1241
- .mdi-content-add-box:before {
1242
- content: "\e6fe";
1243
- }
1244
-
1245
- .mdi-content-add-circle-outline:before {
1246
- content: "\e6ff";
1247
- }
1248
-
1249
- .mdi-content-add-circle:before {
1250
- content: "\e700";
1251
- }
1252
-
1253
- .mdi-content-add:before {
1254
- content: "\e701";
1255
- }
1256
-
1257
- .mdi-content-archive:before {
1258
- content: "\e702";
1259
- }
1260
-
1261
- .mdi-content-backspace:before {
1262
- content: "\e703";
1263
- }
1264
-
1265
- .mdi-content-block:before {
1266
- content: "\e704";
1267
- }
1268
-
1269
- .mdi-content-clear:before {
1270
- content: "\e705";
1271
- }
1272
-
1273
- .mdi-content-content-copy:before {
1274
- content: "\e706";
1275
- }
1276
-
1277
- .mdi-content-content-cut:before {
1278
- content: "\e707";
1279
- }
1280
-
1281
- .mdi-content-content-paste:before {
1282
- content: "\e708";
1283
- }
1284
-
1285
- .mdi-content-create:before {
1286
- content: "\e709";
1287
- }
1288
-
1289
- .mdi-content-drafts:before {
1290
- content: "\e70a";
1291
- }
1292
-
1293
- .mdi-content-filter-list:before {
1294
- content: "\e70b";
1295
- }
1296
-
1297
- .mdi-content-flag:before {
1298
- content: "\e70c";
1299
- }
1300
-
1301
- .mdi-content-forward:before {
1302
- content: "\e70d";
1303
- }
1304
-
1305
- .mdi-content-gesture:before {
1306
- content: "\e70e";
1307
- }
1308
-
1309
- .mdi-content-inbox:before {
1310
- content: "\e70f";
1311
- }
1312
-
1313
- .mdi-content-link:before {
1314
- content: "\e710";
1315
- }
1316
-
1317
- .mdi-content-mail:before {
1318
- content: "\e711";
1319
- }
1320
-
1321
- .mdi-content-markunread:before {
1322
- content: "\e712";
1323
- }
1324
-
1325
- .mdi-content-redo:before {
1326
- content: "\e713";
1327
- }
1328
-
1329
- .mdi-content-remove-circle-outline:before {
1330
- content: "\e714";
1331
- }
1332
-
1333
- .mdi-content-remove-circle:before {
1334
- content: "\e715";
1335
- }
1336
-
1337
- .mdi-content-remove:before {
1338
- content: "\e716";
1339
- }
1340
-
1341
- .mdi-content-reply-all:before {
1342
- content: "\e717";
1343
- }
1344
-
1345
- .mdi-content-reply:before {
1346
- content: "\e718";
1347
- }
1348
-
1349
- .mdi-content-report:before {
1350
- content: "\e719";
1351
- }
1352
-
1353
- .mdi-content-save:before {
1354
- content: "\e71a";
1355
- }
1356
-
1357
- .mdi-content-select-all:before {
1358
- content: "\e71b";
1359
- }
1360
-
1361
- .mdi-content-send:before {
1362
- content: "\e71c";
1363
- }
1364
-
1365
- .mdi-content-sort:before {
1366
- content: "\e71d";
1367
- }
1368
-
1369
- .mdi-content-text-format:before {
1370
- content: "\e71e";
1371
- }
1372
-
1373
- .mdi-content-undo:before {
1374
- content: "\e71f";
1375
- }
1376
-
1377
- .mdi-editor-attach-file:before {
1378
- content: "\e776";
1379
- }
1380
-
1381
- .mdi-editor-attach-money:before {
1382
- content: "\e777";
1383
- }
1384
-
1385
- .mdi-editor-border-all:before {
1386
- content: "\e778";
1387
- }
1388
-
1389
- .mdi-editor-border-bottom:before {
1390
- content: "\e779";
1391
- }
1392
-
1393
- .mdi-editor-border-clear:before {
1394
- content: "\e77a";
1395
- }
1396
-
1397
- .mdi-editor-border-color:before {
1398
- content: "\e77b";
1399
- }
1400
-
1401
- .mdi-editor-border-horizontal:before {
1402
- content: "\e77c";
1403
- }
1404
-
1405
- .mdi-editor-border-inner:before {
1406
- content: "\e77d";
1407
- }
1408
-
1409
- .mdi-editor-border-left:before {
1410
- content: "\e77e";
1411
- }
1412
-
1413
- .mdi-editor-border-outer:before {
1414
- content: "\e77f";
1415
- }
1416
-
1417
- .mdi-editor-border-right:before {
1418
- content: "\e780";
1419
- }
1420
-
1421
- .mdi-editor-border-style:before {
1422
- content: "\e781";
1423
- }
1424
-
1425
- .mdi-editor-border-top:before {
1426
- content: "\e782";
1427
- }
1428
-
1429
- .mdi-editor-border-vertical:before {
1430
- content: "\e783";
1431
- }
1432
-
1433
- .mdi-editor-format-align-center:before {
1434
- content: "\e784";
1435
- }
1436
-
1437
- .mdi-editor-format-align-justify:before {
1438
- content: "\e785";
1439
- }
1440
-
1441
- .mdi-editor-format-align-left:before {
1442
- content: "\e786";
1443
- }
1444
-
1445
- .mdi-editor-format-align-right:before {
1446
- content: "\e787";
1447
- }
1448
-
1449
- .mdi-editor-format-bold:before {
1450
- content: "\e788";
1451
- }
1452
-
1453
- .mdi-editor-format-clear:before {
1454
- content: "\e789";
1455
- }
1456
-
1457
- .mdi-editor-format-color-fill:before {
1458
- content: "\e78a";
1459
- }
1460
-
1461
- .mdi-editor-format-color-reset:before {
1462
- content: "\e78b";
1463
- }
1464
-
1465
- .mdi-editor-format-color-text:before {
1466
- content: "\e78c";
1467
- }
1468
-
1469
- .mdi-editor-format-indent-decrease:before {
1470
- content: "\e78d";
1471
- }
1472
-
1473
- .mdi-editor-format-indent-increase:before {
1474
- content: "\e78e";
1475
- }
1476
-
1477
- .mdi-editor-format-italic:before {
1478
- content: "\e78f";
1479
- }
1480
-
1481
- .mdi-editor-format-line-spacing:before {
1482
- content: "\e790";
1483
- }
1484
-
1485
- .mdi-editor-format-list-bulleted:before {
1486
- content: "\e791";
1487
- }
1488
-
1489
- .mdi-editor-format-list-numbered:before {
1490
- content: "\e792";
1491
- }
1492
-
1493
- .mdi-editor-format-paint:before {
1494
- content: "\e793";
1495
- }
1496
-
1497
- .mdi-editor-format-quote:before {
1498
- content: "\e794";
1499
- }
1500
-
1501
- .mdi-editor-format-size:before {
1502
- content: "\e795";
1503
- }
1504
-
1505
- .mdi-editor-format-strikethrough:before {
1506
- content: "\e796";
1507
- }
1508
-
1509
- .mdi-editor-format-textdirection-l-to-r:before {
1510
- content: "\e797";
1511
- }
1512
-
1513
- .mdi-editor-format-textdirection-r-to-l:before {
1514
- content: "\e798";
1515
- }
1516
-
1517
- .mdi-editor-format-underline:before {
1518
- content: "\e799";
1519
- }
1520
-
1521
- .mdi-editor-functions:before {
1522
- content: "\e79a";
1523
- }
1524
-
1525
- .mdi-editor-insert-chart:before {
1526
- content: "\e79b";
1527
- }
1528
-
1529
- .mdi-editor-insert-comment:before {
1530
- content: "\e79c";
1531
- }
1532
-
1533
- .mdi-editor-insert-drive-file:before {
1534
- content: "\e79d";
1535
- }
1536
-
1537
- .mdi-editor-insert-emoticon:before {
1538
- content: "\e79e";
1539
- }
1540
-
1541
- .mdi-editor-insert-invitation:before {
1542
- content: "\e79f";
1543
- }
1544
-
1545
- .mdi-editor-insert-link:before {
1546
- content: "\e7a0";
1547
- }
1548
-
1549
- .mdi-editor-insert-photo:before {
1550
- content: "\e7a1";
1551
- }
1552
-
1553
- .mdi-editor-merge-type:before {
1554
- content: "\e7a2";
1555
- }
1556
-
1557
- .mdi-editor-mode-comment:before {
1558
- content: "\e7a3";
1559
- }
1560
-
1561
- .mdi-editor-mode-edit:before {
1562
- content: "\e7a4";
1563
- }
1564
-
1565
- .mdi-editor-publish:before {
1566
- content: "\e7a5";
1567
- }
1568
-
1569
- .mdi-editor-vertical-align-bottom:before {
1570
- content: "\e7a6";
1571
- }
1572
-
1573
- .mdi-editor-vertical-align-center:before {
1574
- content: "\e7a7";
1575
- }
1576
-
1577
- .mdi-editor-vertical-align-top:before {
1578
- content: "\e7a8";
1579
- }
1580
-
1581
- .mdi-editor-wrap-text:before {
1582
- content: "\e7a9";
1583
- }
1584
-
1585
- .mdi-file-attachment:before {
1586
- content: "\e7aa";
1587
- }
1588
-
1589
- .mdi-file-cloud-circle:before {
1590
- content: "\e7ab";
1591
- }
1592
-
1593
- .mdi-file-cloud-done:before {
1594
- content: "\e7ac";
1595
- }
1596
-
1597
- .mdi-file-cloud-download:before {
1598
- content: "\e7ad";
1599
- }
1600
-
1601
- .mdi-file-cloud-off:before {
1602
- content: "\e7ae";
1603
- }
1604
-
1605
- .mdi-file-cloud-queue:before {
1606
- content: "\e7af";
1607
- }
1608
-
1609
- .mdi-file-cloud-upload:before {
1610
- content: "\e7b0";
1611
- }
1612
-
1613
- .mdi-file-cloud:before {
1614
- content: "\e7b1";
1615
- }
1616
-
1617
- .mdi-file-file-download:before {
1618
- content: "\e7b2";
1619
- }
1620
-
1621
- .mdi-file-file-upload:before {
1622
- content: "\e7b3";
1623
- }
1624
-
1625
- .mdi-file-folder-open:before {
1626
- content: "\e7b4";
1627
- }
1628
-
1629
- .mdi-file-folder-shared:before {
1630
- content: "\e7b5";
1631
- }
1632
-
1633
- .mdi-file-folder:before {
1634
- content: "\e7b6";
1635
- }
1636
-
1637
- .mdi-device-access-alarm:before {
1638
- content: "\e720";
1639
- }
1640
-
1641
- .mdi-device-access-alarms:before {
1642
- content: "\e721";
1643
- }
1644
-
1645
- .mdi-device-access-time:before {
1646
- content: "\e722";
1647
- }
1648
-
1649
- .mdi-device-add-alarm:before {
1650
- content: "\e723";
1651
- }
1652
-
1653
- .mdi-device-airplanemode-off:before {
1654
- content: "\e724";
1655
- }
1656
-
1657
- .mdi-device-airplanemode-on:before {
1658
- content: "\e725";
1659
- }
1660
-
1661
- .mdi-device-battery-20:before {
1662
- content: "\e726";
1663
- }
1664
-
1665
- .mdi-device-battery-30:before {
1666
- content: "\e727";
1667
- }
1668
-
1669
- .mdi-device-battery-50:before {
1670
- content: "\e728";
1671
- }
1672
-
1673
- .mdi-device-battery-60:before {
1674
- content: "\e729";
1675
- }
1676
-
1677
- .mdi-device-battery-80:before {
1678
- content: "\e72a";
1679
- }
1680
-
1681
- .mdi-device-battery-90:before {
1682
- content: "\e72b";
1683
- }
1684
-
1685
- .mdi-device-battery-alert:before {
1686
- content: "\e72c";
1687
- }
1688
-
1689
- .mdi-device-battery-charging-20:before {
1690
- content: "\e72d";
1691
- }
1692
-
1693
- .mdi-device-battery-charging-30:before {
1694
- content: "\e72e";
1695
- }
1696
-
1697
- .mdi-device-battery-charging-50:before {
1698
- content: "\e72f";
1699
- }
1700
-
1701
- .mdi-device-battery-charging-60:before {
1702
- content: "\e730";
1703
- }
1704
-
1705
- .mdi-device-battery-charging-80:before {
1706
- content: "\e731";
1707
- }
1708
-
1709
- .mdi-device-battery-charging-90:before {
1710
- content: "\e732";
1711
- }
1712
-
1713
- .mdi-device-battery-charging-full:before {
1714
- content: "\e733";
1715
- }
1716
-
1717
- .mdi-device-battery-full:before {
1718
- content: "\e734";
1719
- }
1720
-
1721
- .mdi-device-battery-std:before {
1722
- content: "\e735";
1723
- }
1724
-
1725
- .mdi-device-battery-unknown:before {
1726
- content: "\e736";
1727
- }
1728
-
1729
- .mdi-device-bluetooth-connected:before {
1730
- content: "\e737";
1731
- }
1732
-
1733
- .mdi-device-bluetooth-disabled:before {
1734
- content: "\e738";
1735
- }
1736
-
1737
- .mdi-device-bluetooth-searching:before {
1738
- content: "\e739";
1739
- }
1740
-
1741
- .mdi-device-bluetooth:before {
1742
- content: "\e73a";
1743
- }
1744
-
1745
- .mdi-device-brightness-auto:before {
1746
- content: "\e73b";
1747
- }
1748
-
1749
- .mdi-device-brightness-high:before {
1750
- content: "\e73c";
1751
- }
1752
-
1753
- .mdi-device-brightness-low:before {
1754
- content: "\e73d";
1755
- }
1756
-
1757
- .mdi-device-brightness-medium:before {
1758
- content: "\e73e";
1759
- }
1760
-
1761
- .mdi-device-data-usage:before {
1762
- content: "\e73f";
1763
- }
1764
-
1765
- .mdi-device-developer-mode:before {
1766
- content: "\e740";
1767
- }
1768
-
1769
- .mdi-device-devices:before {
1770
- content: "\e741";
1771
- }
1772
-
1773
- .mdi-device-dvr:before {
1774
- content: "\e742";
1775
- }
1776
-
1777
- .mdi-device-gps-fixed:before {
1778
- content: "\e743";
1779
- }
1780
-
1781
- .mdi-device-gps-not-fixed:before {
1782
- content: "\e744";
1783
- }
1784
-
1785
- .mdi-device-gps-off:before {
1786
- content: "\e745";
1787
- }
1788
-
1789
- .mdi-device-location-disabled:before {
1790
- content: "\e746";
1791
- }
1792
-
1793
- .mdi-device-location-searching:before {
1794
- content: "\e747";
1795
- }
1796
-
1797
- .mdi-device-multitrack-audio:before {
1798
- content: "\e748";
1799
- }
1800
-
1801
- .mdi-device-network-cell:before {
1802
- content: "\e749";
1803
- }
1804
-
1805
- .mdi-device-network-wifi:before {
1806
- content: "\e74a";
1807
- }
1808
-
1809
- .mdi-device-nfc:before {
1810
- content: "\e74b";
1811
- }
1812
-
1813
- .mdi-device-now-wallpaper:before {
1814
- content: "\e74c";
1815
- }
1816
-
1817
- .mdi-device-now-widgets:before {
1818
- content: "\e74d";
1819
- }
1820
-
1821
- .mdi-device-screen-lock-landscape:before {
1822
- content: "\e74e";
1823
- }
1824
-
1825
- .mdi-device-screen-lock-portrait:before {
1826
- content: "\e74f";
1827
- }
1828
-
1829
- .mdi-device-screen-lock-rotation:before {
1830
- content: "\e750";
1831
- }
1832
-
1833
- .mdi-device-screen-rotation:before {
1834
- content: "\e751";
1835
- }
1836
-
1837
- .mdi-device-sd-storage:before {
1838
- content: "\e752";
1839
- }
1840
-
1841
- .mdi-device-settings-system-daydream:before {
1842
- content: "\e753";
1843
- }
1844
-
1845
- .mdi-device-signal-cellular-0-bar:before {
1846
- content: "\e754";
1847
- }
1848
-
1849
- .mdi-device-signal-cellular-1-bar:before {
1850
- content: "\e755";
1851
- }
1852
-
1853
- .mdi-device-signal-cellular-2-bar:before {
1854
- content: "\e756";
1855
- }
1856
-
1857
- .mdi-device-signal-cellular-3-bar:before {
1858
- content: "\e757";
1859
- }
1860
-
1861
- .mdi-device-signal-cellular-4-bar:before {
1862
- content: "\e758";
1863
- }
1864
-
1865
- .mdi-signal-wifi-statusbar-connected-no-internet-after:before {
1866
- content: "\e8f6";
1867
- }
1868
-
1869
- .mdi-device-signal-cellular-connected-no-internet-0-bar:before {
1870
- content: "\e759";
1871
- }
1872
-
1873
- .mdi-device-signal-cellular-connected-no-internet-1-bar:before {
1874
- content: "\e75a";
1875
- }
1876
-
1877
- .mdi-device-signal-cellular-connected-no-internet-2-bar:before {
1878
- content: "\e75b";
1879
- }
1880
-
1881
- .mdi-device-signal-cellular-connected-no-internet-3-bar:before {
1882
- content: "\e75c";
1883
- }
1884
-
1885
- .mdi-device-signal-cellular-connected-no-internet-4-bar:before {
1886
- content: "\e75d";
1887
- }
1888
-
1889
- .mdi-device-signal-cellular-no-sim:before {
1890
- content: "\e75e";
1891
- }
1892
-
1893
- .mdi-device-signal-cellular-null:before {
1894
- content: "\e75f";
1895
- }
1896
-
1897
- .mdi-device-signal-cellular-off:before {
1898
- content: "\e760";
1899
- }
1900
-
1901
- .mdi-device-signal-wifi-0-bar:before {
1902
- content: "\e761";
1903
- }
1904
-
1905
- .mdi-device-signal-wifi-1-bar:before {
1906
- content: "\e762";
1907
- }
1908
-
1909
- .mdi-device-signal-wifi-2-bar:before {
1910
- content: "\e763";
1911
- }
1912
-
1913
- .mdi-device-signal-wifi-3-bar:before {
1914
- content: "\e764";
1915
- }
1916
-
1917
- .mdi-device-signal-wifi-4-bar:before {
1918
- content: "\e765";
1919
- }
1920
-
1921
- .mdi-device-signal-wifi-off:before {
1922
- content: "\e766";
1923
- }
1924
-
1925
- .mdi-device-signal-wifi-statusbar-1-bar:before {
1926
- content: "\e767";
1927
- }
1928
-
1929
- .mdi-device-signal-wifi-statusbar-2-bar:before {
1930
- content: "\e768";
1931
- }
1932
-
1933
- .mdi-device-signal-wifi-statusbar-3-bar:before {
1934
- content: "\e769";
1935
- }
1936
-
1937
- .mdi-device-signal-wifi-statusbar-4-bar:before {
1938
- content: "\e76a";
1939
- }
1940
-
1941
- .mdi-device-signal-wifi-statusbar-connected-no-internet-:before {
1942
- content: "\e76b";
1943
- }
1944
-
1945
- .mdi-device-signal-wifi-statusbar-connected-no-internet:before {
1946
- content: "\e76f";
1947
- }
1948
-
1949
- .mdi-device-signal-wifi-statusbar-connected-no-internet-2:before {
1950
- content: "\e76c";
1951
- }
1952
-
1953
- .mdi-device-signal-wifi-statusbar-connected-no-internet-3:before {
1954
- content: "\e76d";
1955
- }
1956
-
1957
- .mdi-device-signal-wifi-statusbar-connected-no-internet-4:before {
1958
- content: "\e76e";
1959
- }
1960
-
1961
- .mdi-signal-wifi-statusbar-not-connected-after:before {
1962
- content: "\e8f7";
1963
- }
1964
-
1965
- .mdi-device-signal-wifi-statusbar-not-connected:before {
1966
- content: "\e770";
1967
- }
1968
-
1969
- .mdi-device-signal-wifi-statusbar-null:before {
1970
- content: "\e771";
1971
- }
1972
-
1973
- .mdi-device-storage:before {
1974
- content: "\e772";
1975
- }
1976
-
1977
- .mdi-device-usb:before {
1978
- content: "\e773";
1979
- }
1980
-
1981
- .mdi-device-wifi-lock:before {
1982
- content: "\e774";
1983
- }
1984
-
1985
- .mdi-device-wifi-tethering:before {
1986
- content: "\e775";
1987
- }
1988
-
1989
- .mdi-hardware-cast-connected:before {
1990
- content: "\e7b7";
1991
- }
1992
-
1993
- .mdi-hardware-cast:before {
1994
- content: "\e7b8";
1995
- }
1996
-
1997
- .mdi-hardware-computer:before {
1998
- content: "\e7b9";
1999
- }
2000
-
2001
- .mdi-hardware-desktop-mac:before {
2002
- content: "\e7ba";
2003
- }
2004
-
2005
- .mdi-hardware-desktop-windows:before {
2006
- content: "\e7bb";
2007
- }
2008
-
2009
- .mdi-hardware-dock:before {
2010
- content: "\e7bc";
2011
- }
2012
-
2013
- .mdi-hardware-gamepad:before {
2014
- content: "\e7bd";
2015
- }
2016
-
2017
- .mdi-hardware-headset-mic:before {
2018
- content: "\e7be";
2019
- }
2020
-
2021
- .mdi-hardware-headset:before {
2022
- content: "\e7bf";
2023
- }
2024
-
2025
- .mdi-hardware-keyboard-alt:before {
2026
- content: "\e7c0";
2027
- }
2028
-
2029
- .mdi-hardware-keyboard-arrow-down:before {
2030
- content: "\e7c1";
2031
- }
2032
-
2033
- .mdi-hardware-keyboard-arrow-left:before {
2034
- content: "\e7c2";
2035
- }
2036
-
2037
- .mdi-hardware-keyboard-arrow-right:before {
2038
- content: "\e7c3";
2039
- }
2040
-
2041
- .mdi-hardware-keyboard-arrow-up:before {
2042
- content: "\e7c4";
2043
- }
2044
-
2045
- .mdi-hardware-keyboard-backspace:before {
2046
- content: "\e7c5";
2047
- }
2048
-
2049
- .mdi-hardware-keyboard-capslock:before {
2050
- content: "\e7c6";
2051
- }
2052
-
2053
- .mdi-hardware-keyboard-control:before {
2054
- content: "\e7c7";
2055
- }
2056
-
2057
- .mdi-hardware-keyboard-hide:before {
2058
- content: "\e7c8";
2059
- }
2060
-
2061
- .mdi-hardware-keyboard-return:before {
2062
- content: "\e7c9";
2063
- }
2064
-
2065
- .mdi-hardware-keyboard-tab:before {
2066
- content: "\e7ca";
2067
- }
2068
-
2069
- .mdi-hardware-keyboard-voice:before {
2070
- content: "\e7cb";
2071
- }
2072
-
2073
- .mdi-hardware-keyboard:before {
2074
- content: "\e7cc";
2075
- }
2076
-
2077
- .mdi-hardware-laptop-chromebook:before {
2078
- content: "\e7cd";
2079
- }
2080
-
2081
- .mdi-hardware-laptop-mac:before {
2082
- content: "\e7ce";
2083
- }
2084
-
2085
- .mdi-hardware-laptop-windows:before {
2086
- content: "\e7cf";
2087
- }
2088
-
2089
- .mdi-hardware-laptop:before {
2090
- content: "\e7d0";
2091
- }
2092
-
2093
- .mdi-hardware-memory:before {
2094
- content: "\e7d1";
2095
- }
2096
-
2097
- .mdi-hardware-mouse:before {
2098
- content: "\e7d2";
2099
- }
2100
-
2101
- .mdi-hardware-phone-android:before {
2102
- content: "\e7d3";
2103
- }
2104
-
2105
- .mdi-hardware-phone-iphone:before {
2106
- content: "\e7d4";
2107
- }
2108
-
2109
- .mdi-hardware-phonelink-off:before {
2110
- content: "\e7d5";
2111
- }
2112
-
2113
- .mdi-hardware-phonelink:before {
2114
- content: "\e7d6";
2115
- }
2116
-
2117
- .mdi-hardware-security:before {
2118
- content: "\e7d7";
2119
- }
2120
-
2121
- .mdi-hardware-sim-card:before {
2122
- content: "\e7d8";
2123
- }
2124
-
2125
- .mdi-hardware-smartphone:before {
2126
- content: "\e7d9";
2127
- }
2128
-
2129
- .mdi-hardware-speaker:before {
2130
- content: "\e7da";
2131
- }
2132
-
2133
- .mdi-hardware-tablet-android:before {
2134
- content: "\e7db";
2135
- }
2136
-
2137
- .mdi-hardware-tablet-mac:before {
2138
- content: "\e7dc";
2139
- }
2140
-
2141
- .mdi-hardware-tablet:before {
2142
- content: "\e7dd";
2143
- }
2144
-
2145
- .mdi-hardware-tv:before {
2146
- content: "\e7de";
2147
- }
2148
-
2149
- .mdi-hardware-watch:before {
2150
- content: "\e7df";
2151
- }
2152
-
2153
- .mdi-image-add-to-photos:before {
2154
- content: "\e7e0";
2155
- }
2156
-
2157
- .mdi-image-adjust:before {
2158
- content: "\e7e1";
2159
- }
2160
-
2161
- .mdi-image-assistant-photo:before {
2162
- content: "\e7e2";
2163
- }
2164
-
2165
- .mdi-image-audiotrack:before {
2166
- content: "\e7e3";
2167
- }
2168
-
2169
- .mdi-image-blur-circular:before {
2170
- content: "\e7e4";
2171
- }
2172
-
2173
- .mdi-image-blur-linear:before {
2174
- content: "\e7e5";
2175
- }
2176
-
2177
- .mdi-image-blur-off:before {
2178
- content: "\e7e6";
2179
- }
2180
-
2181
- .mdi-image-blur-on:before {
2182
- content: "\e7e7";
2183
- }
2184
-
2185
- .mdi-image-brightness-1:before {
2186
- content: "\e7e8";
2187
- }
2188
-
2189
- .mdi-image-brightness-2:before {
2190
- content: "\e7e9";
2191
- }
2192
-
2193
- .mdi-image-brightness-3:before {
2194
- content: "\e7ea";
2195
- }
2196
-
2197
- .mdi-image-brightness-4:before {
2198
- content: "\e7eb";
2199
- }
2200
-
2201
- .mdi-image-brightness-5:before {
2202
- content: "\e7ec";
2203
- }
2204
-
2205
- .mdi-image-brightness-6:before {
2206
- content: "\e7ed";
2207
- }
2208
-
2209
- .mdi-image-brightness-7:before {
2210
- content: "\e7ee";
2211
- }
2212
-
2213
- .mdi-image-brush:before {
2214
- content: "\e7ef";
2215
- }
2216
-
2217
- .mdi-image-camera-alt:before {
2218
- content: "\e7f0";
2219
- }
2220
-
2221
- .mdi-image-camera-front:before {
2222
- content: "\e7f1";
2223
- }
2224
-
2225
- .mdi-image-camera-rear:before {
2226
- content: "\e7f2";
2227
- }
2228
-
2229
- .mdi-image-camera-roll:before {
2230
- content: "\e7f3";
2231
- }
2232
-
2233
- .mdi-image-camera:before {
2234
- content: "\e7f4";
2235
- }
2236
-
2237
- .mdi-image-center-focus-strong:before {
2238
- content: "\e7f5";
2239
- }
2240
-
2241
- .mdi-image-center-focus-weak:before {
2242
- content: "\e7f6";
2243
- }
2244
-
2245
- .mdi-image-collections:before {
2246
- content: "\e7f7";
2247
- }
2248
-
2249
- .mdi-image-color-lens:before {
2250
- content: "\e7f8";
2251
- }
2252
-
2253
- .mdi-image-colorize:before {
2254
- content: "\e7f9";
2255
- }
2256
-
2257
- .mdi-image-compare:before {
2258
- content: "\e7fa";
2259
- }
2260
-
2261
- .mdi-image-control-point-duplicate:before {
2262
- content: "\e7fb";
2263
- }
2264
-
2265
- .mdi-image-control-point:before {
2266
- content: "\e7fc";
2267
- }
2268
-
2269
- .mdi-image-crop-3-2:before {
2270
- content: "\e7fd";
2271
- }
2272
-
2273
- .mdi-image-crop-5-4:before {
2274
- content: "\e7fe";
2275
- }
2276
-
2277
- .mdi-image-crop-7-5:before {
2278
- content: "\e7ff";
2279
- }
2280
-
2281
- .mdi-image-crop-16-9:before {
2282
- content: "\e800";
2283
- }
2284
-
2285
- .mdi-image-crop-din:before {
2286
- content: "\e801";
2287
- }
2288
-
2289
- .mdi-image-crop-free:before {
2290
- content: "\e802";
2291
- }
2292
-
2293
- .mdi-image-crop-landscape:before {
2294
- content: "\e803";
2295
- }
2296
-
2297
- .mdi-image-crop-original:before {
2298
- content: "\e804";
2299
- }
2300
-
2301
- .mdi-image-crop-portrait:before {
2302
- content: "\e805";
2303
- }
2304
-
2305
- .mdi-image-crop-square:before {
2306
- content: "\e806";
2307
- }
2308
-
2309
- .mdi-image-crop:before {
2310
- content: "\e807";
2311
- }
2312
-
2313
- .mdi-image-dehaze:before {
2314
- content: "\e808";
2315
- }
2316
-
2317
- .mdi-image-details:before {
2318
- content: "\e809";
2319
- }
2320
-
2321
- .mdi-image-edit:before {
2322
- content: "\e80a";
2323
- }
2324
-
2325
- .mdi-image-exposure-minus-1:before {
2326
- content: "\e80b";
2327
- }
2328
-
2329
- .mdi-image-exposure-minus-2:before {
2330
- content: "\e80c";
2331
- }
2332
-
2333
- .mdi-image-exposure-plus-1:before {
2334
- content: "\e80d";
2335
- }
2336
-
2337
- .mdi-image-exposure-plus-2:before {
2338
- content: "\e80e";
2339
- }
2340
-
2341
- .mdi-image-exposure-zero:before {
2342
- content: "\e80f";
2343
- }
2344
-
2345
- .mdi-image-exposure:before {
2346
- content: "\e810";
2347
- }
2348
-
2349
- .mdi-image-filter-1:before {
2350
- content: "\e811";
2351
- }
2352
-
2353
- .mdi-image-filter-2:before {
2354
- content: "\e812";
2355
- }
2356
-
2357
- .mdi-image-filter-3:before {
2358
- content: "\e813";
2359
- }
2360
-
2361
- .mdi-image-filter-4:before {
2362
- content: "\e814";
2363
- }
2364
-
2365
- .mdi-image-filter-5:before {
2366
- content: "\e815";
2367
- }
2368
-
2369
- .mdi-image-filter-6:before {
2370
- content: "\e816";
2371
- }
2372
-
2373
- .mdi-image-filter-7:before {
2374
- content: "\e817";
2375
- }
2376
-
2377
- .mdi-image-filter-8:before {
2378
- content: "\e818";
2379
- }
2380
-
2381
- .mdi-image-filter-9-plus:before {
2382
- content: "\e819";
2383
- }
2384
-
2385
- .mdi-image-filter-9:before {
2386
- content: "\e81a";
2387
- }
2388
-
2389
- .mdi-image-filter-b-and-w:before {
2390
- content: "\e81b";
2391
- }
2392
-
2393
- .mdi-image-filter-center-focus:before {
2394
- content: "\e81c";
2395
- }
2396
-
2397
- .mdi-image-filter-drama:before {
2398
- content: "\e81d";
2399
- }
2400
-
2401
- .mdi-image-filter-frames:before {
2402
- content: "\e81e";
2403
- }
2404
-
2405
- .mdi-image-filter-hdr:before {
2406
- content: "\e81f";
2407
- }
2408
-
2409
- .mdi-image-filter-none:before {
2410
- content: "\e820";
2411
- }
2412
-
2413
- .mdi-image-filter-tilt-shift:before {
2414
- content: "\e821";
2415
- }
2416
-
2417
- .mdi-image-filter-vintage:before {
2418
- content: "\e822";
2419
- }
2420
-
2421
- .mdi-image-filter:before {
2422
- content: "\e823";
2423
- }
2424
-
2425
- .mdi-image-flare:before {
2426
- content: "\e824";
2427
- }
2428
-
2429
- .mdi-image-flash-auto:before {
2430
- content: "\e825";
2431
- }
2432
-
2433
- .mdi-image-flash-off:before {
2434
- content: "\e826";
2435
- }
2436
-
2437
- .mdi-image-flash-on:before {
2438
- content: "\e827";
2439
- }
2440
-
2441
- .mdi-image-flip:before {
2442
- content: "\e828";
2443
- }
2444
-
2445
- .mdi-image-gradient:before {
2446
- content: "\e829";
2447
- }
2448
-
2449
- .mdi-image-grain:before {
2450
- content: "\e82a";
2451
- }
2452
-
2453
- .mdi-image-grid-off:before {
2454
- content: "\e82b";
2455
- }
2456
-
2457
- .mdi-image-grid-on:before {
2458
- content: "\e82c";
2459
- }
2460
-
2461
- .mdi-image-hdr-off:before {
2462
- content: "\e82d";
2463
- }
2464
-
2465
- .mdi-image-hdr-on:before {
2466
- content: "\e82e";
2467
- }
2468
-
2469
- .mdi-image-hdr-strong:before {
2470
- content: "\e82f";
2471
- }
2472
-
2473
- .mdi-image-hdr-weak:before {
2474
- content: "\e830";
2475
- }
2476
-
2477
- .mdi-image-healing:before {
2478
- content: "\e831";
2479
- }
2480
-
2481
- .mdi-image-image-aspect-ratio:before {
2482
- content: "\e832";
2483
- }
2484
-
2485
- .mdi-image-image:before {
2486
- content: "\e833";
2487
- }
2488
-
2489
- .mdi-image-iso:before {
2490
- content: "\e834";
2491
- }
2492
-
2493
- .mdi-image-landscape:before {
2494
- content: "\e835";
2495
- }
2496
-
2497
- .mdi-image-leak-add:before {
2498
- content: "\e836";
2499
- }
2500
-
2501
- .mdi-image-leak-remove:before {
2502
- content: "\e837";
2503
- }
2504
-
2505
- .mdi-image-lens:before {
2506
- content: "\e838";
2507
- }
2508
-
2509
- .mdi-image-looks-3:before {
2510
- content: "\e839";
2511
- }
2512
-
2513
- .mdi-image-looks-4:before {
2514
- content: "\e83a";
2515
- }
2516
-
2517
- .mdi-image-looks-5:before {
2518
- content: "\e83b";
2519
- }
2520
-
2521
- .mdi-image-looks-6:before {
2522
- content: "\e83c";
2523
- }
2524
-
2525
- .mdi-image-looks-one:before {
2526
- content: "\e83d";
2527
- }
2528
-
2529
- .mdi-image-looks-two:before {
2530
- content: "\e83e";
2531
- }
2532
-
2533
- .mdi-image-looks:before {
2534
- content: "\e83f";
2535
- }
2536
-
2537
- .mdi-image-loupe:before {
2538
- content: "\e840";
2539
- }
2540
-
2541
- .mdi-image-movie-creation:before {
2542
- content: "\e841";
2543
- }
2544
-
2545
- .mdi-image-nature-people:before {
2546
- content: "\e842";
2547
- }
2548
-
2549
- .mdi-image-nature:before {
2550
- content: "\e843";
2551
- }
2552
-
2553
- .mdi-image-navigate-before:before {
2554
- content: "\e844";
2555
- }
2556
-
2557
- .mdi-image-navigate-next:before {
2558
- content: "\e845";
2559
- }
2560
-
2561
- .mdi-image-palette:before {
2562
- content: "\e846";
2563
- }
2564
-
2565
- .mdi-image-panorama-fisheye:before {
2566
- content: "\e847";
2567
- }
2568
-
2569
- .mdi-image-panorama-horizontal:before {
2570
- content: "\e848";
2571
- }
2572
-
2573
- .mdi-image-panorama-vertical:before {
2574
- content: "\e849";
2575
- }
2576
-
2577
- .mdi-image-panorama-wide-angle:before {
2578
- content: "\e84a";
2579
- }
2580
-
2581
- .mdi-image-panorama:before {
2582
- content: "\e84b";
2583
- }
2584
-
2585
- .mdi-image-photo-album:before {
2586
- content: "\e84c";
2587
- }
2588
-
2589
- .mdi-image-photo-camera:before {
2590
- content: "\e84d";
2591
- }
2592
-
2593
- .mdi-image-photo-library:before {
2594
- content: "\e84e";
2595
- }
2596
-
2597
- .mdi-image-photo:before {
2598
- content: "\e84f";
2599
- }
2600
-
2601
- .mdi-image-portrait:before {
2602
- content: "\e850";
2603
- }
2604
-
2605
- .mdi-image-remove-red-eye:before {
2606
- content: "\e851";
2607
- }
2608
-
2609
- .mdi-image-rotate-left:before {
2610
- content: "\e852";
2611
- }
2612
-
2613
- .mdi-image-rotate-right:before {
2614
- content: "\e853";
2615
- }
2616
-
2617
- .mdi-image-slideshow:before {
2618
- content: "\e854";
2619
- }
2620
-
2621
- .mdi-image-straighten:before {
2622
- content: "\e855";
2623
- }
2624
-
2625
- .mdi-image-style:before {
2626
- content: "\e856";
2627
- }
2628
-
2629
- .mdi-image-switch-camera:before {
2630
- content: "\e857";
2631
- }
2632
-
2633
- .mdi-image-switch-video:before {
2634
- content: "\e858";
2635
- }
2636
-
2637
- .mdi-image-tag-faces:before {
2638
- content: "\e859";
2639
- }
2640
-
2641
- .mdi-image-texture:before {
2642
- content: "\e85a";
2643
- }
2644
-
2645
- .mdi-image-timelapse:before {
2646
- content: "\e85b";
2647
- }
2648
-
2649
- .mdi-image-timer-3:before {
2650
- content: "\e85c";
2651
- }
2652
-
2653
- .mdi-image-timer-10:before {
2654
- content: "\e85d";
2655
- }
2656
-
2657
- .mdi-image-timer-auto:before {
2658
- content: "\e85e";
2659
- }
2660
-
2661
- .mdi-image-timer-off:before {
2662
- content: "\e85f";
2663
- }
2664
-
2665
- .mdi-image-timer:before {
2666
- content: "\e860";
2667
- }
2668
-
2669
- .mdi-image-tonality:before {
2670
- content: "\e861";
2671
- }
2672
-
2673
- .mdi-image-transform:before {
2674
- content: "\e862";
2675
- }
2676
-
2677
- .mdi-image-tune:before {
2678
- content: "\e863";
2679
- }
2680
-
2681
- .mdi-image-wb-auto:before {
2682
- content: "\e864";
2683
- }
2684
-
2685
- .mdi-image-wb-cloudy:before {
2686
- content: "\e865";
2687
- }
2688
-
2689
- .mdi-image-wb-incandescent:before {
2690
- content: "\e866";
2691
- }
2692
-
2693
- .mdi-image-wb-irradescent:before {
2694
- content: "\e867";
2695
- }
2696
-
2697
- .mdi-image-wb-sunny:before {
2698
- content: "\e868";
2699
- }
2700
-
2701
- .mdi-maps-beenhere:before {
2702
- content: "\e869";
2703
- }
2704
-
2705
- .mdi-maps-directions-bike:before {
2706
- content: "\e86a";
2707
- }
2708
-
2709
- .mdi-maps-directions-bus:before {
2710
- content: "\e86b";
2711
- }
2712
-
2713
- .mdi-maps-directions-car:before {
2714
- content: "\e86c";
2715
- }
2716
-
2717
- .mdi-maps-directions-ferry:before {
2718
- content: "\e86d";
2719
- }
2720
-
2721
- .mdi-maps-directions-subway:before {
2722
- content: "\e86e";
2723
- }
2724
-
2725
- .mdi-maps-directions-train:before {
2726
- content: "\e86f";
2727
- }
2728
-
2729
- .mdi-maps-directions-transit:before {
2730
- content: "\e870";
2731
- }
2732
-
2733
- .mdi-maps-directions-walk:before {
2734
- content: "\e871";
2735
- }
2736
-
2737
- .mdi-maps-directions:before {
2738
- content: "\e872";
2739
- }
2740
-
2741
- .mdi-maps-flight:before {
2742
- content: "\e873";
2743
- }
2744
-
2745
- .mdi-maps-hotel:before {
2746
- content: "\e874";
2747
- }
2748
-
2749
- .mdi-maps-layers-clear:before {
2750
- content: "\e875";
2751
- }
2752
-
2753
- .mdi-maps-layers:before {
2754
- content: "\e876";
2755
- }
2756
-
2757
- .mdi-maps-local-airport:before {
2758
- content: "\e877";
2759
- }
2760
-
2761
- .mdi-maps-local-atm:before {
2762
- content: "\e878";
2763
- }
2764
-
2765
- .mdi-maps-local-attraction:before {
2766
- content: "\e879";
2767
- }
2768
-
2769
- .mdi-maps-local-bar:before {
2770
- content: "\e87a";
2771
- }
2772
-
2773
- .mdi-maps-local-cafe:before {
2774
- content: "\e87b";
2775
- }
2776
-
2777
- .mdi-maps-local-car-wash:before {
2778
- content: "\e87c";
2779
- }
2780
-
2781
- .mdi-maps-local-convenience-store:before {
2782
- content: "\e87d";
2783
- }
2784
-
2785
- .mdi-maps-local-drink:before {
2786
- content: "\e87e";
2787
- }
2788
-
2789
- .mdi-maps-local-florist:before {
2790
- content: "\e87f";
2791
- }
2792
-
2793
- .mdi-maps-local-gas-station:before {
2794
- content: "\e880";
2795
- }
2796
-
2797
- .mdi-maps-local-grocery-store:before {
2798
- content: "\e881";
2799
- }
2800
-
2801
- .mdi-maps-local-hospital:before {
2802
- content: "\e882";
2803
- }
2804
-
2805
- .mdi-maps-local-hotel:before {
2806
- content: "\e883";
2807
- }
2808
-
2809
- .mdi-maps-local-laundry-service:before {
2810
- content: "\e884";
2811
- }
2812
-
2813
- .mdi-maps-local-library:before {
2814
- content: "\e885";
2815
- }
2816
-
2817
- .mdi-maps-local-mall:before {
2818
- content: "\e886";
2819
- }
2820
-
2821
- .mdi-maps-local-movies:before {
2822
- content: "\e887";
2823
- }
2824
-
2825
- .mdi-maps-local-offer:before {
2826
- content: "\e888";
2827
- }
2828
-
2829
- .mdi-maps-local-parking:before {
2830
- content: "\e889";
2831
- }
2832
-
2833
- .mdi-maps-local-pharmacy:before {
2834
- content: "\e88a";
2835
- }
2836
-
2837
- .mdi-maps-local-phone:before {
2838
- content: "\e88b";
2839
- }
2840
-
2841
- .mdi-maps-local-pizza:before {
2842
- content: "\e88c";
2843
- }
2844
-
2845
- .mdi-maps-local-play:before {
2846
- content: "\e88d";
2847
- }
2848
-
2849
- .mdi-maps-local-post-office:before {
2850
- content: "\e88e";
2851
- }
2852
-
2853
- .mdi-maps-local-print-shop:before {
2854
- content: "\e88f";
2855
- }
2856
-
2857
- .mdi-maps-local-restaurant:before {
2858
- content: "\e890";
2859
- }
2860
-
2861
- .mdi-maps-local-see:before {
2862
- content: "\e891";
2863
- }
2864
-
2865
- .mdi-maps-local-shipping:before {
2866
- content: "\e892";
2867
- }
2868
-
2869
- .mdi-maps-local-taxi:before {
2870
- content: "\e893";
2871
- }
2872
-
2873
- .mdi-maps-location-history:before {
2874
- content: "\e894";
2875
- }
2876
-
2877
- .mdi-maps-map:before {
2878
- content: "\e895";
2879
- }
2880
-
2881
- .mdi-maps-my-location:before {
2882
- content: "\e896";
2883
- }
2884
-
2885
- .mdi-maps-navigation:before {
2886
- content: "\e897";
2887
- }
2888
-
2889
- .mdi-maps-pin-drop:before {
2890
- content: "\e898";
2891
- }
2892
-
2893
- .mdi-maps-place:before {
2894
- content: "\e899";
2895
- }
2896
-
2897
- .mdi-maps-rate-review:before {
2898
- content: "\e89a";
2899
- }
2900
-
2901
- .mdi-maps-restaurant-menu:before {
2902
- content: "\e89b";
2903
- }
2904
-
2905
- .mdi-maps-satellite:before {
2906
- content: "\e89c";
2907
- }
2908
-
2909
- .mdi-maps-store-mall-directory:before {
2910
- content: "\e89d";
2911
- }
2912
-
2913
- .mdi-maps-terrain:before {
2914
- content: "\e89e";
2915
- }
2916
-
2917
- .mdi-maps-traffic:before {
2918
- content: "\e89f";
2919
- }
2920
-
2921
- .mdi-navigation-apps:before {
2922
- content: "\e8a0";
2923
- }
2924
-
2925
- .mdi-navigation-arrow-back:before {
2926
- content: "\e8a1";
2927
- }
2928
-
2929
- .mdi-navigation-arrow-drop-down-circle:before {
2930
- content: "\e8a2";
2931
- }
2932
-
2933
- .mdi-navigation-arrow-drop-down:before {
2934
- content: "\e8a3";
2935
- }
2936
-
2937
- .mdi-navigation-arrow-drop-up:before {
2938
- content: "\e8a4";
2939
- }
2940
-
2941
- .mdi-navigation-arrow-forward:before {
2942
- content: "\e8a5";
2943
- }
2944
-
2945
- .mdi-navigation-cancel:before {
2946
- content: "\e8a6";
2947
- }
2948
-
2949
- .mdi-navigation-check:before {
2950
- content: "\e8a7";
2951
- }
2952
-
2953
- .mdi-navigation-chevron-left:before {
2954
- content: "\e8a8";
2955
- }
2956
-
2957
- .mdi-navigation-chevron-right:before {
2958
- content: "\e8a9";
2959
- }
2960
-
2961
- .mdi-navigation-close:before {
2962
- content: "\e8aa";
2963
- }
2964
-
2965
- .mdi-navigation-expand-less:before {
2966
- content: "\e8ab";
2967
- }
2968
-
2969
- .mdi-navigation-expand-more:before {
2970
- content: "\e8ac";
2971
- }
2972
-
2973
- .mdi-navigation-fullscreen-exit:before {
2974
- content: "\e8ad";
2975
- }
2976
-
2977
- .mdi-navigation-fullscreen:before {
2978
- content: "\e8ae";
2979
- }
2980
-
2981
- .mdi-navigation-menu:before {
2982
- content: "\e8af";
2983
- }
2984
-
2985
- .mdi-navigation-more-horiz:before {
2986
- content: "\e8b0";
2987
- }
2988
-
2989
- .mdi-navigation-more-vert:before {
2990
- content: "\e8b1";
2991
- }
2992
-
2993
- .mdi-navigation-refresh:before {
2994
- content: "\e8b2";
2995
- }
2996
-
2997
- .mdi-navigation-unfold-less:before {
2998
- content: "\e8b3";
2999
- }
3000
-
3001
- .mdi-navigation-unfold-more:before {
3002
- content: "\e8b4";
3003
- }
3004
-
3005
- .mdi-notification-adb:before {
3006
- content: "\e8b5";
3007
- }
3008
-
3009
- .mdi-notification-bluetooth-audio:before {
3010
- content: "\e8b6";
3011
- }
3012
-
3013
- .mdi-notification-disc-full:before {
3014
- content: "\e8b7";
3015
- }
3016
-
3017
- .mdi-notification-dnd-forwardslash:before {
3018
- content: "\e8b8";
3019
- }
3020
-
3021
- .mdi-notification-do-not-disturb:before {
3022
- content: "\e8b9";
3023
- }
3024
-
3025
- .mdi-notification-drive-eta:before {
3026
- content: "\e8ba";
3027
- }
3028
-
3029
- .mdi-notification-event-available:before {
3030
- content: "\e8bb";
3031
- }
3032
-
3033
- .mdi-notification-event-busy:before {
3034
- content: "\e8bc";
3035
- }
3036
-
3037
- .mdi-notification-event-note:before {
3038
- content: "\e8bd";
3039
- }
3040
-
3041
- .mdi-notification-folder-special:before {
3042
- content: "\e8be";
3043
- }
3044
-
3045
- .mdi-notification-mms:before {
3046
- content: "\e8bf";
3047
- }
3048
-
3049
- .mdi-notification-more:before {
3050
- content: "\e8c0";
3051
- }
3052
-
3053
- .mdi-notification-network-locked:before {
3054
- content: "\e8c1";
3055
- }
3056
-
3057
- .mdi-notification-phone-bluetooth-speaker:before {
3058
- content: "\e8c2";
3059
- }
3060
-
3061
- .mdi-notification-phone-forwarded:before {
3062
- content: "\e8c3";
3063
- }
3064
-
3065
- .mdi-notification-phone-in-talk:before {
3066
- content: "\e8c4";
3067
- }
3068
-
3069
- .mdi-notification-phone-locked:before {
3070
- content: "\e8c5";
3071
- }
3072
-
3073
- .mdi-notification-phone-missed:before {
3074
- content: "\e8c6";
3075
- }
3076
-
3077
- .mdi-notification-phone-paused:before {
3078
- content: "\e8c7";
3079
- }
3080
-
3081
- .mdi-notification-play-download:before {
3082
- content: "\e8c8";
3083
- }
3084
-
3085
- .mdi-notification-play-install:before {
3086
- content: "\e8c9";
3087
- }
3088
-
3089
- .mdi-notification-sd-card:before {
3090
- content: "\e8ca";
3091
- }
3092
-
3093
- .mdi-notification-sim-card-alert:before {
3094
- content: "\e8cb";
3095
- }
3096
-
3097
- .mdi-notification-sms-failed:before {
3098
- content: "\e8cc";
3099
- }
3100
-
3101
- .mdi-notification-sms:before {
3102
- content: "\e8cd";
3103
- }
3104
-
3105
- .mdi-notification-sync-disabled:before {
3106
- content: "\e8ce";
3107
- }
3108
-
3109
- .mdi-notification-sync-problem:before {
3110
- content: "\e8cf";
3111
- }
3112
-
3113
- .mdi-notification-sync:before {
3114
- content: "\e8d0";
3115
- }
3116
-
3117
- .mdi-notification-system-update:before {
3118
- content: "\e8d1";
3119
- }
3120
-
3121
- .mdi-notification-tap-and-play:before {
3122
- content: "\e8d2";
3123
- }
3124
-
3125
- .mdi-notification-time-to-leave:before {
3126
- content: "\e8d3";
3127
- }
3128
-
3129
- .mdi-notification-vibration:before {
3130
- content: "\e8d4";
3131
- }
3132
-
3133
- .mdi-notification-voice-chat:before {
3134
- content: "\e8d5";
3135
- }
3136
-
3137
- .mdi-notification-vpn-lock:before {
3138
- content: "\e8d6";
3139
- }
3140
-
3141
- .mdi-social-cake:before {
3142
- content: "\e8d7";
3143
- }
3144
-
3145
- .mdi-social-domain:before {
3146
- content: "\e8d8";
3147
- }
3148
-
3149
- .mdi-social-group-add:before {
3150
- content: "\e8d9";
3151
- }
3152
-
3153
- .mdi-social-group:before {
3154
- content: "\e8da";
3155
- }
3156
-
3157
- .mdi-social-location-city:before {
3158
- content: "\e8db";
3159
- }
3160
-
3161
- .mdi-social-mood:before {
3162
- content: "\e8dc";
3163
- }
3164
-
3165
- .mdi-social-notifications-none:before {
3166
- content: "\e8dd";
3167
- }
3168
-
3169
- .mdi-social-notifications-off:before {
3170
- content: "\e8de";
3171
- }
3172
-
3173
- .mdi-social-notifications-on:before {
3174
- content: "\e8df";
3175
- }
3176
-
3177
- .mdi-social-notifications-paused:before {
3178
- content: "\e8e0";
3179
- }
3180
-
3181
- .mdi-social-notifications:before {
3182
- content: "\e8e1";
3183
- }
3184
-
3185
- .mdi-social-pages:before {
3186
- content: "\e8e2";
3187
- }
3188
-
3189
- .mdi-social-party-mode:before {
3190
- content: "\e8e3";
3191
- }
3192
-
3193
- .mdi-social-people-outline:before {
3194
- content: "\e8e4";
3195
- }
3196
-
3197
- .mdi-social-people:before {
3198
- content: "\e8e5";
3199
- }
3200
-
3201
- .mdi-social-person-add:before {
3202
- content: "\e8e6";
3203
- }
3204
-
3205
- .mdi-social-person-outline:before {
3206
- content: "\e8e7";
3207
- }
3208
-
3209
- .mdi-social-person:before {
3210
- content: "\e8e8";
3211
- }
3212
-
3213
- .mdi-social-plus-one:before {
3214
- content: "\e8e9";
3215
- }
3216
-
3217
- .mdi-social-poll:before {
3218
- content: "\e8ea";
3219
- }
3220
-
3221
- .mdi-social-public:before {
3222
- content: "\e8eb";
3223
- }
3224
-
3225
- .mdi-social-school:before {
3226
- content: "\e8ec";
3227
- }
3228
-
3229
- .mdi-social-share:before {
3230
- content: "\e8ed";
3231
- }
3232
-
3233
- .mdi-social-whatshot:before {
3234
- content: "\e8ee";
3235
- }
3236
-
3237
- .mdi-toggle-check-box-outline-blank:before {
3238
- content: "\e8ef";
3239
- }
3240
-
3241
- .mdi-toggle-check-box:before {
3242
- content: "\e8f0";
3243
- }
3244
-
3245
- .mdi-toggle-radio-button-off:before {
3246
- content: "\e8f1";
3247
- }
3248
-
3249
- .mdi-toggle-radio-button-on:before {
3250
- content: "\e8f2";
3251
- }
3252
-
3253
- .mdi-toggle-star-half:before {
3254
- content: "\e8f3";
3255
- }
3256
-
3257
- .mdi-toggle-star-outline:before {
3258
- content: "\e8f4";
3259
- }
3260
-
3261
- .mdi-toggle-star:before {
3262
- content: "\e8f5";
3263
- }