test-bentoweb-ui 1.0.23 → 1.0.25
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bentoweb-ui.css +1 -5
- package/dist/bentoweb-ui.es.js +4944 -8199
- package/dist/bentoweb-ui.umd.js +4 -8
- package/package.json +6 -3
- package/src/assets/styles/_bentowebicon.css +753 -0
- package/src/assets/styles/_breadcrumb.scss +22 -0
- package/src/assets/styles/_btwstyles.scss +102 -0
- package/src/assets/styles/_buttons.scss +99 -0
- package/src/assets/styles/_card.scss +3 -0
- package/src/assets/styles/_forms.scss +57 -0
- package/src/assets/styles/_mixins.scss +103 -0
- package/src/assets/styles/_modal.scss +55 -0
- package/src/assets/styles/_pagination.scss +40 -0
- package/src/assets/styles/_sidebar.scss +25 -0
- package/src/assets/styles/_tables.scss +20 -0
- package/src/assets/styles/_tabs.scss +24 -0
- package/src/assets/styles/_toggleswitch.scss +89 -0
- package/src/assets/styles/_variables.scss +176 -0
- package/src/assets/styles/index.scss +3 -0
- package/src/assets/styles/main.scss +13 -0
@@ -0,0 +1,753 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: "bentowebicon";
|
3
|
+
src: url("../fonts/bentowebicon.eot");
|
4
|
+
src: url("../fonts/bentowebicon.eot#iefix") format("embedded-opentype"), url("../fonts/bentowebicon.ttf") format("truetype"), url("../fonts/bentowebicon.woff") format("woff"), url("../fonts/bentowebicon.svg#bentowebicon") format("svg");
|
5
|
+
font-weight: normal;
|
6
|
+
font-style: normal;
|
7
|
+
font-display: block;
|
8
|
+
}
|
9
|
+
[class^=icon-], [class*=icon-]:not([class*=-icon-]) {
|
10
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
11
|
+
font-family: "bentowebicon" !important;
|
12
|
+
speak: never;
|
13
|
+
font-style: normal;
|
14
|
+
font-weight: normal;
|
15
|
+
font-variant: normal;
|
16
|
+
text-transform: none;
|
17
|
+
line-height: 1;
|
18
|
+
/* Better Font Rendering =========== */
|
19
|
+
-webkit-font-smoothing: antialiased;
|
20
|
+
-moz-osx-font-smoothing: grayscale;
|
21
|
+
}
|
22
|
+
|
23
|
+
.icon-camera:before {
|
24
|
+
content: "\E9B5";
|
25
|
+
}
|
26
|
+
|
27
|
+
.icon-mail-sl:before {
|
28
|
+
content: "\E9B0";
|
29
|
+
}
|
30
|
+
|
31
|
+
.icon-check:before {
|
32
|
+
content: "\E9B6";
|
33
|
+
}
|
34
|
+
|
35
|
+
.icon-phone-sl:before {
|
36
|
+
content: "\E9A0";
|
37
|
+
}
|
38
|
+
|
39
|
+
.icon-setting-sl:before {
|
40
|
+
content: "\E989";
|
41
|
+
}
|
42
|
+
|
43
|
+
.icon-del:before {
|
44
|
+
content: "\E9A7";
|
45
|
+
}
|
46
|
+
|
47
|
+
.icon-print-2:before {
|
48
|
+
content: "\E9A8";
|
49
|
+
}
|
50
|
+
|
51
|
+
.icon-google-l:before {
|
52
|
+
content: "\E995";
|
53
|
+
}
|
54
|
+
|
55
|
+
.icon-google-sl:before {
|
56
|
+
content: "\E996";
|
57
|
+
}
|
58
|
+
|
59
|
+
.icon-ntfy:before {
|
60
|
+
content: "\E997";
|
61
|
+
}
|
62
|
+
|
63
|
+
.icon-money-check:before {
|
64
|
+
content: "\E998";
|
65
|
+
}
|
66
|
+
|
67
|
+
.icon-draft-edit:before {
|
68
|
+
content: "\E999";
|
69
|
+
}
|
70
|
+
|
71
|
+
.icon-draft:before {
|
72
|
+
content: "\E99A";
|
73
|
+
}
|
74
|
+
|
75
|
+
.icon-draft-add:before {
|
76
|
+
content: "\E99B";
|
77
|
+
}
|
78
|
+
|
79
|
+
.icon-book-user-add:before {
|
80
|
+
content: "\E99C";
|
81
|
+
}
|
82
|
+
|
83
|
+
.icon-note:before {
|
84
|
+
content: "\E99D";
|
85
|
+
}
|
86
|
+
|
87
|
+
.icon-note-edit:before {
|
88
|
+
content: "\E99E";
|
89
|
+
}
|
90
|
+
|
91
|
+
.icon-note-add:before {
|
92
|
+
content: "\E99F";
|
93
|
+
}
|
94
|
+
|
95
|
+
.icon-fast-cart-1:before {
|
96
|
+
content: "\E9A2";
|
97
|
+
}
|
98
|
+
|
99
|
+
.icon-fast-cart-2:before {
|
100
|
+
content: "\E9A3";
|
101
|
+
}
|
102
|
+
|
103
|
+
.icon-fast-cart-3:before {
|
104
|
+
content: "\E9A4";
|
105
|
+
}
|
106
|
+
|
107
|
+
.icon-cake-2:before {
|
108
|
+
content: "\E9A5";
|
109
|
+
}
|
110
|
+
|
111
|
+
.icon-crcode2:before {
|
112
|
+
content: "\E9A6";
|
113
|
+
}
|
114
|
+
|
115
|
+
.icon-pinterest-sl:before {
|
116
|
+
content: "\E9B1";
|
117
|
+
}
|
118
|
+
|
119
|
+
.icon-tiktok-sl:before {
|
120
|
+
content: "\E9B2";
|
121
|
+
}
|
122
|
+
|
123
|
+
.icon-youtube-sl:before {
|
124
|
+
content: "\E9B3";
|
125
|
+
}
|
126
|
+
|
127
|
+
.icon-instagram-sl:before {
|
128
|
+
content: "\E9B4";
|
129
|
+
}
|
130
|
+
|
131
|
+
.icon-viber-sl:before {
|
132
|
+
content: "\E9A1";
|
133
|
+
}
|
134
|
+
|
135
|
+
.icon-viber:before {
|
136
|
+
content: "\E9A9";
|
137
|
+
}
|
138
|
+
|
139
|
+
.icon-whatsapp-sl:before {
|
140
|
+
content: "\E9AA";
|
141
|
+
}
|
142
|
+
|
143
|
+
.icon-whatsapp:before {
|
144
|
+
content: "\E9AB";
|
145
|
+
}
|
146
|
+
|
147
|
+
.icon-telegram:before {
|
148
|
+
content: "\E9AC";
|
149
|
+
}
|
150
|
+
|
151
|
+
.icon-discord:before {
|
152
|
+
content: "\E9AD";
|
153
|
+
}
|
154
|
+
|
155
|
+
.icon-discord-sl:before {
|
156
|
+
content: "\E9AE";
|
157
|
+
}
|
158
|
+
|
159
|
+
.icon-telegram-sl:before {
|
160
|
+
content: "\E9AF";
|
161
|
+
}
|
162
|
+
|
163
|
+
.icon-stock-rack-inout:before {
|
164
|
+
content: "\E98B";
|
165
|
+
}
|
166
|
+
|
167
|
+
.icon-stock-inout:before {
|
168
|
+
content: "\E98C";
|
169
|
+
}
|
170
|
+
|
171
|
+
.icon-warehouse:before {
|
172
|
+
content: "\E98D";
|
173
|
+
}
|
174
|
+
|
175
|
+
.icon-book-list:before {
|
176
|
+
content: "\E98E";
|
177
|
+
}
|
178
|
+
|
179
|
+
.icon-card-list:before {
|
180
|
+
content: "\E98F";
|
181
|
+
}
|
182
|
+
|
183
|
+
.icon-box-setting:before {
|
184
|
+
content: "\E990";
|
185
|
+
}
|
186
|
+
|
187
|
+
.icon-catelog:before {
|
188
|
+
content: "\E991";
|
189
|
+
}
|
190
|
+
|
191
|
+
.icon-book-open:before {
|
192
|
+
content: "\E992";
|
193
|
+
}
|
194
|
+
|
195
|
+
.icon-shelf:before {
|
196
|
+
content: "\E993";
|
197
|
+
}
|
198
|
+
|
199
|
+
.icon-box-sl:before {
|
200
|
+
content: "\E994";
|
201
|
+
}
|
202
|
+
|
203
|
+
.icon-fco:before {
|
204
|
+
content: "\E988";
|
205
|
+
}
|
206
|
+
|
207
|
+
.icon-x:before {
|
208
|
+
content: "\E98A";
|
209
|
+
}
|
210
|
+
|
211
|
+
.icon-unknow:before {
|
212
|
+
content: "\E977";
|
213
|
+
}
|
214
|
+
|
215
|
+
.icon-cookie:before {
|
216
|
+
content: "\E978";
|
217
|
+
}
|
218
|
+
|
219
|
+
.icon-info-i:before {
|
220
|
+
content: "\E979";
|
221
|
+
}
|
222
|
+
|
223
|
+
.icon-ticket-two:before {
|
224
|
+
content: "\E97A";
|
225
|
+
}
|
226
|
+
|
227
|
+
.icon-bill-loop:before {
|
228
|
+
content: "\E97B";
|
229
|
+
}
|
230
|
+
|
231
|
+
.icon-loop:before {
|
232
|
+
content: "\E97C";
|
233
|
+
}
|
234
|
+
|
235
|
+
.icon-bill-line:before {
|
236
|
+
content: "\E97D";
|
237
|
+
}
|
238
|
+
|
239
|
+
.icon-bill-dis:before {
|
240
|
+
content: "\E97E";
|
241
|
+
}
|
242
|
+
|
243
|
+
.icon-bill-baht:before {
|
244
|
+
content: "\E97F";
|
245
|
+
}
|
246
|
+
|
247
|
+
.icon-toshop:before {
|
248
|
+
content: "\E980";
|
249
|
+
}
|
250
|
+
|
251
|
+
.icon-namecard:before {
|
252
|
+
content: "\E981";
|
253
|
+
}
|
254
|
+
|
255
|
+
.icon-category-sl:before {
|
256
|
+
content: "\E982";
|
257
|
+
}
|
258
|
+
|
259
|
+
.icon-notify:before {
|
260
|
+
content: "\E983";
|
261
|
+
}
|
262
|
+
|
263
|
+
.icon-live-vdo:before {
|
264
|
+
content: "\E984";
|
265
|
+
}
|
266
|
+
|
267
|
+
.icon-home-sl:before {
|
268
|
+
content: "\E985";
|
269
|
+
}
|
270
|
+
|
271
|
+
.icon-order-sl:before {
|
272
|
+
content: "\E986";
|
273
|
+
}
|
274
|
+
|
275
|
+
.icon-shop:before {
|
276
|
+
content: "\E987";
|
277
|
+
}
|
278
|
+
|
279
|
+
.icon-bankmobile:before {
|
280
|
+
content: "\E971";
|
281
|
+
}
|
282
|
+
|
283
|
+
.icon-cake:before {
|
284
|
+
content: "\E972";
|
285
|
+
}
|
286
|
+
|
287
|
+
.icon-cartlock:before {
|
288
|
+
content: "\E973";
|
289
|
+
}
|
290
|
+
|
291
|
+
.icon-correctdoc:before {
|
292
|
+
content: "\E974";
|
293
|
+
}
|
294
|
+
|
295
|
+
.icon-creditcard:before {
|
296
|
+
content: "\E975";
|
297
|
+
}
|
298
|
+
|
299
|
+
.icon-waitship:before {
|
300
|
+
content: "\E976";
|
301
|
+
}
|
302
|
+
|
303
|
+
.icon-option:before {
|
304
|
+
content: "\E970";
|
305
|
+
}
|
306
|
+
|
307
|
+
.icon-addcart:before {
|
308
|
+
content: "\E900";
|
309
|
+
}
|
310
|
+
|
311
|
+
.icon-address:before {
|
312
|
+
content: "\E901";
|
313
|
+
}
|
314
|
+
|
315
|
+
.icon-award:before {
|
316
|
+
content: "\E902";
|
317
|
+
}
|
318
|
+
|
319
|
+
.icon-bag:before {
|
320
|
+
content: "\E903";
|
321
|
+
}
|
322
|
+
|
323
|
+
.icon-bars:before {
|
324
|
+
content: "\E904";
|
325
|
+
}
|
326
|
+
|
327
|
+
.icon-blog:before {
|
328
|
+
content: "\E905";
|
329
|
+
}
|
330
|
+
|
331
|
+
.icon-book:before {
|
332
|
+
content: "\E906";
|
333
|
+
}
|
334
|
+
|
335
|
+
.icon-box:before {
|
336
|
+
content: "\E907";
|
337
|
+
}
|
338
|
+
|
339
|
+
.icon-boxsctock:before {
|
340
|
+
content: "\E908";
|
341
|
+
}
|
342
|
+
|
343
|
+
.icon-carlendar:before {
|
344
|
+
content: "\E909";
|
345
|
+
}
|
346
|
+
|
347
|
+
.icon-cart:before {
|
348
|
+
content: "\E90A";
|
349
|
+
}
|
350
|
+
|
351
|
+
.icon-category:before {
|
352
|
+
content: "\E90B";
|
353
|
+
}
|
354
|
+
|
355
|
+
.icon-cellphone:before {
|
356
|
+
content: "\E90C";
|
357
|
+
}
|
358
|
+
|
359
|
+
.icon-check-circle:before {
|
360
|
+
content: "\E90D";
|
361
|
+
}
|
362
|
+
|
363
|
+
.icon-chevron-down:before {
|
364
|
+
content: "\E90E";
|
365
|
+
}
|
366
|
+
|
367
|
+
.icon-chevron-down-circle:before {
|
368
|
+
content: "\E90F";
|
369
|
+
}
|
370
|
+
|
371
|
+
.icon-chevron-left:before {
|
372
|
+
content: "\E910";
|
373
|
+
}
|
374
|
+
|
375
|
+
.icon-chevron-left-circle:before {
|
376
|
+
content: "\E911";
|
377
|
+
}
|
378
|
+
|
379
|
+
.icon-chevron-right:before {
|
380
|
+
content: "\E912";
|
381
|
+
}
|
382
|
+
|
383
|
+
.icon-chevron-right-circle:before {
|
384
|
+
content: "\E913";
|
385
|
+
}
|
386
|
+
|
387
|
+
.icon-chevron-up:before {
|
388
|
+
content: "\E914";
|
389
|
+
}
|
390
|
+
|
391
|
+
.icon-chevron-up-circle:before {
|
392
|
+
content: "\E915";
|
393
|
+
}
|
394
|
+
|
395
|
+
.icon-clock:before {
|
396
|
+
content: "\E916";
|
397
|
+
}
|
398
|
+
|
399
|
+
.icon-comment:before {
|
400
|
+
content: "\E917";
|
401
|
+
}
|
402
|
+
|
403
|
+
.icon-copy:before {
|
404
|
+
content: "\E918";
|
405
|
+
}
|
406
|
+
|
407
|
+
.icon-da:before {
|
408
|
+
content: "\E919";
|
409
|
+
}
|
410
|
+
|
411
|
+
.icon-deli-truck:before {
|
412
|
+
content: "\E91A";
|
413
|
+
}
|
414
|
+
|
415
|
+
.icon-delivering:before {
|
416
|
+
content: "\E91B";
|
417
|
+
}
|
418
|
+
|
419
|
+
.icon-doc:before {
|
420
|
+
content: "\E91C";
|
421
|
+
}
|
422
|
+
|
423
|
+
.icon-door:before {
|
424
|
+
content: "\E91D";
|
425
|
+
}
|
426
|
+
|
427
|
+
.icon-exclamation:before {
|
428
|
+
content: "\E91E";
|
429
|
+
}
|
430
|
+
|
431
|
+
.icon-facebook:before {
|
432
|
+
content: "\E91F";
|
433
|
+
}
|
434
|
+
|
435
|
+
.icon-facebook-sl:before {
|
436
|
+
content: "\E920";
|
437
|
+
}
|
438
|
+
|
439
|
+
.icon-filter:before {
|
440
|
+
content: "\E921";
|
441
|
+
}
|
442
|
+
|
443
|
+
.icon-filter-1:before {
|
444
|
+
content: "\E922";
|
445
|
+
}
|
446
|
+
|
447
|
+
.icon-filter-2:before {
|
448
|
+
content: "\E923";
|
449
|
+
}
|
450
|
+
|
451
|
+
.icon-follow:before {
|
452
|
+
content: "\E924";
|
453
|
+
}
|
454
|
+
|
455
|
+
.icon-frown:before {
|
456
|
+
content: "\E925";
|
457
|
+
}
|
458
|
+
|
459
|
+
.icon-gift:before {
|
460
|
+
content: "\E926";
|
461
|
+
}
|
462
|
+
|
463
|
+
.icon-gp:before {
|
464
|
+
content: "\E927";
|
465
|
+
}
|
466
|
+
|
467
|
+
.icon-heart:before {
|
468
|
+
content: "\E928";
|
469
|
+
}
|
470
|
+
|
471
|
+
.icon-home:before {
|
472
|
+
content: "\E929";
|
473
|
+
}
|
474
|
+
|
475
|
+
.icon-instagram:before {
|
476
|
+
content: "\E92A";
|
477
|
+
}
|
478
|
+
|
479
|
+
.icon-info:before {
|
480
|
+
content: "\E92B";
|
481
|
+
}
|
482
|
+
|
483
|
+
.icon-language:before {
|
484
|
+
content: "\E92C";
|
485
|
+
}
|
486
|
+
|
487
|
+
.icon-line:before {
|
488
|
+
content: "\E92D";
|
489
|
+
}
|
490
|
+
|
491
|
+
.icon-line-ad:before {
|
492
|
+
content: "\E92E";
|
493
|
+
}
|
494
|
+
|
495
|
+
.icon-line-ad-sl:before {
|
496
|
+
content: "\E92F";
|
497
|
+
}
|
498
|
+
|
499
|
+
.icon-line-sl:before {
|
500
|
+
content: "\E930";
|
501
|
+
}
|
502
|
+
|
503
|
+
.icon-link:before {
|
504
|
+
content: "\E931";
|
505
|
+
}
|
506
|
+
|
507
|
+
.icon-load:before {
|
508
|
+
content: "\E932";
|
509
|
+
}
|
510
|
+
|
511
|
+
.icon-lock:before {
|
512
|
+
content: "\E933";
|
513
|
+
}
|
514
|
+
|
515
|
+
.icon-lock-edit:before {
|
516
|
+
content: "\E934";
|
517
|
+
}
|
518
|
+
|
519
|
+
.icon-mail:before {
|
520
|
+
content: "\E935";
|
521
|
+
}
|
522
|
+
|
523
|
+
.icon-map:before {
|
524
|
+
content: "\E936";
|
525
|
+
}
|
526
|
+
|
527
|
+
.icon-mark-1:before {
|
528
|
+
content: "\E937";
|
529
|
+
}
|
530
|
+
|
531
|
+
.icon-mark-2:before {
|
532
|
+
content: "\E938";
|
533
|
+
}
|
534
|
+
|
535
|
+
.icon-mark-3:before {
|
536
|
+
content: "\E939";
|
537
|
+
}
|
538
|
+
|
539
|
+
.icon-mark-4:before {
|
540
|
+
content: "\E93A";
|
541
|
+
}
|
542
|
+
|
543
|
+
.icon-mark-5:before {
|
544
|
+
content: "\E93B";
|
545
|
+
}
|
546
|
+
|
547
|
+
.icon-meh:before {
|
548
|
+
content: "\E93C";
|
549
|
+
}
|
550
|
+
|
551
|
+
.icon-messenger-outline:before {
|
552
|
+
content: "\E93D";
|
553
|
+
}
|
554
|
+
|
555
|
+
.icon-messenger-sl:before {
|
556
|
+
content: "\E93E";
|
557
|
+
}
|
558
|
+
|
559
|
+
.icon-minus:before {
|
560
|
+
content: "\E93F";
|
561
|
+
}
|
562
|
+
|
563
|
+
.icon-money:before {
|
564
|
+
content: "\E940";
|
565
|
+
}
|
566
|
+
|
567
|
+
.icon-order:before {
|
568
|
+
content: "\E941";
|
569
|
+
}
|
570
|
+
|
571
|
+
.icon-order-currect:before {
|
572
|
+
content: "\E942";
|
573
|
+
}
|
574
|
+
|
575
|
+
.icon-pencil:before {
|
576
|
+
content: "\E943";
|
577
|
+
}
|
578
|
+
|
579
|
+
.icon-pencil-write:before {
|
580
|
+
content: "\E944";
|
581
|
+
}
|
582
|
+
|
583
|
+
.icon-phone:before {
|
584
|
+
content: "\E945";
|
585
|
+
}
|
586
|
+
|
587
|
+
.icon-phone-call:before {
|
588
|
+
content: "\E946";
|
589
|
+
}
|
590
|
+
|
591
|
+
.icon-pin-map-check:before {
|
592
|
+
content: "\E947";
|
593
|
+
}
|
594
|
+
|
595
|
+
.icon-pin-map-question:before {
|
596
|
+
content: "\E948";
|
597
|
+
}
|
598
|
+
|
599
|
+
.icon-pinterest:before {
|
600
|
+
content: "\E949";
|
601
|
+
}
|
602
|
+
|
603
|
+
.icon-plus:before {
|
604
|
+
content: "\E94A";
|
605
|
+
}
|
606
|
+
|
607
|
+
.icon-plus-1:before {
|
608
|
+
content: "\E94B";
|
609
|
+
}
|
610
|
+
|
611
|
+
.icon-printslip:before {
|
612
|
+
content: "\E94C";
|
613
|
+
}
|
614
|
+
|
615
|
+
.icon-question:before {
|
616
|
+
content: "\E94D";
|
617
|
+
}
|
618
|
+
|
619
|
+
.icon-sale:before {
|
620
|
+
content: "\E94E";
|
621
|
+
}
|
622
|
+
|
623
|
+
.icon-scan:before {
|
624
|
+
content: "\E94F";
|
625
|
+
}
|
626
|
+
|
627
|
+
.icon-search:before {
|
628
|
+
content: "\E950";
|
629
|
+
}
|
630
|
+
|
631
|
+
.icon-setting:before {
|
632
|
+
content: "\E951";
|
633
|
+
}
|
634
|
+
|
635
|
+
.icon-share:before {
|
636
|
+
content: "\E952";
|
637
|
+
}
|
638
|
+
|
639
|
+
.icon-share-1:before {
|
640
|
+
content: "\E953";
|
641
|
+
}
|
642
|
+
|
643
|
+
.icon-share-solid:before {
|
644
|
+
content: "\E954";
|
645
|
+
}
|
646
|
+
|
647
|
+
.icon-shield-money:before {
|
648
|
+
content: "\E955";
|
649
|
+
}
|
650
|
+
|
651
|
+
.icon-shield-user:before {
|
652
|
+
content: "\E956";
|
653
|
+
}
|
654
|
+
|
655
|
+
.icon-slip:before {
|
656
|
+
content: "\E957";
|
657
|
+
}
|
658
|
+
|
659
|
+
.icon-slip-2:before {
|
660
|
+
content: "\E958";
|
661
|
+
}
|
662
|
+
|
663
|
+
.icon-smile:before {
|
664
|
+
content: "\E959";
|
665
|
+
}
|
666
|
+
|
667
|
+
.icon-star:before {
|
668
|
+
content: "\E95A";
|
669
|
+
}
|
670
|
+
|
671
|
+
.icon-star-circle:before {
|
672
|
+
content: "\E95B";
|
673
|
+
}
|
674
|
+
|
675
|
+
.icon-starplus:before {
|
676
|
+
content: "\E95C";
|
677
|
+
}
|
678
|
+
|
679
|
+
.icon-tag:before {
|
680
|
+
content: "\E95D";
|
681
|
+
}
|
682
|
+
|
683
|
+
.icon-ticket:before {
|
684
|
+
content: "\E95E";
|
685
|
+
}
|
686
|
+
|
687
|
+
.icon-tiktok:before {
|
688
|
+
content: "\E95F";
|
689
|
+
}
|
690
|
+
|
691
|
+
.icon-times-circle:before {
|
692
|
+
content: "\E960";
|
693
|
+
}
|
694
|
+
|
695
|
+
.icon-trash:before {
|
696
|
+
content: "\E961";
|
697
|
+
}
|
698
|
+
|
699
|
+
.icon-twitter-sl:before {
|
700
|
+
content: "\E962";
|
701
|
+
}
|
702
|
+
|
703
|
+
.icon-twitter:before {
|
704
|
+
content: "\E963";
|
705
|
+
}
|
706
|
+
|
707
|
+
.icon-upload:before {
|
708
|
+
content: "\E964";
|
709
|
+
}
|
710
|
+
|
711
|
+
.icon-up-slip:before {
|
712
|
+
content: "\E965";
|
713
|
+
}
|
714
|
+
|
715
|
+
.icon-user:before {
|
716
|
+
content: "\E966";
|
717
|
+
}
|
718
|
+
|
719
|
+
.icon-user-book:before {
|
720
|
+
content: "\E967";
|
721
|
+
}
|
722
|
+
|
723
|
+
.icon-user-strore:before {
|
724
|
+
content: "\E968";
|
725
|
+
}
|
726
|
+
|
727
|
+
.icon-wait-check:before {
|
728
|
+
content: "\E969";
|
729
|
+
}
|
730
|
+
|
731
|
+
.icon-wait-delivery:before {
|
732
|
+
content: "\E96A";
|
733
|
+
}
|
734
|
+
|
735
|
+
.icon-wait-pay:before {
|
736
|
+
content: "\E96B";
|
737
|
+
}
|
738
|
+
|
739
|
+
.icon-wallet:before {
|
740
|
+
content: "\E96C";
|
741
|
+
}
|
742
|
+
|
743
|
+
.icon-web:before {
|
744
|
+
content: "\E96D";
|
745
|
+
}
|
746
|
+
|
747
|
+
.icon-write:before {
|
748
|
+
content: "\E96E";
|
749
|
+
}
|
750
|
+
|
751
|
+
.icon-youtube:before {
|
752
|
+
content: "\E96F";
|
753
|
+
}
|