material_icons 0.0.6 → 1.0.0rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +59 -10
- data/Rakefile +2 -2
- data/app/assets/stylesheets/material_icons.css.erb +1 -1
- data/app/assets/stylesheets/material_icons_unicode.css.erb +1591 -1591
- data/app/helpers/material_icons/material_icon_helper.rb +24 -0
- data/app/models/material_icon.rb +119 -0
- data/lib/material_icons.rb +14 -0
- data/lib/material_icons/engine.rb +5 -4
- data/lib/material_icons/version.rb +6 -5
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17484f6ed3e05dce0bc5b5cd275e9e5113d56273
|
4
|
+
data.tar.gz: ae8dee91cc91eb2dd7e13f64b9bfa4901238e0c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8a852033b39ff60212eb405d3baa7dda5e9fbd4259761b295a0a1bc0dde84c010458a3502945144e0019977feba717f0c581ca6c358179eb1999cc4063d3abe
|
7
|
+
data.tar.gz: f5f3a328d0e9e1b9b5ab575a3611b8711a444343f4596f83994ea159179cc0f999354c2c2bc44d9e878f6f6971b6c52c7c72285a7403667fdffa3b8551429629
|
data/README.md
CHANGED
@@ -16,21 +16,17 @@ Then, execute `bundle install`.
|
|
16
16
|
|
17
17
|
# CSS
|
18
18
|
|
19
|
-
In your `application.css.erb` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility] section for more info).
|
19
|
+
In your `application.css.erb` file you need to reference material icons CSS. There are two versions: ligature or unicode (See [Compatibility](#compatibility) section for more info).
|
20
20
|
|
21
21
|
Add this line at top of `application.css.erb` to use ligature:
|
22
22
|
|
23
23
|
//= require material_icons
|
24
24
|
|
25
|
-
Same with this line to use unicode:
|
26
|
-
|
27
|
-
//= require material_icons_unicode
|
28
|
-
|
29
25
|
These files provide multiple CSS classes to use in your views. Main classes are:
|
30
26
|
|
31
27
|
.material-icons, .mi
|
32
28
|
|
33
|
-
Some
|
29
|
+
Some CSS classes are provided too:
|
34
30
|
|
35
31
|
/* Size */
|
36
32
|
.md-18
|
@@ -58,7 +54,47 @@ Google Material Icons uses a feature called ligatures. We can define the icon in
|
|
58
54
|
An example of icon is:
|
59
55
|
|
60
56
|
<i class="material-icons">face</i>
|
61
|
-
<i class="
|
57
|
+
<i class="material-icons md-36">face</i>
|
58
|
+
|
59
|
+
## Helpers
|
60
|
+
|
61
|
+
MaterialIcons provide a 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
|
+
|
63
|
+
<%= material_icon.face %>
|
64
|
+
# <i class="material-icons">face</i>
|
65
|
+
|
66
|
+
<%= material_icon.face.md_36 %>
|
67
|
+
# <i class="material-icons md-36">face</i>
|
68
|
+
|
69
|
+
# Rotation and custom css class
|
70
|
+
<%= mi.face.r90.css_class('my_class') %>
|
71
|
+
# <i class="material-icons r90 my_class">face</i>
|
72
|
+
|
73
|
+
Predefined methods are:
|
74
|
+
|
75
|
+
# Rotation methods
|
76
|
+
r90
|
77
|
+
r180
|
78
|
+
r270
|
79
|
+
flip_horizontal
|
80
|
+
flip_vertical
|
81
|
+
|
82
|
+
# Size methods
|
83
|
+
md_18
|
84
|
+
md_24
|
85
|
+
md_36
|
86
|
+
md_48
|
87
|
+
|
88
|
+
# Add some classes to the icon
|
89
|
+
css_class('classes')
|
90
|
+
|
91
|
+
# Add style to the icon
|
92
|
+
style('margin-top: 5px;')
|
93
|
+
|
94
|
+
# Add some HTML attributes to an icon. This method receive a Hash
|
95
|
+
html({ data: { id: 1 } })
|
96
|
+
|
97
|
+
Remember this is a helper, you always can use HTML syntax ;).
|
62
98
|
|
63
99
|
# Compatibility
|
64
100
|
|
@@ -72,10 +108,23 @@ Ligature feature requires a supported browser:
|
|
72
108
|
Apple MobileSafari >= iOS 4.2
|
73
109
|
Android Browser >= 3.0
|
74
110
|
|
75
|
-
To increase compatibility you can use Unicode version of the library.
|
111
|
+
To increase compatibility you can use Unicode version of the library. To set Unicode icons, you need to change the line to load ligature CSS file on `application.css.erb` ~> `//= require material_icons` to this line:
|
112
|
+
|
113
|
+
//= require material_icons_unicode
|
114
|
+
|
115
|
+
Next, you need to specify the helper to use unicode because it uses ligatures by default. Create an initializer file on `config/initializers/material_icon.rb` and set this content:
|
116
|
+
|
117
|
+
# Initialize material icons setup
|
118
|
+
MaterialIcons.setup do |config|
|
119
|
+
config.unicode = true
|
120
|
+
end
|
121
|
+
|
122
|
+
Now, the text inside of HTML tag is the CSS class!
|
123
|
+
|
124
|
+
<i class="material-icons face"></i>
|
125
|
+
<i class="material-icons md-36 face"></i>
|
76
126
|
|
77
|
-
|
78
|
-
<i class="mi md-36 mi-face"></i>
|
127
|
+
The [Helpers](#helpers) has the same syntax.
|
79
128
|
|
80
129
|
This version increase the size of the CSS file too. To see the difference, these are the size for uncompressed CSS files:
|
81
130
|
|
data/Rakefile
CHANGED
@@ -23,8 +23,8 @@ namespace :material_icons do
|
|
23
23
|
# Need this strange indentation for CSS...
|
24
24
|
css =
|
25
25
|
<<-FOO
|
26
|
-
.material-icons
|
27
|
-
.mi
|
26
|
+
.material-icons.#{css_class}:before,
|
27
|
+
.mi.#{css_class}:before {
|
28
28
|
content: '\\#{unicode}';
|
29
29
|
}
|
30
30
|
FOO
|
@@ -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 { color: rgba(0, 0, 0, 0.26); }
|
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); }
|
@@ -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 { color: rgba(0, 0, 0, 0.26); }
|
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,3183 +83,3183 @@
|
|
83
83
|
}
|
84
84
|
|
85
85
|
/* Unicode */
|
86
|
-
.material-icons.
|
87
|
-
.mi.
|
86
|
+
.material-icons.3d-rotation:before,
|
87
|
+
.mi.3d-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
|
-
.material-icons.
|
103
|
-
.mi.
|
102
|
+
.material-icons.accessibility:before,
|
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
|
-
.material-icons.
|
123
|
-
.mi.
|
122
|
+
.material-icons.adb:before,
|
123
|
+
.mi.adb:before {
|
124
124
|
content: '\e60e';
|
125
125
|
}
|
126
|
-
.material-icons.
|
127
|
-
.mi.
|
126
|
+
.material-icons.add:before,
|
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
|
-
.material-icons.
|
159
|
-
.mi.
|
158
|
+
.material-icons.adjust:before,
|
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
|
-
.material-icons.
|
203
|
-
.mi.
|
202
|
+
.material-icons.airplay:before,
|
203
|
+
.mi.airplay:before {
|
204
204
|
content: '\e055';
|
205
205
|
}
|
206
|
-
.material-icons.
|
207
|
-
.mi.
|
206
|
+
.material-icons.alarm:before,
|
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
|
-
.material-icons.
|
223
|
-
.mi.
|
222
|
+
.material-icons.album:before,
|
223
|
+
.mi.album:before {
|
224
224
|
content: '\e019';
|
225
225
|
}
|
226
|
-
.material-icons.
|
227
|
-
.mi.
|
226
|
+
.material-icons.android:before,
|
227
|
+
.mi.android:before {
|
228
228
|
content: '\e859';
|
229
229
|
}
|
230
|
-
.material-icons.
|
231
|
-
.mi.
|
230
|
+
.material-icons.announcement:before,
|
231
|
+
.mi.announcement:before {
|
232
232
|
content: '\e85a';
|
233
233
|
}
|
234
|
-
.material-icons.
|
235
|
-
.mi.
|
234
|
+
.material-icons.apps:before,
|
235
|
+
.mi.apps:before {
|
236
236
|
content: '\e5c3';
|
237
237
|
}
|
238
|
-
.material-icons.
|
239
|
-
.mi.
|
238
|
+
.material-icons.archive:before,
|
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
|
-
.material-icons.
|
267
|
-
.mi.
|
266
|
+
.material-icons.assessment:before,
|
267
|
+
.mi.assessment:before {
|
268
268
|
content: '\e85c';
|
269
269
|
}
|
270
|
-
.material-icons.
|
271
|
-
.mi.
|
270
|
+
.material-icons.assignment:before,
|
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
|
-
.material-icons.
|
295
|
-
.mi.
|
294
|
+
.material-icons.assistant:before,
|
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
|
-
.material-icons.
|
311
|
-
.mi.
|
310
|
+
.material-icons.attachment:before,
|
311
|
+
.mi.attachment:before {
|
312
312
|
content: '\e2bc';
|
313
313
|
}
|
314
|
-
.material-icons.
|
315
|
-
.mi.
|
314
|
+
.material-icons.audiotrack:before,
|
315
|
+
.mi.audiotrack:before {
|
316
316
|
content: '\e3a1';
|
317
317
|
}
|
318
|
-
.material-icons.
|
319
|
-
.mi.
|
318
|
+
.material-icons.autorenew:before,
|
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
|
-
.material-icons.
|
327
|
-
.mi.
|
326
|
+
.material-icons.backspace:before,
|
327
|
+
.mi.backspace:before {
|
328
328
|
content: '\e14a';
|
329
329
|
}
|
330
|
-
.material-icons.
|
331
|
-
.mi.
|
330
|
+
.material-icons.backup:before,
|
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
|
-
.material-icons.
|
355
|
-
.mi.
|
354
|
+
.material-icons.beenhere:before,
|
355
|
+
.mi.beenhere:before {
|
356
356
|
content: '\e52d';
|
357
357
|
}
|
358
|
-
.material-icons.
|
359
|
-
.mi.
|
358
|
+
.material-icons.block:before,
|
359
|
+
.mi.block:before {
|
360
360
|
content: '\e14b';
|
361
361
|
}
|
362
|
-
.material-icons.
|
363
|
-
.mi.
|
362
|
+
.material-icons.bluetooth:before,
|
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
|
-
.material-icons.
|
399
|
-
.mi.
|
398
|
+
.material-icons.book:before,
|
399
|
+
.mi.book:before {
|
400
400
|
content: '\e865';
|
401
401
|
}
|
402
|
-
.material-icons.
|
403
|
-
.mi.
|
402
|
+
.material-icons.bookmark:before,
|
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
|
-
.material-icons.
|
507
|
-
.mi.
|
506
|
+
.material-icons.brush:before,
|
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
|
-
.material-icons.
|
515
|
-
.mi.
|
514
|
+
.material-icons.build:before,
|
515
|
+
.mi.build:before {
|
516
516
|
content: '\e869';
|
517
517
|
}
|
518
|
-
.material-icons.
|
519
|
-
.mi.
|
518
|
+
.material-icons.business:before,
|
519
|
+
.mi.business:before {
|
520
520
|
content: '\e0af';
|
521
521
|
}
|
522
|
-
.material-icons.
|
523
|
-
.mi.
|
522
|
+
.material-icons.cached:before,
|
523
|
+
.mi.cached:before {
|
524
524
|
content: '\e86a';
|
525
525
|
}
|
526
|
-
.material-icons.
|
527
|
-
.mi.
|
526
|
+
.material-icons.cake:before,
|
527
|
+
.mi.cake:before {
|
528
528
|
content: '\e7e9';
|
529
529
|
}
|
530
|
-
.material-icons.
|
531
|
-
.mi.
|
530
|
+
.material-icons.call:before,
|
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
|
-
.material-icons.
|
559
|
-
.mi.
|
558
|
+
.material-icons.camera:before,
|
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
|
-
.material-icons.
|
583
|
-
.mi.
|
582
|
+
.material-icons.cancel:before,
|
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
|
-
.material-icons.
|
599
|
-
.mi.
|
598
|
+
.material-icons.cast:before,
|
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
|
-
.material-icons.
|
619
|
-
.mi.
|
618
|
+
.material-icons.chat:before,
|
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
|
-
.material-icons.
|
631
|
-
.mi.
|
630
|
+
.material-icons.check:before,
|
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
|
-
.material-icons.
|
659
|
-
.mi.
|
658
|
+
.material-icons.class:before,
|
659
|
+
.mi.class:before {
|
660
660
|
content: '\e86e';
|
661
661
|
}
|
662
|
-
.material-icons.
|
663
|
-
.mi.
|
662
|
+
.material-icons.clear:before,
|
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
|
-
.material-icons.
|
671
|
-
.mi.
|
670
|
+
.material-icons.close:before,
|
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
|
-
.material-icons.
|
679
|
-
.mi.
|
678
|
+
.material-icons.cloud:before,
|
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
|
-
.material-icons.
|
707
|
-
.mi.
|
706
|
+
.material-icons.code:before,
|
707
|
+
.mi.code:before {
|
708
708
|
content: '\e86f';
|
709
709
|
}
|
710
|
-
.material-icons.
|
711
|
-
.mi.
|
710
|
+
.material-icons.collections:before,
|
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
|
-
.material-icons.
|
723
|
-
.mi.
|
722
|
+
.material-icons.colorize:before,
|
723
|
+
.mi.colorize:before {
|
724
724
|
content: '\e3b8';
|
725
725
|
}
|
726
|
-
.material-icons.
|
727
|
-
.mi.
|
726
|
+
.material-icons.comment:before,
|
727
|
+
.mi.comment:before {
|
728
728
|
content: '\e0b9';
|
729
729
|
}
|
730
|
-
.material-icons.
|
731
|
-
.mi.
|
730
|
+
.material-icons.compare:before,
|
731
|
+
.mi.compare:before {
|
732
732
|
content: '\e3b9';
|
733
733
|
}
|
734
|
-
.material-icons.
|
735
|
-
.mi.
|
734
|
+
.material-icons.computer:before,
|
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
|
-
.material-icons.
|
747
|
-
.mi.
|
746
|
+
.material-icons.contacts:before,
|
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
|
-
.material-icons.
|
771
|
-
.mi.
|
770
|
+
.material-icons.create:before,
|
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
|
-
.material-icons.
|
779
|
-
.mi.
|
778
|
+
.material-icons.crop:before,
|
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
|
-
.material-icons.
|
823
|
-
.mi.
|
822
|
+
.material-icons.dashboard:before,
|
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
|
-
.material-icons.
|
831
|
-
.mi.
|
830
|
+
.material-icons.dehaze:before,
|
831
|
+
.mi.dehaze:before {
|
832
832
|
content: '\e3c7';
|
833
833
|
}
|
834
|
-
.material-icons.
|
835
|
-
.mi.
|
834
|
+
.material-icons.delete:before,
|
835
|
+
.mi.delete:before {
|
836
836
|
content: '\e872';
|
837
837
|
}
|
838
|
-
.material-icons.
|
839
|
-
.mi.
|
838
|
+
.material-icons.description:before,
|
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
|
-
.material-icons.
|
851
|
-
.mi.
|
850
|
+
.material-icons.details:before,
|
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
|
-
.material-icons.
|
867
|
-
.mi.
|
866
|
+
.material-icons.devices:before,
|
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
|
-
.material-icons.
|
875
|
-
.mi.
|
874
|
+
.material-icons.dialpad:before,
|
875
|
+
.mi.dialpad:before {
|
876
876
|
content: '\e0bc';
|
877
877
|
}
|
878
|
-
.material-icons.
|
879
|
-
.mi.
|
878
|
+
.material-icons.directions:before,
|
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
|
-
.material-icons.
|
923
|
-
.mi.
|
922
|
+
.material-icons.dns:before,
|
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
|
-
.material-icons.
|
935
|
-
.mi.
|
934
|
+
.material-icons.dock:before,
|
935
|
+
.mi.dock:before {
|
936
936
|
content: '\e30e';
|
937
937
|
}
|
938
|
-
.material-icons.
|
939
|
-
.mi.
|
938
|
+
.material-icons.domain:before,
|
939
|
+
.mi.domain:before {
|
940
940
|
content: '\e7ee';
|
941
941
|
}
|
942
|
-
.material-icons.
|
943
|
-
.mi.
|
942
|
+
.material-icons.done:before,
|
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
|
-
.material-icons.
|
951
|
-
.mi.
|
950
|
+
.material-icons.drafts:before,
|
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
|
-
.material-icons.
|
959
|
-
.mi.
|
958
|
+
.material-icons.dvr:before,
|
959
|
+
.mi.dvr:before {
|
960
960
|
content: '\e1b2';
|
961
961
|
}
|
962
|
-
.material-icons.
|
963
|
-
.mi.
|
962
|
+
.material-icons.edit:before,
|
963
|
+
.mi.edit:before {
|
964
964
|
content: '\e3c9';
|
965
965
|
}
|
966
|
-
.material-icons.
|
967
|
-
.mi.
|
966
|
+
.material-icons.eject:before,
|
967
|
+
.mi.eject:before {
|
968
968
|
content: '\e8fb';
|
969
969
|
}
|
970
|
-
.material-icons.
|
971
|
-
.mi.
|
970
|
+
.material-icons.email:before,
|
971
|
+
.mi.email:before {
|
972
972
|
content: '\e0be';
|
973
973
|
}
|
974
|
-
.material-icons.
|
975
|
-
.mi.
|
974
|
+
.material-icons.equalizer:before,
|
975
|
+
.mi.equalizer:before {
|
976
976
|
content: '\e01d';
|
977
977
|
}
|
978
|
-
.material-icons.
|
979
|
-
.mi.
|
978
|
+
.material-icons.error:before,
|
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
|
-
.material-icons.
|
987
|
-
.mi.
|
986
|
+
.material-icons.event:before,
|
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
|
-
.material-icons.
|
1019
|
-
.mi.
|
1018
|
+
.material-icons.explicit:before,
|
1019
|
+
.mi.explicit:before {
|
1020
1020
|
content: '\e01e';
|
1021
1021
|
}
|
1022
|
-
.material-icons.
|
1023
|
-
.mi.
|
1022
|
+
.material-icons.explore:before,
|
1023
|
+
.mi.explore:before {
|
1024
1024
|
content: '\e87a';
|
1025
1025
|
}
|
1026
|
-
.material-icons.
|
1027
|
-
.mi.
|
1026
|
+
.material-icons.exposure:before,
|
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
|
-
.material-icons.
|
1051
|
-
.mi.
|
1050
|
+
.material-icons.extension:before,
|
1051
|
+
.mi.extension:before {
|
1052
1052
|
content: '\e87b';
|
1053
1053
|
}
|
1054
|
-
.material-icons.
|
1055
|
-
.mi.
|
1054
|
+
.material-icons.face:before,
|
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
|
-
.material-icons.
|
1067
|
-
.mi.
|
1066
|
+
.material-icons.favorite:before,
|
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
|
-
.material-icons.
|
1075
|
-
.mi.
|
1074
|
+
.material-icons.feedback:before,
|
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
|
-
.material-icons.
|
1087
|
-
.mi.
|
1086
|
+
.material-icons.filter:before,
|
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
|
-
.material-icons.
|
1175
|
-
.mi.
|
1174
|
+
.material-icons.flag:before,
|
1175
|
+
.mi.flag:before {
|
1176
1176
|
content: '\e153';
|
1177
1177
|
}
|
1178
|
-
.material-icons.
|
1179
|
-
.mi.
|
1178
|
+
.material-icons.flare:before,
|
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
|
-
.material-icons.
|
1195
|
-
.mi.
|
1194
|
+
.material-icons.flight:before,
|
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
|
-
.material-icons.
|
1207
|
-
.mi.
|
1206
|
+
.material-icons.flip:before,
|
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
|
-
.material-icons.
|
1219
|
-
.mi.
|
1218
|
+
.material-icons.folder:before,
|
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
|
-
.material-icons.
|
1327
|
-
.mi.
|
1326
|
+
.material-icons.forum:before,
|
1327
|
+
.mi.forum:before {
|
1328
1328
|
content: '\e0bf';
|
1329
1329
|
}
|
1330
|
-
.material-icons.
|
1331
|
-
.mi.
|
1330
|
+
.material-icons.forward:before,
|
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
|
-
.material-icons.
|
1347
|
-
.mi.
|
1346
|
+
.material-icons.fullscreen:before,
|
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
|
-
.material-icons.
|
1355
|
-
.mi.
|
1354
|
+
.material-icons.functions:before,
|
1355
|
+
.mi.functions:before {
|
1356
1356
|
content: '\e24a';
|
1357
1357
|
}
|
1358
|
-
.material-icons.
|
1359
|
-
.mi.
|
1358
|
+
.material-icons.gamepad:before,
|
1359
|
+
.mi.gamepad:before {
|
1360
1360
|
content: '\e30f';
|
1361
1361
|
}
|
1362
|
-
.material-icons.
|
1363
|
-
.mi.
|
1362
|
+
.material-icons.games:before,
|
1363
|
+
.mi.games:before {
|
1364
1364
|
content: '\e021';
|
1365
1365
|
}
|
1366
|
-
.material-icons.
|
1367
|
-
.mi.
|
1366
|
+
.material-icons.gesture:before,
|
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
|
-
.material-icons.
|
1375
|
-
.mi.
|
1374
|
+
.material-icons.gif:before,
|
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
|
-
.material-icons.
|
1391
|
-
.mi.
|
1390
|
+
.material-icons.grade:before,
|
1391
|
+
.mi.grade:before {
|
1392
1392
|
content: '\e885';
|
1393
1393
|
}
|
1394
|
-
.material-icons.
|
1395
|
-
.mi.
|
1394
|
+
.material-icons.gradient:before,
|
1395
|
+
.mi.gradient:before {
|
1396
1396
|
content: '\e3e9';
|
1397
1397
|
}
|
1398
|
-
.material-icons.
|
1399
|
-
.mi.
|
1398
|
+
.material-icons.grain:before,
|
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
|
-
.material-icons.
|
1415
|
-
.mi.
|
1414
|
+
.material-icons.group:before,
|
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
|
-
.material-icons.
|
1427
|
-
.mi.
|
1426
|
+
.material-icons.hd:before,
|
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
|
-
.material-icons.
|
1447
|
-
.mi.
|
1446
|
+
.material-icons.headset:before,
|
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
|
-
.material-icons.
|
1455
|
-
.mi.
|
1454
|
+
.material-icons.healing:before,
|
1455
|
+
.mi.healing:before {
|
1456
1456
|
content: '\e3f3';
|
1457
1457
|
}
|
1458
|
-
.material-icons.
|
1459
|
-
.mi.
|
1458
|
+
.material-icons.hearing:before,
|
1459
|
+
.mi.hearing:before {
|
1460
1460
|
content: '\e023';
|
1461
1461
|
}
|
1462
|
-
.material-icons.
|
1463
|
-
.mi.
|
1462
|
+
.material-icons.help:before,
|
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
|
-
.material-icons.
|
1479
|
-
.mi.
|
1478
|
+
.material-icons.history:before,
|
1479
|
+
.mi.history:before {
|
1480
1480
|
content: '\e889';
|
1481
1481
|
}
|
1482
|
-
.material-icons.
|
1483
|
-
.mi.
|
1482
|
+
.material-icons.home:before,
|
1483
|
+
.mi.home:before {
|
1484
1484
|
content: '\e88a';
|
1485
1485
|
}
|
1486
|
-
.material-icons.
|
1487
|
-
.mi.
|
1486
|
+
.material-icons.hotel:before,
|
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
|
-
.material-icons.
|
1499
|
-
.mi.
|
1498
|
+
.material-icons.http:before,
|
1499
|
+
.mi.http:before {
|
1500
1500
|
content: '\e902';
|
1501
1501
|
}
|
1502
|
-
.material-icons.
|
1503
|
-
.mi.
|
1502
|
+
.material-icons.https:before,
|
1503
|
+
.mi.https:before {
|
1504
1504
|
content: '\e88d';
|
1505
1505
|
}
|
1506
|
-
.material-icons.
|
1507
|
-
.mi.
|
1506
|
+
.material-icons.image:before,
|
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
|
-
.material-icons.
|
1519
|
-
.mi.
|
1518
|
+
.material-icons.inbox:before,
|
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
|
-
.material-icons.
|
1527
|
-
.mi.
|
1526
|
+
.material-icons.info:before,
|
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
|
-
.material-icons.
|
1535
|
-
.mi.
|
1534
|
+
.material-icons.input:before,
|
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
|
-
.material-icons.
|
1575
|
-
.mi.
|
1574
|
+
.material-icons.iso:before,
|
1575
|
+
.mi.iso:before {
|
1576
1576
|
content: '\e3f6';
|
1577
1577
|
}
|
1578
|
-
.material-icons.
|
1579
|
-
.mi.
|
1578
|
+
.material-icons.keyboard:before,
|
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
|
-
.material-icons.
|
1623
|
-
.mi.
|
1622
|
+
.material-icons.label:before,
|
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
|
-
.material-icons.
|
1631
|
-
.mi.
|
1630
|
+
.material-icons.landscape:before,
|
1631
|
+
.mi.landscape:before {
|
1632
1632
|
content: '\e3f7';
|
1633
1633
|
}
|
1634
|
-
.material-icons.
|
1635
|
-
.mi.
|
1634
|
+
.material-icons.language:before,
|
1635
|
+
.mi.language:before {
|
1636
1636
|
content: '\e894';
|
1637
1637
|
}
|
1638
|
-
.material-icons.
|
1639
|
-
.mi.
|
1638
|
+
.material-icons.laptop:before,
|
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
|
-
.material-icons.
|
1655
|
-
.mi.
|
1654
|
+
.material-icons.launch:before,
|
1655
|
+
.mi.launch:before {
|
1656
1656
|
content: '\e895';
|
1657
1657
|
}
|
1658
|
-
.material-icons.
|
1659
|
-
.mi.
|
1658
|
+
.material-icons.layers:before,
|
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
|
-
.material-icons.
|
1675
|
-
.mi.
|
1674
|
+
.material-icons.lens:before,
|
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
|
-
.material-icons.
|
1691
|
-
.mi.
|
1690
|
+
.material-icons.link:before,
|
1691
|
+
.mi.link:before {
|
1692
1692
|
content: '\e157';
|
1693
1693
|
}
|
1694
|
-
.material-icons.
|
1695
|
-
.mi.
|
1694
|
+
.material-icons.list:before,
|
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
|
-
.material-icons.
|
1843
|
-
.mi.
|
1842
|
+
.material-icons.lock:before,
|
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
|
-
.material-icons.
|
1855
|
-
.mi.
|
1854
|
+
.material-icons.looks:before,
|
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
|
-
.material-icons.
|
1883
|
-
.mi.
|
1882
|
+
.material-icons.loop:before,
|
1883
|
+
.mi.loop:before {
|
1884
1884
|
content: '\e028';
|
1885
1885
|
}
|
1886
|
-
.material-icons.
|
1887
|
-
.mi.
|
1886
|
+
.material-icons.loupe:before,
|
1887
|
+
.mi.loupe:before {
|
1888
1888
|
content: '\e402';
|
1889
1889
|
}
|
1890
|
-
.material-icons.
|
1891
|
-
.mi.
|
1890
|
+
.material-icons.loyalty:before,
|
1891
|
+
.mi.loyalty:before {
|
1892
1892
|
content: '\e89a';
|
1893
1893
|
}
|
1894
|
-
.material-icons.
|
1895
|
-
.mi.
|
1894
|
+
.material-icons.mail:before,
|
1895
|
+
.mi.mail:before {
|
1896
1896
|
content: '\e158';
|
1897
1897
|
}
|
1898
|
-
.material-icons.
|
1899
|
-
.mi.
|
1898
|
+
.material-icons.map:before,
|
1899
|
+
.mi.map:before {
|
1900
1900
|
content: '\e55b';
|
1901
1901
|
}
|
1902
|
-
.material-icons.
|
1903
|
-
.mi.
|
1902
|
+
.material-icons.markunread:before,
|
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
|
-
.material-icons.
|
1911
|
-
.mi.
|
1910
|
+
.material-icons.memory:before,
|
1911
|
+
.mi.memory:before {
|
1912
1912
|
content: '\e322';
|
1913
1913
|
}
|
1914
|
-
.material-icons.
|
1915
|
-
.mi.
|
1914
|
+
.material-icons.menu:before,
|
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
|
-
.material-icons.
|
1923
|
-
.mi.
|
1922
|
+
.material-icons.message:before,
|
1923
|
+
.mi.message:before {
|
1924
1924
|
content: '\e0c9';
|
1925
1925
|
}
|
1926
|
-
.material-icons.
|
1927
|
-
.mi.
|
1926
|
+
.material-icons.mic:before,
|
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
|
-
.material-icons.
|
1939
|
-
.mi.
|
1938
|
+
.material-icons.mms:before,
|
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
|
-
.material-icons.
|
1959
|
-
.mi.
|
1958
|
+
.material-icons.mood:before,
|
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
|
-
.material-icons.
|
1967
|
-
.mi.
|
1966
|
+
.material-icons.more:before,
|
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
|
-
.material-icons.
|
1979
|
-
.mi.
|
1978
|
+
.material-icons.mouse:before,
|
1979
|
+
.mi.mouse:before {
|
1980
1980
|
content: '\e323';
|
1981
1981
|
}
|
1982
|
-
.material-icons.
|
1983
|
-
.mi.
|
1982
|
+
.material-icons.movie:before,
|
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
|
-
.material-icons.
|
1999
|
-
.mi.
|
1998
|
+
.material-icons.nature:before,
|
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
|
-
.material-icons.
|
2015
|
-
.mi.
|
2014
|
+
.material-icons.navigation:before,
|
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
|
-
.material-icons.
|
2035
|
-
.mi.
|
2034
|
+
.material-icons.nfc:before,
|
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
|
-
.material-icons.
|
2051
|
-
.mi.
|
2050
|
+
.material-icons.notifications:before,
|
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
|
-
.material-icons.
|
2091
|
-
.mi.
|
2090
|
+
.material-icons.pages:before,
|
2091
|
+
.mi.pages:before {
|
2092
2092
|
content: '\e7f9';
|
2093
2093
|
}
|
2094
|
-
.material-icons.
|
2095
|
-
.mi.
|
2094
|
+
.material-icons.pageview:before,
|
2095
|
+
.mi.pageview:before {
|
2096
2096
|
content: '\e8a0';
|
2097
2097
|
}
|
2098
|
-
.material-icons.
|
2099
|
-
.mi.
|
2098
|
+
.material-icons.palette:before,
|
2099
|
+
.mi.palette:before {
|
2100
2100
|
content: '\e40a';
|
2101
2101
|
}
|
2102
|
-
.material-icons.
|
2103
|
-
.mi.
|
2102
|
+
.material-icons.panorama:before,
|
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
|
-
.material-icons.
|
2127
|
-
.mi.
|
2126
|
+
.material-icons.pause:before,
|
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
|
-
.material-icons.
|
2139
|
-
.mi.
|
2138
|
+
.material-icons.payment:before,
|
2139
|
+
.mi.payment:before {
|
2140
2140
|
content: '\e8a1';
|
2141
2141
|
}
|
2142
|
-
.material-icons.
|
2143
|
-
.mi.
|
2142
|
+
.material-icons.people:before,
|
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
|
-
.material-icons.
|
2183
|
-
.mi.
|
2182
|
+
.material-icons.person:before,
|
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
|
-
.material-icons.
|
2203
|
-
.mi.
|
2202
|
+
.material-icons.phone:before,
|
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
|
-
.material-icons.
|
2239
|
-
.mi.
|
2238
|
+
.material-icons.phonelink:before,
|
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
|
-
.material-icons.
|
2263
|
-
.mi.
|
2262
|
+
.material-icons.photo:before,
|
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
|
-
.material-icons.
|
2303
|
-
.mi.
|
2302
|
+
.material-icons.place:before,
|
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
|
-
.material-icons.
|
2331
|
-
.mi.
|
2330
|
+
.material-icons.poll:before,
|
2331
|
+
.mi.poll:before {
|
2332
2332
|
content: '\e801';
|
2333
2333
|
}
|
2334
|
-
.material-icons.
|
2335
|
-
.mi.
|
2334
|
+
.material-icons.polymer:before,
|
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
|
-
.material-icons.
|
2343
|
-
.mi.
|
2342
|
+
.material-icons.portrait:before,
|
2343
|
+
.mi.portrait:before {
|
2344
2344
|
content: '\e416';
|
2345
2345
|
}
|
2346
|
-
.material-icons.
|
2347
|
-
.mi.
|
2346
|
+
.material-icons.power:before,
|
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
|
-
.material-icons.
|
2363
|
-
.mi.
|
2362
|
+
.material-icons.print:before,
|
2363
|
+
.mi.print:before {
|
2364
2364
|
content: '\e8ad';
|
2365
2365
|
}
|
2366
|
-
.material-icons.
|
2367
|
-
.mi.
|
2366
|
+
.material-icons.public:before,
|
2367
|
+
.mi.public:before {
|
2368
2368
|
content: '\e80b';
|
2369
2369
|
}
|
2370
|
-
.material-icons.
|
2371
|
-
.mi.
|
2370
|
+
.material-icons.publish:before,
|
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
|
-
.material-icons.
|
2383
|
-
.mi.
|
2382
|
+
.material-icons.queue:before,
|
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
|
-
.material-icons.
|
2391
|
-
.mi.
|
2390
|
+
.material-icons.radio:before,
|
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
|
-
.material-icons.
|
2407
|
-
.mi.
|
2406
|
+
.material-icons.receipt:before,
|
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
|
-
.material-icons.
|
2415
|
-
.mi.
|
2414
|
+
.material-icons.redeem:before,
|
2415
|
+
.mi.redeem:before {
|
2416
2416
|
content: '\e8b1';
|
2417
2417
|
}
|
2418
|
-
.material-icons.
|
2419
|
-
.mi.
|
2418
|
+
.material-icons.redo:before,
|
2419
|
+
.mi.redo:before {
|
2420
2420
|
content: '\e15a';
|
2421
2421
|
}
|
2422
|
-
.material-icons.
|
2423
|
-
.mi.
|
2422
|
+
.material-icons.refresh:before,
|
2423
|
+
.mi.refresh:before {
|
2424
2424
|
content: '\e5d5';
|
2425
2425
|
}
|
2426
|
-
.material-icons.
|
2427
|
-
.mi.
|
2426
|
+
.material-icons.remove:before,
|
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
|
-
.material-icons.
|
2443
|
-
.mi.
|
2442
|
+
.material-icons.reorder:before,
|
2443
|
+
.mi.reorder:before {
|
2444
2444
|
content: '\e8fe';
|
2445
2445
|
}
|
2446
|
-
.material-icons.
|
2447
|
-
.mi.
|
2446
|
+
.material-icons.repeat:before,
|
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
|
-
.material-icons.
|
2455
|
-
.mi.
|
2454
|
+
.material-icons.replay:before,
|
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
|
-
.material-icons.
|
2471
|
-
.mi.
|
2470
|
+
.material-icons.reply:before,
|
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
|
-
.material-icons.
|
2479
|
-
.mi.
|
2478
|
+
.material-icons.report:before,
|
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
|
-
.material-icons.
|
2491
|
-
.mi.
|
2490
|
+
.material-icons.restore:before,
|
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
|
-
.material-icons.
|
2499
|
-
.mi.
|
2498
|
+
.material-icons.room:before,
|
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
|
-
.material-icons.
|
2515
|
-
.mi.
|
2514
|
+
.material-icons.router:before,
|
2515
|
+
.mi.router:before {
|
2516
2516
|
content: '\e328';
|
2517
2517
|
}
|
2518
|
-
.material-icons.
|
2519
|
-
.mi.
|
2518
|
+
.material-icons.satellite:before,
|
2519
|
+
.mi.satellite:before {
|
2520
2520
|
content: '\e562';
|
2521
2521
|
}
|
2522
|
-
.material-icons.
|
2523
|
-
.mi.
|
2522
|
+
.material-icons.save:before,
|
2523
|
+
.mi.save:before {
|
2524
2524
|
content: '\e161';
|
2525
2525
|
}
|
2526
|
-
.material-icons.
|
2527
|
-
.mi.
|
2526
|
+
.material-icons.scanner:before,
|
2527
|
+
.mi.scanner:before {
|
2528
2528
|
content: '\e329';
|
2529
2529
|
}
|
2530
|
-
.material-icons.
|
2531
|
-
.mi.
|
2530
|
+
.material-icons.schedule:before,
|
2531
|
+
.mi.schedule:before {
|
2532
2532
|
content: '\e8b5';
|
2533
2533
|
}
|
2534
|
-
.material-icons.
|
2535
|
-
.mi.
|
2534
|
+
.material-icons.school:before,
|
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
|
-
.material-icons.
|
2563
|
-
.mi.
|
2562
|
+
.material-icons.search:before,
|
2563
|
+
.mi.search:before {
|
2564
2564
|
content: '\e8b6';
|
2565
2565
|
}
|
2566
|
-
.material-icons.
|
2567
|
-
.mi.
|
2566
|
+
.material-icons.security:before,
|
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
|
-
.material-icons.
|
2575
|
-
.mi.
|
2574
|
+
.material-icons.send:before,
|
2575
|
+
.mi.send:before {
|
2576
2576
|
content: '\e163';
|
2577
2577
|
}
|
2578
|
-
.material-icons.
|
2579
|
-
.mi.
|
2578
|
+
.material-icons.settings:before,
|
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
|
-
.material-icons.
|
2651
|
-
.mi.
|
2650
|
+
.material-icons.share:before,
|
2651
|
+
.mi.share:before {
|
2652
2652
|
content: '\e80d';
|
2653
2653
|
}
|
2654
|
-
.material-icons.
|
2655
|
-
.mi.
|
2654
|
+
.material-icons.shop:before,
|
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
|
-
.material-icons.
|
2671
|
-
.mi.
|
2670
|
+
.material-icons.shuffle:before,
|
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
|
-
.material-icons.
|
2723
|
-
.mi.
|
2722
|
+
.material-icons.slideshow:before,
|
2723
|
+
.mi.slideshow:before {
|
2724
2724
|
content: '\e41b';
|
2725
2725
|
}
|
2726
|
-
.material-icons.
|
2727
|
-
.mi.
|
2726
|
+
.material-icons.smartphone:before,
|
2727
|
+
.mi.smartphone:before {
|
2728
2728
|
content: '\e32c';
|
2729
2729
|
}
|
2730
|
-
.material-icons.
|
2731
|
-
.mi.
|
2730
|
+
.material-icons.sms:before,
|
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
|
-
.material-icons.
|
2739
|
-
.mi.
|
2738
|
+
.material-icons.snooze:before,
|
2739
|
+
.mi.snooze:before {
|
2740
2740
|
content: '\e046';
|
2741
2741
|
}
|
2742
|
-
.material-icons.
|
2743
|
-
.mi.
|
2742
|
+
.material-icons.sort:before,
|
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
|
-
.material-icons.
|
2755
|
-
.mi.
|
2754
|
+
.material-icons.speaker:before,
|
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
|
-
.material-icons.
|
2771
|
-
.mi.
|
2770
|
+
.material-icons.spellcheck:before,
|
2771
|
+
.mi.spellcheck:before {
|
2772
2772
|
content: '\e8ce';
|
2773
2773
|
}
|
2774
|
-
.material-icons.
|
2775
|
-
.mi.
|
2774
|
+
.material-icons.star:before,
|
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
|
-
.material-icons.
|
2787
|
-
.mi.
|
2786
|
+
.material-icons.stars:before,
|
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
|
-
.material-icons.
|
2807
|
-
.mi.
|
2806
|
+
.material-icons.stop:before,
|
2807
|
+
.mi.stop:before {
|
2808
2808
|
content: '\e047';
|
2809
2809
|
}
|
2810
|
-
.material-icons.
|
2811
|
-
.mi.
|
2810
|
+
.material-icons.storage:before,
|
2811
|
+
.mi.storage:before {
|
2812
2812
|
content: '\e1db';
|
2813
2813
|
}
|
2814
|
-
.material-icons.
|
2815
|
-
.mi.
|
2814
|
+
.material-icons.store:before,
|
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
|
-
.material-icons.
|
2823
|
-
.mi.
|
2822
|
+
.material-icons.straighten:before,
|
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
|
-
.material-icons.
|
2831
|
-
.mi.
|
2830
|
+
.material-icons.style:before,
|
2831
|
+
.mi.style:before {
|
2832
2832
|
content: '\e41d';
|
2833
2833
|
}
|
2834
|
-
.material-icons.
|
2835
|
-
.mi.
|
2834
|
+
.material-icons.subject:before,
|
2835
|
+
.mi.subject:before {
|
2836
2836
|
content: '\e8d2';
|
2837
2837
|
}
|
2838
|
-
.material-icons.
|
2839
|
-
.mi.
|
2838
|
+
.material-icons.subtitles:before,
|
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
|
-
.material-icons.
|
2875
|
-
.mi.
|
2874
|
+
.material-icons.sync:before,
|
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
|
-
.material-icons.
|
2895
|
-
.mi.
|
2894
|
+
.material-icons.tab:before,
|
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
|
-
.material-icons.
|
2903
|
-
.mi.
|
2902
|
+
.material-icons.tablet:before,
|
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
|
-
.material-icons.
|
2923
|
-
.mi.
|
2922
|
+
.material-icons.terrain:before,
|
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
|
-
.material-icons.
|
2931
|
-
.mi.
|
2930
|
+
.material-icons.textsms:before,
|
2931
|
+
.mi.textsms:before {
|
2932
2932
|
content: '\e0d8';
|
2933
2933
|
}
|
2934
|
-
.material-icons.
|
2935
|
-
.mi.
|
2934
|
+
.material-icons.texture:before,
|
2935
|
+
.mi.texture:before {
|
2936
2936
|
content: '\e421';
|
2937
2937
|
}
|
2938
|
-
.material-icons.
|
2939
|
-
.mi.
|
2938
|
+
.material-icons.theaters:before,
|
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
|
-
.material-icons.
|
2959
|
-
.mi.
|
2958
|
+
.material-icons.timelapse:before,
|
2959
|
+
.mi.timelapse:before {
|
2960
2960
|
content: '\e422';
|
2961
2961
|
}
|
2962
|
-
.material-icons.
|
2963
|
-
.mi.
|
2962
|
+
.material-icons.timer:before,
|
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
|
-
.material-icons.
|
2979
|
-
.mi.
|
2978
|
+
.material-icons.toc:before,
|
2979
|
+
.mi.toc:before {
|
2980
2980
|
content: '\e8de';
|
2981
2981
|
}
|
2982
|
-
.material-icons.
|
2983
|
-
.mi.
|
2982
|
+
.material-icons.today:before,
|
2983
|
+
.mi.today:before {
|
2984
2984
|
content: '\e8df';
|
2985
2985
|
}
|
2986
|
-
.material-icons.
|
2987
|
-
.mi.
|
2986
|
+
.material-icons.toll:before,
|
2987
|
+
.mi.toll:before {
|
2988
2988
|
content: '\e8e0';
|
2989
2989
|
}
|
2990
|
-
.material-icons.
|
2991
|
-
.mi.
|
2990
|
+
.material-icons.tonality:before,
|
2991
|
+
.mi.tonality:before {
|
2992
2992
|
content: '\e427';
|
2993
2993
|
}
|
2994
|
-
.material-icons.
|
2995
|
-
.mi.
|
2994
|
+
.material-icons.toys:before,
|
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
|
-
.material-icons.
|
3003
|
-
.mi.
|
3002
|
+
.material-icons.traffic:before,
|
3003
|
+
.mi.traffic:before {
|
3004
3004
|
content: '\e565';
|
3005
3005
|
}
|
3006
|
-
.material-icons.
|
3007
|
-
.mi.
|
3006
|
+
.material-icons.transform:before,
|
3007
|
+
.mi.transform:before {
|
3008
3008
|
content: '\e428';
|
3009
3009
|
}
|
3010
|
-
.material-icons.
|
3011
|
-
.mi.
|
3010
|
+
.material-icons.translate:before,
|
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
|
-
.material-icons.
|
3027
|
-
.mi.
|
3026
|
+
.material-icons.tune:before,
|
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
|
-
.material-icons.
|
3039
|
-
.mi.
|
3038
|
+
.material-icons.tv:before,
|
3039
|
+
.mi.tv:before {
|
3040
3040
|
content: '\e333';
|
3041
3041
|
}
|
3042
|
-
.material-icons.
|
3043
|
-
.mi.
|
3042
|
+
.material-icons.undo:before,
|
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
|
-
.material-icons.
|
3055
|
-
.mi.
|
3054
|
+
.material-icons.usb:before,
|
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
|
-
.material-icons.
|
3075
|
-
.mi.
|
3074
|
+
.material-icons.vibration:before,
|
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
|
-
.material-icons.
|
3083
|
-
.mi.
|
3082
|
+
.material-icons.videocam:before,
|
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
|
-
.material-icons.
|
3143
|
-
.mi.
|
3142
|
+
.material-icons.vignette:before,
|
3143
|
+
.mi.vignette:before {
|
3144
3144
|
content: '\e435';
|
3145
3145
|
}
|
3146
|
-
.material-icons.
|
3147
|
-
.mi.
|
3146
|
+
.material-icons.visibility:before,
|
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
|
-
.material-icons.
|
3159
|
-
.mi.
|
3158
|
+
.material-icons.voicemail:before,
|
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
|
-
.material-icons.
|
3187
|
-
.mi.
|
3186
|
+
.material-icons.wallpaper:before,
|
3187
|
+
.mi.wallpaper:before {
|
3188
3188
|
content: '\e1bc';
|
3189
3189
|
}
|
3190
|
-
.material-icons.
|
3191
|
-
.mi.
|
3190
|
+
.material-icons.warning:before,
|
3191
|
+
.mi.warning:before {
|
3192
3192
|
content: '\e002';
|
3193
3193
|
}
|
3194
|
-
.material-icons.
|
3195
|
-
.mi.
|
3194
|
+
.material-icons.watch:before,
|
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
|
-
.material-icons.
|
3219
|
-
.mi.
|
3218
|
+
.material-icons.wc:before,
|
3219
|
+
.mi.wc:before {
|
3220
3220
|
content: '\e63d';
|
3221
3221
|
}
|
3222
|
-
.material-icons.
|
3223
|
-
.mi.
|
3222
|
+
.material-icons.web:before,
|
3223
|
+
.mi.web:before {
|
3224
3224
|
content: '\e051';
|
3225
3225
|
}
|
3226
|
-
.material-icons.
|
3227
|
-
.mi.
|
3226
|
+
.material-icons.whatshot:before,
|
3227
|
+
.mi.whatshot:before {
|
3228
3228
|
content: '\e80e';
|
3229
3229
|
}
|
3230
|
-
.material-icons.
|
3231
|
-
.mi.
|
3230
|
+
.material-icons.widgets:before,
|
3231
|
+
.mi.widgets:before {
|
3232
3232
|
content: '\e1bd';
|
3233
3233
|
}
|
3234
|
-
.material-icons.
|
3235
|
-
.mi.
|
3234
|
+
.material-icons.wifi:before,
|
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
|
-
.material-icons.
|
3247
|
-
.mi.
|
3246
|
+
.material-icons.work:before,
|
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
|
}
|