siam-ui-utils 2.1.10 → 2.1.11
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.
- package/eslint.config.js +36 -23
- package/index.d.ts +73 -14
- package/index.html +3 -3
- package/package.json +13 -30
- package/src/App.css +47 -0
- package/src/App.jsx +82 -39
- package/src/CustomSelectInput.jsx +1 -1
- package/src/IntlMessages.jsx +7 -6
- package/src/archivos-adjuntos/dropzone-uploader-dni-digital/index.jsx +152 -0
- package/src/{dropzone-uploader → archivos-adjuntos}/index.jsx +57 -61
- package/src/archivos-adjuntos/simple-line-icons.css +778 -0
- package/src/assets/css/sass/_gogo.style.scss +9012 -0
- package/src/assets/css/sass/_mixins.scss +118 -0
- package/src/assets/css/sass/_plugins.scss +1 -0
- package/src/assets/css/sass/ampf_style.scss +182 -0
- package/src/assets/css/sass/main.scss +11 -0
- package/src/assets/css/sass/plugins/react-table.scss +311 -0
- package/src/assets/css/sass/themes/gogo.light.redruby.scss +40 -0
- package/src/bridges/index.js +1 -0
- package/src/bridges/{index.jsx → with-router-bridge.jsx} +2 -0
- package/src/constants.js +0 -9
- package/src/iconos/icon-button-svg.jsx +2 -1
- package/src/iconos/index.js +2 -3
- package/src/iconos/styled-icon.jsx +1 -1
- package/src/index.css +74 -0
- package/src/index.js +3 -2
- package/src/main.jsx +6 -6
- package/src/tomar-foto/index.jsx +66 -63
- package/src/video-call-room/index.jsx +10 -0
- package/tsconfig.json +24 -25
- package/vite.config.ts +19 -10
- package/.eslintrc +0 -73
- package/.eslintrc.mjs +0 -53
- package/.prettierrc.js +0 -5
- package/.storybook/main.ts +0 -17
- package/.storybook/preview.ts +0 -16
- package/src/stories/DropzoneUploader.stories.tsx +0 -34
- package/src/stories/TomarFoto.stories.tsx +0 -29
- /package/src/{dropzone-uploader → archivos-adjuntos}/dropzone-uploader.css +0 -0
- /package/{.storybook/css → src/assets/css/vendor}/bootstrap.min.css +0 -0
- /package/{.storybook/css → src/assets/css/vendor}/bootstrap.rtl.only.min.css +0 -0
- /package/src/{constants-svg.js → iconos/constants-svg.js} +0 -0
|
@@ -0,0 +1,778 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'simple-line-icons';
|
|
3
|
+
src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0');
|
|
4
|
+
src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg');
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
/*
|
|
9
|
+
Use the following CSS code if you want to have a class per icon.
|
|
10
|
+
Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
|
|
11
|
+
*/
|
|
12
|
+
.simple-icon-user,
|
|
13
|
+
.simple-icon-people,
|
|
14
|
+
.simple-icon-user-female,
|
|
15
|
+
.simple-icon-user-follow,
|
|
16
|
+
.simple-icon-user-following,
|
|
17
|
+
.simple-icon-user-unfollow,
|
|
18
|
+
.simple-icon-login,
|
|
19
|
+
.simple-icon-logout,
|
|
20
|
+
.simple-icon-emotsmile,
|
|
21
|
+
.simple-icon-phone,
|
|
22
|
+
.simple-icon-call-end,
|
|
23
|
+
.simple-icon-call-in,
|
|
24
|
+
.simple-icon-call-out,
|
|
25
|
+
.simple-icon-map,
|
|
26
|
+
.simple-icon-location-pin,
|
|
27
|
+
.simple-icon-direction,
|
|
28
|
+
.simple-icon-directions,
|
|
29
|
+
.simple-icon-compass,
|
|
30
|
+
.simple-icon-layers,
|
|
31
|
+
.simple-icon-menu,
|
|
32
|
+
.simple-icon-list,
|
|
33
|
+
.simple-icon-options-vertical,
|
|
34
|
+
.simple-icon-options,
|
|
35
|
+
.simple-icon-arrow-down,
|
|
36
|
+
.simple-icon-arrow-left,
|
|
37
|
+
.simple-icon-arrow-right,
|
|
38
|
+
.simple-icon-arrow-up,
|
|
39
|
+
.simple-icon-arrow-up-circle,
|
|
40
|
+
.simple-icon-arrow-left-circle,
|
|
41
|
+
.simple-icon-arrow-right-circle,
|
|
42
|
+
.simple-icon-arrow-down-circle,
|
|
43
|
+
.simple-icon-check,
|
|
44
|
+
.simple-icon-clock,
|
|
45
|
+
.simple-icon-plus,
|
|
46
|
+
.simple-icon-minus,
|
|
47
|
+
.simple-icon-close,
|
|
48
|
+
.simple-icon-event,
|
|
49
|
+
.simple-icon-exclamation,
|
|
50
|
+
.simple-icon-organization,
|
|
51
|
+
.simple-icon-trophy,
|
|
52
|
+
.simple-icon-screen-smartphone,
|
|
53
|
+
.simple-icon-screen-desktop,
|
|
54
|
+
.simple-icon-plane,
|
|
55
|
+
.simple-icon-notebook,
|
|
56
|
+
.simple-icon-mustache,
|
|
57
|
+
.simple-icon-mouse,
|
|
58
|
+
.simple-icon-magnet,
|
|
59
|
+
.simple-icon-energy,
|
|
60
|
+
.simple-icon-disc,
|
|
61
|
+
.simple-icon-cursor,
|
|
62
|
+
.simple-icon-cursor-move,
|
|
63
|
+
.simple-icon-crop,
|
|
64
|
+
.simple-icon-chemistry,
|
|
65
|
+
.simple-icon-speedometer,
|
|
66
|
+
.simple-icon-shield,
|
|
67
|
+
.simple-icon-screen-tablet,
|
|
68
|
+
.simple-icon-magic-wand,
|
|
69
|
+
.simple-icon-hourglass,
|
|
70
|
+
.simple-icon-graduation,
|
|
71
|
+
.simple-icon-ghost,
|
|
72
|
+
.simple-icon-game-controller,
|
|
73
|
+
.simple-icon-fire,
|
|
74
|
+
.simple-icon-eyeglass,
|
|
75
|
+
.simple-icon-envelope-open,
|
|
76
|
+
.simple-icon-envelope-letter,
|
|
77
|
+
.simple-icon-bell,
|
|
78
|
+
.simple-icon-badge,
|
|
79
|
+
.simple-icon-anchor,
|
|
80
|
+
.simple-icon-wallet,
|
|
81
|
+
.simple-icon-vector,
|
|
82
|
+
.simple-icon-speech,
|
|
83
|
+
.simple-icon-puzzle,
|
|
84
|
+
.simple-icon-printer,
|
|
85
|
+
.simple-icon-present,
|
|
86
|
+
.simple-icon-playlist,
|
|
87
|
+
.simple-icon-pin,
|
|
88
|
+
.simple-icon-picture,
|
|
89
|
+
.simple-icon-handbag,
|
|
90
|
+
.simple-icon-globe-alt,
|
|
91
|
+
.simple-icon-globe,
|
|
92
|
+
.simple-icon-folder-alt,
|
|
93
|
+
.simple-icon-folder,
|
|
94
|
+
.simple-icon-film,
|
|
95
|
+
.simple-icon-feed,
|
|
96
|
+
.simple-icon-drop,
|
|
97
|
+
.simple-icon-drawer,
|
|
98
|
+
.simple-icon-docs,
|
|
99
|
+
.simple-icon-doc,
|
|
100
|
+
.simple-icon-diamond,
|
|
101
|
+
.simple-icon-cup,
|
|
102
|
+
.simple-icon-calculator,
|
|
103
|
+
.simple-icon-bubbles,
|
|
104
|
+
.simple-icon-briefcase,
|
|
105
|
+
.simple-icon-book-open,
|
|
106
|
+
.simple-icon-basket-loaded,
|
|
107
|
+
.simple-icon-basket,
|
|
108
|
+
.simple-icon-bag,
|
|
109
|
+
.simple-icon-action-undo,
|
|
110
|
+
.simple-icon-action-redo,
|
|
111
|
+
.simple-icon-wrench,
|
|
112
|
+
.simple-icon-umbrella,
|
|
113
|
+
.simple-icon-trash,
|
|
114
|
+
.simple-icon-tag,
|
|
115
|
+
.simple-icon-support,
|
|
116
|
+
.simple-icon-frame,
|
|
117
|
+
.simple-icon-size-fullscreen,
|
|
118
|
+
.simple-icon-size-actual,
|
|
119
|
+
.simple-icon-shuffle,
|
|
120
|
+
.simple-icon-share-alt,
|
|
121
|
+
.simple-icon-share,
|
|
122
|
+
.simple-icon-rocket,
|
|
123
|
+
.simple-icon-question,
|
|
124
|
+
.simple-icon-pie-chart,
|
|
125
|
+
.simple-icon-pencil,
|
|
126
|
+
.simple-icon-note,
|
|
127
|
+
.simple-icon-loop,
|
|
128
|
+
.simple-icon-home,
|
|
129
|
+
.simple-icon-grid,
|
|
130
|
+
.simple-icon-graph,
|
|
131
|
+
.simple-icon-microphone,
|
|
132
|
+
.simple-icon-music-tone-alt,
|
|
133
|
+
.simple-icon-music-tone,
|
|
134
|
+
.simple-icon-earphones-alt,
|
|
135
|
+
.simple-icon-earphones,
|
|
136
|
+
.simple-icon-equalizer,
|
|
137
|
+
.simple-icon-like,
|
|
138
|
+
.simple-icon-dislike,
|
|
139
|
+
.simple-icon-control-start,
|
|
140
|
+
.simple-icon-control-rewind,
|
|
141
|
+
.simple-icon-control-play,
|
|
142
|
+
.simple-icon-control-pause,
|
|
143
|
+
.simple-icon-control-forward,
|
|
144
|
+
.simple-icon-control-end,
|
|
145
|
+
.simple-icon-volume-1,
|
|
146
|
+
.simple-icon-volume-2,
|
|
147
|
+
.simple-icon-volume-off,
|
|
148
|
+
.simple-icon-calendar,
|
|
149
|
+
.simple-icon-bulb,
|
|
150
|
+
.simple-icon-chart,
|
|
151
|
+
.simple-icon-ban,
|
|
152
|
+
.simple-icon-bubble,
|
|
153
|
+
.simple-icon-camrecorder,
|
|
154
|
+
.simple-icon-camera,
|
|
155
|
+
.simple-icon-cloud-download,
|
|
156
|
+
.simple-icon-cloud-upload,
|
|
157
|
+
.simple-icon-envelope,
|
|
158
|
+
.simple-icon-eye,
|
|
159
|
+
.simple-icon-flag,
|
|
160
|
+
.simple-icon-heart,
|
|
161
|
+
.simple-icon-info,
|
|
162
|
+
.simple-icon-key,
|
|
163
|
+
.simple-icon-link,
|
|
164
|
+
.simple-icon-lock,
|
|
165
|
+
.simple-icon-lock-open,
|
|
166
|
+
.simple-icon-magnifier,
|
|
167
|
+
.simple-icon-magnifier-add,
|
|
168
|
+
.simple-icon-magnifier-remove,
|
|
169
|
+
.simple-icon-paper-clip,
|
|
170
|
+
.simple-icon-paper-plane,
|
|
171
|
+
.simple-icon-power,
|
|
172
|
+
.simple-icon-refresh,
|
|
173
|
+
.simple-icon-reload,
|
|
174
|
+
.simple-icon-settings,
|
|
175
|
+
.simple-icon-star,
|
|
176
|
+
.simple-icon-symbol-female,
|
|
177
|
+
.simple-icon-symbol-male,
|
|
178
|
+
.simple-icon-target,
|
|
179
|
+
.simple-icon-credit-card,
|
|
180
|
+
.simple-icon-paypal,
|
|
181
|
+
.simple-icon-social-tumblr,
|
|
182
|
+
.simple-icon-social-twitter,
|
|
183
|
+
.simple-icon-social-facebook,
|
|
184
|
+
.simple-icon-social-instagram,
|
|
185
|
+
.simple-icon-social-linkedin,
|
|
186
|
+
.simple-icon-social-pinterest,
|
|
187
|
+
.simple-icon-social-github,
|
|
188
|
+
.simple-icon-social-google,
|
|
189
|
+
.simple-icon-social-reddit,
|
|
190
|
+
.simple-icon-social-skype,
|
|
191
|
+
.simple-icon-social-dribbble,
|
|
192
|
+
.simple-icon-social-behance,
|
|
193
|
+
.simple-icon-social-foursqare,
|
|
194
|
+
.simple-icon-social-soundcloud,
|
|
195
|
+
.simple-icon-social-spotify,
|
|
196
|
+
.simple-icon-social-stumbleupon,
|
|
197
|
+
.simple-icon-social-youtube,
|
|
198
|
+
.simple-icon-social-dropbox,
|
|
199
|
+
.simple-icon-social-vkontakte,
|
|
200
|
+
.simple-icon-social-steam {
|
|
201
|
+
font-family: 'simple-line-icons';
|
|
202
|
+
speak: none;
|
|
203
|
+
font-style: normal;
|
|
204
|
+
font-weight: normal;
|
|
205
|
+
font-variant: normal;
|
|
206
|
+
text-transform: none;
|
|
207
|
+
line-height: 1;
|
|
208
|
+
/* Better Font Rendering =========== */
|
|
209
|
+
-webkit-font-smoothing: antialiased;
|
|
210
|
+
-moz-osx-font-smoothing: grayscale;
|
|
211
|
+
}
|
|
212
|
+
.simple-icon-user:before {
|
|
213
|
+
content: "\e005";
|
|
214
|
+
}
|
|
215
|
+
.simple-icon-people:before {
|
|
216
|
+
content: "\e001";
|
|
217
|
+
}
|
|
218
|
+
.simple-icon-user-female:before {
|
|
219
|
+
content: "\e000";
|
|
220
|
+
}
|
|
221
|
+
.simple-icon-user-follow:before {
|
|
222
|
+
content: "\e002";
|
|
223
|
+
}
|
|
224
|
+
.simple-icon-user-following:before {
|
|
225
|
+
content: "\e003";
|
|
226
|
+
}
|
|
227
|
+
.simple-icon-user-unfollow:before {
|
|
228
|
+
content: "\e004";
|
|
229
|
+
}
|
|
230
|
+
.simple-icon-login:before {
|
|
231
|
+
content: "\e066";
|
|
232
|
+
}
|
|
233
|
+
.simple-icon-logout:before {
|
|
234
|
+
content: "\e065";
|
|
235
|
+
}
|
|
236
|
+
.simple-icon-emotsmile:before {
|
|
237
|
+
content: "\e021";
|
|
238
|
+
}
|
|
239
|
+
.simple-icon-phone:before {
|
|
240
|
+
content: "\e600";
|
|
241
|
+
}
|
|
242
|
+
.simple-icon-call-end:before {
|
|
243
|
+
content: "\e048";
|
|
244
|
+
}
|
|
245
|
+
.simple-icon-call-in:before {
|
|
246
|
+
content: "\e047";
|
|
247
|
+
}
|
|
248
|
+
.simple-icon-call-out:before {
|
|
249
|
+
content: "\e046";
|
|
250
|
+
}
|
|
251
|
+
.simple-icon-map:before {
|
|
252
|
+
content: "\e033";
|
|
253
|
+
}
|
|
254
|
+
.simple-icon-location-pin:before {
|
|
255
|
+
content: "\e096";
|
|
256
|
+
}
|
|
257
|
+
.simple-icon-direction:before {
|
|
258
|
+
content: "\e042";
|
|
259
|
+
}
|
|
260
|
+
.simple-icon-directions:before {
|
|
261
|
+
content: "\e041";
|
|
262
|
+
}
|
|
263
|
+
.simple-icon-compass:before {
|
|
264
|
+
content: "\e045";
|
|
265
|
+
}
|
|
266
|
+
.simple-icon-layers:before {
|
|
267
|
+
content: "\e034";
|
|
268
|
+
}
|
|
269
|
+
.simple-icon-menu:before {
|
|
270
|
+
content: "\e601";
|
|
271
|
+
}
|
|
272
|
+
.simple-icon-list:before {
|
|
273
|
+
content: "\e067";
|
|
274
|
+
}
|
|
275
|
+
.simple-icon-options-vertical:before {
|
|
276
|
+
content: "\e602";
|
|
277
|
+
}
|
|
278
|
+
.simple-icon-options:before {
|
|
279
|
+
content: "\e603";
|
|
280
|
+
}
|
|
281
|
+
.simple-icon-arrow-down:before {
|
|
282
|
+
content: "\e604";
|
|
283
|
+
}
|
|
284
|
+
.simple-icon-arrow-left:before {
|
|
285
|
+
content: "\e605";
|
|
286
|
+
}
|
|
287
|
+
.simple-icon-arrow-right:before {
|
|
288
|
+
content: "\e606";
|
|
289
|
+
}
|
|
290
|
+
.simple-icon-arrow-up:before {
|
|
291
|
+
content: "\e607";
|
|
292
|
+
}
|
|
293
|
+
.simple-icon-arrow-up-circle:before {
|
|
294
|
+
content: "\e078";
|
|
295
|
+
}
|
|
296
|
+
.simple-icon-arrow-left-circle:before {
|
|
297
|
+
content: "\e07a";
|
|
298
|
+
}
|
|
299
|
+
.simple-icon-arrow-right-circle:before {
|
|
300
|
+
content: "\e079";
|
|
301
|
+
}
|
|
302
|
+
.simple-icon-arrow-down-circle:before {
|
|
303
|
+
content: "\e07b";
|
|
304
|
+
}
|
|
305
|
+
.simple-icon-check:before {
|
|
306
|
+
content: "\e080";
|
|
307
|
+
}
|
|
308
|
+
.simple-icon-clock:before {
|
|
309
|
+
content: "\e081";
|
|
310
|
+
}
|
|
311
|
+
.simple-icon-plus:before {
|
|
312
|
+
content: "\e095";
|
|
313
|
+
}
|
|
314
|
+
.simple-icon-minus:before {
|
|
315
|
+
content: "\e615";
|
|
316
|
+
}
|
|
317
|
+
.simple-icon-close:before {
|
|
318
|
+
content: "\e082";
|
|
319
|
+
}
|
|
320
|
+
.simple-icon-event:before {
|
|
321
|
+
content: "\e619";
|
|
322
|
+
}
|
|
323
|
+
.simple-icon-exclamation:before {
|
|
324
|
+
content: "\e617";
|
|
325
|
+
}
|
|
326
|
+
.simple-icon-organization:before {
|
|
327
|
+
content: "\e616";
|
|
328
|
+
}
|
|
329
|
+
.simple-icon-trophy:before {
|
|
330
|
+
content: "\e006";
|
|
331
|
+
}
|
|
332
|
+
.simple-icon-screen-smartphone:before {
|
|
333
|
+
content: "\e010";
|
|
334
|
+
}
|
|
335
|
+
.simple-icon-screen-desktop:before {
|
|
336
|
+
content: "\e011";
|
|
337
|
+
}
|
|
338
|
+
.simple-icon-plane:before {
|
|
339
|
+
content: "\e012";
|
|
340
|
+
}
|
|
341
|
+
.simple-icon-notebook:before {
|
|
342
|
+
content: "\e013";
|
|
343
|
+
}
|
|
344
|
+
.simple-icon-mustache:before {
|
|
345
|
+
content: "\e014";
|
|
346
|
+
}
|
|
347
|
+
.simple-icon-mouse:before {
|
|
348
|
+
content: "\e015";
|
|
349
|
+
}
|
|
350
|
+
.simple-icon-magnet:before {
|
|
351
|
+
content: "\e016";
|
|
352
|
+
}
|
|
353
|
+
.simple-icon-energy:before {
|
|
354
|
+
content: "\e020";
|
|
355
|
+
}
|
|
356
|
+
.simple-icon-disc:before {
|
|
357
|
+
content: "\e022";
|
|
358
|
+
}
|
|
359
|
+
.simple-icon-cursor:before {
|
|
360
|
+
content: "\e06e";
|
|
361
|
+
}
|
|
362
|
+
.simple-icon-cursor-move:before {
|
|
363
|
+
content: "\e023";
|
|
364
|
+
}
|
|
365
|
+
.simple-icon-crop:before {
|
|
366
|
+
content: "\e024";
|
|
367
|
+
}
|
|
368
|
+
.simple-icon-chemistry:before {
|
|
369
|
+
content: "\e026";
|
|
370
|
+
}
|
|
371
|
+
.simple-icon-speedometer:before {
|
|
372
|
+
content: "\e007";
|
|
373
|
+
}
|
|
374
|
+
.simple-icon-shield:before {
|
|
375
|
+
content: "\e00e";
|
|
376
|
+
}
|
|
377
|
+
.simple-icon-screen-tablet:before {
|
|
378
|
+
content: "\e00f";
|
|
379
|
+
}
|
|
380
|
+
.simple-icon-magic-wand:before {
|
|
381
|
+
content: "\e017";
|
|
382
|
+
}
|
|
383
|
+
.simple-icon-hourglass:before {
|
|
384
|
+
content: "\e018";
|
|
385
|
+
}
|
|
386
|
+
.simple-icon-graduation:before {
|
|
387
|
+
content: "\e019";
|
|
388
|
+
}
|
|
389
|
+
.simple-icon-ghost:before {
|
|
390
|
+
content: "\e01a";
|
|
391
|
+
}
|
|
392
|
+
.simple-icon-game-controller:before {
|
|
393
|
+
content: "\e01b";
|
|
394
|
+
}
|
|
395
|
+
.simple-icon-fire:before {
|
|
396
|
+
content: "\e01c";
|
|
397
|
+
}
|
|
398
|
+
.simple-icon-eyeglass:before {
|
|
399
|
+
content: "\e01d";
|
|
400
|
+
}
|
|
401
|
+
.simple-icon-envelope-open:before {
|
|
402
|
+
content: "\e01e";
|
|
403
|
+
}
|
|
404
|
+
.simple-icon-envelope-letter:before {
|
|
405
|
+
content: "\e01f";
|
|
406
|
+
}
|
|
407
|
+
.simple-icon-bell:before {
|
|
408
|
+
content: "\e027";
|
|
409
|
+
}
|
|
410
|
+
.simple-icon-badge:before {
|
|
411
|
+
content: "\e028";
|
|
412
|
+
}
|
|
413
|
+
.simple-icon-anchor:before {
|
|
414
|
+
content: "\e029";
|
|
415
|
+
}
|
|
416
|
+
.simple-icon-wallet:before {
|
|
417
|
+
content: "\e02a";
|
|
418
|
+
}
|
|
419
|
+
.simple-icon-vector:before {
|
|
420
|
+
content: "\e02b";
|
|
421
|
+
}
|
|
422
|
+
.simple-icon-speech:before {
|
|
423
|
+
content: "\e02c";
|
|
424
|
+
}
|
|
425
|
+
.simple-icon-puzzle:before {
|
|
426
|
+
content: "\e02d";
|
|
427
|
+
}
|
|
428
|
+
.simple-icon-printer:before {
|
|
429
|
+
content: "\e02e";
|
|
430
|
+
}
|
|
431
|
+
.simple-icon-present:before {
|
|
432
|
+
content: "\e02f";
|
|
433
|
+
}
|
|
434
|
+
.simple-icon-playlist:before {
|
|
435
|
+
content: "\e030";
|
|
436
|
+
}
|
|
437
|
+
.simple-icon-pin:before {
|
|
438
|
+
content: "\e031";
|
|
439
|
+
}
|
|
440
|
+
.simple-icon-picture:before {
|
|
441
|
+
content: "\e032";
|
|
442
|
+
}
|
|
443
|
+
.simple-icon-handbag:before {
|
|
444
|
+
content: "\e035";
|
|
445
|
+
}
|
|
446
|
+
.simple-icon-globe-alt:before {
|
|
447
|
+
content: "\e036";
|
|
448
|
+
}
|
|
449
|
+
.simple-icon-globe:before {
|
|
450
|
+
content: "\e037";
|
|
451
|
+
}
|
|
452
|
+
.simple-icon-folder-alt:before {
|
|
453
|
+
content: "\e039";
|
|
454
|
+
}
|
|
455
|
+
.simple-icon-folder:before {
|
|
456
|
+
content: "\e089";
|
|
457
|
+
}
|
|
458
|
+
.simple-icon-film:before {
|
|
459
|
+
content: "\e03a";
|
|
460
|
+
}
|
|
461
|
+
.simple-icon-feed:before {
|
|
462
|
+
content: "\e03b";
|
|
463
|
+
}
|
|
464
|
+
.simple-icon-drop:before {
|
|
465
|
+
content: "\e03e";
|
|
466
|
+
}
|
|
467
|
+
.simple-icon-drawer:before {
|
|
468
|
+
content: "\e03f";
|
|
469
|
+
}
|
|
470
|
+
.simple-icon-docs:before {
|
|
471
|
+
content: "\e040";
|
|
472
|
+
}
|
|
473
|
+
.simple-icon-doc:before {
|
|
474
|
+
content: "\e085";
|
|
475
|
+
}
|
|
476
|
+
.simple-icon-diamond:before {
|
|
477
|
+
content: "\e043";
|
|
478
|
+
}
|
|
479
|
+
.simple-icon-cup:before {
|
|
480
|
+
content: "\e044";
|
|
481
|
+
}
|
|
482
|
+
.simple-icon-calculator:before {
|
|
483
|
+
content: "\e049";
|
|
484
|
+
}
|
|
485
|
+
.simple-icon-bubbles:before {
|
|
486
|
+
content: "\e04a";
|
|
487
|
+
}
|
|
488
|
+
.simple-icon-briefcase:before {
|
|
489
|
+
content: "\e04b";
|
|
490
|
+
}
|
|
491
|
+
.simple-icon-book-open:before {
|
|
492
|
+
content: "\e04c";
|
|
493
|
+
}
|
|
494
|
+
.simple-icon-basket-loaded:before {
|
|
495
|
+
content: "\e04d";
|
|
496
|
+
}
|
|
497
|
+
.simple-icon-basket:before {
|
|
498
|
+
content: "\e04e";
|
|
499
|
+
}
|
|
500
|
+
.simple-icon-bag:before {
|
|
501
|
+
content: "\e04f";
|
|
502
|
+
}
|
|
503
|
+
.simple-icon-action-undo:before {
|
|
504
|
+
content: "\e050";
|
|
505
|
+
}
|
|
506
|
+
.simple-icon-action-redo:before {
|
|
507
|
+
content: "\e051";
|
|
508
|
+
}
|
|
509
|
+
.simple-icon-wrench:before {
|
|
510
|
+
content: "\e052";
|
|
511
|
+
}
|
|
512
|
+
.simple-icon-umbrella:before {
|
|
513
|
+
content: "\e053";
|
|
514
|
+
}
|
|
515
|
+
.simple-icon-trash:before {
|
|
516
|
+
content: "\e054";
|
|
517
|
+
}
|
|
518
|
+
.simple-icon-tag:before {
|
|
519
|
+
content: "\e055";
|
|
520
|
+
}
|
|
521
|
+
.simple-icon-support:before {
|
|
522
|
+
content: "\e056";
|
|
523
|
+
}
|
|
524
|
+
.simple-icon-frame:before {
|
|
525
|
+
content: "\e038";
|
|
526
|
+
}
|
|
527
|
+
.simple-icon-size-fullscreen:before {
|
|
528
|
+
content: "\e057";
|
|
529
|
+
}
|
|
530
|
+
.simple-icon-size-actual:before {
|
|
531
|
+
content: "\e058";
|
|
532
|
+
}
|
|
533
|
+
.simple-icon-shuffle:before {
|
|
534
|
+
content: "\e059";
|
|
535
|
+
}
|
|
536
|
+
.simple-icon-share-alt:before {
|
|
537
|
+
content: "\e05a";
|
|
538
|
+
}
|
|
539
|
+
.simple-icon-share:before {
|
|
540
|
+
content: "\e05b";
|
|
541
|
+
}
|
|
542
|
+
.simple-icon-rocket:before {
|
|
543
|
+
content: "\e05c";
|
|
544
|
+
}
|
|
545
|
+
.simple-icon-question:before {
|
|
546
|
+
content: "\e05d";
|
|
547
|
+
}
|
|
548
|
+
.simple-icon-pie-chart:before {
|
|
549
|
+
content: "\e05e";
|
|
550
|
+
}
|
|
551
|
+
.simple-icon-pencil:before {
|
|
552
|
+
content: "\e05f";
|
|
553
|
+
}
|
|
554
|
+
.simple-icon-note:before {
|
|
555
|
+
content: "\e060";
|
|
556
|
+
}
|
|
557
|
+
.simple-icon-loop:before {
|
|
558
|
+
content: "\e064";
|
|
559
|
+
}
|
|
560
|
+
.simple-icon-home:before {
|
|
561
|
+
content: "\e069";
|
|
562
|
+
}
|
|
563
|
+
.simple-icon-grid:before {
|
|
564
|
+
content: "\e06a";
|
|
565
|
+
}
|
|
566
|
+
.simple-icon-graph:before {
|
|
567
|
+
content: "\e06b";
|
|
568
|
+
}
|
|
569
|
+
.simple-icon-microphone:before {
|
|
570
|
+
content: "\e063";
|
|
571
|
+
}
|
|
572
|
+
.simple-icon-music-tone-alt:before {
|
|
573
|
+
content: "\e061";
|
|
574
|
+
}
|
|
575
|
+
.simple-icon-music-tone:before {
|
|
576
|
+
content: "\e062";
|
|
577
|
+
}
|
|
578
|
+
.simple-icon-earphones-alt:before {
|
|
579
|
+
content: "\e03c";
|
|
580
|
+
}
|
|
581
|
+
.simple-icon-earphones:before {
|
|
582
|
+
content: "\e03d";
|
|
583
|
+
}
|
|
584
|
+
.simple-icon-equalizer:before {
|
|
585
|
+
content: "\e06c";
|
|
586
|
+
}
|
|
587
|
+
.simple-icon-like:before {
|
|
588
|
+
content: "\e068";
|
|
589
|
+
}
|
|
590
|
+
.simple-icon-dislike:before {
|
|
591
|
+
content: "\e06d";
|
|
592
|
+
}
|
|
593
|
+
.simple-icon-control-start:before {
|
|
594
|
+
content: "\e06f";
|
|
595
|
+
}
|
|
596
|
+
.simple-icon-control-rewind:before {
|
|
597
|
+
content: "\e070";
|
|
598
|
+
}
|
|
599
|
+
.simple-icon-control-play:before {
|
|
600
|
+
content: "\e071";
|
|
601
|
+
}
|
|
602
|
+
.simple-icon-control-pause:before {
|
|
603
|
+
content: "\e072";
|
|
604
|
+
}
|
|
605
|
+
.simple-icon-control-forward:before {
|
|
606
|
+
content: "\e073";
|
|
607
|
+
}
|
|
608
|
+
.simple-icon-control-end:before {
|
|
609
|
+
content: "\e074";
|
|
610
|
+
}
|
|
611
|
+
.simple-icon-volume-1:before {
|
|
612
|
+
content: "\e09f";
|
|
613
|
+
}
|
|
614
|
+
.simple-icon-volume-2:before {
|
|
615
|
+
content: "\e0a0";
|
|
616
|
+
}
|
|
617
|
+
.simple-icon-volume-off:before {
|
|
618
|
+
content: "\e0a1";
|
|
619
|
+
}
|
|
620
|
+
.simple-icon-calendar:before {
|
|
621
|
+
content: "\e075";
|
|
622
|
+
}
|
|
623
|
+
.simple-icon-bulb:before {
|
|
624
|
+
content: "\e076";
|
|
625
|
+
}
|
|
626
|
+
.simple-icon-chart:before {
|
|
627
|
+
content: "\e077";
|
|
628
|
+
}
|
|
629
|
+
.simple-icon-ban:before {
|
|
630
|
+
content: "\e07c";
|
|
631
|
+
}
|
|
632
|
+
.simple-icon-bubble:before {
|
|
633
|
+
content: "\e07d";
|
|
634
|
+
}
|
|
635
|
+
.simple-icon-camrecorder:before {
|
|
636
|
+
content: "\e07e";
|
|
637
|
+
}
|
|
638
|
+
.simple-icon-camera:before {
|
|
639
|
+
content: "\e07f";
|
|
640
|
+
}
|
|
641
|
+
.simple-icon-cloud-download:before {
|
|
642
|
+
content: "\e083";
|
|
643
|
+
}
|
|
644
|
+
.simple-icon-cloud-upload:before {
|
|
645
|
+
content: "\e084";
|
|
646
|
+
}
|
|
647
|
+
.simple-icon-envelope:before {
|
|
648
|
+
content: "\e086";
|
|
649
|
+
}
|
|
650
|
+
.simple-icon-eye:before {
|
|
651
|
+
content: "\e087";
|
|
652
|
+
}
|
|
653
|
+
.simple-icon-flag:before {
|
|
654
|
+
content: "\e088";
|
|
655
|
+
}
|
|
656
|
+
.simple-icon-heart:before {
|
|
657
|
+
content: "\e08a";
|
|
658
|
+
}
|
|
659
|
+
.simple-icon-info:before {
|
|
660
|
+
content: "\e08b";
|
|
661
|
+
}
|
|
662
|
+
.simple-icon-key:before {
|
|
663
|
+
content: "\e08c";
|
|
664
|
+
}
|
|
665
|
+
.simple-icon-link:before {
|
|
666
|
+
content: "\e08d";
|
|
667
|
+
}
|
|
668
|
+
.simple-icon-lock:before {
|
|
669
|
+
content: "\e08e";
|
|
670
|
+
}
|
|
671
|
+
.simple-icon-lock-open:before {
|
|
672
|
+
content: "\e08f";
|
|
673
|
+
}
|
|
674
|
+
.simple-icon-magnifier:before {
|
|
675
|
+
content: "\e090";
|
|
676
|
+
}
|
|
677
|
+
.simple-icon-magnifier-add:before {
|
|
678
|
+
content: "\e091";
|
|
679
|
+
}
|
|
680
|
+
.simple-icon-magnifier-remove:before {
|
|
681
|
+
content: "\e092";
|
|
682
|
+
}
|
|
683
|
+
.simple-icon-paper-clip:before {
|
|
684
|
+
content: "\e093";
|
|
685
|
+
}
|
|
686
|
+
.simple-icon-paper-plane:before {
|
|
687
|
+
content: "\e094";
|
|
688
|
+
}
|
|
689
|
+
.simple-icon-power:before {
|
|
690
|
+
content: "\e097";
|
|
691
|
+
}
|
|
692
|
+
.simple-icon-refresh:before {
|
|
693
|
+
content: "\e098";
|
|
694
|
+
}
|
|
695
|
+
.simple-icon-reload:before {
|
|
696
|
+
content: "\e099";
|
|
697
|
+
}
|
|
698
|
+
.simple-icon-settings:before {
|
|
699
|
+
content: "\e09a";
|
|
700
|
+
}
|
|
701
|
+
.simple-icon-star:before {
|
|
702
|
+
content: "\e09b";
|
|
703
|
+
}
|
|
704
|
+
.simple-icon-symbol-female:before {
|
|
705
|
+
content: "\e09c";
|
|
706
|
+
}
|
|
707
|
+
.simple-icon-symbol-male:before {
|
|
708
|
+
content: "\e09d";
|
|
709
|
+
}
|
|
710
|
+
.simple-icon-target:before {
|
|
711
|
+
content: "\e09e";
|
|
712
|
+
}
|
|
713
|
+
.simple-icon-credit-card:before {
|
|
714
|
+
content: "\e025";
|
|
715
|
+
}
|
|
716
|
+
.simple-icon-paypal:before {
|
|
717
|
+
content: "\e608";
|
|
718
|
+
}
|
|
719
|
+
.simple-icon-social-tumblr:before {
|
|
720
|
+
content: "\e00a";
|
|
721
|
+
}
|
|
722
|
+
.simple-icon-social-twitter:before {
|
|
723
|
+
content: "\e009";
|
|
724
|
+
}
|
|
725
|
+
.simple-icon-social-facebook:before {
|
|
726
|
+
content: "\e00b";
|
|
727
|
+
}
|
|
728
|
+
.simple-icon-social-instagram:before {
|
|
729
|
+
content: "\e609";
|
|
730
|
+
}
|
|
731
|
+
.simple-icon-social-linkedin:before {
|
|
732
|
+
content: "\e60a";
|
|
733
|
+
}
|
|
734
|
+
.simple-icon-social-pinterest:before {
|
|
735
|
+
content: "\e60b";
|
|
736
|
+
}
|
|
737
|
+
.simple-icon-social-github:before {
|
|
738
|
+
content: "\e60c";
|
|
739
|
+
}
|
|
740
|
+
.simple-icon-social-google:before {
|
|
741
|
+
content: "\e60d";
|
|
742
|
+
}
|
|
743
|
+
.simple-icon-social-reddit:before {
|
|
744
|
+
content: "\e60e";
|
|
745
|
+
}
|
|
746
|
+
.simple-icon-social-skype:before {
|
|
747
|
+
content: "\e60f";
|
|
748
|
+
}
|
|
749
|
+
.simple-icon-social-dribbble:before {
|
|
750
|
+
content: "\e00d";
|
|
751
|
+
}
|
|
752
|
+
.simple-icon-social-behance:before {
|
|
753
|
+
content: "\e610";
|
|
754
|
+
}
|
|
755
|
+
.simple-icon-social-foursqare:before {
|
|
756
|
+
content: "\e611";
|
|
757
|
+
}
|
|
758
|
+
.simple-icon-social-soundcloud:before {
|
|
759
|
+
content: "\e612";
|
|
760
|
+
}
|
|
761
|
+
.simple-icon-social-spotify:before {
|
|
762
|
+
content: "\e613";
|
|
763
|
+
}
|
|
764
|
+
.simple-icon-social-stumbleupon:before {
|
|
765
|
+
content: "\e614";
|
|
766
|
+
}
|
|
767
|
+
.simple-icon-social-youtube:before {
|
|
768
|
+
content: "\e008";
|
|
769
|
+
}
|
|
770
|
+
.simple-icon-social-dropbox:before {
|
|
771
|
+
content: "\e00c";
|
|
772
|
+
}
|
|
773
|
+
.simple-icon-social-vkontakte:before {
|
|
774
|
+
content: "\e618";
|
|
775
|
+
}
|
|
776
|
+
.simple-icon-social-steam:before {
|
|
777
|
+
content: "\e620";
|
|
778
|
+
}
|