materialize-sass 0.97.0 → 1.0.0.1

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