material_icons 1.0.0rc1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +20 -9
- data/Rakefile +3 -1
- data/app/assets/stylesheets/material_icons.css.erb +2 -2
- data/app/assets/stylesheets/material_icons_unicode.css.erb +1119 -1119
- data/app/models/material_icon.rb +26 -7
- data/lib/material_icons/version.rb +1 -1
- metadata +81 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 445027ec6736e2f6f686969613ab09663856b959
|
4
|
+
data.tar.gz: edb5388470e4fb683c6746b9473a8ac9faea2bb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbef8d4296fe8f43aebf0c4aaf32e658894644826967d79f415c37894135d2858c956123458ddd1ddf41f8fecaffa86d9759090bff78031ed03c8f85081607dc
|
7
|
+
data.tar.gz: dc11f14f81bcb6ddff51760a23515001d688e80059a241c43b145636079f12b02ff5c466294434496d68c6f3765b6a0483250f4e44cd872402eb2ddcc55d5ab9
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
[](http://badge.fury.io/rb/material_icons)
|
1
|
+
[](http://badge.fury.io/rb/material_icons) [](https://travis-ci.org/Angelmmiguel/material_icons)
|
2
2
|
|
3
3
|

|
4
4
|
|
5
|
-
# Material Icons
|
5
|
+
# Material Icons for Rails
|
6
6
|
|
7
7
|
[Google Material Icons](https://google.github.io/material-design-icons/) is a +750 set of icons based on Material Design guidelines. With this gem you can add it easily to your Rails projects.
|
8
8
|
|
@@ -58,7 +58,7 @@ An example of icon is:
|
|
58
58
|
|
59
59
|
## Helpers
|
60
60
|
|
61
|
-
|
61
|
+
Material Icons provide two helpers to build the HTML code of icons. The methods are `material_icon` and `mi`. These helpers use cascade style to set the icon and options. Using same example:
|
62
62
|
|
63
63
|
<%= material_icon.face %>
|
64
64
|
# <i class="material-icons">face</i>
|
@@ -66,11 +66,16 @@ MaterialIcons provide a two helpers to build the HTML code of icons. The methods
|
|
66
66
|
<%= material_icon.face.md_36 %>
|
67
67
|
# <i class="material-icons md-36">face</i>
|
68
68
|
|
69
|
+
# This is a special case because the icon name starts with a number. Only
|
70
|
+
# 3d_rotation has this trouble.
|
71
|
+
<%= material_icon.three_d_rotation.md_36 %>
|
72
|
+
# <i class="material-icons md-36">3d_rotation</i>
|
73
|
+
|
69
74
|
# Rotation and custom css class
|
70
75
|
<%= mi.face.r90.css_class('my_class') %>
|
71
76
|
# <i class="material-icons r90 my_class">face</i>
|
72
77
|
|
73
|
-
|
78
|
+
Allowed methods are:
|
74
79
|
|
75
80
|
# Rotation methods
|
76
81
|
r90
|
@@ -119,20 +124,26 @@ Next, you need to specify the helper to use unicode because it uses ligatures by
|
|
119
124
|
config.unicode = true
|
120
125
|
end
|
121
126
|
|
122
|
-
|
127
|
+
The [Helpers](#helpers) has the same syntax.
|
123
128
|
|
124
|
-
|
125
|
-
<i class="material-icons md-36 face"></i>
|
129
|
+
Now, the text inside of HTML tag is the CSS class! CSS Icon classes use underscores.
|
126
130
|
|
127
|
-
|
131
|
+
<i class="material-icons face"></i>
|
132
|
+
<i class="mi md-36 face"></i>
|
133
|
+
<i class="mi add_box"></i>
|
134
|
+
<i class="mi three_d_rotation"></i>
|
128
135
|
|
129
136
|
This version increase the size of the CSS file too. To see the difference, these are the size for uncompressed CSS files:
|
130
137
|
|
131
138
|
material_icons.css.erb 3 KB
|
132
139
|
material_icons_unicode.css.erb 68 KB
|
133
140
|
|
141
|
+
# They are using Material icons for Rails :)
|
142
|
+
|
143
|
+
* [Materialup.com](http://www.materialup.com): a big community to share, discover and learn about Material Design.
|
144
|
+
|
134
145
|
# License
|
135
146
|
|
136
147
|
Google Material Icons are under [Creative Common Attribution 4.0 International License (CC-BY 4.0)](http://creativecommons.org/licenses/by/4.0/). But attribution [is not required](https://github.com/google/material-design-icons#license).
|
137
148
|
|
138
|
-
Material Icons gem
|
149
|
+
Material Icons gem is released under the MIT license. Copyright [@Laux_es ;)](https://twitter.com/Laux_es)
|
data/Rakefile
CHANGED
@@ -18,7 +18,9 @@ namespace :material_icons do
|
|
18
18
|
# Load from codepoints
|
19
19
|
File.readlines('codepoints').each do |line|
|
20
20
|
el = line.split(' ')
|
21
|
-
css_class = el.first
|
21
|
+
css_class = el.first
|
22
|
+
# Fix for icons that start with number
|
23
|
+
css_class = 'three_d_rotation' if css_class == '3d_rotation'
|
22
24
|
unicode = el.last
|
23
25
|
# Need this strange indentation for CSS...
|
24
26
|
css =
|
@@ -53,7 +53,7 @@
|
|
53
53
|
|
54
54
|
/* Rules for using icons as black on a light background. */
|
55
55
|
.material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
|
56
|
-
.material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive
|
56
|
+
.material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
|
57
57
|
|
58
58
|
/* Rules for using icons as white on a dark background. */
|
59
59
|
.material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
|
@@ -89,4 +89,4 @@
|
|
89
89
|
-webkit-transform: scale(1, -1);
|
90
90
|
-ms-transform: scale(1, -1);
|
91
91
|
transform: scale(1, -1);
|
92
|
-
}
|
92
|
+
}
|
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
/* Rules for using icons as black on a light background. */
|
46
46
|
.material-icons.md-dark, .mi.md-dark { color: rgba(0, 0, 0, 0.54); }
|
47
|
-
.material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive
|
47
|
+
.material-icons.md-dark.md-inactive, .mi.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
|
48
48
|
|
49
49
|
/* Rules for using icons as white on a dark background. */
|
50
50
|
.material-icons.md-light, .mi.md-light { color: rgba(255, 255, 255, 1); }
|
@@ -83,40 +83,40 @@
|
|
83
83
|
}
|
84
84
|
|
85
85
|
/* Unicode */
|
86
|
-
.material-icons.
|
87
|
-
.mi.
|
86
|
+
.material-icons.three_d_rotation:before,
|
87
|
+
.mi.three_d_rotation:before {
|
88
88
|
content: '\e84d';
|
89
89
|
}
|
90
|
-
.material-icons.
|
91
|
-
.mi.
|
90
|
+
.material-icons.access_alarm:before,
|
91
|
+
.mi.access_alarm:before {
|
92
92
|
content: '\e190';
|
93
93
|
}
|
94
|
-
.material-icons.
|
95
|
-
.mi.
|
94
|
+
.material-icons.access_alarms:before,
|
95
|
+
.mi.access_alarms:before {
|
96
96
|
content: '\e191';
|
97
97
|
}
|
98
|
-
.material-icons.
|
99
|
-
.mi.
|
98
|
+
.material-icons.access_time:before,
|
99
|
+
.mi.access_time:before {
|
100
100
|
content: '\e192';
|
101
101
|
}
|
102
102
|
.material-icons.accessibility:before,
|
103
103
|
.mi.accessibility:before {
|
104
104
|
content: '\e84e';
|
105
105
|
}
|
106
|
-
.material-icons.
|
107
|
-
.mi.
|
106
|
+
.material-icons.account_balance:before,
|
107
|
+
.mi.account_balance:before {
|
108
108
|
content: '\e84f';
|
109
109
|
}
|
110
|
-
.material-icons.
|
111
|
-
.mi.
|
110
|
+
.material-icons.account_balance_wallet:before,
|
111
|
+
.mi.account_balance_wallet:before {
|
112
112
|
content: '\e850';
|
113
113
|
}
|
114
|
-
.material-icons.
|
115
|
-
.mi.
|
114
|
+
.material-icons.account_box:before,
|
115
|
+
.mi.account_box:before {
|
116
116
|
content: '\e851';
|
117
117
|
}
|
118
|
-
.material-icons.
|
119
|
-
.mi.
|
118
|
+
.material-icons.account_circle:before,
|
119
|
+
.mi.account_circle:before {
|
120
120
|
content: '\e853';
|
121
121
|
}
|
122
122
|
.material-icons.adb:before,
|
@@ -127,76 +127,76 @@
|
|
127
127
|
.mi.add:before {
|
128
128
|
content: '\e145';
|
129
129
|
}
|
130
|
-
.material-icons.
|
131
|
-
.mi.
|
130
|
+
.material-icons.add_alarm:before,
|
131
|
+
.mi.add_alarm:before {
|
132
132
|
content: '\e193';
|
133
133
|
}
|
134
|
-
.material-icons.
|
135
|
-
.mi.
|
134
|
+
.material-icons.add_alert:before,
|
135
|
+
.mi.add_alert:before {
|
136
136
|
content: '\e003';
|
137
137
|
}
|
138
|
-
.material-icons.
|
139
|
-
.mi.
|
138
|
+
.material-icons.add_box:before,
|
139
|
+
.mi.add_box:before {
|
140
140
|
content: '\e146';
|
141
141
|
}
|
142
|
-
.material-icons.
|
143
|
-
.mi.
|
142
|
+
.material-icons.add_circle:before,
|
143
|
+
.mi.add_circle:before {
|
144
144
|
content: '\e147';
|
145
145
|
}
|
146
|
-
.material-icons.
|
147
|
-
.mi.
|
146
|
+
.material-icons.add_circle_outline:before,
|
147
|
+
.mi.add_circle_outline:before {
|
148
148
|
content: '\e148';
|
149
149
|
}
|
150
|
-
.material-icons.
|
151
|
-
.mi.
|
150
|
+
.material-icons.add_shopping_cart:before,
|
151
|
+
.mi.add_shopping_cart:before {
|
152
152
|
content: '\e854';
|
153
153
|
}
|
154
|
-
.material-icons.
|
155
|
-
.mi.
|
154
|
+
.material-icons.add_to_photos:before,
|
155
|
+
.mi.add_to_photos:before {
|
156
156
|
content: '\e39d';
|
157
157
|
}
|
158
158
|
.material-icons.adjust:before,
|
159
159
|
.mi.adjust:before {
|
160
160
|
content: '\e39e';
|
161
161
|
}
|
162
|
-
.material-icons.
|
163
|
-
.mi.
|
162
|
+
.material-icons.airline_seat_flat:before,
|
163
|
+
.mi.airline_seat_flat:before {
|
164
164
|
content: '\e630';
|
165
165
|
}
|
166
|
-
.material-icons.
|
167
|
-
.mi.
|
166
|
+
.material-icons.airline_seat_flat_angled:before,
|
167
|
+
.mi.airline_seat_flat_angled:before {
|
168
168
|
content: '\e631';
|
169
169
|
}
|
170
|
-
.material-icons.
|
171
|
-
.mi.
|
170
|
+
.material-icons.airline_seat_individual_suite:before,
|
171
|
+
.mi.airline_seat_individual_suite:before {
|
172
172
|
content: '\e632';
|
173
173
|
}
|
174
|
-
.material-icons.
|
175
|
-
.mi.
|
174
|
+
.material-icons.airline_seat_legroom_extra:before,
|
175
|
+
.mi.airline_seat_legroom_extra:before {
|
176
176
|
content: '\e633';
|
177
177
|
}
|
178
|
-
.material-icons.
|
179
|
-
.mi.
|
178
|
+
.material-icons.airline_seat_legroom_normal:before,
|
179
|
+
.mi.airline_seat_legroom_normal:before {
|
180
180
|
content: '\e634';
|
181
181
|
}
|
182
|
-
.material-icons.
|
183
|
-
.mi.
|
182
|
+
.material-icons.airline_seat_legroom_reduced:before,
|
183
|
+
.mi.airline_seat_legroom_reduced:before {
|
184
184
|
content: '\e635';
|
185
185
|
}
|
186
|
-
.material-icons.
|
187
|
-
.mi.
|
186
|
+
.material-icons.airline_seat_recline_extra:before,
|
187
|
+
.mi.airline_seat_recline_extra:before {
|
188
188
|
content: '\e636';
|
189
189
|
}
|
190
|
-
.material-icons.
|
191
|
-
.mi.
|
190
|
+
.material-icons.airline_seat_recline_normal:before,
|
191
|
+
.mi.airline_seat_recline_normal:before {
|
192
192
|
content: '\e637';
|
193
193
|
}
|
194
|
-
.material-icons.
|
195
|
-
.mi.
|
194
|
+
.material-icons.airplanemode_active:before,
|
195
|
+
.mi.airplanemode_active:before {
|
196
196
|
content: '\e195';
|
197
197
|
}
|
198
|
-
.material-icons.
|
199
|
-
.mi.
|
198
|
+
.material-icons.airplanemode_inactive:before,
|
199
|
+
.mi.airplanemode_inactive:before {
|
200
200
|
content: '\e194';
|
201
201
|
}
|
202
202
|
.material-icons.airplay:before,
|
@@ -207,16 +207,16 @@
|
|
207
207
|
.mi.alarm:before {
|
208
208
|
content: '\e855';
|
209
209
|
}
|
210
|
-
.material-icons.
|
211
|
-
.mi.
|
210
|
+
.material-icons.alarm_add:before,
|
211
|
+
.mi.alarm_add:before {
|
212
212
|
content: '\e856';
|
213
213
|
}
|
214
|
-
.material-icons.
|
215
|
-
.mi.
|
214
|
+
.material-icons.alarm_off:before,
|
215
|
+
.mi.alarm_off:before {
|
216
216
|
content: '\e857';
|
217
217
|
}
|
218
|
-
.material-icons.
|
219
|
-
.mi.
|
218
|
+
.material-icons.alarm_on:before,
|
219
|
+
.mi.alarm_on:before {
|
220
220
|
content: '\e858';
|
221
221
|
}
|
222
222
|
.material-icons.album:before,
|
@@ -239,28 +239,28 @@
|
|
239
239
|
.mi.archive:before {
|
240
240
|
content: '\e149';
|
241
241
|
}
|
242
|
-
.material-icons.
|
243
|
-
.mi.
|
242
|
+
.material-icons.arrow_back:before,
|
243
|
+
.mi.arrow_back:before {
|
244
244
|
content: '\e5c4';
|
245
245
|
}
|
246
|
-
.material-icons.
|
247
|
-
.mi.
|
246
|
+
.material-icons.arrow_drop_down:before,
|
247
|
+
.mi.arrow_drop_down:before {
|
248
248
|
content: '\e5c5';
|
249
249
|
}
|
250
|
-
.material-icons.
|
251
|
-
.mi.
|
250
|
+
.material-icons.arrow_drop_down_circle:before,
|
251
|
+
.mi.arrow_drop_down_circle:before {
|
252
252
|
content: '\e5c6';
|
253
253
|
}
|
254
|
-
.material-icons.
|
255
|
-
.mi.
|
254
|
+
.material-icons.arrow_drop_up:before,
|
255
|
+
.mi.arrow_drop_up:before {
|
256
256
|
content: '\e5c7';
|
257
257
|
}
|
258
|
-
.material-icons.
|
259
|
-
.mi.
|
258
|
+
.material-icons.arrow_forward:before,
|
259
|
+
.mi.arrow_forward:before {
|
260
260
|
content: '\e5c8';
|
261
261
|
}
|
262
|
-
.material-icons.
|
263
|
-
.mi.
|
262
|
+
.material-icons.aspect_ratio:before,
|
263
|
+
.mi.aspect_ratio:before {
|
264
264
|
content: '\e85b';
|
265
265
|
}
|
266
266
|
.material-icons.assessment:before,
|
@@ -271,40 +271,40 @@
|
|
271
271
|
.mi.assignment:before {
|
272
272
|
content: '\e85d';
|
273
273
|
}
|
274
|
-
.material-icons.
|
275
|
-
.mi.
|
274
|
+
.material-icons.assignment_ind:before,
|
275
|
+
.mi.assignment_ind:before {
|
276
276
|
content: '\e85e';
|
277
277
|
}
|
278
|
-
.material-icons.
|
279
|
-
.mi.
|
278
|
+
.material-icons.assignment_late:before,
|
279
|
+
.mi.assignment_late:before {
|
280
280
|
content: '\e85f';
|
281
281
|
}
|
282
|
-
.material-icons.
|
283
|
-
.mi.
|
282
|
+
.material-icons.assignment_return:before,
|
283
|
+
.mi.assignment_return:before {
|
284
284
|
content: '\e860';
|
285
285
|
}
|
286
|
-
.material-icons.
|
287
|
-
.mi.
|
286
|
+
.material-icons.assignment_returned:before,
|
287
|
+
.mi.assignment_returned:before {
|
288
288
|
content: '\e861';
|
289
289
|
}
|
290
|
-
.material-icons.
|
291
|
-
.mi.
|
290
|
+
.material-icons.assignment_turned_in:before,
|
291
|
+
.mi.assignment_turned_in:before {
|
292
292
|
content: '\e862';
|
293
293
|
}
|
294
294
|
.material-icons.assistant:before,
|
295
295
|
.mi.assistant:before {
|
296
296
|
content: '\e39f';
|
297
297
|
}
|
298
|
-
.material-icons.
|
299
|
-
.mi.
|
298
|
+
.material-icons.assistant_photo:before,
|
299
|
+
.mi.assistant_photo:before {
|
300
300
|
content: '\e3a0';
|
301
301
|
}
|
302
|
-
.material-icons.
|
303
|
-
.mi.
|
302
|
+
.material-icons.attach_file:before,
|
303
|
+
.mi.attach_file:before {
|
304
304
|
content: '\e226';
|
305
305
|
}
|
306
|
-
.material-icons.
|
307
|
-
.mi.
|
306
|
+
.material-icons.attach_money:before,
|
307
|
+
.mi.attach_money:before {
|
308
308
|
content: '\e227';
|
309
309
|
}
|
310
310
|
.material-icons.attachment:before,
|
@@ -319,8 +319,8 @@
|
|
319
319
|
.mi.autorenew:before {
|
320
320
|
content: '\e863';
|
321
321
|
}
|
322
|
-
.material-icons.
|
323
|
-
.mi.
|
322
|
+
.material-icons.av_timer:before,
|
323
|
+
.mi.av_timer:before {
|
324
324
|
content: '\e01b';
|
325
325
|
}
|
326
326
|
.material-icons.backspace:before,
|
@@ -331,24 +331,24 @@
|
|
331
331
|
.mi.backup:before {
|
332
332
|
content: '\e864';
|
333
333
|
}
|
334
|
-
.material-icons.
|
335
|
-
.mi.
|
334
|
+
.material-icons.battery_alert:before,
|
335
|
+
.mi.battery_alert:before {
|
336
336
|
content: '\e19c';
|
337
337
|
}
|
338
|
-
.material-icons.
|
339
|
-
.mi.
|
338
|
+
.material-icons.battery_charging_full:before,
|
339
|
+
.mi.battery_charging_full:before {
|
340
340
|
content: '\e1a3';
|
341
341
|
}
|
342
|
-
.material-icons.
|
343
|
-
.mi.
|
342
|
+
.material-icons.battery_full:before,
|
343
|
+
.mi.battery_full:before {
|
344
344
|
content: '\e1a4';
|
345
345
|
}
|
346
|
-
.material-icons.
|
347
|
-
.mi.
|
346
|
+
.material-icons.battery_std:before,
|
347
|
+
.mi.battery_std:before {
|
348
348
|
content: '\e1a5';
|
349
349
|
}
|
350
|
-
.material-icons.
|
351
|
-
.mi.
|
350
|
+
.material-icons.battery_unknown:before,
|
351
|
+
.mi.battery_unknown:before {
|
352
352
|
content: '\e1a6';
|
353
353
|
}
|
354
354
|
.material-icons.beenhere:before,
|
@@ -363,36 +363,36 @@
|
|
363
363
|
.mi.bluetooth:before {
|
364
364
|
content: '\e1a7';
|
365
365
|
}
|
366
|
-
.material-icons.
|
367
|
-
.mi.
|
366
|
+
.material-icons.bluetooth_audio:before,
|
367
|
+
.mi.bluetooth_audio:before {
|
368
368
|
content: '\e60f';
|
369
369
|
}
|
370
|
-
.material-icons.
|
371
|
-
.mi.
|
370
|
+
.material-icons.bluetooth_connected:before,
|
371
|
+
.mi.bluetooth_connected:before {
|
372
372
|
content: '\e1a8';
|
373
373
|
}
|
374
|
-
.material-icons.
|
375
|
-
.mi.
|
374
|
+
.material-icons.bluetooth_disabled:before,
|
375
|
+
.mi.bluetooth_disabled:before {
|
376
376
|
content: '\e1a9';
|
377
377
|
}
|
378
|
-
.material-icons.
|
379
|
-
.mi.
|
378
|
+
.material-icons.bluetooth_searching:before,
|
379
|
+
.mi.bluetooth_searching:before {
|
380
380
|
content: '\e1aa';
|
381
381
|
}
|
382
|
-
.material-icons.
|
383
|
-
.mi.
|
382
|
+
.material-icons.blur_circular:before,
|
383
|
+
.mi.blur_circular:before {
|
384
384
|
content: '\e3a2';
|
385
385
|
}
|
386
|
-
.material-icons.
|
387
|
-
.mi.
|
386
|
+
.material-icons.blur_linear:before,
|
387
|
+
.mi.blur_linear:before {
|
388
388
|
content: '\e3a3';
|
389
389
|
}
|
390
|
-
.material-icons.
|
391
|
-
.mi.
|
390
|
+
.material-icons.blur_off:before,
|
391
|
+
.mi.blur_off:before {
|
392
392
|
content: '\e3a4';
|
393
393
|
}
|
394
|
-
.material-icons.
|
395
|
-
.mi.
|
394
|
+
.material-icons.blur_on:before,
|
395
|
+
.mi.blur_on:before {
|
396
396
|
content: '\e3a5';
|
397
397
|
}
|
398
398
|
.material-icons.book:before,
|
@@ -403,112 +403,112 @@
|
|
403
403
|
.mi.bookmark:before {
|
404
404
|
content: '\e866';
|
405
405
|
}
|
406
|
-
.material-icons.
|
407
|
-
.mi.
|
406
|
+
.material-icons.bookmark_border:before,
|
407
|
+
.mi.bookmark_border:before {
|
408
408
|
content: '\e867';
|
409
409
|
}
|
410
|
-
.material-icons.
|
411
|
-
.mi.
|
410
|
+
.material-icons.border_all:before,
|
411
|
+
.mi.border_all:before {
|
412
412
|
content: '\e228';
|
413
413
|
}
|
414
|
-
.material-icons.
|
415
|
-
.mi.
|
414
|
+
.material-icons.border_bottom:before,
|
415
|
+
.mi.border_bottom:before {
|
416
416
|
content: '\e229';
|
417
417
|
}
|
418
|
-
.material-icons.
|
419
|
-
.mi.
|
418
|
+
.material-icons.border_clear:before,
|
419
|
+
.mi.border_clear:before {
|
420
420
|
content: '\e22a';
|
421
421
|
}
|
422
|
-
.material-icons.
|
423
|
-
.mi.
|
422
|
+
.material-icons.border_color:before,
|
423
|
+
.mi.border_color:before {
|
424
424
|
content: '\e22b';
|
425
425
|
}
|
426
|
-
.material-icons.
|
427
|
-
.mi.
|
426
|
+
.material-icons.border_horizontal:before,
|
427
|
+
.mi.border_horizontal:before {
|
428
428
|
content: '\e22c';
|
429
429
|
}
|
430
|
-
.material-icons.
|
431
|
-
.mi.
|
430
|
+
.material-icons.border_inner:before,
|
431
|
+
.mi.border_inner:before {
|
432
432
|
content: '\e22d';
|
433
433
|
}
|
434
|
-
.material-icons.
|
435
|
-
.mi.
|
434
|
+
.material-icons.border_left:before,
|
435
|
+
.mi.border_left:before {
|
436
436
|
content: '\e22e';
|
437
437
|
}
|
438
|
-
.material-icons.
|
439
|
-
.mi.
|
438
|
+
.material-icons.border_outer:before,
|
439
|
+
.mi.border_outer:before {
|
440
440
|
content: '\e22f';
|
441
441
|
}
|
442
|
-
.material-icons.
|
443
|
-
.mi.
|
442
|
+
.material-icons.border_right:before,
|
443
|
+
.mi.border_right:before {
|
444
444
|
content: '\e230';
|
445
445
|
}
|
446
|
-
.material-icons.
|
447
|
-
.mi.
|
446
|
+
.material-icons.border_style:before,
|
447
|
+
.mi.border_style:before {
|
448
448
|
content: '\e231';
|
449
449
|
}
|
450
|
-
.material-icons.
|
451
|
-
.mi.
|
450
|
+
.material-icons.border_top:before,
|
451
|
+
.mi.border_top:before {
|
452
452
|
content: '\e232';
|
453
453
|
}
|
454
|
-
.material-icons.
|
455
|
-
.mi.
|
454
|
+
.material-icons.border_vertical:before,
|
455
|
+
.mi.border_vertical:before {
|
456
456
|
content: '\e233';
|
457
457
|
}
|
458
|
-
.material-icons.
|
459
|
-
.mi.
|
458
|
+
.material-icons.brightness_1:before,
|
459
|
+
.mi.brightness_1:before {
|
460
460
|
content: '\e3a6';
|
461
461
|
}
|
462
|
-
.material-icons.
|
463
|
-
.mi.
|
462
|
+
.material-icons.brightness_2:before,
|
463
|
+
.mi.brightness_2:before {
|
464
464
|
content: '\e3a7';
|
465
465
|
}
|
466
|
-
.material-icons.
|
467
|
-
.mi.
|
466
|
+
.material-icons.brightness_3:before,
|
467
|
+
.mi.brightness_3:before {
|
468
468
|
content: '\e3a8';
|
469
469
|
}
|
470
|
-
.material-icons.
|
471
|
-
.mi.
|
470
|
+
.material-icons.brightness_4:before,
|
471
|
+
.mi.brightness_4:before {
|
472
472
|
content: '\e3a9';
|
473
473
|
}
|
474
|
-
.material-icons.
|
475
|
-
.mi.
|
474
|
+
.material-icons.brightness_5:before,
|
475
|
+
.mi.brightness_5:before {
|
476
476
|
content: '\e3aa';
|
477
477
|
}
|
478
|
-
.material-icons.
|
479
|
-
.mi.
|
478
|
+
.material-icons.brightness_6:before,
|
479
|
+
.mi.brightness_6:before {
|
480
480
|
content: '\e3ab';
|
481
481
|
}
|
482
|
-
.material-icons.
|
483
|
-
.mi.
|
482
|
+
.material-icons.brightness_7:before,
|
483
|
+
.mi.brightness_7:before {
|
484
484
|
content: '\e3ac';
|
485
485
|
}
|
486
|
-
.material-icons.
|
487
|
-
.mi.
|
486
|
+
.material-icons.brightness_auto:before,
|
487
|
+
.mi.brightness_auto:before {
|
488
488
|
content: '\e1ab';
|
489
489
|
}
|
490
|
-
.material-icons.
|
491
|
-
.mi.
|
490
|
+
.material-icons.brightness_high:before,
|
491
|
+
.mi.brightness_high:before {
|
492
492
|
content: '\e1ac';
|
493
493
|
}
|
494
|
-
.material-icons.
|
495
|
-
.mi.
|
494
|
+
.material-icons.brightness_low:before,
|
495
|
+
.mi.brightness_low:before {
|
496
496
|
content: '\e1ad';
|
497
497
|
}
|
498
|
-
.material-icons.
|
499
|
-
.mi.
|
498
|
+
.material-icons.brightness_medium:before,
|
499
|
+
.mi.brightness_medium:before {
|
500
500
|
content: '\e1ae';
|
501
501
|
}
|
502
|
-
.material-icons.
|
503
|
-
.mi.
|
502
|
+
.material-icons.broken_image:before,
|
503
|
+
.mi.broken_image:before {
|
504
504
|
content: '\e3ad';
|
505
505
|
}
|
506
506
|
.material-icons.brush:before,
|
507
507
|
.mi.brush:before {
|
508
508
|
content: '\e3ae';
|
509
509
|
}
|
510
|
-
.material-icons.
|
511
|
-
.mi.
|
510
|
+
.material-icons.bug_report:before,
|
511
|
+
.mi.bug_report:before {
|
512
512
|
content: '\e868';
|
513
513
|
}
|
514
514
|
.material-icons.build:before,
|
@@ -531,128 +531,128 @@
|
|
531
531
|
.mi.call:before {
|
532
532
|
content: '\e0b0';
|
533
533
|
}
|
534
|
-
.material-icons.
|
535
|
-
.mi.
|
534
|
+
.material-icons.call_end:before,
|
535
|
+
.mi.call_end:before {
|
536
536
|
content: '\e0b1';
|
537
537
|
}
|
538
|
-
.material-icons.
|
539
|
-
.mi.
|
538
|
+
.material-icons.call_made:before,
|
539
|
+
.mi.call_made:before {
|
540
540
|
content: '\e0b2';
|
541
541
|
}
|
542
|
-
.material-icons.
|
543
|
-
.mi.
|
542
|
+
.material-icons.call_merge:before,
|
543
|
+
.mi.call_merge:before {
|
544
544
|
content: '\e0b3';
|
545
545
|
}
|
546
|
-
.material-icons.
|
547
|
-
.mi.
|
546
|
+
.material-icons.call_missed:before,
|
547
|
+
.mi.call_missed:before {
|
548
548
|
content: '\e0b4';
|
549
549
|
}
|
550
|
-
.material-icons.
|
551
|
-
.mi.
|
550
|
+
.material-icons.call_received:before,
|
551
|
+
.mi.call_received:before {
|
552
552
|
content: '\e0b5';
|
553
553
|
}
|
554
|
-
.material-icons.
|
555
|
-
.mi.
|
554
|
+
.material-icons.call_split:before,
|
555
|
+
.mi.call_split:before {
|
556
556
|
content: '\e0b6';
|
557
557
|
}
|
558
558
|
.material-icons.camera:before,
|
559
559
|
.mi.camera:before {
|
560
560
|
content: '\e3af';
|
561
561
|
}
|
562
|
-
.material-icons.
|
563
|
-
.mi.
|
562
|
+
.material-icons.camera_alt:before,
|
563
|
+
.mi.camera_alt:before {
|
564
564
|
content: '\e3b0';
|
565
565
|
}
|
566
|
-
.material-icons.
|
567
|
-
.mi.
|
566
|
+
.material-icons.camera_enhance:before,
|
567
|
+
.mi.camera_enhance:before {
|
568
568
|
content: '\e8fc';
|
569
569
|
}
|
570
|
-
.material-icons.
|
571
|
-
.mi.
|
570
|
+
.material-icons.camera_front:before,
|
571
|
+
.mi.camera_front:before {
|
572
572
|
content: '\e3b1';
|
573
573
|
}
|
574
|
-
.material-icons.
|
575
|
-
.mi.
|
574
|
+
.material-icons.camera_rear:before,
|
575
|
+
.mi.camera_rear:before {
|
576
576
|
content: '\e3b2';
|
577
577
|
}
|
578
|
-
.material-icons.
|
579
|
-
.mi.
|
578
|
+
.material-icons.camera_roll:before,
|
579
|
+
.mi.camera_roll:before {
|
580
580
|
content: '\e3b3';
|
581
581
|
}
|
582
582
|
.material-icons.cancel:before,
|
583
583
|
.mi.cancel:before {
|
584
584
|
content: '\e5c9';
|
585
585
|
}
|
586
|
-
.material-icons.
|
587
|
-
.mi.
|
586
|
+
.material-icons.card_giftcard:before,
|
587
|
+
.mi.card_giftcard:before {
|
588
588
|
content: '\e8f6';
|
589
589
|
}
|
590
|
-
.material-icons.
|
591
|
-
.mi.
|
590
|
+
.material-icons.card_membership:before,
|
591
|
+
.mi.card_membership:before {
|
592
592
|
content: '\e8f7';
|
593
593
|
}
|
594
|
-
.material-icons.
|
595
|
-
.mi.
|
594
|
+
.material-icons.card_travel:before,
|
595
|
+
.mi.card_travel:before {
|
596
596
|
content: '\e8f8';
|
597
597
|
}
|
598
598
|
.material-icons.cast:before,
|
599
599
|
.mi.cast:before {
|
600
600
|
content: '\e307';
|
601
601
|
}
|
602
|
-
.material-icons.
|
603
|
-
.mi.
|
602
|
+
.material-icons.cast_connected:before,
|
603
|
+
.mi.cast_connected:before {
|
604
604
|
content: '\e308';
|
605
605
|
}
|
606
|
-
.material-icons.
|
607
|
-
.mi.
|
606
|
+
.material-icons.center_focus_strong:before,
|
607
|
+
.mi.center_focus_strong:before {
|
608
608
|
content: '\e3b4';
|
609
609
|
}
|
610
|
-
.material-icons.
|
611
|
-
.mi.
|
610
|
+
.material-icons.center_focus_weak:before,
|
611
|
+
.mi.center_focus_weak:before {
|
612
612
|
content: '\e3b5';
|
613
613
|
}
|
614
|
-
.material-icons.
|
615
|
-
.mi.
|
614
|
+
.material-icons.change_history:before,
|
615
|
+
.mi.change_history:before {
|
616
616
|
content: '\e86b';
|
617
617
|
}
|
618
618
|
.material-icons.chat:before,
|
619
619
|
.mi.chat:before {
|
620
620
|
content: '\e0b7';
|
621
621
|
}
|
622
|
-
.material-icons.
|
623
|
-
.mi.
|
622
|
+
.material-icons.chat_bubble:before,
|
623
|
+
.mi.chat_bubble:before {
|
624
624
|
content: '\e0ca';
|
625
625
|
}
|
626
|
-
.material-icons.
|
627
|
-
.mi.
|
626
|
+
.material-icons.chat_bubble_outline:before,
|
627
|
+
.mi.chat_bubble_outline:before {
|
628
628
|
content: '\e0cb';
|
629
629
|
}
|
630
630
|
.material-icons.check:before,
|
631
631
|
.mi.check:before {
|
632
632
|
content: '\e5ca';
|
633
633
|
}
|
634
|
-
.material-icons.
|
635
|
-
.mi.
|
634
|
+
.material-icons.check_box:before,
|
635
|
+
.mi.check_box:before {
|
636
636
|
content: '\e834';
|
637
637
|
}
|
638
|
-
.material-icons.
|
639
|
-
.mi.
|
638
|
+
.material-icons.check_box_outline_blank:before,
|
639
|
+
.mi.check_box_outline_blank:before {
|
640
640
|
content: '\e835';
|
641
641
|
}
|
642
|
-
.material-icons.
|
643
|
-
.mi.
|
642
|
+
.material-icons.check_circle:before,
|
643
|
+
.mi.check_circle:before {
|
644
644
|
content: '\e86c';
|
645
645
|
}
|
646
|
-
.material-icons.
|
647
|
-
.mi.
|
646
|
+
.material-icons.chevron_left:before,
|
647
|
+
.mi.chevron_left:before {
|
648
648
|
content: '\e5cb';
|
649
649
|
}
|
650
|
-
.material-icons.
|
651
|
-
.mi.
|
650
|
+
.material-icons.chevron_right:before,
|
651
|
+
.mi.chevron_right:before {
|
652
652
|
content: '\e5cc';
|
653
653
|
}
|
654
|
-
.material-icons.
|
655
|
-
.mi.
|
654
|
+
.material-icons.chrome_reader_mode:before,
|
655
|
+
.mi.chrome_reader_mode:before {
|
656
656
|
content: '\e86d';
|
657
657
|
}
|
658
658
|
.material-icons.class:before,
|
@@ -663,44 +663,44 @@
|
|
663
663
|
.mi.clear:before {
|
664
664
|
content: '\e14c';
|
665
665
|
}
|
666
|
-
.material-icons.
|
667
|
-
.mi.
|
666
|
+
.material-icons.clear_all:before,
|
667
|
+
.mi.clear_all:before {
|
668
668
|
content: '\e0b8';
|
669
669
|
}
|
670
670
|
.material-icons.close:before,
|
671
671
|
.mi.close:before {
|
672
672
|
content: '\e5cd';
|
673
673
|
}
|
674
|
-
.material-icons.
|
675
|
-
.mi.
|
674
|
+
.material-icons.closed_caption:before,
|
675
|
+
.mi.closed_caption:before {
|
676
676
|
content: '\e01c';
|
677
677
|
}
|
678
678
|
.material-icons.cloud:before,
|
679
679
|
.mi.cloud:before {
|
680
680
|
content: '\e2bd';
|
681
681
|
}
|
682
|
-
.material-icons.
|
683
|
-
.mi.
|
682
|
+
.material-icons.cloud_circle:before,
|
683
|
+
.mi.cloud_circle:before {
|
684
684
|
content: '\e2be';
|
685
685
|
}
|
686
|
-
.material-icons.
|
687
|
-
.mi.
|
686
|
+
.material-icons.cloud_done:before,
|
687
|
+
.mi.cloud_done:before {
|
688
688
|
content: '\e2bf';
|
689
689
|
}
|
690
|
-
.material-icons.
|
691
|
-
.mi.
|
690
|
+
.material-icons.cloud_download:before,
|
691
|
+
.mi.cloud_download:before {
|
692
692
|
content: '\e2c0';
|
693
693
|
}
|
694
|
-
.material-icons.
|
695
|
-
.mi.
|
694
|
+
.material-icons.cloud_off:before,
|
695
|
+
.mi.cloud_off:before {
|
696
696
|
content: '\e2c1';
|
697
697
|
}
|
698
|
-
.material-icons.
|
699
|
-
.mi.
|
698
|
+
.material-icons.cloud_queue:before,
|
699
|
+
.mi.cloud_queue:before {
|
700
700
|
content: '\e2c2';
|
701
701
|
}
|
702
|
-
.material-icons.
|
703
|
-
.mi.
|
702
|
+
.material-icons.cloud_upload:before,
|
703
|
+
.mi.cloud_upload:before {
|
704
704
|
content: '\e2c3';
|
705
705
|
}
|
706
706
|
.material-icons.code:before,
|
@@ -711,12 +711,12 @@
|
|
711
711
|
.mi.collections:before {
|
712
712
|
content: '\e3b6';
|
713
713
|
}
|
714
|
-
.material-icons.
|
715
|
-
.mi.
|
714
|
+
.material-icons.collections_bookmark:before,
|
715
|
+
.mi.collections_bookmark:before {
|
716
716
|
content: '\e431';
|
717
717
|
}
|
718
|
-
.material-icons.
|
719
|
-
.mi.
|
718
|
+
.material-icons.color_lens:before,
|
719
|
+
.mi.color_lens:before {
|
720
720
|
content: '\e3b7';
|
721
721
|
}
|
722
722
|
.material-icons.colorize:before,
|
@@ -735,96 +735,96 @@
|
|
735
735
|
.mi.computer:before {
|
736
736
|
content: '\e30a';
|
737
737
|
}
|
738
|
-
.material-icons.
|
739
|
-
.mi.
|
738
|
+
.material-icons.confirmation_number:before,
|
739
|
+
.mi.confirmation_number:before {
|
740
740
|
content: '\e638';
|
741
741
|
}
|
742
|
-
.material-icons.
|
743
|
-
.mi.
|
742
|
+
.material-icons.contact_phone:before,
|
743
|
+
.mi.contact_phone:before {
|
744
744
|
content: '\e0cf';
|
745
745
|
}
|
746
746
|
.material-icons.contacts:before,
|
747
747
|
.mi.contacts:before {
|
748
748
|
content: '\e0ba';
|
749
749
|
}
|
750
|
-
.material-icons.
|
751
|
-
.mi.
|
750
|
+
.material-icons.content_copy:before,
|
751
|
+
.mi.content_copy:before {
|
752
752
|
content: '\e14d';
|
753
753
|
}
|
754
|
-
.material-icons.
|
755
|
-
.mi.
|
754
|
+
.material-icons.content_cut:before,
|
755
|
+
.mi.content_cut:before {
|
756
756
|
content: '\e14e';
|
757
757
|
}
|
758
|
-
.material-icons.
|
759
|
-
.mi.
|
758
|
+
.material-icons.content_paste:before,
|
759
|
+
.mi.content_paste:before {
|
760
760
|
content: '\e14f';
|
761
761
|
}
|
762
|
-
.material-icons.
|
763
|
-
.mi.
|
762
|
+
.material-icons.control_point:before,
|
763
|
+
.mi.control_point:before {
|
764
764
|
content: '\e3ba';
|
765
765
|
}
|
766
|
-
.material-icons.
|
767
|
-
.mi.
|
766
|
+
.material-icons.control_point_duplicate:before,
|
767
|
+
.mi.control_point_duplicate:before {
|
768
768
|
content: '\e3bb';
|
769
769
|
}
|
770
770
|
.material-icons.create:before,
|
771
771
|
.mi.create:before {
|
772
772
|
content: '\e150';
|
773
773
|
}
|
774
|
-
.material-icons.
|
775
|
-
.mi.
|
774
|
+
.material-icons.credit_card:before,
|
775
|
+
.mi.credit_card:before {
|
776
776
|
content: '\e870';
|
777
777
|
}
|
778
778
|
.material-icons.crop:before,
|
779
779
|
.mi.crop:before {
|
780
780
|
content: '\e3be';
|
781
781
|
}
|
782
|
-
.material-icons.
|
783
|
-
.mi.
|
782
|
+
.material-icons.crop_16_9:before,
|
783
|
+
.mi.crop_16_9:before {
|
784
784
|
content: '\e3bc';
|
785
785
|
}
|
786
|
-
.material-icons.
|
787
|
-
.mi.
|
786
|
+
.material-icons.crop_3_2:before,
|
787
|
+
.mi.crop_3_2:before {
|
788
788
|
content: '\e3bd';
|
789
789
|
}
|
790
|
-
.material-icons.
|
791
|
-
.mi.
|
790
|
+
.material-icons.crop_5_4:before,
|
791
|
+
.mi.crop_5_4:before {
|
792
792
|
content: '\e3bf';
|
793
793
|
}
|
794
|
-
.material-icons.
|
795
|
-
.mi.
|
794
|
+
.material-icons.crop_7_5:before,
|
795
|
+
.mi.crop_7_5:before {
|
796
796
|
content: '\e3c0';
|
797
797
|
}
|
798
|
-
.material-icons.
|
799
|
-
.mi.
|
798
|
+
.material-icons.crop_din:before,
|
799
|
+
.mi.crop_din:before {
|
800
800
|
content: '\e3c1';
|
801
801
|
}
|
802
|
-
.material-icons.
|
803
|
-
.mi.
|
802
|
+
.material-icons.crop_free:before,
|
803
|
+
.mi.crop_free:before {
|
804
804
|
content: '\e3c2';
|
805
805
|
}
|
806
|
-
.material-icons.
|
807
|
-
.mi.
|
806
|
+
.material-icons.crop_landscape:before,
|
807
|
+
.mi.crop_landscape:before {
|
808
808
|
content: '\e3c3';
|
809
809
|
}
|
810
|
-
.material-icons.
|
811
|
-
.mi.
|
810
|
+
.material-icons.crop_original:before,
|
811
|
+
.mi.crop_original:before {
|
812
812
|
content: '\e3c4';
|
813
813
|
}
|
814
|
-
.material-icons.
|
815
|
-
.mi.
|
814
|
+
.material-icons.crop_portrait:before,
|
815
|
+
.mi.crop_portrait:before {
|
816
816
|
content: '\e3c5';
|
817
817
|
}
|
818
|
-
.material-icons.
|
819
|
-
.mi.
|
818
|
+
.material-icons.crop_square:before,
|
819
|
+
.mi.crop_square:before {
|
820
820
|
content: '\e3c6';
|
821
821
|
}
|
822
822
|
.material-icons.dashboard:before,
|
823
823
|
.mi.dashboard:before {
|
824
824
|
content: '\e871';
|
825
825
|
}
|
826
|
-
.material-icons.
|
827
|
-
.mi.
|
826
|
+
.material-icons.data_usage:before,
|
827
|
+
.mi.data_usage:before {
|
828
828
|
content: '\e1af';
|
829
829
|
}
|
830
830
|
.material-icons.dehaze:before,
|
@@ -839,36 +839,36 @@
|
|
839
839
|
.mi.description:before {
|
840
840
|
content: '\e873';
|
841
841
|
}
|
842
|
-
.material-icons.
|
843
|
-
.mi.
|
842
|
+
.material-icons.desktop_mac:before,
|
843
|
+
.mi.desktop_mac:before {
|
844
844
|
content: '\e30b';
|
845
845
|
}
|
846
|
-
.material-icons.
|
847
|
-
.mi.
|
846
|
+
.material-icons.desktop_windows:before,
|
847
|
+
.mi.desktop_windows:before {
|
848
848
|
content: '\e30c';
|
849
849
|
}
|
850
850
|
.material-icons.details:before,
|
851
851
|
.mi.details:before {
|
852
852
|
content: '\e3c8';
|
853
853
|
}
|
854
|
-
.material-icons.
|
855
|
-
.mi.
|
854
|
+
.material-icons.developer_board:before,
|
855
|
+
.mi.developer_board:before {
|
856
856
|
content: '\e30d';
|
857
857
|
}
|
858
|
-
.material-icons.
|
859
|
-
.mi.
|
858
|
+
.material-icons.developer_mode:before,
|
859
|
+
.mi.developer_mode:before {
|
860
860
|
content: '\e1b0';
|
861
861
|
}
|
862
|
-
.material-icons.
|
863
|
-
.mi.
|
862
|
+
.material-icons.device_hub:before,
|
863
|
+
.mi.device_hub:before {
|
864
864
|
content: '\e335';
|
865
865
|
}
|
866
866
|
.material-icons.devices:before,
|
867
867
|
.mi.devices:before {
|
868
868
|
content: '\e1b1';
|
869
869
|
}
|
870
|
-
.material-icons.
|
871
|
-
.mi.
|
870
|
+
.material-icons.dialer_sip:before,
|
871
|
+
.mi.dialer_sip:before {
|
872
872
|
content: '\e0bb';
|
873
873
|
}
|
874
874
|
.material-icons.dialpad:before,
|
@@ -879,56 +879,56 @@
|
|
879
879
|
.mi.directions:before {
|
880
880
|
content: '\e52e';
|
881
881
|
}
|
882
|
-
.material-icons.
|
883
|
-
.mi.
|
882
|
+
.material-icons.directions_bike:before,
|
883
|
+
.mi.directions_bike:before {
|
884
884
|
content: '\e52f';
|
885
885
|
}
|
886
|
-
.material-icons.
|
887
|
-
.mi.
|
886
|
+
.material-icons.directions_boat:before,
|
887
|
+
.mi.directions_boat:before {
|
888
888
|
content: '\e532';
|
889
889
|
}
|
890
|
-
.material-icons.
|
891
|
-
.mi.
|
890
|
+
.material-icons.directions_bus:before,
|
891
|
+
.mi.directions_bus:before {
|
892
892
|
content: '\e530';
|
893
893
|
}
|
894
|
-
.material-icons.
|
895
|
-
.mi.
|
894
|
+
.material-icons.directions_car:before,
|
895
|
+
.mi.directions_car:before {
|
896
896
|
content: '\e531';
|
897
897
|
}
|
898
|
-
.material-icons.
|
899
|
-
.mi.
|
898
|
+
.material-icons.directions_railway:before,
|
899
|
+
.mi.directions_railway:before {
|
900
900
|
content: '\e534';
|
901
901
|
}
|
902
|
-
.material-icons.
|
903
|
-
.mi.
|
902
|
+
.material-icons.directions_run:before,
|
903
|
+
.mi.directions_run:before {
|
904
904
|
content: '\e566';
|
905
905
|
}
|
906
|
-
.material-icons.
|
907
|
-
.mi.
|
906
|
+
.material-icons.directions_subway:before,
|
907
|
+
.mi.directions_subway:before {
|
908
908
|
content: '\e533';
|
909
909
|
}
|
910
|
-
.material-icons.
|
911
|
-
.mi.
|
910
|
+
.material-icons.directions_transit:before,
|
911
|
+
.mi.directions_transit:before {
|
912
912
|
content: '\e535';
|
913
913
|
}
|
914
|
-
.material-icons.
|
915
|
-
.mi.
|
914
|
+
.material-icons.directions_walk:before,
|
915
|
+
.mi.directions_walk:before {
|
916
916
|
content: '\e536';
|
917
917
|
}
|
918
|
-
.material-icons.
|
919
|
-
.mi.
|
918
|
+
.material-icons.disc_full:before,
|
919
|
+
.mi.disc_full:before {
|
920
920
|
content: '\e610';
|
921
921
|
}
|
922
922
|
.material-icons.dns:before,
|
923
923
|
.mi.dns:before {
|
924
924
|
content: '\e875';
|
925
925
|
}
|
926
|
-
.material-icons.
|
927
|
-
.mi.
|
926
|
+
.material-icons.do_not_disturb:before,
|
927
|
+
.mi.do_not_disturb:before {
|
928
928
|
content: '\e612';
|
929
929
|
}
|
930
|
-
.material-icons.
|
931
|
-
.mi.
|
930
|
+
.material-icons.do_not_disturb_alt:before,
|
931
|
+
.mi.do_not_disturb_alt:before {
|
932
932
|
content: '\e611';
|
933
933
|
}
|
934
934
|
.material-icons.dock:before,
|
@@ -943,16 +943,16 @@
|
|
943
943
|
.mi.done:before {
|
944
944
|
content: '\e876';
|
945
945
|
}
|
946
|
-
.material-icons.
|
947
|
-
.mi.
|
946
|
+
.material-icons.done_all:before,
|
947
|
+
.mi.done_all:before {
|
948
948
|
content: '\e877';
|
949
949
|
}
|
950
950
|
.material-icons.drafts:before,
|
951
951
|
.mi.drafts:before {
|
952
952
|
content: '\e151';
|
953
953
|
}
|
954
|
-
.material-icons.
|
955
|
-
.mi.
|
954
|
+
.material-icons.drive_eta:before,
|
955
|
+
.mi.drive_eta:before {
|
956
956
|
content: '\e613';
|
957
957
|
}
|
958
958
|
.material-icons.dvr:before,
|
@@ -979,40 +979,40 @@
|
|
979
979
|
.mi.error:before {
|
980
980
|
content: '\e000';
|
981
981
|
}
|
982
|
-
.material-icons.
|
983
|
-
.mi.
|
982
|
+
.material-icons.error_outline:before,
|
983
|
+
.mi.error_outline:before {
|
984
984
|
content: '\e001';
|
985
985
|
}
|
986
986
|
.material-icons.event:before,
|
987
987
|
.mi.event:before {
|
988
988
|
content: '\e878';
|
989
989
|
}
|
990
|
-
.material-icons.
|
991
|
-
.mi.
|
990
|
+
.material-icons.event_available:before,
|
991
|
+
.mi.event_available:before {
|
992
992
|
content: '\e614';
|
993
993
|
}
|
994
|
-
.material-icons.
|
995
|
-
.mi.
|
994
|
+
.material-icons.event_busy:before,
|
995
|
+
.mi.event_busy:before {
|
996
996
|
content: '\e615';
|
997
997
|
}
|
998
|
-
.material-icons.
|
999
|
-
.mi.
|
998
|
+
.material-icons.event_note:before,
|
999
|
+
.mi.event_note:before {
|
1000
1000
|
content: '\e616';
|
1001
1001
|
}
|
1002
|
-
.material-icons.
|
1003
|
-
.mi.
|
1002
|
+
.material-icons.event_seat:before,
|
1003
|
+
.mi.event_seat:before {
|
1004
1004
|
content: '\e903';
|
1005
1005
|
}
|
1006
|
-
.material-icons.
|
1007
|
-
.mi.
|
1006
|
+
.material-icons.exit_to_app:before,
|
1007
|
+
.mi.exit_to_app:before {
|
1008
1008
|
content: '\e879';
|
1009
1009
|
}
|
1010
|
-
.material-icons.
|
1011
|
-
.mi.
|
1010
|
+
.material-icons.expand_less:before,
|
1011
|
+
.mi.expand_less:before {
|
1012
1012
|
content: '\e5ce';
|
1013
1013
|
}
|
1014
|
-
.material-icons.
|
1015
|
-
.mi.
|
1014
|
+
.material-icons.expand_more:before,
|
1015
|
+
.mi.expand_more:before {
|
1016
1016
|
content: '\e5cf';
|
1017
1017
|
}
|
1018
1018
|
.material-icons.explicit:before,
|
@@ -1027,24 +1027,24 @@
|
|
1027
1027
|
.mi.exposure:before {
|
1028
1028
|
content: '\e3ca';
|
1029
1029
|
}
|
1030
|
-
.material-icons.
|
1031
|
-
.mi.
|
1030
|
+
.material-icons.exposure_neg_1:before,
|
1031
|
+
.mi.exposure_neg_1:before {
|
1032
1032
|
content: '\e3cb';
|
1033
1033
|
}
|
1034
|
-
.material-icons.
|
1035
|
-
.mi.
|
1034
|
+
.material-icons.exposure_neg_2:before,
|
1035
|
+
.mi.exposure_neg_2:before {
|
1036
1036
|
content: '\e3cc';
|
1037
1037
|
}
|
1038
|
-
.material-icons.
|
1039
|
-
.mi.
|
1038
|
+
.material-icons.exposure_plus_1:before,
|
1039
|
+
.mi.exposure_plus_1:before {
|
1040
1040
|
content: '\e3cd';
|
1041
1041
|
}
|
1042
|
-
.material-icons.
|
1043
|
-
.mi.
|
1042
|
+
.material-icons.exposure_plus_2:before,
|
1043
|
+
.mi.exposure_plus_2:before {
|
1044
1044
|
content: '\e3ce';
|
1045
1045
|
}
|
1046
|
-
.material-icons.
|
1047
|
-
.mi.
|
1046
|
+
.material-icons.exposure_zero:before,
|
1047
|
+
.mi.exposure_zero:before {
|
1048
1048
|
content: '\e3cf';
|
1049
1049
|
}
|
1050
1050
|
.material-icons.extension:before,
|
@@ -1055,120 +1055,120 @@
|
|
1055
1055
|
.mi.face:before {
|
1056
1056
|
content: '\e87c';
|
1057
1057
|
}
|
1058
|
-
.material-icons.
|
1059
|
-
.mi.
|
1058
|
+
.material-icons.fast_forward:before,
|
1059
|
+
.mi.fast_forward:before {
|
1060
1060
|
content: '\e01f';
|
1061
1061
|
}
|
1062
|
-
.material-icons.
|
1063
|
-
.mi.
|
1062
|
+
.material-icons.fast_rewind:before,
|
1063
|
+
.mi.fast_rewind:before {
|
1064
1064
|
content: '\e020';
|
1065
1065
|
}
|
1066
1066
|
.material-icons.favorite:before,
|
1067
1067
|
.mi.favorite:before {
|
1068
1068
|
content: '\e87d';
|
1069
1069
|
}
|
1070
|
-
.material-icons.
|
1071
|
-
.mi.
|
1070
|
+
.material-icons.favorite_border:before,
|
1071
|
+
.mi.favorite_border:before {
|
1072
1072
|
content: '\e87e';
|
1073
1073
|
}
|
1074
1074
|
.material-icons.feedback:before,
|
1075
1075
|
.mi.feedback:before {
|
1076
1076
|
content: '\e87f';
|
1077
1077
|
}
|
1078
|
-
.material-icons.
|
1079
|
-
.mi.
|
1078
|
+
.material-icons.file_download:before,
|
1079
|
+
.mi.file_download:before {
|
1080
1080
|
content: '\e2c4';
|
1081
1081
|
}
|
1082
|
-
.material-icons.
|
1083
|
-
.mi.
|
1082
|
+
.material-icons.file_upload:before,
|
1083
|
+
.mi.file_upload:before {
|
1084
1084
|
content: '\e2c6';
|
1085
1085
|
}
|
1086
1086
|
.material-icons.filter:before,
|
1087
1087
|
.mi.filter:before {
|
1088
1088
|
content: '\e3d3';
|
1089
1089
|
}
|
1090
|
-
.material-icons.
|
1091
|
-
.mi.
|
1090
|
+
.material-icons.filter_1:before,
|
1091
|
+
.mi.filter_1:before {
|
1092
1092
|
content: '\e3d0';
|
1093
1093
|
}
|
1094
|
-
.material-icons.
|
1095
|
-
.mi.
|
1094
|
+
.material-icons.filter_2:before,
|
1095
|
+
.mi.filter_2:before {
|
1096
1096
|
content: '\e3d1';
|
1097
1097
|
}
|
1098
|
-
.material-icons.
|
1099
|
-
.mi.
|
1098
|
+
.material-icons.filter_3:before,
|
1099
|
+
.mi.filter_3:before {
|
1100
1100
|
content: '\e3d2';
|
1101
1101
|
}
|
1102
|
-
.material-icons.
|
1103
|
-
.mi.
|
1102
|
+
.material-icons.filter_4:before,
|
1103
|
+
.mi.filter_4:before {
|
1104
1104
|
content: '\e3d4';
|
1105
1105
|
}
|
1106
|
-
.material-icons.
|
1107
|
-
.mi.
|
1106
|
+
.material-icons.filter_5:before,
|
1107
|
+
.mi.filter_5:before {
|
1108
1108
|
content: '\e3d5';
|
1109
1109
|
}
|
1110
|
-
.material-icons.
|
1111
|
-
.mi.
|
1110
|
+
.material-icons.filter_6:before,
|
1111
|
+
.mi.filter_6:before {
|
1112
1112
|
content: '\e3d6';
|
1113
1113
|
}
|
1114
|
-
.material-icons.
|
1115
|
-
.mi.
|
1114
|
+
.material-icons.filter_7:before,
|
1115
|
+
.mi.filter_7:before {
|
1116
1116
|
content: '\e3d7';
|
1117
1117
|
}
|
1118
|
-
.material-icons.
|
1119
|
-
.mi.
|
1118
|
+
.material-icons.filter_8:before,
|
1119
|
+
.mi.filter_8:before {
|
1120
1120
|
content: '\e3d8';
|
1121
1121
|
}
|
1122
|
-
.material-icons.
|
1123
|
-
.mi.
|
1122
|
+
.material-icons.filter_9:before,
|
1123
|
+
.mi.filter_9:before {
|
1124
1124
|
content: '\e3d9';
|
1125
1125
|
}
|
1126
|
-
.material-icons.
|
1127
|
-
.mi.
|
1126
|
+
.material-icons.filter_9_plus:before,
|
1127
|
+
.mi.filter_9_plus:before {
|
1128
1128
|
content: '\e3da';
|
1129
1129
|
}
|
1130
|
-
.material-icons.
|
1131
|
-
.mi.
|
1130
|
+
.material-icons.filter_b_and_w:before,
|
1131
|
+
.mi.filter_b_and_w:before {
|
1132
1132
|
content: '\e3db';
|
1133
1133
|
}
|
1134
|
-
.material-icons.
|
1135
|
-
.mi.
|
1134
|
+
.material-icons.filter_center_focus:before,
|
1135
|
+
.mi.filter_center_focus:before {
|
1136
1136
|
content: '\e3dc';
|
1137
1137
|
}
|
1138
|
-
.material-icons.
|
1139
|
-
.mi.
|
1138
|
+
.material-icons.filter_drama:before,
|
1139
|
+
.mi.filter_drama:before {
|
1140
1140
|
content: '\e3dd';
|
1141
1141
|
}
|
1142
|
-
.material-icons.
|
1143
|
-
.mi.
|
1142
|
+
.material-icons.filter_frames:before,
|
1143
|
+
.mi.filter_frames:before {
|
1144
1144
|
content: '\e3de';
|
1145
1145
|
}
|
1146
|
-
.material-icons.
|
1147
|
-
.mi.
|
1146
|
+
.material-icons.filter_hdr:before,
|
1147
|
+
.mi.filter_hdr:before {
|
1148
1148
|
content: '\e3df';
|
1149
1149
|
}
|
1150
|
-
.material-icons.
|
1151
|
-
.mi.
|
1150
|
+
.material-icons.filter_list:before,
|
1151
|
+
.mi.filter_list:before {
|
1152
1152
|
content: '\e152';
|
1153
1153
|
}
|
1154
|
-
.material-icons.
|
1155
|
-
.mi.
|
1154
|
+
.material-icons.filter_none:before,
|
1155
|
+
.mi.filter_none:before {
|
1156
1156
|
content: '\e3e0';
|
1157
1157
|
}
|
1158
|
-
.material-icons.
|
1159
|
-
.mi.
|
1158
|
+
.material-icons.filter_tilt_shift:before,
|
1159
|
+
.mi.filter_tilt_shift:before {
|
1160
1160
|
content: '\e3e2';
|
1161
1161
|
}
|
1162
|
-
.material-icons.
|
1163
|
-
.mi.
|
1162
|
+
.material-icons.filter_vintage:before,
|
1163
|
+
.mi.filter_vintage:before {
|
1164
1164
|
content: '\e3e3';
|
1165
1165
|
}
|
1166
|
-
.material-icons.
|
1167
|
-
.mi.
|
1166
|
+
.material-icons.find_in_page:before,
|
1167
|
+
.mi.find_in_page:before {
|
1168
1168
|
content: '\e880';
|
1169
1169
|
}
|
1170
|
-
.material-icons.
|
1171
|
-
.mi.
|
1170
|
+
.material-icons.find_replace:before,
|
1171
|
+
.mi.find_replace:before {
|
1172
1172
|
content: '\e881';
|
1173
1173
|
}
|
1174
1174
|
.material-icons.flag:before,
|
@@ -1179,148 +1179,148 @@
|
|
1179
1179
|
.mi.flare:before {
|
1180
1180
|
content: '\e3e4';
|
1181
1181
|
}
|
1182
|
-
.material-icons.
|
1183
|
-
.mi.
|
1182
|
+
.material-icons.flash_auto:before,
|
1183
|
+
.mi.flash_auto:before {
|
1184
1184
|
content: '\e3e5';
|
1185
1185
|
}
|
1186
|
-
.material-icons.
|
1187
|
-
.mi.
|
1186
|
+
.material-icons.flash_off:before,
|
1187
|
+
.mi.flash_off:before {
|
1188
1188
|
content: '\e3e6';
|
1189
1189
|
}
|
1190
|
-
.material-icons.
|
1191
|
-
.mi.
|
1190
|
+
.material-icons.flash_on:before,
|
1191
|
+
.mi.flash_on:before {
|
1192
1192
|
content: '\e3e7';
|
1193
1193
|
}
|
1194
1194
|
.material-icons.flight:before,
|
1195
1195
|
.mi.flight:before {
|
1196
1196
|
content: '\e539';
|
1197
1197
|
}
|
1198
|
-
.material-icons.
|
1199
|
-
.mi.
|
1198
|
+
.material-icons.flight_land:before,
|
1199
|
+
.mi.flight_land:before {
|
1200
1200
|
content: '\e904';
|
1201
1201
|
}
|
1202
|
-
.material-icons.
|
1203
|
-
.mi.
|
1202
|
+
.material-icons.flight_takeoff:before,
|
1203
|
+
.mi.flight_takeoff:before {
|
1204
1204
|
content: '\e905';
|
1205
1205
|
}
|
1206
1206
|
.material-icons.flip:before,
|
1207
1207
|
.mi.flip:before {
|
1208
1208
|
content: '\e3e8';
|
1209
1209
|
}
|
1210
|
-
.material-icons.
|
1211
|
-
.mi.
|
1210
|
+
.material-icons.flip_to_back:before,
|
1211
|
+
.mi.flip_to_back:before {
|
1212
1212
|
content: '\e882';
|
1213
1213
|
}
|
1214
|
-
.material-icons.
|
1215
|
-
.mi.
|
1214
|
+
.material-icons.flip_to_front:before,
|
1215
|
+
.mi.flip_to_front:before {
|
1216
1216
|
content: '\e883';
|
1217
1217
|
}
|
1218
1218
|
.material-icons.folder:before,
|
1219
1219
|
.mi.folder:before {
|
1220
1220
|
content: '\e2c7';
|
1221
1221
|
}
|
1222
|
-
.material-icons.
|
1223
|
-
.mi.
|
1222
|
+
.material-icons.folder_open:before,
|
1223
|
+
.mi.folder_open:before {
|
1224
1224
|
content: '\e2c8';
|
1225
1225
|
}
|
1226
|
-
.material-icons.
|
1227
|
-
.mi.
|
1226
|
+
.material-icons.folder_shared:before,
|
1227
|
+
.mi.folder_shared:before {
|
1228
1228
|
content: '\e2c9';
|
1229
1229
|
}
|
1230
|
-
.material-icons.
|
1231
|
-
.mi.
|
1230
|
+
.material-icons.folder_special:before,
|
1231
|
+
.mi.folder_special:before {
|
1232
1232
|
content: '\e617';
|
1233
1233
|
}
|
1234
|
-
.material-icons.
|
1235
|
-
.mi.
|
1234
|
+
.material-icons.font_download:before,
|
1235
|
+
.mi.font_download:before {
|
1236
1236
|
content: '\e167';
|
1237
1237
|
}
|
1238
|
-
.material-icons.
|
1239
|
-
.mi.
|
1238
|
+
.material-icons.format_align_center:before,
|
1239
|
+
.mi.format_align_center:before {
|
1240
1240
|
content: '\e234';
|
1241
1241
|
}
|
1242
|
-
.material-icons.
|
1243
|
-
.mi.
|
1242
|
+
.material-icons.format_align_justify:before,
|
1243
|
+
.mi.format_align_justify:before {
|
1244
1244
|
content: '\e235';
|
1245
1245
|
}
|
1246
|
-
.material-icons.
|
1247
|
-
.mi.
|
1246
|
+
.material-icons.format_align_left:before,
|
1247
|
+
.mi.format_align_left:before {
|
1248
1248
|
content: '\e236';
|
1249
1249
|
}
|
1250
|
-
.material-icons.
|
1251
|
-
.mi.
|
1250
|
+
.material-icons.format_align_right:before,
|
1251
|
+
.mi.format_align_right:before {
|
1252
1252
|
content: '\e237';
|
1253
1253
|
}
|
1254
|
-
.material-icons.
|
1255
|
-
.mi.
|
1254
|
+
.material-icons.format_bold:before,
|
1255
|
+
.mi.format_bold:before {
|
1256
1256
|
content: '\e238';
|
1257
1257
|
}
|
1258
|
-
.material-icons.
|
1259
|
-
.mi.
|
1258
|
+
.material-icons.format_clear:before,
|
1259
|
+
.mi.format_clear:before {
|
1260
1260
|
content: '\e239';
|
1261
1261
|
}
|
1262
|
-
.material-icons.
|
1263
|
-
.mi.
|
1262
|
+
.material-icons.format_color_fill:before,
|
1263
|
+
.mi.format_color_fill:before {
|
1264
1264
|
content: '\e23a';
|
1265
1265
|
}
|
1266
|
-
.material-icons.
|
1267
|
-
.mi.
|
1266
|
+
.material-icons.format_color_reset:before,
|
1267
|
+
.mi.format_color_reset:before {
|
1268
1268
|
content: '\e23b';
|
1269
1269
|
}
|
1270
|
-
.material-icons.
|
1271
|
-
.mi.
|
1270
|
+
.material-icons.format_color_text:before,
|
1271
|
+
.mi.format_color_text:before {
|
1272
1272
|
content: '\e23c';
|
1273
1273
|
}
|
1274
|
-
.material-icons.
|
1275
|
-
.mi.
|
1274
|
+
.material-icons.format_indent_decrease:before,
|
1275
|
+
.mi.format_indent_decrease:before {
|
1276
1276
|
content: '\e23d';
|
1277
1277
|
}
|
1278
|
-
.material-icons.
|
1279
|
-
.mi.
|
1278
|
+
.material-icons.format_indent_increase:before,
|
1279
|
+
.mi.format_indent_increase:before {
|
1280
1280
|
content: '\e23e';
|
1281
1281
|
}
|
1282
|
-
.material-icons.
|
1283
|
-
.mi.
|
1282
|
+
.material-icons.format_italic:before,
|
1283
|
+
.mi.format_italic:before {
|
1284
1284
|
content: '\e23f';
|
1285
1285
|
}
|
1286
|
-
.material-icons.
|
1287
|
-
.mi.
|
1286
|
+
.material-icons.format_line_spacing:before,
|
1287
|
+
.mi.format_line_spacing:before {
|
1288
1288
|
content: '\e240';
|
1289
1289
|
}
|
1290
|
-
.material-icons.
|
1291
|
-
.mi.
|
1290
|
+
.material-icons.format_list_bulleted:before,
|
1291
|
+
.mi.format_list_bulleted:before {
|
1292
1292
|
content: '\e241';
|
1293
1293
|
}
|
1294
|
-
.material-icons.
|
1295
|
-
.mi.
|
1294
|
+
.material-icons.format_list_numbered:before,
|
1295
|
+
.mi.format_list_numbered:before {
|
1296
1296
|
content: '\e242';
|
1297
1297
|
}
|
1298
|
-
.material-icons.
|
1299
|
-
.mi.
|
1298
|
+
.material-icons.format_paint:before,
|
1299
|
+
.mi.format_paint:before {
|
1300
1300
|
content: '\e243';
|
1301
1301
|
}
|
1302
|
-
.material-icons.
|
1303
|
-
.mi.
|
1302
|
+
.material-icons.format_quote:before,
|
1303
|
+
.mi.format_quote:before {
|
1304
1304
|
content: '\e244';
|
1305
1305
|
}
|
1306
|
-
.material-icons.
|
1307
|
-
.mi.
|
1306
|
+
.material-icons.format_size:before,
|
1307
|
+
.mi.format_size:before {
|
1308
1308
|
content: '\e245';
|
1309
1309
|
}
|
1310
|
-
.material-icons.
|
1311
|
-
.mi.
|
1310
|
+
.material-icons.format_strikethrough:before,
|
1311
|
+
.mi.format_strikethrough:before {
|
1312
1312
|
content: '\e246';
|
1313
1313
|
}
|
1314
|
-
.material-icons.
|
1315
|
-
.mi.
|
1314
|
+
.material-icons.format_textdirection_l_to_r:before,
|
1315
|
+
.mi.format_textdirection_l_to_r:before {
|
1316
1316
|
content: '\e247';
|
1317
1317
|
}
|
1318
|
-
.material-icons.
|
1319
|
-
.mi.
|
1318
|
+
.material-icons.format_textdirection_r_to_l:before,
|
1319
|
+
.mi.format_textdirection_r_to_l:before {
|
1320
1320
|
content: '\e248';
|
1321
1321
|
}
|
1322
|
-
.material-icons.
|
1323
|
-
.mi.
|
1322
|
+
.material-icons.format_underlined:before,
|
1323
|
+
.mi.format_underlined:before {
|
1324
1324
|
content: '\e249';
|
1325
1325
|
}
|
1326
1326
|
.material-icons.forum:before,
|
@@ -1331,24 +1331,24 @@
|
|
1331
1331
|
.mi.forward:before {
|
1332
1332
|
content: '\e154';
|
1333
1333
|
}
|
1334
|
-
.material-icons.
|
1335
|
-
.mi.
|
1334
|
+
.material-icons.forward_10:before,
|
1335
|
+
.mi.forward_10:before {
|
1336
1336
|
content: '\e056';
|
1337
1337
|
}
|
1338
|
-
.material-icons.
|
1339
|
-
.mi.
|
1338
|
+
.material-icons.forward_30:before,
|
1339
|
+
.mi.forward_30:before {
|
1340
1340
|
content: '\e057';
|
1341
1341
|
}
|
1342
|
-
.material-icons.
|
1343
|
-
.mi.
|
1342
|
+
.material-icons.forward_5:before,
|
1343
|
+
.mi.forward_5:before {
|
1344
1344
|
content: '\e058';
|
1345
1345
|
}
|
1346
1346
|
.material-icons.fullscreen:before,
|
1347
1347
|
.mi.fullscreen:before {
|
1348
1348
|
content: '\e5d0';
|
1349
1349
|
}
|
1350
|
-
.material-icons.
|
1351
|
-
.mi.
|
1350
|
+
.material-icons.fullscreen_exit:before,
|
1351
|
+
.mi.fullscreen_exit:before {
|
1352
1352
|
content: '\e5d1';
|
1353
1353
|
}
|
1354
1354
|
.material-icons.functions:before,
|
@@ -1367,24 +1367,24 @@
|
|
1367
1367
|
.mi.gesture:before {
|
1368
1368
|
content: '\e155';
|
1369
1369
|
}
|
1370
|
-
.material-icons.
|
1371
|
-
.mi.
|
1370
|
+
.material-icons.get_app:before,
|
1371
|
+
.mi.get_app:before {
|
1372
1372
|
content: '\e884';
|
1373
1373
|
}
|
1374
1374
|
.material-icons.gif:before,
|
1375
1375
|
.mi.gif:before {
|
1376
1376
|
content: '\e908';
|
1377
1377
|
}
|
1378
|
-
.material-icons.
|
1379
|
-
.mi.
|
1378
|
+
.material-icons.gps_fixed:before,
|
1379
|
+
.mi.gps_fixed:before {
|
1380
1380
|
content: '\e1b3';
|
1381
1381
|
}
|
1382
|
-
.material-icons.
|
1383
|
-
.mi.
|
1382
|
+
.material-icons.gps_not_fixed:before,
|
1383
|
+
.mi.gps_not_fixed:before {
|
1384
1384
|
content: '\e1b4';
|
1385
1385
|
}
|
1386
|
-
.material-icons.
|
1387
|
-
.mi.
|
1386
|
+
.material-icons.gps_off:before,
|
1387
|
+
.mi.gps_off:before {
|
1388
1388
|
content: '\e1b5';
|
1389
1389
|
}
|
1390
1390
|
.material-icons.grade:before,
|
@@ -1399,56 +1399,56 @@
|
|
1399
1399
|
.mi.grain:before {
|
1400
1400
|
content: '\e3ea';
|
1401
1401
|
}
|
1402
|
-
.material-icons.
|
1403
|
-
.mi.
|
1402
|
+
.material-icons.graphic_eq:before,
|
1403
|
+
.mi.graphic_eq:before {
|
1404
1404
|
content: '\e1b8';
|
1405
1405
|
}
|
1406
|
-
.material-icons.
|
1407
|
-
.mi.
|
1406
|
+
.material-icons.grid_off:before,
|
1407
|
+
.mi.grid_off:before {
|
1408
1408
|
content: '\e3eb';
|
1409
1409
|
}
|
1410
|
-
.material-icons.
|
1411
|
-
.mi.
|
1410
|
+
.material-icons.grid_on:before,
|
1411
|
+
.mi.grid_on:before {
|
1412
1412
|
content: '\e3ec';
|
1413
1413
|
}
|
1414
1414
|
.material-icons.group:before,
|
1415
1415
|
.mi.group:before {
|
1416
1416
|
content: '\e7ef';
|
1417
1417
|
}
|
1418
|
-
.material-icons.
|
1419
|
-
.mi.
|
1418
|
+
.material-icons.group_add:before,
|
1419
|
+
.mi.group_add:before {
|
1420
1420
|
content: '\e7f0';
|
1421
1421
|
}
|
1422
|
-
.material-icons.
|
1423
|
-
.mi.
|
1422
|
+
.material-icons.group_work:before,
|
1423
|
+
.mi.group_work:before {
|
1424
1424
|
content: '\e886';
|
1425
1425
|
}
|
1426
1426
|
.material-icons.hd:before,
|
1427
1427
|
.mi.hd:before {
|
1428
1428
|
content: '\e052';
|
1429
1429
|
}
|
1430
|
-
.material-icons.
|
1431
|
-
.mi.
|
1430
|
+
.material-icons.hdr_off:before,
|
1431
|
+
.mi.hdr_off:before {
|
1432
1432
|
content: '\e3ed';
|
1433
1433
|
}
|
1434
|
-
.material-icons.
|
1435
|
-
.mi.
|
1434
|
+
.material-icons.hdr_on:before,
|
1435
|
+
.mi.hdr_on:before {
|
1436
1436
|
content: '\e3ee';
|
1437
1437
|
}
|
1438
|
-
.material-icons.
|
1439
|
-
.mi.
|
1438
|
+
.material-icons.hdr_strong:before,
|
1439
|
+
.mi.hdr_strong:before {
|
1440
1440
|
content: '\e3f1';
|
1441
1441
|
}
|
1442
|
-
.material-icons.
|
1443
|
-
.mi.
|
1442
|
+
.material-icons.hdr_weak:before,
|
1443
|
+
.mi.hdr_weak:before {
|
1444
1444
|
content: '\e3f2';
|
1445
1445
|
}
|
1446
1446
|
.material-icons.headset:before,
|
1447
1447
|
.mi.headset:before {
|
1448
1448
|
content: '\e310';
|
1449
1449
|
}
|
1450
|
-
.material-icons.
|
1451
|
-
.mi.
|
1450
|
+
.material-icons.headset_mic:before,
|
1451
|
+
.mi.headset_mic:before {
|
1452
1452
|
content: '\e311';
|
1453
1453
|
}
|
1454
1454
|
.material-icons.healing:before,
|
@@ -1463,16 +1463,16 @@
|
|
1463
1463
|
.mi.help:before {
|
1464
1464
|
content: '\e887';
|
1465
1465
|
}
|
1466
|
-
.material-icons.
|
1467
|
-
.mi.
|
1466
|
+
.material-icons.help_outline:before,
|
1467
|
+
.mi.help_outline:before {
|
1468
1468
|
content: '\e8fd';
|
1469
1469
|
}
|
1470
|
-
.material-icons.
|
1471
|
-
.mi.
|
1470
|
+
.material-icons.high_quality:before,
|
1471
|
+
.mi.high_quality:before {
|
1472
1472
|
content: '\e024';
|
1473
1473
|
}
|
1474
|
-
.material-icons.
|
1475
|
-
.mi.
|
1474
|
+
.material-icons.highlight_off:before,
|
1475
|
+
.mi.highlight_off:before {
|
1476
1476
|
content: '\e888';
|
1477
1477
|
}
|
1478
1478
|
.material-icons.history:before,
|
@@ -1487,12 +1487,12 @@
|
|
1487
1487
|
.mi.hotel:before {
|
1488
1488
|
content: '\e53a';
|
1489
1489
|
}
|
1490
|
-
.material-icons.
|
1491
|
-
.mi.
|
1490
|
+
.material-icons.hourglass_empty:before,
|
1491
|
+
.mi.hourglass_empty:before {
|
1492
1492
|
content: '\e88b';
|
1493
1493
|
}
|
1494
|
-
.material-icons.
|
1495
|
-
.mi.
|
1494
|
+
.material-icons.hourglass_full:before,
|
1495
|
+
.mi.hourglass_full:before {
|
1496
1496
|
content: '\e88c';
|
1497
1497
|
}
|
1498
1498
|
.material-icons.http:before,
|
@@ -1507,68 +1507,68 @@
|
|
1507
1507
|
.mi.image:before {
|
1508
1508
|
content: '\e3f4';
|
1509
1509
|
}
|
1510
|
-
.material-icons.
|
1511
|
-
.mi.
|
1510
|
+
.material-icons.image_aspect_ratio:before,
|
1511
|
+
.mi.image_aspect_ratio:before {
|
1512
1512
|
content: '\e3f5';
|
1513
1513
|
}
|
1514
|
-
.material-icons.
|
1515
|
-
.mi.
|
1514
|
+
.material-icons.import_export:before,
|
1515
|
+
.mi.import_export:before {
|
1516
1516
|
content: '\e0c3';
|
1517
1517
|
}
|
1518
1518
|
.material-icons.inbox:before,
|
1519
1519
|
.mi.inbox:before {
|
1520
1520
|
content: '\e156';
|
1521
1521
|
}
|
1522
|
-
.material-icons.
|
1523
|
-
.mi.
|
1522
|
+
.material-icons.indeterminate_check_box:before,
|
1523
|
+
.mi.indeterminate_check_box:before {
|
1524
1524
|
content: '\e909';
|
1525
1525
|
}
|
1526
1526
|
.material-icons.info:before,
|
1527
1527
|
.mi.info:before {
|
1528
1528
|
content: '\e88e';
|
1529
1529
|
}
|
1530
|
-
.material-icons.
|
1531
|
-
.mi.
|
1530
|
+
.material-icons.info_outline:before,
|
1531
|
+
.mi.info_outline:before {
|
1532
1532
|
content: '\e88f';
|
1533
1533
|
}
|
1534
1534
|
.material-icons.input:before,
|
1535
1535
|
.mi.input:before {
|
1536
1536
|
content: '\e890';
|
1537
1537
|
}
|
1538
|
-
.material-icons.
|
1539
|
-
.mi.
|
1538
|
+
.material-icons.insert_chart:before,
|
1539
|
+
.mi.insert_chart:before {
|
1540
1540
|
content: '\e24b';
|
1541
1541
|
}
|
1542
|
-
.material-icons.
|
1543
|
-
.mi.
|
1542
|
+
.material-icons.insert_comment:before,
|
1543
|
+
.mi.insert_comment:before {
|
1544
1544
|
content: '\e24c';
|
1545
1545
|
}
|
1546
|
-
.material-icons.
|
1547
|
-
.mi.
|
1546
|
+
.material-icons.insert_drive_file:before,
|
1547
|
+
.mi.insert_drive_file:before {
|
1548
1548
|
content: '\e24d';
|
1549
1549
|
}
|
1550
|
-
.material-icons.
|
1551
|
-
.mi.
|
1550
|
+
.material-icons.insert_emoticon:before,
|
1551
|
+
.mi.insert_emoticon:before {
|
1552
1552
|
content: '\e24e';
|
1553
1553
|
}
|
1554
|
-
.material-icons.
|
1555
|
-
.mi.
|
1554
|
+
.material-icons.insert_invitation:before,
|
1555
|
+
.mi.insert_invitation:before {
|
1556
1556
|
content: '\e24f';
|
1557
1557
|
}
|
1558
|
-
.material-icons.
|
1559
|
-
.mi.
|
1558
|
+
.material-icons.insert_link:before,
|
1559
|
+
.mi.insert_link:before {
|
1560
1560
|
content: '\e250';
|
1561
1561
|
}
|
1562
|
-
.material-icons.
|
1563
|
-
.mi.
|
1562
|
+
.material-icons.insert_photo:before,
|
1563
|
+
.mi.insert_photo:before {
|
1564
1564
|
content: '\e251';
|
1565
1565
|
}
|
1566
|
-
.material-icons.
|
1567
|
-
.mi.
|
1566
|
+
.material-icons.invert_colors:before,
|
1567
|
+
.mi.invert_colors:before {
|
1568
1568
|
content: '\e891';
|
1569
1569
|
}
|
1570
|
-
.material-icons.
|
1571
|
-
.mi.
|
1570
|
+
.material-icons.invert_colors_off:before,
|
1571
|
+
.mi.invert_colors_off:before {
|
1572
1572
|
content: '\e0c4';
|
1573
1573
|
}
|
1574
1574
|
.material-icons.iso:before,
|
@@ -1579,52 +1579,52 @@
|
|
1579
1579
|
.mi.keyboard:before {
|
1580
1580
|
content: '\e312';
|
1581
1581
|
}
|
1582
|
-
.material-icons.
|
1583
|
-
.mi.
|
1582
|
+
.material-icons.keyboard_arrow_down:before,
|
1583
|
+
.mi.keyboard_arrow_down:before {
|
1584
1584
|
content: '\e313';
|
1585
1585
|
}
|
1586
|
-
.material-icons.
|
1587
|
-
.mi.
|
1586
|
+
.material-icons.keyboard_arrow_left:before,
|
1587
|
+
.mi.keyboard_arrow_left:before {
|
1588
1588
|
content: '\e314';
|
1589
1589
|
}
|
1590
|
-
.material-icons.
|
1591
|
-
.mi.
|
1590
|
+
.material-icons.keyboard_arrow_right:before,
|
1591
|
+
.mi.keyboard_arrow_right:before {
|
1592
1592
|
content: '\e315';
|
1593
1593
|
}
|
1594
|
-
.material-icons.
|
1595
|
-
.mi.
|
1594
|
+
.material-icons.keyboard_arrow_up:before,
|
1595
|
+
.mi.keyboard_arrow_up:before {
|
1596
1596
|
content: '\e316';
|
1597
1597
|
}
|
1598
|
-
.material-icons.
|
1599
|
-
.mi.
|
1598
|
+
.material-icons.keyboard_backspace:before,
|
1599
|
+
.mi.keyboard_backspace:before {
|
1600
1600
|
content: '\e317';
|
1601
1601
|
}
|
1602
|
-
.material-icons.
|
1603
|
-
.mi.
|
1602
|
+
.material-icons.keyboard_capslock:before,
|
1603
|
+
.mi.keyboard_capslock:before {
|
1604
1604
|
content: '\e318';
|
1605
1605
|
}
|
1606
|
-
.material-icons.
|
1607
|
-
.mi.
|
1606
|
+
.material-icons.keyboard_hide:before,
|
1607
|
+
.mi.keyboard_hide:before {
|
1608
1608
|
content: '\e31a';
|
1609
1609
|
}
|
1610
|
-
.material-icons.
|
1611
|
-
.mi.
|
1610
|
+
.material-icons.keyboard_return:before,
|
1611
|
+
.mi.keyboard_return:before {
|
1612
1612
|
content: '\e31b';
|
1613
1613
|
}
|
1614
|
-
.material-icons.
|
1615
|
-
.mi.
|
1614
|
+
.material-icons.keyboard_tab:before,
|
1615
|
+
.mi.keyboard_tab:before {
|
1616
1616
|
content: '\e31c';
|
1617
1617
|
}
|
1618
|
-
.material-icons.
|
1619
|
-
.mi.
|
1618
|
+
.material-icons.keyboard_voice:before,
|
1619
|
+
.mi.keyboard_voice:before {
|
1620
1620
|
content: '\e31d';
|
1621
1621
|
}
|
1622
1622
|
.material-icons.label:before,
|
1623
1623
|
.mi.label:before {
|
1624
1624
|
content: '\e892';
|
1625
1625
|
}
|
1626
|
-
.material-icons.
|
1627
|
-
.mi.
|
1626
|
+
.material-icons.label_outline:before,
|
1627
|
+
.mi.label_outline:before {
|
1628
1628
|
content: '\e893';
|
1629
1629
|
}
|
1630
1630
|
.material-icons.landscape:before,
|
@@ -1639,16 +1639,16 @@
|
|
1639
1639
|
.mi.laptop:before {
|
1640
1640
|
content: '\e31e';
|
1641
1641
|
}
|
1642
|
-
.material-icons.
|
1643
|
-
.mi.
|
1642
|
+
.material-icons.laptop_chromebook:before,
|
1643
|
+
.mi.laptop_chromebook:before {
|
1644
1644
|
content: '\e31f';
|
1645
1645
|
}
|
1646
|
-
.material-icons.
|
1647
|
-
.mi.
|
1646
|
+
.material-icons.laptop_mac:before,
|
1647
|
+
.mi.laptop_mac:before {
|
1648
1648
|
content: '\e320';
|
1649
1649
|
}
|
1650
|
-
.material-icons.
|
1651
|
-
.mi.
|
1650
|
+
.material-icons.laptop_windows:before,
|
1651
|
+
.mi.laptop_windows:before {
|
1652
1652
|
content: '\e321';
|
1653
1653
|
}
|
1654
1654
|
.material-icons.launch:before,
|
@@ -1659,32 +1659,32 @@
|
|
1659
1659
|
.mi.layers:before {
|
1660
1660
|
content: '\e53b';
|
1661
1661
|
}
|
1662
|
-
.material-icons.
|
1663
|
-
.mi.
|
1662
|
+
.material-icons.layers_clear:before,
|
1663
|
+
.mi.layers_clear:before {
|
1664
1664
|
content: '\e53c';
|
1665
1665
|
}
|
1666
|
-
.material-icons.
|
1667
|
-
.mi.
|
1666
|
+
.material-icons.leak_add:before,
|
1667
|
+
.mi.leak_add:before {
|
1668
1668
|
content: '\e3f8';
|
1669
1669
|
}
|
1670
|
-
.material-icons.
|
1671
|
-
.mi.
|
1670
|
+
.material-icons.leak_remove:before,
|
1671
|
+
.mi.leak_remove:before {
|
1672
1672
|
content: '\e3f9';
|
1673
1673
|
}
|
1674
1674
|
.material-icons.lens:before,
|
1675
1675
|
.mi.lens:before {
|
1676
1676
|
content: '\e3fa';
|
1677
1677
|
}
|
1678
|
-
.material-icons.
|
1679
|
-
.mi.
|
1678
|
+
.material-icons.library_add:before,
|
1679
|
+
.mi.library_add:before {
|
1680
1680
|
content: '\e02e';
|
1681
1681
|
}
|
1682
|
-
.material-icons.
|
1683
|
-
.mi.
|
1682
|
+
.material-icons.library_books:before,
|
1683
|
+
.mi.library_books:before {
|
1684
1684
|
content: '\e02f';
|
1685
1685
|
}
|
1686
|
-
.material-icons.
|
1687
|
-
.mi.
|
1686
|
+
.material-icons.library_music:before,
|
1687
|
+
.mi.library_music:before {
|
1688
1688
|
content: '\e030';
|
1689
1689
|
}
|
1690
1690
|
.material-icons.link:before,
|
@@ -1695,188 +1695,188 @@
|
|
1695
1695
|
.mi.list:before {
|
1696
1696
|
content: '\e896';
|
1697
1697
|
}
|
1698
|
-
.material-icons.
|
1699
|
-
.mi.
|
1698
|
+
.material-icons.live_help:before,
|
1699
|
+
.mi.live_help:before {
|
1700
1700
|
content: '\e0c6';
|
1701
1701
|
}
|
1702
|
-
.material-icons.
|
1703
|
-
.mi.
|
1702
|
+
.material-icons.live_tv:before,
|
1703
|
+
.mi.live_tv:before {
|
1704
1704
|
content: '\e639';
|
1705
1705
|
}
|
1706
|
-
.material-icons.
|
1707
|
-
.mi.
|
1706
|
+
.material-icons.local_activity:before,
|
1707
|
+
.mi.local_activity:before {
|
1708
1708
|
content: '\e53f';
|
1709
1709
|
}
|
1710
|
-
.material-icons.
|
1711
|
-
.mi.
|
1710
|
+
.material-icons.local_airport:before,
|
1711
|
+
.mi.local_airport:before {
|
1712
1712
|
content: '\e53d';
|
1713
1713
|
}
|
1714
|
-
.material-icons.
|
1715
|
-
.mi.
|
1714
|
+
.material-icons.local_atm:before,
|
1715
|
+
.mi.local_atm:before {
|
1716
1716
|
content: '\e53e';
|
1717
1717
|
}
|
1718
|
-
.material-icons.
|
1719
|
-
.mi.
|
1718
|
+
.material-icons.local_bar:before,
|
1719
|
+
.mi.local_bar:before {
|
1720
1720
|
content: '\e540';
|
1721
1721
|
}
|
1722
|
-
.material-icons.
|
1723
|
-
.mi.
|
1722
|
+
.material-icons.local_cafe:before,
|
1723
|
+
.mi.local_cafe:before {
|
1724
1724
|
content: '\e541';
|
1725
1725
|
}
|
1726
|
-
.material-icons.
|
1727
|
-
.mi.
|
1726
|
+
.material-icons.local_car_wash:before,
|
1727
|
+
.mi.local_car_wash:before {
|
1728
1728
|
content: '\e542';
|
1729
1729
|
}
|
1730
|
-
.material-icons.
|
1731
|
-
.mi.
|
1730
|
+
.material-icons.local_convenience_store:before,
|
1731
|
+
.mi.local_convenience_store:before {
|
1732
1732
|
content: '\e543';
|
1733
1733
|
}
|
1734
|
-
.material-icons.
|
1735
|
-
.mi.
|
1734
|
+
.material-icons.local_dining:before,
|
1735
|
+
.mi.local_dining:before {
|
1736
1736
|
content: '\e556';
|
1737
1737
|
}
|
1738
|
-
.material-icons.
|
1739
|
-
.mi.
|
1738
|
+
.material-icons.local_drink:before,
|
1739
|
+
.mi.local_drink:before {
|
1740
1740
|
content: '\e544';
|
1741
1741
|
}
|
1742
|
-
.material-icons.
|
1743
|
-
.mi.
|
1742
|
+
.material-icons.local_florist:before,
|
1743
|
+
.mi.local_florist:before {
|
1744
1744
|
content: '\e545';
|
1745
1745
|
}
|
1746
|
-
.material-icons.
|
1747
|
-
.mi.
|
1746
|
+
.material-icons.local_gas_station:before,
|
1747
|
+
.mi.local_gas_station:before {
|
1748
1748
|
content: '\e546';
|
1749
1749
|
}
|
1750
|
-
.material-icons.
|
1751
|
-
.mi.
|
1750
|
+
.material-icons.local_grocery_store:before,
|
1751
|
+
.mi.local_grocery_store:before {
|
1752
1752
|
content: '\e547';
|
1753
1753
|
}
|
1754
|
-
.material-icons.
|
1755
|
-
.mi.
|
1754
|
+
.material-icons.local_hospital:before,
|
1755
|
+
.mi.local_hospital:before {
|
1756
1756
|
content: '\e548';
|
1757
1757
|
}
|
1758
|
-
.material-icons.
|
1759
|
-
.mi.
|
1758
|
+
.material-icons.local_hotel:before,
|
1759
|
+
.mi.local_hotel:before {
|
1760
1760
|
content: '\e549';
|
1761
1761
|
}
|
1762
|
-
.material-icons.
|
1763
|
-
.mi.
|
1762
|
+
.material-icons.local_laundry_service:before,
|
1763
|
+
.mi.local_laundry_service:before {
|
1764
1764
|
content: '\e54a';
|
1765
1765
|
}
|
1766
|
-
.material-icons.
|
1767
|
-
.mi.
|
1766
|
+
.material-icons.local_library:before,
|
1767
|
+
.mi.local_library:before {
|
1768
1768
|
content: '\e54b';
|
1769
1769
|
}
|
1770
|
-
.material-icons.
|
1771
|
-
.mi.
|
1770
|
+
.material-icons.local_mall:before,
|
1771
|
+
.mi.local_mall:before {
|
1772
1772
|
content: '\e54c';
|
1773
1773
|
}
|
1774
|
-
.material-icons.
|
1775
|
-
.mi.
|
1774
|
+
.material-icons.local_movies:before,
|
1775
|
+
.mi.local_movies:before {
|
1776
1776
|
content: '\e54d';
|
1777
1777
|
}
|
1778
|
-
.material-icons.
|
1779
|
-
.mi.
|
1778
|
+
.material-icons.local_offer:before,
|
1779
|
+
.mi.local_offer:before {
|
1780
1780
|
content: '\e54e';
|
1781
1781
|
}
|
1782
|
-
.material-icons.
|
1783
|
-
.mi.
|
1782
|
+
.material-icons.local_parking:before,
|
1783
|
+
.mi.local_parking:before {
|
1784
1784
|
content: '\e54f';
|
1785
1785
|
}
|
1786
|
-
.material-icons.
|
1787
|
-
.mi.
|
1786
|
+
.material-icons.local_pharmacy:before,
|
1787
|
+
.mi.local_pharmacy:before {
|
1788
1788
|
content: '\e550';
|
1789
1789
|
}
|
1790
|
-
.material-icons.
|
1791
|
-
.mi.
|
1790
|
+
.material-icons.local_phone:before,
|
1791
|
+
.mi.local_phone:before {
|
1792
1792
|
content: '\e551';
|
1793
1793
|
}
|
1794
|
-
.material-icons.
|
1795
|
-
.mi.
|
1794
|
+
.material-icons.local_pizza:before,
|
1795
|
+
.mi.local_pizza:before {
|
1796
1796
|
content: '\e552';
|
1797
1797
|
}
|
1798
|
-
.material-icons.
|
1799
|
-
.mi.
|
1798
|
+
.material-icons.local_play:before,
|
1799
|
+
.mi.local_play:before {
|
1800
1800
|
content: '\e553';
|
1801
1801
|
}
|
1802
|
-
.material-icons.
|
1803
|
-
.mi.
|
1802
|
+
.material-icons.local_post_office:before,
|
1803
|
+
.mi.local_post_office:before {
|
1804
1804
|
content: '\e554';
|
1805
1805
|
}
|
1806
|
-
.material-icons.
|
1807
|
-
.mi.
|
1806
|
+
.material-icons.local_printshop:before,
|
1807
|
+
.mi.local_printshop:before {
|
1808
1808
|
content: '\e555';
|
1809
1809
|
}
|
1810
|
-
.material-icons.
|
1811
|
-
.mi.
|
1810
|
+
.material-icons.local_see:before,
|
1811
|
+
.mi.local_see:before {
|
1812
1812
|
content: '\e557';
|
1813
1813
|
}
|
1814
|
-
.material-icons.
|
1815
|
-
.mi.
|
1814
|
+
.material-icons.local_shipping:before,
|
1815
|
+
.mi.local_shipping:before {
|
1816
1816
|
content: '\e558';
|
1817
1817
|
}
|
1818
|
-
.material-icons.
|
1819
|
-
.mi.
|
1818
|
+
.material-icons.local_taxi:before,
|
1819
|
+
.mi.local_taxi:before {
|
1820
1820
|
content: '\e559';
|
1821
1821
|
}
|
1822
|
-
.material-icons.
|
1823
|
-
.mi.
|
1822
|
+
.material-icons.location_city:before,
|
1823
|
+
.mi.location_city:before {
|
1824
1824
|
content: '\e7f1';
|
1825
1825
|
}
|
1826
|
-
.material-icons.
|
1827
|
-
.mi.
|
1826
|
+
.material-icons.location_disabled:before,
|
1827
|
+
.mi.location_disabled:before {
|
1828
1828
|
content: '\e1b6';
|
1829
1829
|
}
|
1830
|
-
.material-icons.
|
1831
|
-
.mi.
|
1830
|
+
.material-icons.location_off:before,
|
1831
|
+
.mi.location_off:before {
|
1832
1832
|
content: '\e0c7';
|
1833
1833
|
}
|
1834
|
-
.material-icons.
|
1835
|
-
.mi.
|
1834
|
+
.material-icons.location_on:before,
|
1835
|
+
.mi.location_on:before {
|
1836
1836
|
content: '\e0c8';
|
1837
1837
|
}
|
1838
|
-
.material-icons.
|
1839
|
-
.mi.
|
1838
|
+
.material-icons.location_searching:before,
|
1839
|
+
.mi.location_searching:before {
|
1840
1840
|
content: '\e1b7';
|
1841
1841
|
}
|
1842
1842
|
.material-icons.lock:before,
|
1843
1843
|
.mi.lock:before {
|
1844
1844
|
content: '\e897';
|
1845
1845
|
}
|
1846
|
-
.material-icons.
|
1847
|
-
.mi.
|
1846
|
+
.material-icons.lock_open:before,
|
1847
|
+
.mi.lock_open:before {
|
1848
1848
|
content: '\e898';
|
1849
1849
|
}
|
1850
|
-
.material-icons.
|
1851
|
-
.mi.
|
1850
|
+
.material-icons.lock_outline:before,
|
1851
|
+
.mi.lock_outline:before {
|
1852
1852
|
content: '\e899';
|
1853
1853
|
}
|
1854
1854
|
.material-icons.looks:before,
|
1855
1855
|
.mi.looks:before {
|
1856
1856
|
content: '\e3fc';
|
1857
1857
|
}
|
1858
|
-
.material-icons.
|
1859
|
-
.mi.
|
1858
|
+
.material-icons.looks_3:before,
|
1859
|
+
.mi.looks_3:before {
|
1860
1860
|
content: '\e3fb';
|
1861
1861
|
}
|
1862
|
-
.material-icons.
|
1863
|
-
.mi.
|
1862
|
+
.material-icons.looks_4:before,
|
1863
|
+
.mi.looks_4:before {
|
1864
1864
|
content: '\e3fd';
|
1865
1865
|
}
|
1866
|
-
.material-icons.
|
1867
|
-
.mi.
|
1866
|
+
.material-icons.looks_5:before,
|
1867
|
+
.mi.looks_5:before {
|
1868
1868
|
content: '\e3fe';
|
1869
1869
|
}
|
1870
|
-
.material-icons.
|
1871
|
-
.mi.
|
1870
|
+
.material-icons.looks_6:before,
|
1871
|
+
.mi.looks_6:before {
|
1872
1872
|
content: '\e3ff';
|
1873
1873
|
}
|
1874
|
-
.material-icons.
|
1875
|
-
.mi.
|
1874
|
+
.material-icons.looks_one:before,
|
1875
|
+
.mi.looks_one:before {
|
1876
1876
|
content: '\e400';
|
1877
1877
|
}
|
1878
|
-
.material-icons.
|
1879
|
-
.mi.
|
1878
|
+
.material-icons.looks_two:before,
|
1879
|
+
.mi.looks_two:before {
|
1880
1880
|
content: '\e401';
|
1881
1881
|
}
|
1882
1882
|
.material-icons.loop:before,
|
@@ -1903,8 +1903,8 @@
|
|
1903
1903
|
.mi.markunread:before {
|
1904
1904
|
content: '\e159';
|
1905
1905
|
}
|
1906
|
-
.material-icons.
|
1907
|
-
.mi.
|
1906
|
+
.material-icons.markunread_mailbox:before,
|
1907
|
+
.mi.markunread_mailbox:before {
|
1908
1908
|
content: '\e89b';
|
1909
1909
|
}
|
1910
1910
|
.material-icons.memory:before,
|
@@ -1915,8 +1915,8 @@
|
|
1915
1915
|
.mi.menu:before {
|
1916
1916
|
content: '\e5d2';
|
1917
1917
|
}
|
1918
|
-
.material-icons.
|
1919
|
-
.mi.
|
1918
|
+
.material-icons.merge_type:before,
|
1919
|
+
.mi.merge_type:before {
|
1920
1920
|
content: '\e252';
|
1921
1921
|
}
|
1922
1922
|
.material-icons.message:before,
|
@@ -1927,52 +1927,52 @@
|
|
1927
1927
|
.mi.mic:before {
|
1928
1928
|
content: '\e029';
|
1929
1929
|
}
|
1930
|
-
.material-icons.
|
1931
|
-
.mi.
|
1930
|
+
.material-icons.mic_none:before,
|
1931
|
+
.mi.mic_none:before {
|
1932
1932
|
content: '\e02a';
|
1933
1933
|
}
|
1934
|
-
.material-icons.
|
1935
|
-
.mi.
|
1934
|
+
.material-icons.mic_off:before,
|
1935
|
+
.mi.mic_off:before {
|
1936
1936
|
content: '\e02b';
|
1937
1937
|
}
|
1938
1938
|
.material-icons.mms:before,
|
1939
1939
|
.mi.mms:before {
|
1940
1940
|
content: '\e618';
|
1941
1941
|
}
|
1942
|
-
.material-icons.
|
1943
|
-
.mi.
|
1942
|
+
.material-icons.mode_comment:before,
|
1943
|
+
.mi.mode_comment:before {
|
1944
1944
|
content: '\e253';
|
1945
1945
|
}
|
1946
|
-
.material-icons.
|
1947
|
-
.mi.
|
1946
|
+
.material-icons.mode_edit:before,
|
1947
|
+
.mi.mode_edit:before {
|
1948
1948
|
content: '\e254';
|
1949
1949
|
}
|
1950
|
-
.material-icons.
|
1951
|
-
.mi.
|
1950
|
+
.material-icons.money_off:before,
|
1951
|
+
.mi.money_off:before {
|
1952
1952
|
content: '\e25c';
|
1953
1953
|
}
|
1954
|
-
.material-icons.
|
1955
|
-
.mi.
|
1954
|
+
.material-icons.monochrome_photos:before,
|
1955
|
+
.mi.monochrome_photos:before {
|
1956
1956
|
content: '\e403';
|
1957
1957
|
}
|
1958
1958
|
.material-icons.mood:before,
|
1959
1959
|
.mi.mood:before {
|
1960
1960
|
content: '\e7f2';
|
1961
1961
|
}
|
1962
|
-
.material-icons.
|
1963
|
-
.mi.
|
1962
|
+
.material-icons.mood_bad:before,
|
1963
|
+
.mi.mood_bad:before {
|
1964
1964
|
content: '\e7f3';
|
1965
1965
|
}
|
1966
1966
|
.material-icons.more:before,
|
1967
1967
|
.mi.more:before {
|
1968
1968
|
content: '\e619';
|
1969
1969
|
}
|
1970
|
-
.material-icons.
|
1971
|
-
.mi.
|
1970
|
+
.material-icons.more_horiz:before,
|
1971
|
+
.mi.more_horiz:before {
|
1972
1972
|
content: '\e5d3';
|
1973
1973
|
}
|
1974
|
-
.material-icons.
|
1975
|
-
.mi.
|
1974
|
+
.material-icons.more_vert:before,
|
1975
|
+
.mi.more_vert:before {
|
1976
1976
|
content: '\e5d4';
|
1977
1977
|
}
|
1978
1978
|
.material-icons.mouse:before,
|
@@ -1983,108 +1983,108 @@
|
|
1983
1983
|
.mi.movie:before {
|
1984
1984
|
content: '\e02c';
|
1985
1985
|
}
|
1986
|
-
.material-icons.
|
1987
|
-
.mi.
|
1986
|
+
.material-icons.movie_creation:before,
|
1987
|
+
.mi.movie_creation:before {
|
1988
1988
|
content: '\e404';
|
1989
1989
|
}
|
1990
|
-
.material-icons.
|
1991
|
-
.mi.
|
1990
|
+
.material-icons.music_note:before,
|
1991
|
+
.mi.music_note:before {
|
1992
1992
|
content: '\e405';
|
1993
1993
|
}
|
1994
|
-
.material-icons.
|
1995
|
-
.mi.
|
1994
|
+
.material-icons.my_location:before,
|
1995
|
+
.mi.my_location:before {
|
1996
1996
|
content: '\e55c';
|
1997
1997
|
}
|
1998
1998
|
.material-icons.nature:before,
|
1999
1999
|
.mi.nature:before {
|
2000
2000
|
content: '\e406';
|
2001
2001
|
}
|
2002
|
-
.material-icons.
|
2003
|
-
.mi.
|
2002
|
+
.material-icons.nature_people:before,
|
2003
|
+
.mi.nature_people:before {
|
2004
2004
|
content: '\e407';
|
2005
2005
|
}
|
2006
|
-
.material-icons.
|
2007
|
-
.mi.
|
2006
|
+
.material-icons.navigate_before:before,
|
2007
|
+
.mi.navigate_before:before {
|
2008
2008
|
content: '\e408';
|
2009
2009
|
}
|
2010
|
-
.material-icons.
|
2011
|
-
.mi.
|
2010
|
+
.material-icons.navigate_next:before,
|
2011
|
+
.mi.navigate_next:before {
|
2012
2012
|
content: '\e409';
|
2013
2013
|
}
|
2014
2014
|
.material-icons.navigation:before,
|
2015
2015
|
.mi.navigation:before {
|
2016
2016
|
content: '\e55d';
|
2017
2017
|
}
|
2018
|
-
.material-icons.
|
2019
|
-
.mi.
|
2018
|
+
.material-icons.network_cell:before,
|
2019
|
+
.mi.network_cell:before {
|
2020
2020
|
content: '\e1b9';
|
2021
2021
|
}
|
2022
|
-
.material-icons.
|
2023
|
-
.mi.
|
2022
|
+
.material-icons.network_locked:before,
|
2023
|
+
.mi.network_locked:before {
|
2024
2024
|
content: '\e61a';
|
2025
2025
|
}
|
2026
|
-
.material-icons.
|
2027
|
-
.mi.
|
2026
|
+
.material-icons.network_wifi:before,
|
2027
|
+
.mi.network_wifi:before {
|
2028
2028
|
content: '\e1ba';
|
2029
2029
|
}
|
2030
|
-
.material-icons.
|
2031
|
-
.mi.
|
2030
|
+
.material-icons.new_releases:before,
|
2031
|
+
.mi.new_releases:before {
|
2032
2032
|
content: '\e031';
|
2033
2033
|
}
|
2034
2034
|
.material-icons.nfc:before,
|
2035
2035
|
.mi.nfc:before {
|
2036
2036
|
content: '\e1bb';
|
2037
2037
|
}
|
2038
|
-
.material-icons.
|
2039
|
-
.mi.
|
2038
|
+
.material-icons.no_sim:before,
|
2039
|
+
.mi.no_sim:before {
|
2040
2040
|
content: '\e0cc';
|
2041
2041
|
}
|
2042
|
-
.material-icons.
|
2043
|
-
.mi.
|
2042
|
+
.material-icons.not_interested:before,
|
2043
|
+
.mi.not_interested:before {
|
2044
2044
|
content: '\e033';
|
2045
2045
|
}
|
2046
|
-
.material-icons.
|
2047
|
-
.mi.
|
2046
|
+
.material-icons.note_add:before,
|
2047
|
+
.mi.note_add:before {
|
2048
2048
|
content: '\e89c';
|
2049
2049
|
}
|
2050
2050
|
.material-icons.notifications:before,
|
2051
2051
|
.mi.notifications:before {
|
2052
2052
|
content: '\e7f4';
|
2053
2053
|
}
|
2054
|
-
.material-icons.
|
2055
|
-
.mi.
|
2054
|
+
.material-icons.notifications_active:before,
|
2055
|
+
.mi.notifications_active:before {
|
2056
2056
|
content: '\e7f7';
|
2057
2057
|
}
|
2058
|
-
.material-icons.
|
2059
|
-
.mi.
|
2058
|
+
.material-icons.notifications_none:before,
|
2059
|
+
.mi.notifications_none:before {
|
2060
2060
|
content: '\e7f5';
|
2061
2061
|
}
|
2062
|
-
.material-icons.
|
2063
|
-
.mi.
|
2062
|
+
.material-icons.notifications_off:before,
|
2063
|
+
.mi.notifications_off:before {
|
2064
2064
|
content: '\e7f6';
|
2065
2065
|
}
|
2066
|
-
.material-icons.
|
2067
|
-
.mi.
|
2066
|
+
.material-icons.notifications_paused:before,
|
2067
|
+
.mi.notifications_paused:before {
|
2068
2068
|
content: '\e7f8';
|
2069
2069
|
}
|
2070
|
-
.material-icons.
|
2071
|
-
.mi.
|
2070
|
+
.material-icons.offline_pin:before,
|
2071
|
+
.mi.offline_pin:before {
|
2072
2072
|
content: '\e90a';
|
2073
2073
|
}
|
2074
|
-
.material-icons.
|
2075
|
-
.mi.
|
2074
|
+
.material-icons.ondemand_video:before,
|
2075
|
+
.mi.ondemand_video:before {
|
2076
2076
|
content: '\e63a';
|
2077
2077
|
}
|
2078
|
-
.material-icons.
|
2079
|
-
.mi.
|
2078
|
+
.material-icons.open_in_browser:before,
|
2079
|
+
.mi.open_in_browser:before {
|
2080
2080
|
content: '\e89d';
|
2081
2081
|
}
|
2082
|
-
.material-icons.
|
2083
|
-
.mi.
|
2082
|
+
.material-icons.open_in_new:before,
|
2083
|
+
.mi.open_in_new:before {
|
2084
2084
|
content: '\e89e';
|
2085
2085
|
}
|
2086
|
-
.material-icons.
|
2087
|
-
.mi.
|
2086
|
+
.material-icons.open_with:before,
|
2087
|
+
.mi.open_with:before {
|
2088
2088
|
content: '\e89f';
|
2089
2089
|
}
|
2090
2090
|
.material-icons.pages:before,
|
@@ -2103,36 +2103,36 @@
|
|
2103
2103
|
.mi.panorama:before {
|
2104
2104
|
content: '\e40b';
|
2105
2105
|
}
|
2106
|
-
.material-icons.
|
2107
|
-
.mi.
|
2106
|
+
.material-icons.panorama_fish_eye:before,
|
2107
|
+
.mi.panorama_fish_eye:before {
|
2108
2108
|
content: '\e40c';
|
2109
2109
|
}
|
2110
|
-
.material-icons.
|
2111
|
-
.mi.
|
2110
|
+
.material-icons.panorama_horizontal:before,
|
2111
|
+
.mi.panorama_horizontal:before {
|
2112
2112
|
content: '\e40d';
|
2113
2113
|
}
|
2114
|
-
.material-icons.
|
2115
|
-
.mi.
|
2114
|
+
.material-icons.panorama_vertical:before,
|
2115
|
+
.mi.panorama_vertical:before {
|
2116
2116
|
content: '\e40e';
|
2117
2117
|
}
|
2118
|
-
.material-icons.
|
2119
|
-
.mi.
|
2118
|
+
.material-icons.panorama_wide_angle:before,
|
2119
|
+
.mi.panorama_wide_angle:before {
|
2120
2120
|
content: '\e40f';
|
2121
2121
|
}
|
2122
|
-
.material-icons.
|
2123
|
-
.mi.
|
2122
|
+
.material-icons.party_mode:before,
|
2123
|
+
.mi.party_mode:before {
|
2124
2124
|
content: '\e7fa';
|
2125
2125
|
}
|
2126
2126
|
.material-icons.pause:before,
|
2127
2127
|
.mi.pause:before {
|
2128
2128
|
content: '\e034';
|
2129
2129
|
}
|
2130
|
-
.material-icons.
|
2131
|
-
.mi.
|
2130
|
+
.material-icons.pause_circle_filled:before,
|
2131
|
+
.mi.pause_circle_filled:before {
|
2132
2132
|
content: '\e035';
|
2133
2133
|
}
|
2134
|
-
.material-icons.
|
2135
|
-
.mi.
|
2134
|
+
.material-icons.pause_circle_outline:before,
|
2135
|
+
.mi.pause_circle_outline:before {
|
2136
2136
|
content: '\e036';
|
2137
2137
|
}
|
2138
2138
|
.material-icons.payment:before,
|
@@ -2143,188 +2143,188 @@
|
|
2143
2143
|
.mi.people:before {
|
2144
2144
|
content: '\e7fb';
|
2145
2145
|
}
|
2146
|
-
.material-icons.
|
2147
|
-
.mi.
|
2146
|
+
.material-icons.people_outline:before,
|
2147
|
+
.mi.people_outline:before {
|
2148
2148
|
content: '\e7fc';
|
2149
2149
|
}
|
2150
|
-
.material-icons.
|
2151
|
-
.mi.
|
2150
|
+
.material-icons.perm_camera_mic:before,
|
2151
|
+
.mi.perm_camera_mic:before {
|
2152
2152
|
content: '\e8a2';
|
2153
2153
|
}
|
2154
|
-
.material-icons.
|
2155
|
-
.mi.
|
2154
|
+
.material-icons.perm_contact_calendar:before,
|
2155
|
+
.mi.perm_contact_calendar:before {
|
2156
2156
|
content: '\e8a3';
|
2157
2157
|
}
|
2158
|
-
.material-icons.
|
2159
|
-
.mi.
|
2158
|
+
.material-icons.perm_data_setting:before,
|
2159
|
+
.mi.perm_data_setting:before {
|
2160
2160
|
content: '\e8a4';
|
2161
2161
|
}
|
2162
|
-
.material-icons.
|
2163
|
-
.mi.
|
2162
|
+
.material-icons.perm_device_information:before,
|
2163
|
+
.mi.perm_device_information:before {
|
2164
2164
|
content: '\e8a5';
|
2165
2165
|
}
|
2166
|
-
.material-icons.
|
2167
|
-
.mi.
|
2166
|
+
.material-icons.perm_identity:before,
|
2167
|
+
.mi.perm_identity:before {
|
2168
2168
|
content: '\e8a6';
|
2169
2169
|
}
|
2170
|
-
.material-icons.
|
2171
|
-
.mi.
|
2170
|
+
.material-icons.perm_media:before,
|
2171
|
+
.mi.perm_media:before {
|
2172
2172
|
content: '\e8a7';
|
2173
2173
|
}
|
2174
|
-
.material-icons.
|
2175
|
-
.mi.
|
2174
|
+
.material-icons.perm_phone_msg:before,
|
2175
|
+
.mi.perm_phone_msg:before {
|
2176
2176
|
content: '\e8a8';
|
2177
2177
|
}
|
2178
|
-
.material-icons.
|
2179
|
-
.mi.
|
2178
|
+
.material-icons.perm_scan_wifi:before,
|
2179
|
+
.mi.perm_scan_wifi:before {
|
2180
2180
|
content: '\e8a9';
|
2181
2181
|
}
|
2182
2182
|
.material-icons.person:before,
|
2183
2183
|
.mi.person:before {
|
2184
2184
|
content: '\e7fd';
|
2185
2185
|
}
|
2186
|
-
.material-icons.
|
2187
|
-
.mi.
|
2186
|
+
.material-icons.person_add:before,
|
2187
|
+
.mi.person_add:before {
|
2188
2188
|
content: '\e7fe';
|
2189
2189
|
}
|
2190
|
-
.material-icons.
|
2191
|
-
.mi.
|
2190
|
+
.material-icons.person_outline:before,
|
2191
|
+
.mi.person_outline:before {
|
2192
2192
|
content: '\e7ff';
|
2193
2193
|
}
|
2194
|
-
.material-icons.
|
2195
|
-
.mi.
|
2194
|
+
.material-icons.person_pin:before,
|
2195
|
+
.mi.person_pin:before {
|
2196
2196
|
content: '\e55a';
|
2197
2197
|
}
|
2198
|
-
.material-icons.
|
2199
|
-
.mi.
|
2198
|
+
.material-icons.personal_video:before,
|
2199
|
+
.mi.personal_video:before {
|
2200
2200
|
content: '\e63b';
|
2201
2201
|
}
|
2202
2202
|
.material-icons.phone:before,
|
2203
2203
|
.mi.phone:before {
|
2204
2204
|
content: '\e0cd';
|
2205
2205
|
}
|
2206
|
-
.material-icons.
|
2207
|
-
.mi.
|
2206
|
+
.material-icons.phone_android:before,
|
2207
|
+
.mi.phone_android:before {
|
2208
2208
|
content: '\e324';
|
2209
2209
|
}
|
2210
|
-
.material-icons.
|
2211
|
-
.mi.
|
2210
|
+
.material-icons.phone_bluetooth_speaker:before,
|
2211
|
+
.mi.phone_bluetooth_speaker:before {
|
2212
2212
|
content: '\e61b';
|
2213
2213
|
}
|
2214
|
-
.material-icons.
|
2215
|
-
.mi.
|
2214
|
+
.material-icons.phone_forwarded:before,
|
2215
|
+
.mi.phone_forwarded:before {
|
2216
2216
|
content: '\e61c';
|
2217
2217
|
}
|
2218
|
-
.material-icons.
|
2219
|
-
.mi.
|
2218
|
+
.material-icons.phone_in_talk:before,
|
2219
|
+
.mi.phone_in_talk:before {
|
2220
2220
|
content: '\e61d';
|
2221
2221
|
}
|
2222
|
-
.material-icons.
|
2223
|
-
.mi.
|
2222
|
+
.material-icons.phone_iphone:before,
|
2223
|
+
.mi.phone_iphone:before {
|
2224
2224
|
content: '\e325';
|
2225
2225
|
}
|
2226
|
-
.material-icons.
|
2227
|
-
.mi.
|
2226
|
+
.material-icons.phone_locked:before,
|
2227
|
+
.mi.phone_locked:before {
|
2228
2228
|
content: '\e61e';
|
2229
2229
|
}
|
2230
|
-
.material-icons.
|
2231
|
-
.mi.
|
2230
|
+
.material-icons.phone_missed:before,
|
2231
|
+
.mi.phone_missed:before {
|
2232
2232
|
content: '\e61f';
|
2233
2233
|
}
|
2234
|
-
.material-icons.
|
2235
|
-
.mi.
|
2234
|
+
.material-icons.phone_paused:before,
|
2235
|
+
.mi.phone_paused:before {
|
2236
2236
|
content: '\e620';
|
2237
2237
|
}
|
2238
2238
|
.material-icons.phonelink:before,
|
2239
2239
|
.mi.phonelink:before {
|
2240
2240
|
content: '\e326';
|
2241
2241
|
}
|
2242
|
-
.material-icons.
|
2243
|
-
.mi.
|
2242
|
+
.material-icons.phonelink_erase:before,
|
2243
|
+
.mi.phonelink_erase:before {
|
2244
2244
|
content: '\e0db';
|
2245
2245
|
}
|
2246
|
-
.material-icons.
|
2247
|
-
.mi.
|
2246
|
+
.material-icons.phonelink_lock:before,
|
2247
|
+
.mi.phonelink_lock:before {
|
2248
2248
|
content: '\e0dc';
|
2249
2249
|
}
|
2250
|
-
.material-icons.
|
2251
|
-
.mi.
|
2250
|
+
.material-icons.phonelink_off:before,
|
2251
|
+
.mi.phonelink_off:before {
|
2252
2252
|
content: '\e327';
|
2253
2253
|
}
|
2254
|
-
.material-icons.
|
2255
|
-
.mi.
|
2254
|
+
.material-icons.phonelink_ring:before,
|
2255
|
+
.mi.phonelink_ring:before {
|
2256
2256
|
content: '\e0dd';
|
2257
2257
|
}
|
2258
|
-
.material-icons.
|
2259
|
-
.mi.
|
2258
|
+
.material-icons.phonelink_setup:before,
|
2259
|
+
.mi.phonelink_setup:before {
|
2260
2260
|
content: '\e0de';
|
2261
2261
|
}
|
2262
2262
|
.material-icons.photo:before,
|
2263
2263
|
.mi.photo:before {
|
2264
2264
|
content: '\e410';
|
2265
2265
|
}
|
2266
|
-
.material-icons.
|
2267
|
-
.mi.
|
2266
|
+
.material-icons.photo_album:before,
|
2267
|
+
.mi.photo_album:before {
|
2268
2268
|
content: '\e411';
|
2269
2269
|
}
|
2270
|
-
.material-icons.
|
2271
|
-
.mi.
|
2270
|
+
.material-icons.photo_camera:before,
|
2271
|
+
.mi.photo_camera:before {
|
2272
2272
|
content: '\e412';
|
2273
2273
|
}
|
2274
|
-
.material-icons.
|
2275
|
-
.mi.
|
2274
|
+
.material-icons.photo_library:before,
|
2275
|
+
.mi.photo_library:before {
|
2276
2276
|
content: '\e413';
|
2277
2277
|
}
|
2278
|
-
.material-icons.
|
2279
|
-
.mi.
|
2278
|
+
.material-icons.photo_size_select_actual:before,
|
2279
|
+
.mi.photo_size_select_actual:before {
|
2280
2280
|
content: '\e432';
|
2281
2281
|
}
|
2282
|
-
.material-icons.
|
2283
|
-
.mi.
|
2282
|
+
.material-icons.photo_size_select_large:before,
|
2283
|
+
.mi.photo_size_select_large:before {
|
2284
2284
|
content: '\e433';
|
2285
2285
|
}
|
2286
|
-
.material-icons.
|
2287
|
-
.mi.
|
2286
|
+
.material-icons.photo_size_select_small:before,
|
2287
|
+
.mi.photo_size_select_small:before {
|
2288
2288
|
content: '\e434';
|
2289
2289
|
}
|
2290
|
-
.material-icons.
|
2291
|
-
.mi.
|
2290
|
+
.material-icons.picture_as_pdf:before,
|
2291
|
+
.mi.picture_as_pdf:before {
|
2292
2292
|
content: '\e415';
|
2293
2293
|
}
|
2294
|
-
.material-icons.
|
2295
|
-
.mi.
|
2294
|
+
.material-icons.picture_in_picture:before,
|
2295
|
+
.mi.picture_in_picture:before {
|
2296
2296
|
content: '\e8aa';
|
2297
2297
|
}
|
2298
|
-
.material-icons.
|
2299
|
-
.mi.
|
2298
|
+
.material-icons.pin_drop:before,
|
2299
|
+
.mi.pin_drop:before {
|
2300
2300
|
content: '\e55e';
|
2301
2301
|
}
|
2302
2302
|
.material-icons.place:before,
|
2303
2303
|
.mi.place:before {
|
2304
2304
|
content: '\e55f';
|
2305
2305
|
}
|
2306
|
-
.material-icons.
|
2307
|
-
.mi.
|
2306
|
+
.material-icons.play_arrow:before,
|
2307
|
+
.mi.play_arrow:before {
|
2308
2308
|
content: '\e037';
|
2309
2309
|
}
|
2310
|
-
.material-icons.
|
2311
|
-
.mi.
|
2310
|
+
.material-icons.play_circle_filled:before,
|
2311
|
+
.mi.play_circle_filled:before {
|
2312
2312
|
content: '\e038';
|
2313
2313
|
}
|
2314
|
-
.material-icons.
|
2315
|
-
.mi.
|
2314
|
+
.material-icons.play_circle_outline:before,
|
2315
|
+
.mi.play_circle_outline:before {
|
2316
2316
|
content: '\e039';
|
2317
2317
|
}
|
2318
|
-
.material-icons.
|
2319
|
-
.mi.
|
2318
|
+
.material-icons.play_for_work:before,
|
2319
|
+
.mi.play_for_work:before {
|
2320
2320
|
content: '\e906';
|
2321
2321
|
}
|
2322
|
-
.material-icons.
|
2323
|
-
.mi.
|
2322
|
+
.material-icons.playlist_add:before,
|
2323
|
+
.mi.playlist_add:before {
|
2324
2324
|
content: '\e03b';
|
2325
2325
|
}
|
2326
|
-
.material-icons.
|
2327
|
-
.mi.
|
2326
|
+
.material-icons.plus_one:before,
|
2327
|
+
.mi.plus_one:before {
|
2328
2328
|
content: '\e800';
|
2329
2329
|
}
|
2330
2330
|
.material-icons.poll:before,
|
@@ -2335,8 +2335,8 @@
|
|
2335
2335
|
.mi.polymer:before {
|
2336
2336
|
content: '\e8ab';
|
2337
2337
|
}
|
2338
|
-
.material-icons.
|
2339
|
-
.mi.
|
2338
|
+
.material-icons.portable_wifi_off:before,
|
2339
|
+
.mi.portable_wifi_off:before {
|
2340
2340
|
content: '\e0ce';
|
2341
2341
|
}
|
2342
2342
|
.material-icons.portrait:before,
|
@@ -2347,16 +2347,16 @@
|
|
2347
2347
|
.mi.power:before {
|
2348
2348
|
content: '\e63c';
|
2349
2349
|
}
|
2350
|
-
.material-icons.
|
2351
|
-
.mi.
|
2350
|
+
.material-icons.power_input:before,
|
2351
|
+
.mi.power_input:before {
|
2352
2352
|
content: '\e336';
|
2353
2353
|
}
|
2354
|
-
.material-icons.
|
2355
|
-
.mi.
|
2354
|
+
.material-icons.power_settings_new:before,
|
2355
|
+
.mi.power_settings_new:before {
|
2356
2356
|
content: '\e8ac';
|
2357
2357
|
}
|
2358
|
-
.material-icons.
|
2359
|
-
.mi.
|
2358
|
+
.material-icons.present_to_all:before,
|
2359
|
+
.mi.present_to_all:before {
|
2360
2360
|
content: '\e0df';
|
2361
2361
|
}
|
2362
2362
|
.material-icons.print:before,
|
@@ -2371,44 +2371,44 @@
|
|
2371
2371
|
.mi.publish:before {
|
2372
2372
|
content: '\e255';
|
2373
2373
|
}
|
2374
|
-
.material-icons.
|
2375
|
-
.mi.
|
2374
|
+
.material-icons.query_builder:before,
|
2375
|
+
.mi.query_builder:before {
|
2376
2376
|
content: '\e8ae';
|
2377
2377
|
}
|
2378
|
-
.material-icons.
|
2379
|
-
.mi.
|
2378
|
+
.material-icons.question_answer:before,
|
2379
|
+
.mi.question_answer:before {
|
2380
2380
|
content: '\e8af';
|
2381
2381
|
}
|
2382
2382
|
.material-icons.queue:before,
|
2383
2383
|
.mi.queue:before {
|
2384
2384
|
content: '\e03c';
|
2385
2385
|
}
|
2386
|
-
.material-icons.
|
2387
|
-
.mi.
|
2386
|
+
.material-icons.queue_music:before,
|
2387
|
+
.mi.queue_music:before {
|
2388
2388
|
content: '\e03d';
|
2389
2389
|
}
|
2390
2390
|
.material-icons.radio:before,
|
2391
2391
|
.mi.radio:before {
|
2392
2392
|
content: '\e03e';
|
2393
2393
|
}
|
2394
|
-
.material-icons.
|
2395
|
-
.mi.
|
2394
|
+
.material-icons.radio_button_checked:before,
|
2395
|
+
.mi.radio_button_checked:before {
|
2396
2396
|
content: '\e837';
|
2397
2397
|
}
|
2398
|
-
.material-icons.
|
2399
|
-
.mi.
|
2398
|
+
.material-icons.radio_button_unchecked:before,
|
2399
|
+
.mi.radio_button_unchecked:before {
|
2400
2400
|
content: '\e836';
|
2401
2401
|
}
|
2402
|
-
.material-icons.
|
2403
|
-
.mi.
|
2402
|
+
.material-icons.rate_review:before,
|
2403
|
+
.mi.rate_review:before {
|
2404
2404
|
content: '\e560';
|
2405
2405
|
}
|
2406
2406
|
.material-icons.receipt:before,
|
2407
2407
|
.mi.receipt:before {
|
2408
2408
|
content: '\e8b0';
|
2409
2409
|
}
|
2410
|
-
.material-icons.
|
2411
|
-
.mi.
|
2410
|
+
.material-icons.recent_actors:before,
|
2411
|
+
.mi.recent_actors:before {
|
2412
2412
|
content: '\e03f';
|
2413
2413
|
}
|
2414
2414
|
.material-icons.redeem:before,
|
@@ -2427,16 +2427,16 @@
|
|
2427
2427
|
.mi.remove:before {
|
2428
2428
|
content: '\e15b';
|
2429
2429
|
}
|
2430
|
-
.material-icons.
|
2431
|
-
.mi.
|
2430
|
+
.material-icons.remove_circle:before,
|
2431
|
+
.mi.remove_circle:before {
|
2432
2432
|
content: '\e15c';
|
2433
2433
|
}
|
2434
|
-
.material-icons.
|
2435
|
-
.mi.
|
2434
|
+
.material-icons.remove_circle_outline:before,
|
2435
|
+
.mi.remove_circle_outline:before {
|
2436
2436
|
content: '\e15d';
|
2437
2437
|
}
|
2438
|
-
.material-icons.
|
2439
|
-
.mi.
|
2438
|
+
.material-icons.remove_red_eye:before,
|
2439
|
+
.mi.remove_red_eye:before {
|
2440
2440
|
content: '\e417';
|
2441
2441
|
}
|
2442
2442
|
.material-icons.reorder:before,
|
@@ -2447,68 +2447,68 @@
|
|
2447
2447
|
.mi.repeat:before {
|
2448
2448
|
content: '\e040';
|
2449
2449
|
}
|
2450
|
-
.material-icons.
|
2451
|
-
.mi.
|
2450
|
+
.material-icons.repeat_one:before,
|
2451
|
+
.mi.repeat_one:before {
|
2452
2452
|
content: '\e041';
|
2453
2453
|
}
|
2454
2454
|
.material-icons.replay:before,
|
2455
2455
|
.mi.replay:before {
|
2456
2456
|
content: '\e042';
|
2457
2457
|
}
|
2458
|
-
.material-icons.
|
2459
|
-
.mi.
|
2458
|
+
.material-icons.replay_10:before,
|
2459
|
+
.mi.replay_10:before {
|
2460
2460
|
content: '\e059';
|
2461
2461
|
}
|
2462
|
-
.material-icons.
|
2463
|
-
.mi.
|
2462
|
+
.material-icons.replay_30:before,
|
2463
|
+
.mi.replay_30:before {
|
2464
2464
|
content: '\e05a';
|
2465
2465
|
}
|
2466
|
-
.material-icons.
|
2467
|
-
.mi.
|
2466
|
+
.material-icons.replay_5:before,
|
2467
|
+
.mi.replay_5:before {
|
2468
2468
|
content: '\e05b';
|
2469
2469
|
}
|
2470
2470
|
.material-icons.reply:before,
|
2471
2471
|
.mi.reply:before {
|
2472
2472
|
content: '\e15e';
|
2473
2473
|
}
|
2474
|
-
.material-icons.
|
2475
|
-
.mi.
|
2474
|
+
.material-icons.reply_all:before,
|
2475
|
+
.mi.reply_all:before {
|
2476
2476
|
content: '\e15f';
|
2477
2477
|
}
|
2478
2478
|
.material-icons.report:before,
|
2479
2479
|
.mi.report:before {
|
2480
2480
|
content: '\e160';
|
2481
2481
|
}
|
2482
|
-
.material-icons.
|
2483
|
-
.mi.
|
2482
|
+
.material-icons.report_problem:before,
|
2483
|
+
.mi.report_problem:before {
|
2484
2484
|
content: '\e8b2';
|
2485
2485
|
}
|
2486
|
-
.material-icons.
|
2487
|
-
.mi.
|
2486
|
+
.material-icons.restaurant_menu:before,
|
2487
|
+
.mi.restaurant_menu:before {
|
2488
2488
|
content: '\e561';
|
2489
2489
|
}
|
2490
2490
|
.material-icons.restore:before,
|
2491
2491
|
.mi.restore:before {
|
2492
2492
|
content: '\e8b3';
|
2493
2493
|
}
|
2494
|
-
.material-icons.
|
2495
|
-
.mi.
|
2494
|
+
.material-icons.ring_volume:before,
|
2495
|
+
.mi.ring_volume:before {
|
2496
2496
|
content: '\e0d1';
|
2497
2497
|
}
|
2498
2498
|
.material-icons.room:before,
|
2499
2499
|
.mi.room:before {
|
2500
2500
|
content: '\e8b4';
|
2501
2501
|
}
|
2502
|
-
.material-icons.
|
2503
|
-
.mi.
|
2502
|
+
.material-icons.rotate_90_degrees_ccw:before,
|
2503
|
+
.mi.rotate_90_degrees_ccw:before {
|
2504
2504
|
content: '\e418';
|
2505
2505
|
}
|
2506
|
-
.material-icons.
|
2507
|
-
.mi.
|
2506
|
+
.material-icons.rotate_left:before,
|
2507
|
+
.mi.rotate_left:before {
|
2508
2508
|
content: '\e419';
|
2509
2509
|
}
|
2510
|
-
.material-icons.
|
2511
|
-
.mi.
|
2510
|
+
.material-icons.rotate_right:before,
|
2511
|
+
.mi.rotate_right:before {
|
2512
2512
|
content: '\e41a';
|
2513
2513
|
}
|
2514
2514
|
.material-icons.router:before,
|
@@ -2535,28 +2535,28 @@
|
|
2535
2535
|
.mi.school:before {
|
2536
2536
|
content: '\e80c';
|
2537
2537
|
}
|
2538
|
-
.material-icons.
|
2539
|
-
.mi.
|
2538
|
+
.material-icons.screen_lock_landscape:before,
|
2539
|
+
.mi.screen_lock_landscape:before {
|
2540
2540
|
content: '\e1be';
|
2541
2541
|
}
|
2542
|
-
.material-icons.
|
2543
|
-
.mi.
|
2542
|
+
.material-icons.screen_lock_portrait:before,
|
2543
|
+
.mi.screen_lock_portrait:before {
|
2544
2544
|
content: '\e1bf';
|
2545
2545
|
}
|
2546
|
-
.material-icons.
|
2547
|
-
.mi.
|
2546
|
+
.material-icons.screen_lock_rotation:before,
|
2547
|
+
.mi.screen_lock_rotation:before {
|
2548
2548
|
content: '\e1c0';
|
2549
2549
|
}
|
2550
|
-
.material-icons.
|
2551
|
-
.mi.
|
2550
|
+
.material-icons.screen_rotation:before,
|
2551
|
+
.mi.screen_rotation:before {
|
2552
2552
|
content: '\e1c1';
|
2553
2553
|
}
|
2554
|
-
.material-icons.
|
2555
|
-
.mi.
|
2554
|
+
.material-icons.sd_card:before,
|
2555
|
+
.mi.sd_card:before {
|
2556
2556
|
content: '\e623';
|
2557
2557
|
}
|
2558
|
-
.material-icons.
|
2559
|
-
.mi.
|
2558
|
+
.material-icons.sd_storage:before,
|
2559
|
+
.mi.sd_storage:before {
|
2560
2560
|
content: '\e1c2';
|
2561
2561
|
}
|
2562
2562
|
.material-icons.search:before,
|
@@ -2567,8 +2567,8 @@
|
|
2567
2567
|
.mi.security:before {
|
2568
2568
|
content: '\e32a';
|
2569
2569
|
}
|
2570
|
-
.material-icons.
|
2571
|
-
.mi.
|
2570
|
+
.material-icons.select_all:before,
|
2571
|
+
.mi.select_all:before {
|
2572
2572
|
content: '\e162';
|
2573
2573
|
}
|
2574
2574
|
.material-icons.send:before,
|
@@ -2579,72 +2579,72 @@
|
|
2579
2579
|
.mi.settings:before {
|
2580
2580
|
content: '\e8b8';
|
2581
2581
|
}
|
2582
|
-
.material-icons.
|
2583
|
-
.mi.
|
2582
|
+
.material-icons.settings_applications:before,
|
2583
|
+
.mi.settings_applications:before {
|
2584
2584
|
content: '\e8b9';
|
2585
2585
|
}
|
2586
|
-
.material-icons.
|
2587
|
-
.mi.
|
2586
|
+
.material-icons.settings_backup_restore:before,
|
2587
|
+
.mi.settings_backup_restore:before {
|
2588
2588
|
content: '\e8ba';
|
2589
2589
|
}
|
2590
|
-
.material-icons.
|
2591
|
-
.mi.
|
2590
|
+
.material-icons.settings_bluetooth:before,
|
2591
|
+
.mi.settings_bluetooth:before {
|
2592
2592
|
content: '\e8bb';
|
2593
2593
|
}
|
2594
|
-
.material-icons.
|
2595
|
-
.mi.
|
2594
|
+
.material-icons.settings_brightness:before,
|
2595
|
+
.mi.settings_brightness:before {
|
2596
2596
|
content: '\e8bd';
|
2597
2597
|
}
|
2598
|
-
.material-icons.
|
2599
|
-
.mi.
|
2598
|
+
.material-icons.settings_cell:before,
|
2599
|
+
.mi.settings_cell:before {
|
2600
2600
|
content: '\e8bc';
|
2601
2601
|
}
|
2602
|
-
.material-icons.
|
2603
|
-
.mi.
|
2602
|
+
.material-icons.settings_ethernet:before,
|
2603
|
+
.mi.settings_ethernet:before {
|
2604
2604
|
content: '\e8be';
|
2605
2605
|
}
|
2606
|
-
.material-icons.
|
2607
|
-
.mi.
|
2606
|
+
.material-icons.settings_input_antenna:before,
|
2607
|
+
.mi.settings_input_antenna:before {
|
2608
2608
|
content: '\e8bf';
|
2609
2609
|
}
|
2610
|
-
.material-icons.
|
2611
|
-
.mi.
|
2610
|
+
.material-icons.settings_input_component:before,
|
2611
|
+
.mi.settings_input_component:before {
|
2612
2612
|
content: '\e8c0';
|
2613
2613
|
}
|
2614
|
-
.material-icons.
|
2615
|
-
.mi.
|
2614
|
+
.material-icons.settings_input_composite:before,
|
2615
|
+
.mi.settings_input_composite:before {
|
2616
2616
|
content: '\e8c1';
|
2617
2617
|
}
|
2618
|
-
.material-icons.
|
2619
|
-
.mi.
|
2618
|
+
.material-icons.settings_input_hdmi:before,
|
2619
|
+
.mi.settings_input_hdmi:before {
|
2620
2620
|
content: '\e8c2';
|
2621
2621
|
}
|
2622
|
-
.material-icons.
|
2623
|
-
.mi.
|
2622
|
+
.material-icons.settings_input_svideo:before,
|
2623
|
+
.mi.settings_input_svideo:before {
|
2624
2624
|
content: '\e8c3';
|
2625
2625
|
}
|
2626
|
-
.material-icons.
|
2627
|
-
.mi.
|
2626
|
+
.material-icons.settings_overscan:before,
|
2627
|
+
.mi.settings_overscan:before {
|
2628
2628
|
content: '\e8c4';
|
2629
2629
|
}
|
2630
|
-
.material-icons.
|
2631
|
-
.mi.
|
2630
|
+
.material-icons.settings_phone:before,
|
2631
|
+
.mi.settings_phone:before {
|
2632
2632
|
content: '\e8c5';
|
2633
2633
|
}
|
2634
|
-
.material-icons.
|
2635
|
-
.mi.
|
2634
|
+
.material-icons.settings_power:before,
|
2635
|
+
.mi.settings_power:before {
|
2636
2636
|
content: '\e8c6';
|
2637
2637
|
}
|
2638
|
-
.material-icons.
|
2639
|
-
.mi.
|
2638
|
+
.material-icons.settings_remote:before,
|
2639
|
+
.mi.settings_remote:before {
|
2640
2640
|
content: '\e8c7';
|
2641
2641
|
}
|
2642
|
-
.material-icons.
|
2643
|
-
.mi.
|
2642
|
+
.material-icons.settings_system_daydream:before,
|
2643
|
+
.mi.settings_system_daydream:before {
|
2644
2644
|
content: '\e1c3';
|
2645
2645
|
}
|
2646
|
-
.material-icons.
|
2647
|
-
.mi.
|
2646
|
+
.material-icons.settings_voice:before,
|
2647
|
+
.mi.settings_voice:before {
|
2648
2648
|
content: '\e8c8';
|
2649
2649
|
}
|
2650
2650
|
.material-icons.share:before,
|
@@ -2655,68 +2655,68 @@
|
|
2655
2655
|
.mi.shop:before {
|
2656
2656
|
content: '\e8c9';
|
2657
2657
|
}
|
2658
|
-
.material-icons.
|
2659
|
-
.mi.
|
2658
|
+
.material-icons.shop_two:before,
|
2659
|
+
.mi.shop_two:before {
|
2660
2660
|
content: '\e8ca';
|
2661
2661
|
}
|
2662
|
-
.material-icons.
|
2663
|
-
.mi.
|
2662
|
+
.material-icons.shopping_basket:before,
|
2663
|
+
.mi.shopping_basket:before {
|
2664
2664
|
content: '\e8cb';
|
2665
2665
|
}
|
2666
|
-
.material-icons.
|
2667
|
-
.mi.
|
2666
|
+
.material-icons.shopping_cart:before,
|
2667
|
+
.mi.shopping_cart:before {
|
2668
2668
|
content: '\e8cc';
|
2669
2669
|
}
|
2670
2670
|
.material-icons.shuffle:before,
|
2671
2671
|
.mi.shuffle:before {
|
2672
2672
|
content: '\e043';
|
2673
2673
|
}
|
2674
|
-
.material-icons.
|
2675
|
-
.mi.
|
2674
|
+
.material-icons.signal_cellular_4_bar:before,
|
2675
|
+
.mi.signal_cellular_4_bar:before {
|
2676
2676
|
content: '\e1c8';
|
2677
2677
|
}
|
2678
|
-
.material-icons.
|
2679
|
-
.mi.
|
2678
|
+
.material-icons.signal_cellular_connected_no_internet_4_bar:before,
|
2679
|
+
.mi.signal_cellular_connected_no_internet_4_bar:before {
|
2680
2680
|
content: '\e1cd';
|
2681
2681
|
}
|
2682
|
-
.material-icons.
|
2683
|
-
.mi.
|
2682
|
+
.material-icons.signal_cellular_no_sim:before,
|
2683
|
+
.mi.signal_cellular_no_sim:before {
|
2684
2684
|
content: '\e1ce';
|
2685
2685
|
}
|
2686
|
-
.material-icons.
|
2687
|
-
.mi.
|
2686
|
+
.material-icons.signal_cellular_null:before,
|
2687
|
+
.mi.signal_cellular_null:before {
|
2688
2688
|
content: '\e1cf';
|
2689
2689
|
}
|
2690
|
-
.material-icons.
|
2691
|
-
.mi.
|
2690
|
+
.material-icons.signal_cellular_off:before,
|
2691
|
+
.mi.signal_cellular_off:before {
|
2692
2692
|
content: '\e1d0';
|
2693
2693
|
}
|
2694
|
-
.material-icons.
|
2695
|
-
.mi.
|
2694
|
+
.material-icons.signal_wifi_4_bar:before,
|
2695
|
+
.mi.signal_wifi_4_bar:before {
|
2696
2696
|
content: '\e1d8';
|
2697
2697
|
}
|
2698
|
-
.material-icons.
|
2699
|
-
.mi.
|
2698
|
+
.material-icons.signal_wifi_4_bar_lock:before,
|
2699
|
+
.mi.signal_wifi_4_bar_lock:before {
|
2700
2700
|
content: '\e1d9';
|
2701
2701
|
}
|
2702
|
-
.material-icons.
|
2703
|
-
.mi.
|
2702
|
+
.material-icons.signal_wifi_off:before,
|
2703
|
+
.mi.signal_wifi_off:before {
|
2704
2704
|
content: '\e1da';
|
2705
2705
|
}
|
2706
|
-
.material-icons.
|
2707
|
-
.mi.
|
2706
|
+
.material-icons.sim_card:before,
|
2707
|
+
.mi.sim_card:before {
|
2708
2708
|
content: '\e32b';
|
2709
2709
|
}
|
2710
|
-
.material-icons.
|
2711
|
-
.mi.
|
2710
|
+
.material-icons.sim_card_alert:before,
|
2711
|
+
.mi.sim_card_alert:before {
|
2712
2712
|
content: '\e624';
|
2713
2713
|
}
|
2714
|
-
.material-icons.
|
2715
|
-
.mi.
|
2714
|
+
.material-icons.skip_next:before,
|
2715
|
+
.mi.skip_next:before {
|
2716
2716
|
content: '\e044';
|
2717
2717
|
}
|
2718
|
-
.material-icons.
|
2719
|
-
.mi.
|
2718
|
+
.material-icons.skip_previous:before,
|
2719
|
+
.mi.skip_previous:before {
|
2720
2720
|
content: '\e045';
|
2721
2721
|
}
|
2722
2722
|
.material-icons.slideshow:before,
|
@@ -2731,8 +2731,8 @@
|
|
2731
2731
|
.mi.sms:before {
|
2732
2732
|
content: '\e625';
|
2733
2733
|
}
|
2734
|
-
.material-icons.
|
2735
|
-
.mi.
|
2734
|
+
.material-icons.sms_failed:before,
|
2735
|
+
.mi.sms_failed:before {
|
2736
2736
|
content: '\e626';
|
2737
2737
|
}
|
2738
2738
|
.material-icons.snooze:before,
|
@@ -2743,28 +2743,28 @@
|
|
2743
2743
|
.mi.sort:before {
|
2744
2744
|
content: '\e164';
|
2745
2745
|
}
|
2746
|
-
.material-icons.
|
2747
|
-
.mi.
|
2746
|
+
.material-icons.sort_by_alpha:before,
|
2747
|
+
.mi.sort_by_alpha:before {
|
2748
2748
|
content: '\e053';
|
2749
2749
|
}
|
2750
|
-
.material-icons.
|
2751
|
-
.mi.
|
2750
|
+
.material-icons.space_bar:before,
|
2751
|
+
.mi.space_bar:before {
|
2752
2752
|
content: '\e256';
|
2753
2753
|
}
|
2754
2754
|
.material-icons.speaker:before,
|
2755
2755
|
.mi.speaker:before {
|
2756
2756
|
content: '\e32d';
|
2757
2757
|
}
|
2758
|
-
.material-icons.
|
2759
|
-
.mi.
|
2758
|
+
.material-icons.speaker_group:before,
|
2759
|
+
.mi.speaker_group:before {
|
2760
2760
|
content: '\e32e';
|
2761
2761
|
}
|
2762
|
-
.material-icons.
|
2763
|
-
.mi.
|
2762
|
+
.material-icons.speaker_notes:before,
|
2763
|
+
.mi.speaker_notes:before {
|
2764
2764
|
content: '\e8cd';
|
2765
2765
|
}
|
2766
|
-
.material-icons.
|
2767
|
-
.mi.
|
2766
|
+
.material-icons.speaker_phone:before,
|
2767
|
+
.mi.speaker_phone:before {
|
2768
2768
|
content: '\e0d2';
|
2769
2769
|
}
|
2770
2770
|
.material-icons.spellcheck:before,
|
@@ -2775,32 +2775,32 @@
|
|
2775
2775
|
.mi.star:before {
|
2776
2776
|
content: '\e838';
|
2777
2777
|
}
|
2778
|
-
.material-icons.
|
2779
|
-
.mi.
|
2778
|
+
.material-icons.star_border:before,
|
2779
|
+
.mi.star_border:before {
|
2780
2780
|
content: '\e83a';
|
2781
2781
|
}
|
2782
|
-
.material-icons.
|
2783
|
-
.mi.
|
2782
|
+
.material-icons.star_half:before,
|
2783
|
+
.mi.star_half:before {
|
2784
2784
|
content: '\e839';
|
2785
2785
|
}
|
2786
2786
|
.material-icons.stars:before,
|
2787
2787
|
.mi.stars:before {
|
2788
2788
|
content: '\e8d0';
|
2789
2789
|
}
|
2790
|
-
.material-icons.
|
2791
|
-
.mi.
|
2790
|
+
.material-icons.stay_current_landscape:before,
|
2791
|
+
.mi.stay_current_landscape:before {
|
2792
2792
|
content: '\e0d3';
|
2793
2793
|
}
|
2794
|
-
.material-icons.
|
2795
|
-
.mi.
|
2794
|
+
.material-icons.stay_current_portrait:before,
|
2795
|
+
.mi.stay_current_portrait:before {
|
2796
2796
|
content: '\e0d4';
|
2797
2797
|
}
|
2798
|
-
.material-icons.
|
2799
|
-
.mi.
|
2798
|
+
.material-icons.stay_primary_landscape:before,
|
2799
|
+
.mi.stay_primary_landscape:before {
|
2800
2800
|
content: '\e0d5';
|
2801
2801
|
}
|
2802
|
-
.material-icons.
|
2803
|
-
.mi.
|
2802
|
+
.material-icons.stay_primary_portrait:before,
|
2803
|
+
.mi.stay_primary_portrait:before {
|
2804
2804
|
content: '\e0d6';
|
2805
2805
|
}
|
2806
2806
|
.material-icons.stop:before,
|
@@ -2815,16 +2815,16 @@
|
|
2815
2815
|
.mi.store:before {
|
2816
2816
|
content: '\e8d1';
|
2817
2817
|
}
|
2818
|
-
.material-icons.
|
2819
|
-
.mi.
|
2818
|
+
.material-icons.store_mall_directory:before,
|
2819
|
+
.mi.store_mall_directory:before {
|
2820
2820
|
content: '\e563';
|
2821
2821
|
}
|
2822
2822
|
.material-icons.straighten:before,
|
2823
2823
|
.mi.straighten:before {
|
2824
2824
|
content: '\e41c';
|
2825
2825
|
}
|
2826
|
-
.material-icons.
|
2827
|
-
.mi.
|
2826
|
+
.material-icons.strikethrough_s:before,
|
2827
|
+
.mi.strikethrough_s:before {
|
2828
2828
|
content: '\e257';
|
2829
2829
|
}
|
2830
2830
|
.material-icons.style:before,
|
@@ -2839,92 +2839,92 @@
|
|
2839
2839
|
.mi.subtitles:before {
|
2840
2840
|
content: '\e048';
|
2841
2841
|
}
|
2842
|
-
.material-icons.
|
2843
|
-
.mi.
|
2842
|
+
.material-icons.supervisor_account:before,
|
2843
|
+
.mi.supervisor_account:before {
|
2844
2844
|
content: '\e8d3';
|
2845
2845
|
}
|
2846
|
-
.material-icons.
|
2847
|
-
.mi.
|
2846
|
+
.material-icons.surround_sound:before,
|
2847
|
+
.mi.surround_sound:before {
|
2848
2848
|
content: '\e049';
|
2849
2849
|
}
|
2850
|
-
.material-icons.
|
2851
|
-
.mi.
|
2850
|
+
.material-icons.swap_calls:before,
|
2851
|
+
.mi.swap_calls:before {
|
2852
2852
|
content: '\e0d7';
|
2853
2853
|
}
|
2854
|
-
.material-icons.
|
2855
|
-
.mi.
|
2854
|
+
.material-icons.swap_horiz:before,
|
2855
|
+
.mi.swap_horiz:before {
|
2856
2856
|
content: '\e8d4';
|
2857
2857
|
}
|
2858
|
-
.material-icons.
|
2859
|
-
.mi.
|
2858
|
+
.material-icons.swap_vert:before,
|
2859
|
+
.mi.swap_vert:before {
|
2860
2860
|
content: '\e8d5';
|
2861
2861
|
}
|
2862
|
-
.material-icons.
|
2863
|
-
.mi.
|
2862
|
+
.material-icons.swap_vertical_circle:before,
|
2863
|
+
.mi.swap_vertical_circle:before {
|
2864
2864
|
content: '\e8d6';
|
2865
2865
|
}
|
2866
|
-
.material-icons.
|
2867
|
-
.mi.
|
2866
|
+
.material-icons.switch_camera:before,
|
2867
|
+
.mi.switch_camera:before {
|
2868
2868
|
content: '\e41e';
|
2869
2869
|
}
|
2870
|
-
.material-icons.
|
2871
|
-
.mi.
|
2870
|
+
.material-icons.switch_video:before,
|
2871
|
+
.mi.switch_video:before {
|
2872
2872
|
content: '\e41f';
|
2873
2873
|
}
|
2874
2874
|
.material-icons.sync:before,
|
2875
2875
|
.mi.sync:before {
|
2876
2876
|
content: '\e627';
|
2877
2877
|
}
|
2878
|
-
.material-icons.
|
2879
|
-
.mi.
|
2878
|
+
.material-icons.sync_disabled:before,
|
2879
|
+
.mi.sync_disabled:before {
|
2880
2880
|
content: '\e628';
|
2881
2881
|
}
|
2882
|
-
.material-icons.
|
2883
|
-
.mi.
|
2882
|
+
.material-icons.sync_problem:before,
|
2883
|
+
.mi.sync_problem:before {
|
2884
2884
|
content: '\e629';
|
2885
2885
|
}
|
2886
|
-
.material-icons.
|
2887
|
-
.mi.
|
2886
|
+
.material-icons.system_update:before,
|
2887
|
+
.mi.system_update:before {
|
2888
2888
|
content: '\e62a';
|
2889
2889
|
}
|
2890
|
-
.material-icons.
|
2891
|
-
.mi.
|
2890
|
+
.material-icons.system_update_alt:before,
|
2891
|
+
.mi.system_update_alt:before {
|
2892
2892
|
content: '\e8d7';
|
2893
2893
|
}
|
2894
2894
|
.material-icons.tab:before,
|
2895
2895
|
.mi.tab:before {
|
2896
2896
|
content: '\e8d8';
|
2897
2897
|
}
|
2898
|
-
.material-icons.
|
2899
|
-
.mi.
|
2898
|
+
.material-icons.tab_unselected:before,
|
2899
|
+
.mi.tab_unselected:before {
|
2900
2900
|
content: '\e8d9';
|
2901
2901
|
}
|
2902
2902
|
.material-icons.tablet:before,
|
2903
2903
|
.mi.tablet:before {
|
2904
2904
|
content: '\e32f';
|
2905
2905
|
}
|
2906
|
-
.material-icons.
|
2907
|
-
.mi.
|
2906
|
+
.material-icons.tablet_android:before,
|
2907
|
+
.mi.tablet_android:before {
|
2908
2908
|
content: '\e330';
|
2909
2909
|
}
|
2910
|
-
.material-icons.
|
2911
|
-
.mi.
|
2910
|
+
.material-icons.tablet_mac:before,
|
2911
|
+
.mi.tablet_mac:before {
|
2912
2912
|
content: '\e331';
|
2913
2913
|
}
|
2914
|
-
.material-icons.
|
2915
|
-
.mi.
|
2914
|
+
.material-icons.tag_faces:before,
|
2915
|
+
.mi.tag_faces:before {
|
2916
2916
|
content: '\e420';
|
2917
2917
|
}
|
2918
|
-
.material-icons.
|
2919
|
-
.mi.
|
2918
|
+
.material-icons.tap_and_play:before,
|
2919
|
+
.mi.tap_and_play:before {
|
2920
2920
|
content: '\e62b';
|
2921
2921
|
}
|
2922
2922
|
.material-icons.terrain:before,
|
2923
2923
|
.mi.terrain:before {
|
2924
2924
|
content: '\e564';
|
2925
2925
|
}
|
2926
|
-
.material-icons.
|
2927
|
-
.mi.
|
2926
|
+
.material-icons.text_format:before,
|
2927
|
+
.mi.text_format:before {
|
2928
2928
|
content: '\e165';
|
2929
2929
|
}
|
2930
2930
|
.material-icons.textsms:before,
|
@@ -2939,20 +2939,20 @@
|
|
2939
2939
|
.mi.theaters:before {
|
2940
2940
|
content: '\e8da';
|
2941
2941
|
}
|
2942
|
-
.material-icons.
|
2943
|
-
.mi.
|
2942
|
+
.material-icons.thumb_down:before,
|
2943
|
+
.mi.thumb_down:before {
|
2944
2944
|
content: '\e8db';
|
2945
2945
|
}
|
2946
|
-
.material-icons.
|
2947
|
-
.mi.
|
2946
|
+
.material-icons.thumb_up:before,
|
2947
|
+
.mi.thumb_up:before {
|
2948
2948
|
content: '\e8dc';
|
2949
2949
|
}
|
2950
|
-
.material-icons.
|
2951
|
-
.mi.
|
2950
|
+
.material-icons.thumbs_up_down:before,
|
2951
|
+
.mi.thumbs_up_down:before {
|
2952
2952
|
content: '\e8dd';
|
2953
2953
|
}
|
2954
|
-
.material-icons.
|
2955
|
-
.mi.
|
2954
|
+
.material-icons.time_to_leave:before,
|
2955
|
+
.mi.time_to_leave:before {
|
2956
2956
|
content: '\e62c';
|
2957
2957
|
}
|
2958
2958
|
.material-icons.timelapse:before,
|
@@ -2963,16 +2963,16 @@
|
|
2963
2963
|
.mi.timer:before {
|
2964
2964
|
content: '\e425';
|
2965
2965
|
}
|
2966
|
-
.material-icons.
|
2967
|
-
.mi.
|
2966
|
+
.material-icons.timer_10:before,
|
2967
|
+
.mi.timer_10:before {
|
2968
2968
|
content: '\e423';
|
2969
2969
|
}
|
2970
|
-
.material-icons.
|
2971
|
-
.mi.
|
2970
|
+
.material-icons.timer_3:before,
|
2971
|
+
.mi.timer_3:before {
|
2972
2972
|
content: '\e424';
|
2973
2973
|
}
|
2974
|
-
.material-icons.
|
2975
|
-
.mi.
|
2974
|
+
.material-icons.timer_off:before,
|
2975
|
+
.mi.timer_off:before {
|
2976
2976
|
content: '\e426';
|
2977
2977
|
}
|
2978
2978
|
.material-icons.toc:before,
|
@@ -2995,8 +2995,8 @@
|
|
2995
2995
|
.mi.toys:before {
|
2996
2996
|
content: '\e332';
|
2997
2997
|
}
|
2998
|
-
.material-icons.
|
2999
|
-
.mi.
|
2998
|
+
.material-icons.track_changes:before,
|
2999
|
+
.mi.track_changes:before {
|
3000
3000
|
content: '\e8e1';
|
3001
3001
|
}
|
3002
3002
|
.material-icons.traffic:before,
|
@@ -3011,28 +3011,28 @@
|
|
3011
3011
|
.mi.translate:before {
|
3012
3012
|
content: '\e8e2';
|
3013
3013
|
}
|
3014
|
-
.material-icons.
|
3015
|
-
.mi.
|
3014
|
+
.material-icons.trending_down:before,
|
3015
|
+
.mi.trending_down:before {
|
3016
3016
|
content: '\e8e3';
|
3017
3017
|
}
|
3018
|
-
.material-icons.
|
3019
|
-
.mi.
|
3018
|
+
.material-icons.trending_flat:before,
|
3019
|
+
.mi.trending_flat:before {
|
3020
3020
|
content: '\e8e4';
|
3021
3021
|
}
|
3022
|
-
.material-icons.
|
3023
|
-
.mi.
|
3022
|
+
.material-icons.trending_up:before,
|
3023
|
+
.mi.trending_up:before {
|
3024
3024
|
content: '\e8e5';
|
3025
3025
|
}
|
3026
3026
|
.material-icons.tune:before,
|
3027
3027
|
.mi.tune:before {
|
3028
3028
|
content: '\e429';
|
3029
3029
|
}
|
3030
|
-
.material-icons.
|
3031
|
-
.mi.
|
3030
|
+
.material-icons.turned_in:before,
|
3031
|
+
.mi.turned_in:before {
|
3032
3032
|
content: '\e8e6';
|
3033
3033
|
}
|
3034
|
-
.material-icons.
|
3035
|
-
.mi.
|
3034
|
+
.material-icons.turned_in_not:before,
|
3035
|
+
.mi.turned_in_not:before {
|
3036
3036
|
content: '\e8e7';
|
3037
3037
|
}
|
3038
3038
|
.material-icons.tv:before,
|
@@ -3043,100 +3043,100 @@
|
|
3043
3043
|
.mi.undo:before {
|
3044
3044
|
content: '\e166';
|
3045
3045
|
}
|
3046
|
-
.material-icons.
|
3047
|
-
.mi.
|
3046
|
+
.material-icons.unfold_less:before,
|
3047
|
+
.mi.unfold_less:before {
|
3048
3048
|
content: '\e5d6';
|
3049
3049
|
}
|
3050
|
-
.material-icons.
|
3051
|
-
.mi.
|
3050
|
+
.material-icons.unfold_more:before,
|
3051
|
+
.mi.unfold_more:before {
|
3052
3052
|
content: '\e5d7';
|
3053
3053
|
}
|
3054
3054
|
.material-icons.usb:before,
|
3055
3055
|
.mi.usb:before {
|
3056
3056
|
content: '\e1e0';
|
3057
3057
|
}
|
3058
|
-
.material-icons.
|
3059
|
-
.mi.
|
3058
|
+
.material-icons.verified_user:before,
|
3059
|
+
.mi.verified_user:before {
|
3060
3060
|
content: '\e8e8';
|
3061
3061
|
}
|
3062
|
-
.material-icons.
|
3063
|
-
.mi.
|
3062
|
+
.material-icons.vertical_align_bottom:before,
|
3063
|
+
.mi.vertical_align_bottom:before {
|
3064
3064
|
content: '\e258';
|
3065
3065
|
}
|
3066
|
-
.material-icons.
|
3067
|
-
.mi.
|
3066
|
+
.material-icons.vertical_align_center:before,
|
3067
|
+
.mi.vertical_align_center:before {
|
3068
3068
|
content: '\e259';
|
3069
3069
|
}
|
3070
|
-
.material-icons.
|
3071
|
-
.mi.
|
3070
|
+
.material-icons.vertical_align_top:before,
|
3071
|
+
.mi.vertical_align_top:before {
|
3072
3072
|
content: '\e25a';
|
3073
3073
|
}
|
3074
3074
|
.material-icons.vibration:before,
|
3075
3075
|
.mi.vibration:before {
|
3076
3076
|
content: '\e62d';
|
3077
3077
|
}
|
3078
|
-
.material-icons.
|
3079
|
-
.mi.
|
3078
|
+
.material-icons.video_library:before,
|
3079
|
+
.mi.video_library:before {
|
3080
3080
|
content: '\e04a';
|
3081
3081
|
}
|
3082
3082
|
.material-icons.videocam:before,
|
3083
3083
|
.mi.videocam:before {
|
3084
3084
|
content: '\e04b';
|
3085
3085
|
}
|
3086
|
-
.material-icons.
|
3087
|
-
.mi.
|
3086
|
+
.material-icons.videocam_off:before,
|
3087
|
+
.mi.videocam_off:before {
|
3088
3088
|
content: '\e04c';
|
3089
3089
|
}
|
3090
|
-
.material-icons.
|
3091
|
-
.mi.
|
3090
|
+
.material-icons.view_agenda:before,
|
3091
|
+
.mi.view_agenda:before {
|
3092
3092
|
content: '\e8e9';
|
3093
3093
|
}
|
3094
|
-
.material-icons.
|
3095
|
-
.mi.
|
3094
|
+
.material-icons.view_array:before,
|
3095
|
+
.mi.view_array:before {
|
3096
3096
|
content: '\e8ea';
|
3097
3097
|
}
|
3098
|
-
.material-icons.
|
3099
|
-
.mi.
|
3098
|
+
.material-icons.view_carousel:before,
|
3099
|
+
.mi.view_carousel:before {
|
3100
3100
|
content: '\e8eb';
|
3101
3101
|
}
|
3102
|
-
.material-icons.
|
3103
|
-
.mi.
|
3102
|
+
.material-icons.view_column:before,
|
3103
|
+
.mi.view_column:before {
|
3104
3104
|
content: '\e8ec';
|
3105
3105
|
}
|
3106
|
-
.material-icons.
|
3107
|
-
.mi.
|
3106
|
+
.material-icons.view_comfy:before,
|
3107
|
+
.mi.view_comfy:before {
|
3108
3108
|
content: '\e42a';
|
3109
3109
|
}
|
3110
|
-
.material-icons.
|
3111
|
-
.mi.
|
3110
|
+
.material-icons.view_compact:before,
|
3111
|
+
.mi.view_compact:before {
|
3112
3112
|
content: '\e42b';
|
3113
3113
|
}
|
3114
|
-
.material-icons.
|
3115
|
-
.mi.
|
3114
|
+
.material-icons.view_day:before,
|
3115
|
+
.mi.view_day:before {
|
3116
3116
|
content: '\e8ed';
|
3117
3117
|
}
|
3118
|
-
.material-icons.
|
3119
|
-
.mi.
|
3118
|
+
.material-icons.view_headline:before,
|
3119
|
+
.mi.view_headline:before {
|
3120
3120
|
content: '\e8ee';
|
3121
3121
|
}
|
3122
|
-
.material-icons.
|
3123
|
-
.mi.
|
3122
|
+
.material-icons.view_list:before,
|
3123
|
+
.mi.view_list:before {
|
3124
3124
|
content: '\e8ef';
|
3125
3125
|
}
|
3126
|
-
.material-icons.
|
3127
|
-
.mi.
|
3126
|
+
.material-icons.view_module:before,
|
3127
|
+
.mi.view_module:before {
|
3128
3128
|
content: '\e8f0';
|
3129
3129
|
}
|
3130
|
-
.material-icons.
|
3131
|
-
.mi.
|
3130
|
+
.material-icons.view_quilt:before,
|
3131
|
+
.mi.view_quilt:before {
|
3132
3132
|
content: '\e8f1';
|
3133
3133
|
}
|
3134
|
-
.material-icons.
|
3135
|
-
.mi.
|
3134
|
+
.material-icons.view_stream:before,
|
3135
|
+
.mi.view_stream:before {
|
3136
3136
|
content: '\e8f2';
|
3137
3137
|
}
|
3138
|
-
.material-icons.
|
3139
|
-
.mi.
|
3138
|
+
.material-icons.view_week:before,
|
3139
|
+
.mi.view_week:before {
|
3140
3140
|
content: '\e8f3';
|
3141
3141
|
}
|
3142
3142
|
.material-icons.vignette:before,
|
@@ -3147,40 +3147,40 @@
|
|
3147
3147
|
.mi.visibility:before {
|
3148
3148
|
content: '\e8f4';
|
3149
3149
|
}
|
3150
|
-
.material-icons.
|
3151
|
-
.mi.
|
3150
|
+
.material-icons.visibility_off:before,
|
3151
|
+
.mi.visibility_off:before {
|
3152
3152
|
content: '\e8f5';
|
3153
3153
|
}
|
3154
|
-
.material-icons.
|
3155
|
-
.mi.
|
3154
|
+
.material-icons.voice_chat:before,
|
3155
|
+
.mi.voice_chat:before {
|
3156
3156
|
content: '\e62e';
|
3157
3157
|
}
|
3158
3158
|
.material-icons.voicemail:before,
|
3159
3159
|
.mi.voicemail:before {
|
3160
3160
|
content: '\e0d9';
|
3161
3161
|
}
|
3162
|
-
.material-icons.
|
3163
|
-
.mi.
|
3162
|
+
.material-icons.volume_down:before,
|
3163
|
+
.mi.volume_down:before {
|
3164
3164
|
content: '\e04d';
|
3165
3165
|
}
|
3166
|
-
.material-icons.
|
3167
|
-
.mi.
|
3166
|
+
.material-icons.volume_mute:before,
|
3167
|
+
.mi.volume_mute:before {
|
3168
3168
|
content: '\e04e';
|
3169
3169
|
}
|
3170
|
-
.material-icons.
|
3171
|
-
.mi.
|
3170
|
+
.material-icons.volume_off:before,
|
3171
|
+
.mi.volume_off:before {
|
3172
3172
|
content: '\e04f';
|
3173
3173
|
}
|
3174
|
-
.material-icons.
|
3175
|
-
.mi.
|
3174
|
+
.material-icons.volume_up:before,
|
3175
|
+
.mi.volume_up:before {
|
3176
3176
|
content: '\e050';
|
3177
3177
|
}
|
3178
|
-
.material-icons.
|
3179
|
-
.mi.
|
3178
|
+
.material-icons.vpn_key:before,
|
3179
|
+
.mi.vpn_key:before {
|
3180
3180
|
content: '\e0da';
|
3181
3181
|
}
|
3182
|
-
.material-icons.
|
3183
|
-
.mi.
|
3182
|
+
.material-icons.vpn_lock:before,
|
3183
|
+
.mi.vpn_lock:before {
|
3184
3184
|
content: '\e62f';
|
3185
3185
|
}
|
3186
3186
|
.material-icons.wallpaper:before,
|
@@ -3195,24 +3195,24 @@
|
|
3195
3195
|
.mi.watch:before {
|
3196
3196
|
content: '\e334';
|
3197
3197
|
}
|
3198
|
-
.material-icons.
|
3199
|
-
.mi.
|
3198
|
+
.material-icons.wb_auto:before,
|
3199
|
+
.mi.wb_auto:before {
|
3200
3200
|
content: '\e42c';
|
3201
3201
|
}
|
3202
|
-
.material-icons.
|
3203
|
-
.mi.
|
3202
|
+
.material-icons.wb_cloudy:before,
|
3203
|
+
.mi.wb_cloudy:before {
|
3204
3204
|
content: '\e42d';
|
3205
3205
|
}
|
3206
|
-
.material-icons.
|
3207
|
-
.mi.
|
3206
|
+
.material-icons.wb_incandescent:before,
|
3207
|
+
.mi.wb_incandescent:before {
|
3208
3208
|
content: '\e42e';
|
3209
3209
|
}
|
3210
|
-
.material-icons.
|
3211
|
-
.mi.
|
3210
|
+
.material-icons.wb_iridescent:before,
|
3211
|
+
.mi.wb_iridescent:before {
|
3212
3212
|
content: '\e436';
|
3213
3213
|
}
|
3214
|
-
.material-icons.
|
3215
|
-
.mi.
|
3214
|
+
.material-icons.wb_sunny:before,
|
3215
|
+
.mi.wb_sunny:before {
|
3216
3216
|
content: '\e430';
|
3217
3217
|
}
|
3218
3218
|
.material-icons.wc:before,
|
@@ -3235,31 +3235,31 @@
|
|
3235
3235
|
.mi.wifi:before {
|
3236
3236
|
content: '\e63e';
|
3237
3237
|
}
|
3238
|
-
.material-icons.
|
3239
|
-
.mi.
|
3238
|
+
.material-icons.wifi_lock:before,
|
3239
|
+
.mi.wifi_lock:before {
|
3240
3240
|
content: '\e1e1';
|
3241
3241
|
}
|
3242
|
-
.material-icons.
|
3243
|
-
.mi.
|
3242
|
+
.material-icons.wifi_tethering:before,
|
3243
|
+
.mi.wifi_tethering:before {
|
3244
3244
|
content: '\e1e2';
|
3245
3245
|
}
|
3246
3246
|
.material-icons.work:before,
|
3247
3247
|
.mi.work:before {
|
3248
3248
|
content: '\e8f9';
|
3249
3249
|
}
|
3250
|
-
.material-icons.
|
3251
|
-
.mi.
|
3250
|
+
.material-icons.wrap_text:before,
|
3251
|
+
.mi.wrap_text:before {
|
3252
3252
|
content: '\e25b';
|
3253
3253
|
}
|
3254
|
-
.material-icons.
|
3255
|
-
.mi.
|
3254
|
+
.material-icons.youtube_searched_for:before,
|
3255
|
+
.mi.youtube_searched_for:before {
|
3256
3256
|
content: '\e8fa';
|
3257
3257
|
}
|
3258
|
-
.material-icons.
|
3259
|
-
.mi.
|
3258
|
+
.material-icons.zoom_in:before,
|
3259
|
+
.mi.zoom_in:before {
|
3260
3260
|
content: '\e8ff';
|
3261
3261
|
}
|
3262
|
-
.material-icons.
|
3263
|
-
.mi.
|
3262
|
+
.material-icons.zoom_out:before,
|
3263
|
+
.mi.zoom_out:before {
|
3264
3264
|
content: '\e900';
|
3265
3265
|
}
|