@rolster/styles-foundations 2.3.2 → 2.3.4
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/fonts/mont/_mont.scss +69 -0
- package/fonts/mont/mont-bold.otf +0 -0
- package/fonts/mont/mont-light.otf +0 -0
- package/fonts/mont/mont-regular.otf +0 -0
- package/fonts/mont/mont-semibold.otf +0 -0
- package/fonts/poppins/_poppins.scss +69 -0
- package/fonts/poppins/poppins-bold.woff2 +0 -0
- package/fonts/poppins/poppins-light.woff2 +0 -0
- package/fonts/poppins/poppins-medium.woff2 +0 -0
- package/fonts/poppins/poppins-regular.woff2 +0 -0
- package/fonts/poppins/poppins-semibold.woff2 +0 -0
- package/fonts/space-grotesk/_space-grotesk.scss +69 -0
- package/fonts/space-grotesk/space-grotesk-bold.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-light.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-medium.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-regular.woff +0 -0
- package/fonts/space-grotesk/space-grotesk-semibold.woff +0 -0
- package/icons/_rolster-icons.scss +776 -0
- package/icons/rolster-icons.eot +0 -0
- package/icons/rolster-icons.svg +258 -0
- package/icons/rolster-icons.ttf +0 -0
- package/icons/rolster-icons.woff +0 -0
- package/package.json +3 -1
|
@@ -0,0 +1,776 @@
|
|
|
1
|
+
// Rolster Technology Icons
|
|
2
|
+
// v1.0.0
|
|
3
|
+
// @license MIT
|
|
4
|
+
// Author: Rolster Developers
|
|
5
|
+
// Created: 14/Ago/2022
|
|
6
|
+
// Updated: 29/Ago/2022
|
|
7
|
+
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: -rolster-icons;
|
|
10
|
+
src: url('rolster-icons.eot?9iewo3');
|
|
11
|
+
src:
|
|
12
|
+
url('rolster-icons.eot?9iewo3#iefix') format('embedded-opentype'),
|
|
13
|
+
url('rolster-icons.ttf?9iewo3') format('truetype'),
|
|
14
|
+
url('rolster-icons.woff?9iewo3') format('woff'),
|
|
15
|
+
url('rolster-icons.svg?9iewo3#icomoon') format('svg');
|
|
16
|
+
font-weight: normal;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-display: block;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
[class^='rls-icon-'],
|
|
22
|
+
[class*=' rls-icon-'] {
|
|
23
|
+
font-family: -rolster-icons !important;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: normal;
|
|
26
|
+
font-variant: normal;
|
|
27
|
+
text-transform: none;
|
|
28
|
+
line-height: 1;
|
|
29
|
+
-webkit-font-smoothing: antialiased;
|
|
30
|
+
-moz-osx-font-smoothing: grayscale;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.rls-icon-activity:before {
|
|
34
|
+
content: '\e900';
|
|
35
|
+
}
|
|
36
|
+
.rls-icon-alert-circle:before {
|
|
37
|
+
content: '\e901';
|
|
38
|
+
}
|
|
39
|
+
.rls-icon-alert-triangle:before {
|
|
40
|
+
content: '\e902';
|
|
41
|
+
}
|
|
42
|
+
.rls-icon-all-done:before {
|
|
43
|
+
content: '\e903';
|
|
44
|
+
}
|
|
45
|
+
.rls-icon-archive:before {
|
|
46
|
+
content: '\e904';
|
|
47
|
+
}
|
|
48
|
+
.rls-icon-arrow-circle-down:before {
|
|
49
|
+
content: '\e905';
|
|
50
|
+
}
|
|
51
|
+
.rls-icon-arrow-circle-left:before {
|
|
52
|
+
content: '\e906';
|
|
53
|
+
}
|
|
54
|
+
.rls-icon-arrow-circle-right:before {
|
|
55
|
+
content: '\e907';
|
|
56
|
+
}
|
|
57
|
+
.rls-icon-arrow-circle-up:before {
|
|
58
|
+
content: '\e908';
|
|
59
|
+
}
|
|
60
|
+
.rls-icon-arrow-down:before {
|
|
61
|
+
content: '\e909';
|
|
62
|
+
}
|
|
63
|
+
.rls-icon-arrow-triangle-down:before {
|
|
64
|
+
content: '\e90a';
|
|
65
|
+
}
|
|
66
|
+
.rls-icon-arrowhead-down:before {
|
|
67
|
+
content: '\e90b';
|
|
68
|
+
}
|
|
69
|
+
.rls-icon-arrowhead-left:before {
|
|
70
|
+
content: '\e90c';
|
|
71
|
+
}
|
|
72
|
+
.rls-icon-arrowhead-right:before {
|
|
73
|
+
content: '\e90d';
|
|
74
|
+
}
|
|
75
|
+
.rls-icon-arrowhead-up:before {
|
|
76
|
+
content: '\e90e';
|
|
77
|
+
}
|
|
78
|
+
.rls-icon-arrow-ios-down:before {
|
|
79
|
+
content: '\e90f';
|
|
80
|
+
}
|
|
81
|
+
.rls-icon-arrow-ios-left:before {
|
|
82
|
+
content: '\e910';
|
|
83
|
+
}
|
|
84
|
+
.rls-icon-arrow-ios-right:before {
|
|
85
|
+
content: '\e911';
|
|
86
|
+
}
|
|
87
|
+
.rls-icon-arrow-ios-up:before {
|
|
88
|
+
content: '\e912';
|
|
89
|
+
}
|
|
90
|
+
.rls-icon-arrow-left:before {
|
|
91
|
+
content: '\e913';
|
|
92
|
+
}
|
|
93
|
+
.rls-icon-arrow-right:before {
|
|
94
|
+
content: '\e914';
|
|
95
|
+
}
|
|
96
|
+
.rls-icon-arrow-triangle-right:before {
|
|
97
|
+
content: '\e915';
|
|
98
|
+
}
|
|
99
|
+
.rls-icon-arrow-up:before {
|
|
100
|
+
content: '\e916';
|
|
101
|
+
}
|
|
102
|
+
.rls-icon-arrow-triangle-up:before {
|
|
103
|
+
content: '\e917';
|
|
104
|
+
}
|
|
105
|
+
.rls-icon-arrrow-triangle-left:before {
|
|
106
|
+
content: '\e918';
|
|
107
|
+
}
|
|
108
|
+
.rls-icon-at:before {
|
|
109
|
+
content: '\e919';
|
|
110
|
+
}
|
|
111
|
+
.rls-icon-attach:before {
|
|
112
|
+
content: '\e91a';
|
|
113
|
+
}
|
|
114
|
+
.rls-icon-attach-inclined:before {
|
|
115
|
+
content: '\e91b';
|
|
116
|
+
}
|
|
117
|
+
.rls-icon-award:before {
|
|
118
|
+
content: '\e91c';
|
|
119
|
+
}
|
|
120
|
+
.rls-icon-backspace:before {
|
|
121
|
+
content: '\e91d';
|
|
122
|
+
}
|
|
123
|
+
.rls-icon-bar-chart:before {
|
|
124
|
+
content: '\e91e';
|
|
125
|
+
}
|
|
126
|
+
.rls-icon-bar-chart-increasing:before {
|
|
127
|
+
content: '\e91f';
|
|
128
|
+
}
|
|
129
|
+
.rls-icon-battery:before {
|
|
130
|
+
content: '\e920';
|
|
131
|
+
}
|
|
132
|
+
.rls-icon-batttery-charging:before {
|
|
133
|
+
content: '\e921';
|
|
134
|
+
}
|
|
135
|
+
.rls-icon-behance:before {
|
|
136
|
+
content: '\e922';
|
|
137
|
+
}
|
|
138
|
+
.rls-icon-bell:before {
|
|
139
|
+
content: '\e923';
|
|
140
|
+
}
|
|
141
|
+
.rls-icon-bell-off:before {
|
|
142
|
+
content: '\e924';
|
|
143
|
+
}
|
|
144
|
+
.rls-icon-bluetooth:before {
|
|
145
|
+
content: '\e925';
|
|
146
|
+
}
|
|
147
|
+
.rls-icon-book:before {
|
|
148
|
+
content: '\e926';
|
|
149
|
+
}
|
|
150
|
+
.rls-icon-bookmark:before {
|
|
151
|
+
content: '\e927';
|
|
152
|
+
}
|
|
153
|
+
.rls-icon-book-open:before {
|
|
154
|
+
content: '\e928';
|
|
155
|
+
}
|
|
156
|
+
.rls-icon-briefcase:before {
|
|
157
|
+
content: '\e929';
|
|
158
|
+
}
|
|
159
|
+
.rls-icon-browser:before {
|
|
160
|
+
content: '\e92a';
|
|
161
|
+
}
|
|
162
|
+
.rls-icon-brush:before {
|
|
163
|
+
content: '\e92b';
|
|
164
|
+
}
|
|
165
|
+
.rls-icon-bulb:before {
|
|
166
|
+
content: '\e92c';
|
|
167
|
+
}
|
|
168
|
+
.rls-icon-calendar:before {
|
|
169
|
+
content: '\e92d';
|
|
170
|
+
}
|
|
171
|
+
.rls-icon-camera:before {
|
|
172
|
+
content: '\e92e';
|
|
173
|
+
}
|
|
174
|
+
.rls-icon-car:before {
|
|
175
|
+
content: '\e92f';
|
|
176
|
+
}
|
|
177
|
+
.rls-icon-cast:before {
|
|
178
|
+
content: '\e930';
|
|
179
|
+
}
|
|
180
|
+
.rls-icon-checkmark:before {
|
|
181
|
+
content: '\e931';
|
|
182
|
+
}
|
|
183
|
+
.rls-icon-checkmark-circle:before {
|
|
184
|
+
content: '\e932';
|
|
185
|
+
}
|
|
186
|
+
.rls-icon-checkmark-circle-out:before {
|
|
187
|
+
content: '\e933';
|
|
188
|
+
}
|
|
189
|
+
.rls-icon-checkmark-square:before {
|
|
190
|
+
content: '\e934';
|
|
191
|
+
}
|
|
192
|
+
.rls-icon-checkmark-square-out:before {
|
|
193
|
+
content: '\e935';
|
|
194
|
+
}
|
|
195
|
+
.rls-icon-chevron-down:before {
|
|
196
|
+
content: '\e936';
|
|
197
|
+
}
|
|
198
|
+
.rls-icon-chevron-left:before {
|
|
199
|
+
content: '\e937';
|
|
200
|
+
}
|
|
201
|
+
.rls-icon-chevron-right:before {
|
|
202
|
+
content: '\e938';
|
|
203
|
+
}
|
|
204
|
+
.rls-icon-chevron-up:before {
|
|
205
|
+
content: '\e939';
|
|
206
|
+
}
|
|
207
|
+
.rls-icon-clipboard:before {
|
|
208
|
+
content: '\e93a';
|
|
209
|
+
}
|
|
210
|
+
.rls-icon-clock:before {
|
|
211
|
+
content: '\e93b';
|
|
212
|
+
}
|
|
213
|
+
.rls-icon-close:before {
|
|
214
|
+
content: '\e93c';
|
|
215
|
+
}
|
|
216
|
+
.rls-icon-close-circle:before {
|
|
217
|
+
content: '\e93d';
|
|
218
|
+
}
|
|
219
|
+
.rls-icon-close-square:before {
|
|
220
|
+
content: '\e93e';
|
|
221
|
+
}
|
|
222
|
+
.rls-icon-cloud-download:before {
|
|
223
|
+
content: '\e93f';
|
|
224
|
+
}
|
|
225
|
+
.rls-icon-cloud-upload:before {
|
|
226
|
+
content: '\e940';
|
|
227
|
+
}
|
|
228
|
+
.rls-icon-code:before {
|
|
229
|
+
content: '\e941';
|
|
230
|
+
}
|
|
231
|
+
.rls-icon-code-download:before {
|
|
232
|
+
content: '\e942';
|
|
233
|
+
}
|
|
234
|
+
.rls-icon-collapse:before {
|
|
235
|
+
content: '\e943';
|
|
236
|
+
}
|
|
237
|
+
.rls-icon-color-palette:before {
|
|
238
|
+
content: '\e944';
|
|
239
|
+
}
|
|
240
|
+
.rls-icon-color-picker:before {
|
|
241
|
+
content: '\e945';
|
|
242
|
+
}
|
|
243
|
+
.rls-icon-compass:before {
|
|
244
|
+
content: '\e946';
|
|
245
|
+
}
|
|
246
|
+
.rls-icon-copy:before {
|
|
247
|
+
content: '\e947';
|
|
248
|
+
}
|
|
249
|
+
.rls-icon-corner-down-left:before {
|
|
250
|
+
content: '\e948';
|
|
251
|
+
}
|
|
252
|
+
.rls-icon-corner-down-right:before {
|
|
253
|
+
content: '\e949';
|
|
254
|
+
}
|
|
255
|
+
.rls-icon-corner-left-down:before {
|
|
256
|
+
content: '\e94a';
|
|
257
|
+
}
|
|
258
|
+
.rls-icon-corner-left-up:before {
|
|
259
|
+
content: '\e94b';
|
|
260
|
+
}
|
|
261
|
+
.rls-icon-corner-right-down:before {
|
|
262
|
+
content: '\e94c';
|
|
263
|
+
}
|
|
264
|
+
.rls-icon-corner-right-up:before {
|
|
265
|
+
content: '\e94d';
|
|
266
|
+
}
|
|
267
|
+
.rls-icon-corner-up-left:before {
|
|
268
|
+
content: '\e94e';
|
|
269
|
+
}
|
|
270
|
+
.rls-icon-corner-up-right:before {
|
|
271
|
+
content: '\e94f';
|
|
272
|
+
}
|
|
273
|
+
.rls-icon-credit-card:before {
|
|
274
|
+
content: '\e950';
|
|
275
|
+
}
|
|
276
|
+
.rls-icon-crop:before {
|
|
277
|
+
content: '\e951';
|
|
278
|
+
}
|
|
279
|
+
.rls-icon-cube:before {
|
|
280
|
+
content: '\e952';
|
|
281
|
+
}
|
|
282
|
+
.rls-icon-diagonal-arrow-left-down:before {
|
|
283
|
+
content: '\e953';
|
|
284
|
+
}
|
|
285
|
+
.rls-icon-diagonal-arrow-left-up:before {
|
|
286
|
+
content: '\e954';
|
|
287
|
+
}
|
|
288
|
+
.rls-icon-diagonal-arrow-right-down:before {
|
|
289
|
+
content: '\e955';
|
|
290
|
+
}
|
|
291
|
+
.rls-icon-diagonal-arrow-right-up:before {
|
|
292
|
+
content: '\e956';
|
|
293
|
+
}
|
|
294
|
+
.rls-icon-download:before {
|
|
295
|
+
content: '\e957';
|
|
296
|
+
}
|
|
297
|
+
.rls-icon-droplet:before {
|
|
298
|
+
content: '\e958';
|
|
299
|
+
}
|
|
300
|
+
.rls-icon-droplet-off:before {
|
|
301
|
+
content: '\e959';
|
|
302
|
+
}
|
|
303
|
+
.rls-icon-edit:before {
|
|
304
|
+
content: '\e95a';
|
|
305
|
+
}
|
|
306
|
+
.rls-icon-edit-text:before {
|
|
307
|
+
content: '\e95b';
|
|
308
|
+
}
|
|
309
|
+
.rls-icon-email:before {
|
|
310
|
+
content: '\e95c';
|
|
311
|
+
}
|
|
312
|
+
.rls-icon-expand:before {
|
|
313
|
+
content: '\e95d';
|
|
314
|
+
}
|
|
315
|
+
.rls-icon-external-link:before {
|
|
316
|
+
content: '\e95e';
|
|
317
|
+
}
|
|
318
|
+
.rls-icon-eye:before {
|
|
319
|
+
content: '\e95f';
|
|
320
|
+
}
|
|
321
|
+
.rls-icon-eye-off:before {
|
|
322
|
+
content: '\e960';
|
|
323
|
+
}
|
|
324
|
+
.rls-icon-eye-close:before {
|
|
325
|
+
content: '\e961';
|
|
326
|
+
}
|
|
327
|
+
.rls-icon-facebook:before {
|
|
328
|
+
content: '\e962';
|
|
329
|
+
}
|
|
330
|
+
.rls-icon-file:before {
|
|
331
|
+
content: '\e963';
|
|
332
|
+
}
|
|
333
|
+
.rls-icon-file-add:before {
|
|
334
|
+
content: '\e964';
|
|
335
|
+
}
|
|
336
|
+
.rls-icon-file-remove:before {
|
|
337
|
+
content: '\e965';
|
|
338
|
+
}
|
|
339
|
+
.rls-icon-file-text:before {
|
|
340
|
+
content: '\e966';
|
|
341
|
+
}
|
|
342
|
+
.rls-icon-film:before {
|
|
343
|
+
content: '\e967';
|
|
344
|
+
}
|
|
345
|
+
.rls-icon-fire:before {
|
|
346
|
+
content: '\e968';
|
|
347
|
+
}
|
|
348
|
+
.rls-icon-flag:before {
|
|
349
|
+
content: '\e969';
|
|
350
|
+
}
|
|
351
|
+
.rls-icon-flash:before {
|
|
352
|
+
content: '\e96a';
|
|
353
|
+
}
|
|
354
|
+
.rls-icon-flash-off:before {
|
|
355
|
+
content: '\e96b';
|
|
356
|
+
}
|
|
357
|
+
.rls-icon-flip:before {
|
|
358
|
+
content: '\e96c';
|
|
359
|
+
}
|
|
360
|
+
.rls-icon-flip-2:before {
|
|
361
|
+
content: '\e96d';
|
|
362
|
+
}
|
|
363
|
+
.rls-icon-folder:before {
|
|
364
|
+
content: '\e96e';
|
|
365
|
+
}
|
|
366
|
+
.rls-icon-folder-add:before {
|
|
367
|
+
content: '\e96f';
|
|
368
|
+
}
|
|
369
|
+
.rls-icon-folder-remove:before {
|
|
370
|
+
content: '\e970';
|
|
371
|
+
}
|
|
372
|
+
.rls-icon-funnel:before {
|
|
373
|
+
content: '\e971';
|
|
374
|
+
}
|
|
375
|
+
.rls-icon-gift:before {
|
|
376
|
+
content: '\e972';
|
|
377
|
+
}
|
|
378
|
+
.rls-icon-github:before {
|
|
379
|
+
content: '\e973';
|
|
380
|
+
}
|
|
381
|
+
.rls-icon-globe:before {
|
|
382
|
+
content: '\e974';
|
|
383
|
+
}
|
|
384
|
+
.rls-icon-globe-2:before {
|
|
385
|
+
content: '\e975';
|
|
386
|
+
}
|
|
387
|
+
.rls-icon-google:before {
|
|
388
|
+
content: '\e976';
|
|
389
|
+
}
|
|
390
|
+
.rls-icon-grid:before {
|
|
391
|
+
content: '\e977';
|
|
392
|
+
}
|
|
393
|
+
.rls-icon-hard-drive:before {
|
|
394
|
+
content: '\e978';
|
|
395
|
+
}
|
|
396
|
+
.rls-icon-hash:before {
|
|
397
|
+
content: '\e979';
|
|
398
|
+
}
|
|
399
|
+
.rls-icon-headphones:before {
|
|
400
|
+
content: '\e97a';
|
|
401
|
+
}
|
|
402
|
+
.rls-icon-heart:before {
|
|
403
|
+
content: '\e97b';
|
|
404
|
+
}
|
|
405
|
+
.rls-icon-height:before {
|
|
406
|
+
content: '\e97c';
|
|
407
|
+
}
|
|
408
|
+
.rls-icon-home:before {
|
|
409
|
+
content: '\e97d';
|
|
410
|
+
}
|
|
411
|
+
.rls-icon-image:before {
|
|
412
|
+
content: '\e97e';
|
|
413
|
+
}
|
|
414
|
+
.rls-icon-inbox:before {
|
|
415
|
+
content: '\e97f';
|
|
416
|
+
}
|
|
417
|
+
.rls-icon-info:before {
|
|
418
|
+
content: '\e980';
|
|
419
|
+
}
|
|
420
|
+
.rls-icon-keypad:before {
|
|
421
|
+
content: '\e981';
|
|
422
|
+
}
|
|
423
|
+
.rls-icon-layers:before {
|
|
424
|
+
content: '\e982';
|
|
425
|
+
}
|
|
426
|
+
.rls-icon-layout:before {
|
|
427
|
+
content: '\e983';
|
|
428
|
+
}
|
|
429
|
+
.rls-icon-link:before {
|
|
430
|
+
content: '\e984';
|
|
431
|
+
}
|
|
432
|
+
.rls-icon-link-2:before {
|
|
433
|
+
content: '\e985';
|
|
434
|
+
}
|
|
435
|
+
.rls-icon-linkedin:before {
|
|
436
|
+
content: '\e986';
|
|
437
|
+
}
|
|
438
|
+
.rls-icon-list:before {
|
|
439
|
+
content: '\e987';
|
|
440
|
+
}
|
|
441
|
+
.rls-icon-loader:before {
|
|
442
|
+
content: '\e988';
|
|
443
|
+
}
|
|
444
|
+
.rls-icon-lock:before {
|
|
445
|
+
content: '\e989';
|
|
446
|
+
}
|
|
447
|
+
.rls-icon-log-in:before {
|
|
448
|
+
content: '\e98a';
|
|
449
|
+
}
|
|
450
|
+
.rls-icon-log-out:before {
|
|
451
|
+
content: '\e98b';
|
|
452
|
+
}
|
|
453
|
+
.rls-icon-map:before {
|
|
454
|
+
content: '\e98c';
|
|
455
|
+
}
|
|
456
|
+
.rls-icon-maximize:before {
|
|
457
|
+
content: '\e98d';
|
|
458
|
+
}
|
|
459
|
+
.rls-icon-menu:before {
|
|
460
|
+
content: '\e98e';
|
|
461
|
+
}
|
|
462
|
+
.rls-icon-menu-2:before {
|
|
463
|
+
content: '\e98f';
|
|
464
|
+
}
|
|
465
|
+
.rls-icon-menu-arrow:before {
|
|
466
|
+
content: '\e990';
|
|
467
|
+
}
|
|
468
|
+
.rls-icon-message-circle:before {
|
|
469
|
+
content: '\e991';
|
|
470
|
+
}
|
|
471
|
+
.rls-icon-message-square:before {
|
|
472
|
+
content: '\e992';
|
|
473
|
+
}
|
|
474
|
+
.rls-icon-mic:before {
|
|
475
|
+
content: '\e993';
|
|
476
|
+
}
|
|
477
|
+
.rls-icon-mic-off:before {
|
|
478
|
+
content: '\e994';
|
|
479
|
+
}
|
|
480
|
+
.rls-icon-minimize:before {
|
|
481
|
+
content: '\e995';
|
|
482
|
+
}
|
|
483
|
+
.rls-icon-minus:before {
|
|
484
|
+
content: '\e996';
|
|
485
|
+
}
|
|
486
|
+
.rls-icon-minus-circle:before {
|
|
487
|
+
content: '\e997';
|
|
488
|
+
}
|
|
489
|
+
.rls-icon-minus-square:before {
|
|
490
|
+
content: '\e998';
|
|
491
|
+
}
|
|
492
|
+
.rls-icon-monitor:before {
|
|
493
|
+
content: '\e999';
|
|
494
|
+
}
|
|
495
|
+
.rls-icon-moon:before {
|
|
496
|
+
content: '\e99a';
|
|
497
|
+
}
|
|
498
|
+
.rls-icon-more-horizontal:before {
|
|
499
|
+
content: '\e99b';
|
|
500
|
+
}
|
|
501
|
+
.rls-icon-more-vertical:before {
|
|
502
|
+
content: '\e99c';
|
|
503
|
+
}
|
|
504
|
+
.rls-icon-move:before {
|
|
505
|
+
content: '\e99d';
|
|
506
|
+
}
|
|
507
|
+
.rls-icon-music:before {
|
|
508
|
+
content: '\e99e';
|
|
509
|
+
}
|
|
510
|
+
.rls-icon-navigation:before {
|
|
511
|
+
content: '\e99f';
|
|
512
|
+
}
|
|
513
|
+
.rls-icon-navigation-incline:before {
|
|
514
|
+
content: '\e9a0';
|
|
515
|
+
}
|
|
516
|
+
.rls-icon-npm:before {
|
|
517
|
+
content: '\e9a1';
|
|
518
|
+
}
|
|
519
|
+
.rls-icon-options:before {
|
|
520
|
+
content: '\e9a2';
|
|
521
|
+
}
|
|
522
|
+
.rls-icon-options-horizontal:before {
|
|
523
|
+
content: '\e9a3';
|
|
524
|
+
}
|
|
525
|
+
.rls-icon-pantone:before {
|
|
526
|
+
content: '\e9a4';
|
|
527
|
+
}
|
|
528
|
+
.rls-icon-paper-plane:before {
|
|
529
|
+
content: '\e9a5';
|
|
530
|
+
}
|
|
531
|
+
.rls-icon-pause-circle:before {
|
|
532
|
+
content: '\e9a6';
|
|
533
|
+
}
|
|
534
|
+
.rls-icon-people:before {
|
|
535
|
+
content: '\e9a7';
|
|
536
|
+
}
|
|
537
|
+
.rls-icon-percent:before {
|
|
538
|
+
content: '\e9a8';
|
|
539
|
+
}
|
|
540
|
+
.rls-icon-person:before {
|
|
541
|
+
content: '\e9a9';
|
|
542
|
+
}
|
|
543
|
+
.rls-icon-person-add:before {
|
|
544
|
+
content: '\e9aa';
|
|
545
|
+
}
|
|
546
|
+
.rls-icon-person-delete:before {
|
|
547
|
+
content: '\e9ab';
|
|
548
|
+
}
|
|
549
|
+
.rls-icon-person-done:before {
|
|
550
|
+
content: '\e9ac';
|
|
551
|
+
}
|
|
552
|
+
.rls-icon-person-remove:before {
|
|
553
|
+
content: '\e9ad';
|
|
554
|
+
}
|
|
555
|
+
.rls-icon-phone:before {
|
|
556
|
+
content: '\e9ae';
|
|
557
|
+
}
|
|
558
|
+
.rls-icon-phone-call:before {
|
|
559
|
+
content: '\e9af';
|
|
560
|
+
}
|
|
561
|
+
.rls-icon-phone-missed:before {
|
|
562
|
+
content: '\e9b0';
|
|
563
|
+
}
|
|
564
|
+
.rls-icon-phone-off:before {
|
|
565
|
+
content: '\e9b1';
|
|
566
|
+
}
|
|
567
|
+
.rls-icon-pie-chart:before {
|
|
568
|
+
content: '\e9b2';
|
|
569
|
+
}
|
|
570
|
+
.rls-icon-pin:before {
|
|
571
|
+
content: '\e9b3';
|
|
572
|
+
}
|
|
573
|
+
.rls-icon-play-circle:before {
|
|
574
|
+
content: '\e9b4';
|
|
575
|
+
}
|
|
576
|
+
.rls-icon-plus:before {
|
|
577
|
+
content: '\e9b5';
|
|
578
|
+
}
|
|
579
|
+
.rls-icon-plus-circle:before {
|
|
580
|
+
content: '\e9b6';
|
|
581
|
+
}
|
|
582
|
+
.rls-icon-plus-square:before {
|
|
583
|
+
content: '\e9b7';
|
|
584
|
+
}
|
|
585
|
+
.rls-icon-power:before {
|
|
586
|
+
content: '\e9b8';
|
|
587
|
+
}
|
|
588
|
+
.rls-icon-pricetag:before {
|
|
589
|
+
content: '\e9b9';
|
|
590
|
+
}
|
|
591
|
+
.rls-icon-printer:before {
|
|
592
|
+
content: '\e9ba';
|
|
593
|
+
}
|
|
594
|
+
.rls-icon-question-mark:before {
|
|
595
|
+
content: '\e9bb';
|
|
596
|
+
}
|
|
597
|
+
.rls-icon-question-mark-circle:before {
|
|
598
|
+
content: '\e9bc';
|
|
599
|
+
}
|
|
600
|
+
.rls-icon-radio:before {
|
|
601
|
+
content: '\e9bd';
|
|
602
|
+
}
|
|
603
|
+
.rls-icon-radio-button-off:before {
|
|
604
|
+
content: '\e9be';
|
|
605
|
+
}
|
|
606
|
+
.rls-icon-radio-button-on:before {
|
|
607
|
+
content: '\e9bf';
|
|
608
|
+
}
|
|
609
|
+
.rls-icon-recording:before {
|
|
610
|
+
content: '\e9c0';
|
|
611
|
+
}
|
|
612
|
+
.rls-icon-refresh:before {
|
|
613
|
+
content: '\e9c1';
|
|
614
|
+
}
|
|
615
|
+
.rls-icon-repeat:before {
|
|
616
|
+
content: '\e9c2';
|
|
617
|
+
}
|
|
618
|
+
.rls-icon-rewind-left:before {
|
|
619
|
+
content: '\e9c3';
|
|
620
|
+
}
|
|
621
|
+
.rls-icon-rewind-right:before {
|
|
622
|
+
content: '\e9c4';
|
|
623
|
+
}
|
|
624
|
+
.rls-icon-save:before {
|
|
625
|
+
content: '\e9c5';
|
|
626
|
+
}
|
|
627
|
+
.rls-icon-scissors:before {
|
|
628
|
+
content: '\e9c6';
|
|
629
|
+
}
|
|
630
|
+
.rls-icon-search:before {
|
|
631
|
+
content: '\e9c7';
|
|
632
|
+
}
|
|
633
|
+
.rls-icon-settings:before {
|
|
634
|
+
content: '\e9c8';
|
|
635
|
+
}
|
|
636
|
+
.rls-icon-settings-2:before {
|
|
637
|
+
content: '\e9c9';
|
|
638
|
+
}
|
|
639
|
+
.rls-icon-shake:before {
|
|
640
|
+
content: '\e9ca';
|
|
641
|
+
}
|
|
642
|
+
.rls-icon-share:before {
|
|
643
|
+
content: '\e9cb';
|
|
644
|
+
}
|
|
645
|
+
.rls-icon-shield:before {
|
|
646
|
+
content: '\e9cc';
|
|
647
|
+
}
|
|
648
|
+
.rls-icon-shield-off:before {
|
|
649
|
+
content: '\e9cd';
|
|
650
|
+
}
|
|
651
|
+
.rls-icon-shopping-bag:before {
|
|
652
|
+
content: '\e9ce';
|
|
653
|
+
}
|
|
654
|
+
.rls-icon-shopping-cart:before {
|
|
655
|
+
content: '\e9cf';
|
|
656
|
+
}
|
|
657
|
+
.rls-icon-shuffle:before {
|
|
658
|
+
content: '\e9d0';
|
|
659
|
+
}
|
|
660
|
+
.rls-icon-shuffle-2:before {
|
|
661
|
+
content: '\e9d1';
|
|
662
|
+
}
|
|
663
|
+
.rls-icon-skip-back:before {
|
|
664
|
+
content: '\e9d2';
|
|
665
|
+
}
|
|
666
|
+
.rls-icon-skip-forward:before {
|
|
667
|
+
content: '\e9d3';
|
|
668
|
+
}
|
|
669
|
+
.rls-icon-slash:before {
|
|
670
|
+
content: '\e9d4';
|
|
671
|
+
}
|
|
672
|
+
.rls-icon-smartphone:before {
|
|
673
|
+
content: '\e9d5';
|
|
674
|
+
}
|
|
675
|
+
.rls-icon-speaker:before {
|
|
676
|
+
content: '\e9d6';
|
|
677
|
+
}
|
|
678
|
+
.rls-icon-square:before {
|
|
679
|
+
content: '\e9d7';
|
|
680
|
+
}
|
|
681
|
+
.rls-icon-star:before {
|
|
682
|
+
content: '\e9d8';
|
|
683
|
+
}
|
|
684
|
+
.rls-icon-stop-circle:before {
|
|
685
|
+
content: '\e9d9';
|
|
686
|
+
}
|
|
687
|
+
.rls-icon-sun:before {
|
|
688
|
+
content: '\e9da';
|
|
689
|
+
}
|
|
690
|
+
.rls-icon-swap:before {
|
|
691
|
+
content: '\e9db';
|
|
692
|
+
}
|
|
693
|
+
.rls-icon-sync:before {
|
|
694
|
+
content: '\e9dc';
|
|
695
|
+
}
|
|
696
|
+
.rls-icon-text:before {
|
|
697
|
+
content: '\e9dd';
|
|
698
|
+
}
|
|
699
|
+
.rls-icon-thermometer:before {
|
|
700
|
+
content: '\e9de';
|
|
701
|
+
}
|
|
702
|
+
.rls-icon-thermometer-minus:before {
|
|
703
|
+
content: '\e9df';
|
|
704
|
+
}
|
|
705
|
+
.rls-icon-thermometer-plus:before {
|
|
706
|
+
content: '\e9e0';
|
|
707
|
+
}
|
|
708
|
+
.rls-icon-timer:before {
|
|
709
|
+
content: '\e9e1';
|
|
710
|
+
}
|
|
711
|
+
.rls-icon-toggle-left:before {
|
|
712
|
+
content: '\e9e2';
|
|
713
|
+
}
|
|
714
|
+
.rls-icon-toggle-right:before {
|
|
715
|
+
content: '\e9e3';
|
|
716
|
+
}
|
|
717
|
+
.rls-icon-trash:before {
|
|
718
|
+
content: '\e9e4';
|
|
719
|
+
}
|
|
720
|
+
.rls-icon-trash-2:before {
|
|
721
|
+
content: '\e9e5';
|
|
722
|
+
}
|
|
723
|
+
.rls-icon-trending-down:before {
|
|
724
|
+
content: '\e9e6';
|
|
725
|
+
}
|
|
726
|
+
.rls-icon-trending-up:before {
|
|
727
|
+
content: '\e9e7';
|
|
728
|
+
}
|
|
729
|
+
.rls-icon-tv:before {
|
|
730
|
+
content: '\e9e8';
|
|
731
|
+
}
|
|
732
|
+
.rls-icon-twitter:before {
|
|
733
|
+
content: '\e9e9';
|
|
734
|
+
}
|
|
735
|
+
.rls-icon-umbrella:before {
|
|
736
|
+
content: '\e9ea';
|
|
737
|
+
}
|
|
738
|
+
.rls-icon-undo:before {
|
|
739
|
+
content: '\e9eb';
|
|
740
|
+
}
|
|
741
|
+
.rls-icon-unlock:before {
|
|
742
|
+
content: '\e9ec';
|
|
743
|
+
}
|
|
744
|
+
.rls-icon-upload:before {
|
|
745
|
+
content: '\e9ed';
|
|
746
|
+
}
|
|
747
|
+
.rls-icon-video:before {
|
|
748
|
+
content: '\e9ee';
|
|
749
|
+
}
|
|
750
|
+
.rls-icon-video-off:before {
|
|
751
|
+
content: '\e9ef';
|
|
752
|
+
}
|
|
753
|
+
.rls-icon-volume:before {
|
|
754
|
+
content: '\e9f0';
|
|
755
|
+
}
|
|
756
|
+
.rls-icon-volume-down:before {
|
|
757
|
+
content: '\e9f1';
|
|
758
|
+
}
|
|
759
|
+
.rls-icon-volume-off:before {
|
|
760
|
+
content: '\e9f2';
|
|
761
|
+
}
|
|
762
|
+
.rls-icon-volume-up:before {
|
|
763
|
+
content: '\e9f3';
|
|
764
|
+
}
|
|
765
|
+
.rls-icon-weight:before {
|
|
766
|
+
content: '\e9f4';
|
|
767
|
+
}
|
|
768
|
+
.rls-icon-wifi:before {
|
|
769
|
+
content: '\e9f5';
|
|
770
|
+
}
|
|
771
|
+
.rls-icon-wifi-off:before {
|
|
772
|
+
content: '\e9f6';
|
|
773
|
+
}
|
|
774
|
+
.rls-icon-rolster:before {
|
|
775
|
+
content: '\e9f7';
|
|
776
|
+
}
|