batch-rails 1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +38 -0
- data/Rakefile +1 -0
- data/batch-rails.gemspec +22 -0
- data/lib/batch-rails.rb +8 -0
- data/lib/batch-rails/version.rb +5 -0
- data/vendor/assets/fonts/batch.eot +0 -0
- data/vendor/assets/fonts/batch.svg +1263 -0
- data/vendor/assets/fonts/batch.ttf +0 -0
- data/vendor/assets/fonts/batch.woff +0 -0
- data/vendor/assets/stylesheets/batch.css.erb +928 -0
- metadata +96 -0
Binary file
|
Binary file
|
@@ -0,0 +1,928 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: "batch";
|
3
|
+
src: url('<%= asset_path('batch.eot') %>');
|
4
|
+
src: url('<%= asset_path('batch.eot?#iefix') %>') format('eot'),
|
5
|
+
url('<%= asset_path('batch.woff') %>') format('woff'),
|
6
|
+
url('<%= asset_path('batch.ttf') %>') format('truetype'),
|
7
|
+
url('<%= asset_path('batch.svg#batch') %>') format('svg');
|
8
|
+
font-weight: normal;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
13
|
+
[data-icon]:before {
|
14
|
+
font-family: 'batch';
|
15
|
+
content: attr(data-icon);
|
16
|
+
speak: none;
|
17
|
+
font-weight: normal;
|
18
|
+
-webkit-font-smoothing: antialiased;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* Use the following CSS code if you want to have a class per icon */
|
22
|
+
[class^="icon-"]:before, [class*=" icon-"]:before {
|
23
|
+
font-family: 'batch';
|
24
|
+
font-style: normal;
|
25
|
+
speak: none;
|
26
|
+
font-weight: normal;
|
27
|
+
-webkit-font-smoothing: antialiased;
|
28
|
+
}
|
29
|
+
.icon-speech-bubble-left:before {
|
30
|
+
content: "\e000";
|
31
|
+
}
|
32
|
+
.icon-speech-bubble-center:before {
|
33
|
+
content: "\e001";
|
34
|
+
}
|
35
|
+
.icon-speech-bubble-right:before {
|
36
|
+
content: "\e002";
|
37
|
+
}
|
38
|
+
.icon-speech-bubble-left-2:before {
|
39
|
+
content: "\e003";
|
40
|
+
}
|
41
|
+
.icon-speech-bubble-center-2:before {
|
42
|
+
content: "\e004";
|
43
|
+
}
|
44
|
+
.icon-speech-bubble-right-2:before {
|
45
|
+
content: "\e005";
|
46
|
+
}
|
47
|
+
.icon-speech-bubble-left-3:before {
|
48
|
+
content: "\e006";
|
49
|
+
}
|
50
|
+
.icon-speech-bubble-center-3:before {
|
51
|
+
content: "\e007";
|
52
|
+
}
|
53
|
+
.icon-speech-bubble-right-3:before {
|
54
|
+
content: "\e008";
|
55
|
+
}
|
56
|
+
.icon-speech-bubble-left-4:before {
|
57
|
+
content: "\e009";
|
58
|
+
}
|
59
|
+
.icon-speech-bubble-right-4:before {
|
60
|
+
content: "\e00a";
|
61
|
+
}
|
62
|
+
.icon-browser:before {
|
63
|
+
content: "\e00b";
|
64
|
+
}
|
65
|
+
.icon-browser-new-window:before {
|
66
|
+
content: "\e00c";
|
67
|
+
}
|
68
|
+
.icon-browser-minimize:before {
|
69
|
+
content: "\e00d";
|
70
|
+
}
|
71
|
+
.icon-browser-close:before {
|
72
|
+
content: "\e00e";
|
73
|
+
}
|
74
|
+
.icon-browser-upload:before {
|
75
|
+
content: "\e00f";
|
76
|
+
}
|
77
|
+
.icon-browser-download:before {
|
78
|
+
content: "\e010";
|
79
|
+
}
|
80
|
+
.icon-terminal:before {
|
81
|
+
content: "\e011";
|
82
|
+
}
|
83
|
+
.icon-browser-windows:before {
|
84
|
+
content: "\e012";
|
85
|
+
}
|
86
|
+
.icon-browser-2:before {
|
87
|
+
content: "\e013";
|
88
|
+
}
|
89
|
+
.icon-browser-new-window-2:before {
|
90
|
+
content: "\e014";
|
91
|
+
}
|
92
|
+
.icon-browser-minimize-2:before {
|
93
|
+
content: "\e015";
|
94
|
+
}
|
95
|
+
.icon-browser-close-2:before {
|
96
|
+
content: "\e016";
|
97
|
+
}
|
98
|
+
.icon-browser-upload-2:before {
|
99
|
+
content: "\e017";
|
100
|
+
}
|
101
|
+
.icon-browser-download-2:before {
|
102
|
+
content: "\e018";
|
103
|
+
}
|
104
|
+
.icon-terminal-2:before {
|
105
|
+
content: "\e019";
|
106
|
+
}
|
107
|
+
.icon-browsers:before {
|
108
|
+
content: "\e01a";
|
109
|
+
}
|
110
|
+
.icon-windows:before {
|
111
|
+
content: "\e01b";
|
112
|
+
}
|
113
|
+
.icon-plus:before {
|
114
|
+
content: "\e01c";
|
115
|
+
}
|
116
|
+
.icon-minus:before {
|
117
|
+
content: "\e01d";
|
118
|
+
}
|
119
|
+
.icon-marquee:before {
|
120
|
+
content: "\e01e";
|
121
|
+
}
|
122
|
+
.icon-marquee-plus:before {
|
123
|
+
content: "\e01f";
|
124
|
+
}
|
125
|
+
.icon-marquee-minus:before {
|
126
|
+
content: "\e020";
|
127
|
+
}
|
128
|
+
.icon-marquee-upload:before {
|
129
|
+
content: "\e021";
|
130
|
+
}
|
131
|
+
.icon-marquee-download:before {
|
132
|
+
content: "\e022";
|
133
|
+
}
|
134
|
+
.icon-crate:before {
|
135
|
+
content: "\e023";
|
136
|
+
}
|
137
|
+
.icon-grid:before {
|
138
|
+
content: "\e024";
|
139
|
+
}
|
140
|
+
.icon-grid-2:before {
|
141
|
+
content: "\e025";
|
142
|
+
}
|
143
|
+
.icon-list:before {
|
144
|
+
content: "\e026";
|
145
|
+
}
|
146
|
+
.icon-list-2:before {
|
147
|
+
content: "\e027";
|
148
|
+
}
|
149
|
+
.icon-in:before {
|
150
|
+
content: "\e028";
|
151
|
+
}
|
152
|
+
.icon-out:before {
|
153
|
+
content: "\e029";
|
154
|
+
}
|
155
|
+
.icon-inbox:before {
|
156
|
+
content: "\e02a";
|
157
|
+
}
|
158
|
+
.icon-outbox:before {
|
159
|
+
content: "\e02b";
|
160
|
+
}
|
161
|
+
.icon-outgoing:before {
|
162
|
+
content: "\e02c";
|
163
|
+
}
|
164
|
+
.icon-paragraph-justify:before {
|
165
|
+
content: "\e02d";
|
166
|
+
}
|
167
|
+
.icon-paragraph-left:before {
|
168
|
+
content: "\e02e";
|
169
|
+
}
|
170
|
+
.icon-paragraph-center:before {
|
171
|
+
content: "\e02f";
|
172
|
+
}
|
173
|
+
.icon-paragraph-right:before {
|
174
|
+
content: "\e030";
|
175
|
+
}
|
176
|
+
.icon-justify:before {
|
177
|
+
content: "\e031";
|
178
|
+
}
|
179
|
+
.icon-align-left:before {
|
180
|
+
content: "\e032";
|
181
|
+
}
|
182
|
+
.icon-align-center:before {
|
183
|
+
content: "\e033";
|
184
|
+
}
|
185
|
+
.icon-align-right:before {
|
186
|
+
content: "\e034";
|
187
|
+
}
|
188
|
+
.icon-audio-mute:before {
|
189
|
+
content: "\e035";
|
190
|
+
}
|
191
|
+
.icon-audio-low:before {
|
192
|
+
content: "\e036";
|
193
|
+
}
|
194
|
+
.icon-audio-mid:before {
|
195
|
+
content: "\e037";
|
196
|
+
}
|
197
|
+
.icon-audio-high:before {
|
198
|
+
content: "\e038";
|
199
|
+
}
|
200
|
+
.icon-brightness-high:before {
|
201
|
+
content: "\e039";
|
202
|
+
}
|
203
|
+
.icon-brightness-low:before {
|
204
|
+
content: "\e03a";
|
205
|
+
}
|
206
|
+
.icon-contrast:before {
|
207
|
+
content: "\e03b";
|
208
|
+
}
|
209
|
+
.icon-picture:before {
|
210
|
+
content: "\e03c";
|
211
|
+
}
|
212
|
+
.icon-film:before {
|
213
|
+
content: "\e03d";
|
214
|
+
}
|
215
|
+
.icon-video:before {
|
216
|
+
content: "\e03e";
|
217
|
+
}
|
218
|
+
.icon-user:before {
|
219
|
+
content: "\e03f";
|
220
|
+
}
|
221
|
+
.icon-user-2:before {
|
222
|
+
content: "\e040";
|
223
|
+
}
|
224
|
+
.icon-users:before {
|
225
|
+
content: "\e041";
|
226
|
+
}
|
227
|
+
.icon-user-3:before {
|
228
|
+
content: "\e042";
|
229
|
+
}
|
230
|
+
.icon-polaroid:before {
|
231
|
+
content: "\e043";
|
232
|
+
}
|
233
|
+
.icon-polaroid-2:before {
|
234
|
+
content: "\e044";
|
235
|
+
}
|
236
|
+
.icon-heart-full:before {
|
237
|
+
content: "\e045";
|
238
|
+
}
|
239
|
+
.icon-heart-half:before {
|
240
|
+
content: "\e046";
|
241
|
+
}
|
242
|
+
.icon-heart-empty:before {
|
243
|
+
content: "\e047";
|
244
|
+
}
|
245
|
+
.icon-settings:before {
|
246
|
+
content: "\e048";
|
247
|
+
}
|
248
|
+
.icon-settings-2:before {
|
249
|
+
content: "\e049";
|
250
|
+
}
|
251
|
+
.icon-settings-3:before {
|
252
|
+
content: "\e04a";
|
253
|
+
}
|
254
|
+
.icon-flask-full:before {
|
255
|
+
content: "\e04b";
|
256
|
+
}
|
257
|
+
.icon-flask-empty:before {
|
258
|
+
content: "\e04c";
|
259
|
+
}
|
260
|
+
.icon-toggle-on:before {
|
261
|
+
content: "\e04d";
|
262
|
+
}
|
263
|
+
.icon-toggle-off:before {
|
264
|
+
content: "\e04e";
|
265
|
+
}
|
266
|
+
.icon-toggle-on-2:before {
|
267
|
+
content: "\e04f";
|
268
|
+
}
|
269
|
+
.icon-toggle-off-2:before {
|
270
|
+
content: "\e050";
|
271
|
+
}
|
272
|
+
.icon-bin:before {
|
273
|
+
content: "\e051";
|
274
|
+
}
|
275
|
+
.icon-bin-2:before {
|
276
|
+
content: "\e052";
|
277
|
+
}
|
278
|
+
.icon-stiffy:before {
|
279
|
+
content: "\e053";
|
280
|
+
}
|
281
|
+
.icon-floppy:before {
|
282
|
+
content: "\e054";
|
283
|
+
}
|
284
|
+
.icon-notes:before {
|
285
|
+
content: "\e055";
|
286
|
+
}
|
287
|
+
.icon-calendar:before {
|
288
|
+
content: "\e056";
|
289
|
+
}
|
290
|
+
.icon-reminder:before {
|
291
|
+
content: "\e057";
|
292
|
+
}
|
293
|
+
.icon-clipboard:before {
|
294
|
+
content: "\e058";
|
295
|
+
}
|
296
|
+
.icon-clipboard-2:before {
|
297
|
+
content: "\e059";
|
298
|
+
}
|
299
|
+
.icon-terminal-3:before {
|
300
|
+
content: "\e05a";
|
301
|
+
}
|
302
|
+
.icon-code:before {
|
303
|
+
content: "\e05b";
|
304
|
+
}
|
305
|
+
.icon-curlybrace:before {
|
306
|
+
content: "\e05c";
|
307
|
+
}
|
308
|
+
.icon-curlybrace-2:before {
|
309
|
+
content: "\e05d";
|
310
|
+
}
|
311
|
+
.icon-square-brackets:before {
|
312
|
+
content: "\e05e";
|
313
|
+
}
|
314
|
+
.icon-cmd:before {
|
315
|
+
content: "\e05f";
|
316
|
+
}
|
317
|
+
.icon-section:before {
|
318
|
+
content: "\e060";
|
319
|
+
}
|
320
|
+
.icon-infinity:before {
|
321
|
+
content: "\e061";
|
322
|
+
}
|
323
|
+
.icon-tilda:before {
|
324
|
+
content: "\e062";
|
325
|
+
}
|
326
|
+
.icon-power:before {
|
327
|
+
content: "\e063";
|
328
|
+
}
|
329
|
+
.icon-keys:before {
|
330
|
+
content: "\e064";
|
331
|
+
}
|
332
|
+
.icon-mixer:before {
|
333
|
+
content: "\e065";
|
334
|
+
}
|
335
|
+
.icon-wave:before {
|
336
|
+
content: "\e066";
|
337
|
+
}
|
338
|
+
.icon-wave-2:before {
|
339
|
+
content: "\e067";
|
340
|
+
}
|
341
|
+
.icon-vinyl:before {
|
342
|
+
content: "\e068";
|
343
|
+
}
|
344
|
+
.icon-spool:before {
|
345
|
+
content: "\e069";
|
346
|
+
}
|
347
|
+
.icon-cassette:before {
|
348
|
+
content: "\e06a";
|
349
|
+
}
|
350
|
+
.icon-voicemail:before {
|
351
|
+
content: "\e06b";
|
352
|
+
}
|
353
|
+
.icon-microphone:before {
|
354
|
+
content: "\e06c";
|
355
|
+
}
|
356
|
+
.icon-microphone-2:before {
|
357
|
+
content: "\e06d";
|
358
|
+
}
|
359
|
+
.icon-bullhorn:before {
|
360
|
+
content: "\e06e";
|
361
|
+
}
|
362
|
+
.icon-bullhorn-2:before {
|
363
|
+
content: "\e06f";
|
364
|
+
}
|
365
|
+
.icon-headphones:before {
|
366
|
+
content: "\e070";
|
367
|
+
}
|
368
|
+
.icon-camera:before {
|
369
|
+
content: "\e071";
|
370
|
+
}
|
371
|
+
.icon-camera-2:before {
|
372
|
+
content: "\e072";
|
373
|
+
}
|
374
|
+
.icon-camera-3:before {
|
375
|
+
content: "\e073";
|
376
|
+
}
|
377
|
+
.icon-pin:before {
|
378
|
+
content: "\e074";
|
379
|
+
}
|
380
|
+
.icon-pin-2:before {
|
381
|
+
content: "\e075";
|
382
|
+
}
|
383
|
+
.icon-map:before {
|
384
|
+
content: "\e076";
|
385
|
+
}
|
386
|
+
.icon-map-2:before {
|
387
|
+
content: "\e077";
|
388
|
+
}
|
389
|
+
.icon-user-card:before {
|
390
|
+
content: "\e078";
|
391
|
+
}
|
392
|
+
.icon-battery-100:before {
|
393
|
+
content: "\e079";
|
394
|
+
}
|
395
|
+
.icon-battery-80:before {
|
396
|
+
content: "\e07a";
|
397
|
+
}
|
398
|
+
.icon-battery-60:before {
|
399
|
+
content: "\e07b";
|
400
|
+
}
|
401
|
+
.icon-battery-40:before {
|
402
|
+
content: "\e07c";
|
403
|
+
}
|
404
|
+
.icon-battery-20:before {
|
405
|
+
content: "\e07d";
|
406
|
+
}
|
407
|
+
.icon-battery-empty:before {
|
408
|
+
content: "\e07e";
|
409
|
+
}
|
410
|
+
.icon-battery-charge:before {
|
411
|
+
content: "\e07f";
|
412
|
+
}
|
413
|
+
.icon-battery-100-2:before {
|
414
|
+
content: "\e080";
|
415
|
+
}
|
416
|
+
.icon-battery-80-2:before {
|
417
|
+
content: "\e081";
|
418
|
+
}
|
419
|
+
.icon-battery-60-2:before {
|
420
|
+
content: "\e082";
|
421
|
+
}
|
422
|
+
.icon-battery-40-2:before {
|
423
|
+
content: "\e083";
|
424
|
+
}
|
425
|
+
.icon-battery-20-2:before {
|
426
|
+
content: "\e084";
|
427
|
+
}
|
428
|
+
.icon-battery-empty-2:before {
|
429
|
+
content: "\e085";
|
430
|
+
}
|
431
|
+
.icon-battery-charge-2:before {
|
432
|
+
content: "\e086";
|
433
|
+
}
|
434
|
+
.icon-clock:before {
|
435
|
+
content: "\e087";
|
436
|
+
}
|
437
|
+
.icon-flux:before {
|
438
|
+
content: "\e088";
|
439
|
+
}
|
440
|
+
.icon-sleep:before {
|
441
|
+
content: "\e089";
|
442
|
+
}
|
443
|
+
.icon-nope:before {
|
444
|
+
content: "\e08a";
|
445
|
+
}
|
446
|
+
.icon-search:before {
|
447
|
+
content: "\e08b";
|
448
|
+
}
|
449
|
+
.icon-zoom-in:before {
|
450
|
+
content: "\e08c";
|
451
|
+
}
|
452
|
+
.icon-zoom-out:before {
|
453
|
+
content: "\e08d";
|
454
|
+
}
|
455
|
+
.icon-search-2:before {
|
456
|
+
content: "\e08e";
|
457
|
+
}
|
458
|
+
.icon-zoom-in-2:before {
|
459
|
+
content: "\e08f";
|
460
|
+
}
|
461
|
+
.icon-zoom-out-2:before {
|
462
|
+
content: "\e090";
|
463
|
+
}
|
464
|
+
.icon-eye:before {
|
465
|
+
content: "\e091";
|
466
|
+
}
|
467
|
+
.icon-eye-2:before {
|
468
|
+
content: "\e092";
|
469
|
+
}
|
470
|
+
.icon-wifi-low:before {
|
471
|
+
content: "\e093";
|
472
|
+
}
|
473
|
+
.icon-wifi-half:before {
|
474
|
+
content: "\e094";
|
475
|
+
}
|
476
|
+
.icon-wifi-full:before {
|
477
|
+
content: "\e095";
|
478
|
+
}
|
479
|
+
.icon-expand:before {
|
480
|
+
content: "\e096";
|
481
|
+
}
|
482
|
+
.icon-contract:before {
|
483
|
+
content: "\e097";
|
484
|
+
}
|
485
|
+
.icon-expand-2:before {
|
486
|
+
content: "\e098";
|
487
|
+
}
|
488
|
+
.icon-contract-2:before {
|
489
|
+
content: "\e099";
|
490
|
+
}
|
491
|
+
.icon-expand-3:before {
|
492
|
+
content: "\e09a";
|
493
|
+
}
|
494
|
+
.icon-maximize:before {
|
495
|
+
content: "\e09b";
|
496
|
+
}
|
497
|
+
.icon-contract-3:before {
|
498
|
+
content: "\e09c";
|
499
|
+
}
|
500
|
+
.icon-menu-pull-down:before {
|
501
|
+
content: "\e09d";
|
502
|
+
}
|
503
|
+
.icon-menu-pull-up:before {
|
504
|
+
content: "\e09e";
|
505
|
+
}
|
506
|
+
.icon-menu:before {
|
507
|
+
content: "\e09f";
|
508
|
+
}
|
509
|
+
.icon-menu-2:before {
|
510
|
+
content: "\e0a0";
|
511
|
+
}
|
512
|
+
.icon-tag:before {
|
513
|
+
content: "\e0a1";
|
514
|
+
}
|
515
|
+
.icon-tag-2:before {
|
516
|
+
content: "\e0a2";
|
517
|
+
}
|
518
|
+
.icon-tag-3:before {
|
519
|
+
content: "\e0a3";
|
520
|
+
}
|
521
|
+
.icon-tag-4:before {
|
522
|
+
content: "\e0a4";
|
523
|
+
}
|
524
|
+
.icon-refresh:before {
|
525
|
+
content: "\e0a5";
|
526
|
+
}
|
527
|
+
.icon-repeat:before {
|
528
|
+
content: "\e0a6";
|
529
|
+
}
|
530
|
+
.icon-repeat-2:before {
|
531
|
+
content: "\e0a7";
|
532
|
+
}
|
533
|
+
.icon-shuffle:before {
|
534
|
+
content: "\e0a8";
|
535
|
+
}
|
536
|
+
.icon-return:before {
|
537
|
+
content: "\e0a9";
|
538
|
+
}
|
539
|
+
.icon-wiggle:before {
|
540
|
+
content: "\e0aa";
|
541
|
+
}
|
542
|
+
.icon-split:before {
|
543
|
+
content: "\e0ab";
|
544
|
+
}
|
545
|
+
.icon-split-2:before {
|
546
|
+
content: "\e0ac";
|
547
|
+
}
|
548
|
+
.icon-converge:before {
|
549
|
+
content: "\e0ad";
|
550
|
+
}
|
551
|
+
.icon-swap:before {
|
552
|
+
content: "\e0ae";
|
553
|
+
}
|
554
|
+
.icon-swap-2:before {
|
555
|
+
content: "\e0af";
|
556
|
+
}
|
557
|
+
.icon-transfer:before {
|
558
|
+
content: "\e0b0";
|
559
|
+
}
|
560
|
+
.icon-tray:before {
|
561
|
+
content: "\e0b1";
|
562
|
+
}
|
563
|
+
.icon-inbox-2:before {
|
564
|
+
content: "\e0b2";
|
565
|
+
}
|
566
|
+
.icon-outbox-2:before {
|
567
|
+
content: "\e0b3";
|
568
|
+
}
|
569
|
+
.icon-key:before {
|
570
|
+
content: "\e0b4";
|
571
|
+
}
|
572
|
+
.icon-key-2:before {
|
573
|
+
content: "\e0b5";
|
574
|
+
}
|
575
|
+
.icon-locked:before {
|
576
|
+
content: "\e0b6";
|
577
|
+
}
|
578
|
+
.icon-unlocked:before {
|
579
|
+
content: "\e0b7";
|
580
|
+
}
|
581
|
+
.icon-safe:before {
|
582
|
+
content: "\e0b8";
|
583
|
+
}
|
584
|
+
.icon-spinner:before {
|
585
|
+
content: "\e0b9";
|
586
|
+
}
|
587
|
+
.icon-spinner-2:before {
|
588
|
+
content: "\e0ba";
|
589
|
+
}
|
590
|
+
.icon-spinner-3:before {
|
591
|
+
content: "\e0bb";
|
592
|
+
}
|
593
|
+
.icon-stamp:before {
|
594
|
+
content: "\e0bc";
|
595
|
+
}
|
596
|
+
.icon-stamp-2:before {
|
597
|
+
content: "\e0bd";
|
598
|
+
}
|
599
|
+
.icon-mail:before {
|
600
|
+
content: "\e0be";
|
601
|
+
}
|
602
|
+
.icon-mail-2:before {
|
603
|
+
content: "\e0bf";
|
604
|
+
}
|
605
|
+
.icon-mail-3:before {
|
606
|
+
content: "\e0c0";
|
607
|
+
}
|
608
|
+
.icon-address-book:before {
|
609
|
+
content: "\e0c1";
|
610
|
+
}
|
611
|
+
.icon-address-book-2:before {
|
612
|
+
content: "\e0c2";
|
613
|
+
}
|
614
|
+
.icon-book:before {
|
615
|
+
content: "\e0c3";
|
616
|
+
}
|
617
|
+
.icon-book-lines:before {
|
618
|
+
content: "\e0c4";
|
619
|
+
}
|
620
|
+
.icon-book-2:before {
|
621
|
+
content: "\e0c5";
|
622
|
+
}
|
623
|
+
.icon-book-lines-2:before {
|
624
|
+
content: "\e0c6";
|
625
|
+
}
|
626
|
+
.icon-paper-roll:before {
|
627
|
+
content: "\e0c7";
|
628
|
+
}
|
629
|
+
.icon-paper-roll-ripped:before {
|
630
|
+
content: "\e0c8";
|
631
|
+
}
|
632
|
+
.icon-ripped-paper:before {
|
633
|
+
content: "\e0c9";
|
634
|
+
}
|
635
|
+
.icon-database:before {
|
636
|
+
content: "\e0ca";
|
637
|
+
}
|
638
|
+
.icon-database-add:before {
|
639
|
+
content: "\e0cb";
|
640
|
+
}
|
641
|
+
.icon-database-remove:before {
|
642
|
+
content: "\e0cc";
|
643
|
+
}
|
644
|
+
.icon-support:before {
|
645
|
+
content: "\e0cd";
|
646
|
+
}
|
647
|
+
.icon-support-2:before {
|
648
|
+
content: "\e0ce";
|
649
|
+
}
|
650
|
+
.icon-support-3:before {
|
651
|
+
content: "\e0cf";
|
652
|
+
}
|
653
|
+
.icon-podcast:before {
|
654
|
+
content: "\e0d0";
|
655
|
+
}
|
656
|
+
.icon-podcast-2:before {
|
657
|
+
content: "\e0d1";
|
658
|
+
}
|
659
|
+
.icon-folder:before {
|
660
|
+
content: "\e0d2";
|
661
|
+
}
|
662
|
+
.icon-folder-add:before {
|
663
|
+
content: "\e0d3";
|
664
|
+
}
|
665
|
+
.icon-folder-remove:before {
|
666
|
+
content: "\e0d4";
|
667
|
+
}
|
668
|
+
.icon-folder-duplicate:before {
|
669
|
+
content: "\e0d5";
|
670
|
+
}
|
671
|
+
.icon-folder-2:before {
|
672
|
+
content: "\e0d6";
|
673
|
+
}
|
674
|
+
.icon-folder-add-2:before {
|
675
|
+
content: "\e0d7";
|
676
|
+
}
|
677
|
+
.icon-folder-remove-2:before {
|
678
|
+
content: "\e0d8";
|
679
|
+
}
|
680
|
+
.icon-folder-duplicate-2:before {
|
681
|
+
content: "\e0d9";
|
682
|
+
}
|
683
|
+
.icon-cloud:before {
|
684
|
+
content: "\e0da";
|
685
|
+
}
|
686
|
+
.icon-cloud-upload:before {
|
687
|
+
content: "\e0db";
|
688
|
+
}
|
689
|
+
.icon-cloud-download:before {
|
690
|
+
content: "\e0dc";
|
691
|
+
}
|
692
|
+
.icon-cloud-remove:before {
|
693
|
+
content: "\e0dd";
|
694
|
+
}
|
695
|
+
.icon-cloud-remove-2:before {
|
696
|
+
content: "\e0de";
|
697
|
+
}
|
698
|
+
.icon-cloud-add:before {
|
699
|
+
content: "\e0df";
|
700
|
+
}
|
701
|
+
.icon-cloud-remove-3:before {
|
702
|
+
content: "\e0e0";
|
703
|
+
}
|
704
|
+
.icon-store:before {
|
705
|
+
content: "\e0e1";
|
706
|
+
}
|
707
|
+
.icon-store-2:before {
|
708
|
+
content: "\e0e2";
|
709
|
+
}
|
710
|
+
.icon-credit-card:before {
|
711
|
+
content: "\e0e3";
|
712
|
+
}
|
713
|
+
.icon-credit-card-2:before {
|
714
|
+
content: "\e0e4";
|
715
|
+
}
|
716
|
+
.icon-credit-card-3:before {
|
717
|
+
content: "\e0e5";
|
718
|
+
}
|
719
|
+
.icon-credit-card-4:before {
|
720
|
+
content: "\e0e6";
|
721
|
+
}
|
722
|
+
.icon-wallet:before {
|
723
|
+
content: "\e0e7";
|
724
|
+
}
|
725
|
+
.icon-wallet-2:before {
|
726
|
+
content: "\e0e8";
|
727
|
+
}
|
728
|
+
.icon-newspaper:before {
|
729
|
+
content: "\e0e9";
|
730
|
+
}
|
731
|
+
.icon-newspaper-2:before {
|
732
|
+
content: "\e0ea";
|
733
|
+
}
|
734
|
+
.icon-document:before {
|
735
|
+
content: "\e0eb";
|
736
|
+
}
|
737
|
+
.icon-document-add:before {
|
738
|
+
content: "\e0ec";
|
739
|
+
}
|
740
|
+
.icon-document-remove:before {
|
741
|
+
content: "\e0ed";
|
742
|
+
}
|
743
|
+
.icon-attachment:before {
|
744
|
+
content: "\e0ee";
|
745
|
+
}
|
746
|
+
.icon-attachment-2:before {
|
747
|
+
content: "\e0ef";
|
748
|
+
}
|
749
|
+
.icon-align-top:before {
|
750
|
+
content: "\e0f0";
|
751
|
+
}
|
752
|
+
.icon-align-vertical-centers:before {
|
753
|
+
content: "\e0f1";
|
754
|
+
}
|
755
|
+
.icon-align-bottom:before {
|
756
|
+
content: "\e0f2";
|
757
|
+
}
|
758
|
+
.icon-align-left-2:before {
|
759
|
+
content: "\e0f3";
|
760
|
+
}
|
761
|
+
.icon-align-horizontal-centers:before {
|
762
|
+
content: "\e0f4";
|
763
|
+
}
|
764
|
+
.icon-align-right-2:before {
|
765
|
+
content: "\e0f5";
|
766
|
+
}
|
767
|
+
.icon-distribute-vertical-top:before {
|
768
|
+
content: "\e0f6";
|
769
|
+
}
|
770
|
+
.icon-distribute-vertical-centers:before {
|
771
|
+
content: "\e0f7";
|
772
|
+
}
|
773
|
+
.icon-distribute-vertical-bottom:before {
|
774
|
+
content: "\e0f8";
|
775
|
+
}
|
776
|
+
.icon-distribute-horizontal-left:before {
|
777
|
+
content: "\e0f9";
|
778
|
+
}
|
779
|
+
.icon-distribute-horizontal-right:before {
|
780
|
+
content: "\e0fa";
|
781
|
+
}
|
782
|
+
.icon-distribute-horizontal-centers:before {
|
783
|
+
content: "\e0fb";
|
784
|
+
}
|
785
|
+
.icon-unite:before {
|
786
|
+
content: "\e0fc";
|
787
|
+
}
|
788
|
+
.icon-subtract:before {
|
789
|
+
content: "\e0fd";
|
790
|
+
}
|
791
|
+
.icon-intersect:before {
|
792
|
+
content: "\e0fe";
|
793
|
+
}
|
794
|
+
.icon-exclude:before {
|
795
|
+
content: "\e0ff";
|
796
|
+
}
|
797
|
+
.icon-layout-sidebar-left:before {
|
798
|
+
content: "\e100";
|
799
|
+
}
|
800
|
+
.icon-layout-column-center:before {
|
801
|
+
content: "\e101";
|
802
|
+
}
|
803
|
+
.icon-layout-sidebar-right:before {
|
804
|
+
content: "\e102";
|
805
|
+
}
|
806
|
+
.icon-layout-content-left:before {
|
807
|
+
content: "\e103";
|
808
|
+
}
|
809
|
+
.icon-layout-content-right:before {
|
810
|
+
content: "\e104";
|
811
|
+
}
|
812
|
+
.icon-layout-content-left-2:before {
|
813
|
+
content: "\e105";
|
814
|
+
}
|
815
|
+
.icon-layout-content-right-2:before {
|
816
|
+
content: "\e106";
|
817
|
+
}
|
818
|
+
.icon-rulers:before {
|
819
|
+
content: "\e107";
|
820
|
+
}
|
821
|
+
.icon-swatch:before {
|
822
|
+
content: "\e108";
|
823
|
+
}
|
824
|
+
.icon-swatches:before {
|
825
|
+
content: "\e109";
|
826
|
+
}
|
827
|
+
.icon-crop:before {
|
828
|
+
content: "\e10a";
|
829
|
+
}
|
830
|
+
.icon-bulb:before {
|
831
|
+
content: "\e10b";
|
832
|
+
}
|
833
|
+
.icon-bulb-2:before {
|
834
|
+
content: "\e10c";
|
835
|
+
}
|
836
|
+
.icon-droplet:before {
|
837
|
+
content: "\e10d";
|
838
|
+
}
|
839
|
+
.icon-print:before {
|
840
|
+
content: "\e10e";
|
841
|
+
}
|
842
|
+
.icon-shredder:before {
|
843
|
+
content: "\e10f";
|
844
|
+
}
|
845
|
+
.icon-bell:before {
|
846
|
+
content: "\e110";
|
847
|
+
}
|
848
|
+
.icon-bell-2:before {
|
849
|
+
content: "\e111";
|
850
|
+
}
|
851
|
+
.icon-bell-mute:before {
|
852
|
+
content: "\e112";
|
853
|
+
}
|
854
|
+
.icon-bell-mute-2:before {
|
855
|
+
content: "\e113";
|
856
|
+
}
|
857
|
+
.icon-nib:before {
|
858
|
+
content: "\e114";
|
859
|
+
}
|
860
|
+
.icon-quill:before {
|
861
|
+
content: "\e115";
|
862
|
+
}
|
863
|
+
.icon-quill-2:before {
|
864
|
+
content: "\e116";
|
865
|
+
}
|
866
|
+
.icon-pencil:before {
|
867
|
+
content: "\e117";
|
868
|
+
}
|
869
|
+
.icon-pen:before {
|
870
|
+
content: "\e118";
|
871
|
+
}
|
872
|
+
.icon-compose:before {
|
873
|
+
content: "\e119";
|
874
|
+
}
|
875
|
+
.icon-compose-2:before {
|
876
|
+
content: "\e11a";
|
877
|
+
}
|
878
|
+
.icon-compose-3:before {
|
879
|
+
content: "\e11b";
|
880
|
+
}
|
881
|
+
.icon-compose-4:before {
|
882
|
+
content: "\e11c";
|
883
|
+
}
|
884
|
+
.icon-bullet:before {
|
885
|
+
content: "\e11d";
|
886
|
+
}
|
887
|
+
.icon-ellipsis:before {
|
888
|
+
content: "\e11e";
|
889
|
+
}
|
890
|
+
.icon-timeline:before {
|
891
|
+
content: "\e11f";
|
892
|
+
}
|
893
|
+
.icon-link:before {
|
894
|
+
content: "\e120";
|
895
|
+
}
|
896
|
+
.icon-link-2:before {
|
897
|
+
content: "\e121";
|
898
|
+
}
|
899
|
+
.icon-anchor:before {
|
900
|
+
content: "\e122";
|
901
|
+
}
|
902
|
+
.icon-asterisk:before {
|
903
|
+
content: "\e123";
|
904
|
+
}
|
905
|
+
.icon-compass:before {
|
906
|
+
content: "\e124";
|
907
|
+
}
|
908
|
+
.icon-arrow-down:before {
|
909
|
+
content: "\e125";
|
910
|
+
}
|
911
|
+
.icon-arrow-up:before {
|
912
|
+
content: "\e126";
|
913
|
+
}
|
914
|
+
.icon-arrow-left:before {
|
915
|
+
content: "\e127";
|
916
|
+
}
|
917
|
+
.icon-arrow-right:before {
|
918
|
+
content: "\e128";
|
919
|
+
}
|
920
|
+
.icon-circle-add:before {
|
921
|
+
content: "\e129";
|
922
|
+
}
|
923
|
+
.icon-minus-circle:before {
|
924
|
+
content: "\e12a";
|
925
|
+
}
|
926
|
+
.icon-cancel-circle:before {
|
927
|
+
content: "\e12b";
|
928
|
+
}
|