@tabler/icons-webfont 3.0.0-alpha.1 → 3.0.0-beta
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/dist/fonts/tabler-icons-filled.ttf +0 -0
- package/dist/fonts/tabler-icons-filled.woff +0 -0
- package/dist/fonts/tabler-icons-filled.woff2 +0 -0
- package/{fonts → dist/fonts}/tabler-icons.ttf +0 -0
- package/dist/fonts/tabler-icons.woff +0 -0
- package/dist/fonts/tabler-icons.woff2 +0 -0
- package/dist/tabler-icons-filled.css +2640 -0
- package/dist/tabler-icons-filled.css.map +1 -0
- package/dist/tabler-icons-filled.html +6031 -0
- package/dist/tabler-icons-filled.min.css +4 -0
- package/dist/tabler-icons-filled.min.css.map +1 -0
- package/dist/tabler-icons-filled.scss +1351 -0
- package/{tabler-icons.css → dist/tabler-icons.css} +166 -2295
- package/dist/tabler-icons.css.map +1 -0
- package/{tabler-icons.html → dist/tabler-icons.html} +85 -5134
- package/dist/tabler-icons.min.css +4 -0
- package/dist/tabler-icons.min.css.map +1 -0
- package/{tabler-icons.scss → dist/tabler-icons.scss} +67 -1162
- package/package.json +9 -8
- package/fonts/.gitkeep +0 -0
- package/fonts/tabler-icons.eot +0 -0
- package/fonts/tabler-icons.woff +0 -0
- package/fonts/tabler-icons.woff2 +0 -0
- package/tabler-icons.css.map +0 -1
- package/tabler-icons.min.css +0 -4
- package/tabler-icons.min.css.map +0 -1
|
@@ -0,0 +1,1351 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/*!
|
|
3
|
+
* Tabler Icons 3.0.0-beta by tabler - https://tabler.io
|
|
4
|
+
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
|
|
5
|
+
*/
|
|
6
|
+
$ti-font-family: 'tabler-icons-filled' !default;
|
|
7
|
+
$ti-font-path: './fonts' !default;
|
|
8
|
+
$ti-font-display: null !default;
|
|
9
|
+
$ti-prefix: 'ti' !default;
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: $ti-font-family;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
font-display: $ti-font-display;
|
|
16
|
+
src: url('#{$ti-font-path}/tabler-icons-filled.woff2?v3.0.0-beta') format('woff2'),
|
|
17
|
+
url('#{$ti-font-path}/tabler-icons-filled.woff?') format('woff'),
|
|
18
|
+
url('#{$ti-font-path}/tabler-icons-filled.ttf?v3.0.0-beta') format('truetype');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.#{$ti-prefix} {
|
|
22
|
+
font-family: $ti-font-family !important;
|
|
23
|
+
speak: none;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: normal;
|
|
26
|
+
font-variant: normal;
|
|
27
|
+
text-transform: none;
|
|
28
|
+
line-height: 1;
|
|
29
|
+
|
|
30
|
+
/* Better Font Rendering */
|
|
31
|
+
-webkit-font-smoothing: antialiased;
|
|
32
|
+
-moz-osx-font-smoothing: grayscale;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@function unicode($str) {
|
|
36
|
+
@return unquote("\"")+unquote(str-insert($str, "\\", 1))+unquote("\"")
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
$ti-icon-accessible-off: unicode('f6ea');
|
|
41
|
+
$ti-icon-ad: unicode('f6eb');
|
|
42
|
+
$ti-icon-ad-circle: unicode('f7d3');
|
|
43
|
+
$ti-icon-adjustments: unicode('f6ec');
|
|
44
|
+
$ti-icon-affiliate: unicode('f6ed');
|
|
45
|
+
$ti-icon-alarm: unicode('f709');
|
|
46
|
+
$ti-icon-alarm-minus: unicode('f70a');
|
|
47
|
+
$ti-icon-alarm-plus: unicode('f70b');
|
|
48
|
+
$ti-icon-alarm-snooze: unicode('f70c');
|
|
49
|
+
$ti-icon-alert-circle: unicode('f6ee');
|
|
50
|
+
$ti-icon-alert-hexagon: unicode('fa34');
|
|
51
|
+
$ti-icon-alert-octagon: unicode('f6ef');
|
|
52
|
+
$ti-icon-alert-square: unicode('fa35');
|
|
53
|
+
$ti-icon-alert-square-rounded: unicode('fa36');
|
|
54
|
+
$ti-icon-alert-triangle: unicode('f6f0');
|
|
55
|
+
$ti-icon-alien: unicode('f70d');
|
|
56
|
+
$ti-icon-align-box-bottom-center: unicode('f70e');
|
|
57
|
+
$ti-icon-align-box-bottom-left: unicode('f70f');
|
|
58
|
+
$ti-icon-align-box-bottom-right: unicode('f710');
|
|
59
|
+
$ti-icon-align-box-center-middle: unicode('f7d4');
|
|
60
|
+
$ti-icon-align-box-left-bottom: unicode('f711');
|
|
61
|
+
$ti-icon-align-box-left-middle: unicode('f712');
|
|
62
|
+
$ti-icon-align-box-left-top: unicode('f713');
|
|
63
|
+
$ti-icon-align-box-right-bottom: unicode('f714');
|
|
64
|
+
$ti-icon-align-box-right-middle: unicode('f7d5');
|
|
65
|
+
$ti-icon-align-box-right-top: unicode('f715');
|
|
66
|
+
$ti-icon-align-box-top-center: unicode('f716');
|
|
67
|
+
$ti-icon-align-box-top-left: unicode('f717');
|
|
68
|
+
$ti-icon-align-box-top-right: unicode('f718');
|
|
69
|
+
$ti-icon-analyze: unicode('f719');
|
|
70
|
+
$ti-icon-app-window: unicode('f71a');
|
|
71
|
+
$ti-icon-apps: unicode('f6f1');
|
|
72
|
+
$ti-icon-archive: unicode('fa82');
|
|
73
|
+
$ti-icon-arrow-autofit-content: unicode('f6f2');
|
|
74
|
+
$ti-icon-arrow-badge-down: unicode('f7d6');
|
|
75
|
+
$ti-icon-arrow-badge-left: unicode('f7d7');
|
|
76
|
+
$ti-icon-arrow-badge-right: unicode('f7d8');
|
|
77
|
+
$ti-icon-arrow-badge-up: unicode('f7d9');
|
|
78
|
+
$ti-icon-arrow-big-down: unicode('f6c6');
|
|
79
|
+
$ti-icon-arrow-big-down-line: unicode('f6c7');
|
|
80
|
+
$ti-icon-arrow-big-down-lines: unicode('f6c8');
|
|
81
|
+
$ti-icon-arrow-big-left: unicode('f6c9');
|
|
82
|
+
$ti-icon-arrow-big-left-line: unicode('f6ca');
|
|
83
|
+
$ti-icon-arrow-big-left-lines: unicode('f6cb');
|
|
84
|
+
$ti-icon-arrow-big-right: unicode('f6cc');
|
|
85
|
+
$ti-icon-arrow-big-right-line: unicode('f6cd');
|
|
86
|
+
$ti-icon-arrow-big-right-lines: unicode('f6ce');
|
|
87
|
+
$ti-icon-arrow-big-up: unicode('f6cf');
|
|
88
|
+
$ti-icon-arrow-big-up-line: unicode('f6d0');
|
|
89
|
+
$ti-icon-arrow-big-up-lines: unicode('f6d1');
|
|
90
|
+
$ti-icon-artboard: unicode('fa83');
|
|
91
|
+
$ti-icon-article: unicode('f7da');
|
|
92
|
+
$ti-icon-aspect-ratio: unicode('f7db');
|
|
93
|
+
$ti-icon-assembly: unicode('fe9e');
|
|
94
|
+
$ti-icon-asset: unicode('fe9d');
|
|
95
|
+
$ti-icon-atom-2: unicode('f71b');
|
|
96
|
+
$ti-icon-award: unicode('f71c');
|
|
97
|
+
$ti-icon-baby-carriage: unicode('fe9c');
|
|
98
|
+
$ti-icon-backspace: unicode('f7dc');
|
|
99
|
+
$ti-icon-badge: unicode('f667');
|
|
100
|
+
$ti-icon-badge-3d: unicode('fe9b');
|
|
101
|
+
$ti-icon-badge-4k: unicode('fe9a');
|
|
102
|
+
$ti-icon-badge-8k: unicode('fe99');
|
|
103
|
+
$ti-icon-badge-ad: unicode('fe98');
|
|
104
|
+
$ti-icon-badge-ar: unicode('fe97');
|
|
105
|
+
$ti-icon-badge-cc: unicode('fe96');
|
|
106
|
+
$ti-icon-badge-hd: unicode('fe95');
|
|
107
|
+
$ti-icon-badge-sd: unicode('fe94');
|
|
108
|
+
$ti-icon-badge-tm: unicode('fe93');
|
|
109
|
+
$ti-icon-badge-vo: unicode('fe92');
|
|
110
|
+
$ti-icon-badge-vr: unicode('fe91');
|
|
111
|
+
$ti-icon-badge-wc: unicode('fe90');
|
|
112
|
+
$ti-icon-badges: unicode('f7dd');
|
|
113
|
+
$ti-icon-balloon: unicode('fa84');
|
|
114
|
+
$ti-icon-ballpen: unicode('fa85');
|
|
115
|
+
$ti-icon-bandage: unicode('f7de');
|
|
116
|
+
$ti-icon-barbell: unicode('fe8f');
|
|
117
|
+
$ti-icon-barrier-block: unicode('fe8e');
|
|
118
|
+
$ti-icon-basket: unicode('f7df');
|
|
119
|
+
$ti-icon-bath: unicode('f71d');
|
|
120
|
+
$ti-icon-battery: unicode('f668');
|
|
121
|
+
$ti-icon-battery-1: unicode('f71e');
|
|
122
|
+
$ti-icon-battery-2: unicode('f71f');
|
|
123
|
+
$ti-icon-battery-3: unicode('f720');
|
|
124
|
+
$ti-icon-battery-4: unicode('f721');
|
|
125
|
+
$ti-icon-bed: unicode('f7e0');
|
|
126
|
+
$ti-icon-bed-flat: unicode('fe8d');
|
|
127
|
+
$ti-icon-beer: unicode('f7e1');
|
|
128
|
+
$ti-icon-bell: unicode('f669');
|
|
129
|
+
$ti-icon-bell-minus: unicode('f722');
|
|
130
|
+
$ti-icon-bell-plus: unicode('f723');
|
|
131
|
+
$ti-icon-bell-ringing: unicode('f725');
|
|
132
|
+
$ti-icon-bell-ringing-2: unicode('f724');
|
|
133
|
+
$ti-icon-bell-x: unicode('f726');
|
|
134
|
+
$ti-icon-bell-z: unicode('f727');
|
|
135
|
+
$ti-icon-biohazard: unicode('fe8c');
|
|
136
|
+
$ti-icon-blade: unicode('f7e2');
|
|
137
|
+
$ti-icon-bomb: unicode('fa86');
|
|
138
|
+
$ti-icon-bone: unicode('fe8b');
|
|
139
|
+
$ti-icon-book: unicode('fa87');
|
|
140
|
+
$ti-icon-bookmark: unicode('fa88');
|
|
141
|
+
$ti-icon-bookmarks: unicode('fb1f');
|
|
142
|
+
$ti-icon-boom: unicode('fe8a');
|
|
143
|
+
$ti-icon-bottle: unicode('fa89');
|
|
144
|
+
$ti-icon-bounce-left: unicode('fb20');
|
|
145
|
+
$ti-icon-bounce-right: unicode('fb21');
|
|
146
|
+
$ti-icon-bow: unicode('fe89');
|
|
147
|
+
$ti-icon-bowl: unicode('fb22');
|
|
148
|
+
$ti-icon-bowl-chopsticks: unicode('fe88');
|
|
149
|
+
$ti-icon-bowl-spoon: unicode('fe87');
|
|
150
|
+
$ti-icon-box-align-bottom: unicode('fa8a');
|
|
151
|
+
$ti-icon-box-align-bottom-left: unicode('fa8b');
|
|
152
|
+
$ti-icon-box-align-bottom-right: unicode('fa8c');
|
|
153
|
+
$ti-icon-box-align-left: unicode('fa8d');
|
|
154
|
+
$ti-icon-box-align-right: unicode('fa8e');
|
|
155
|
+
$ti-icon-box-align-top: unicode('fa8f');
|
|
156
|
+
$ti-icon-box-align-top-left: unicode('fa90');
|
|
157
|
+
$ti-icon-box-align-top-right: unicode('fa91');
|
|
158
|
+
$ti-icon-brand-apple: unicode('fd74');
|
|
159
|
+
$ti-icon-brand-discord: unicode('f7e4');
|
|
160
|
+
$ti-icon-brand-dribbble: unicode('f7e5');
|
|
161
|
+
$ti-icon-brand-facebook: unicode('f7e6');
|
|
162
|
+
$ti-icon-brand-github: unicode('f7e7');
|
|
163
|
+
$ti-icon-brand-google: unicode('fd1a');
|
|
164
|
+
$ti-icon-brand-patreon: unicode('fcff');
|
|
165
|
+
$ti-icon-brand-paypal: unicode('f7e9');
|
|
166
|
+
$ti-icon-brand-spotify: unicode('fe86');
|
|
167
|
+
$ti-icon-brand-tiktok: unicode('f7ea');
|
|
168
|
+
$ti-icon-brand-twitter: unicode('f7eb');
|
|
169
|
+
$ti-icon-brand-x: unicode('fc21');
|
|
170
|
+
$ti-icon-brand-youtube: unicode('fc22');
|
|
171
|
+
$ti-icon-bread: unicode('fe85');
|
|
172
|
+
$ti-icon-briefcase: unicode('fd00');
|
|
173
|
+
$ti-icon-briefcase-2: unicode('fe84');
|
|
174
|
+
$ti-icon-brightness: unicode('fe82');
|
|
175
|
+
$ti-icon-brightness-auto: unicode('fe83');
|
|
176
|
+
$ti-icon-brightness-down: unicode('fb23');
|
|
177
|
+
$ti-icon-brightness-up: unicode('fb24');
|
|
178
|
+
$ti-icon-bug: unicode('fd01');
|
|
179
|
+
$ti-icon-building-broadcast-tower: unicode('fe81');
|
|
180
|
+
$ti-icon-bulb: unicode('f66a');
|
|
181
|
+
$ti-icon-cactus: unicode('fb25');
|
|
182
|
+
$ti-icon-calculator: unicode('fb26');
|
|
183
|
+
$ti-icon-calendar: unicode('fb27');
|
|
184
|
+
$ti-icon-camera: unicode('fa37');
|
|
185
|
+
$ti-icon-campfire: unicode('fb28');
|
|
186
|
+
$ti-icon-candle: unicode('fc23');
|
|
187
|
+
$ti-icon-capsule: unicode('fc24');
|
|
188
|
+
$ti-icon-capsule-horizontal: unicode('fc25');
|
|
189
|
+
$ti-icon-capture: unicode('fb29');
|
|
190
|
+
$ti-icon-cards: unicode('fc26');
|
|
191
|
+
$ti-icon-caret-down: unicode('fb2a');
|
|
192
|
+
$ti-icon-caret-left: unicode('fb2b');
|
|
193
|
+
$ti-icon-caret-left-right: unicode('fd02');
|
|
194
|
+
$ti-icon-caret-right: unicode('fb2c');
|
|
195
|
+
$ti-icon-caret-up: unicode('fb2d');
|
|
196
|
+
$ti-icon-caret-up-down: unicode('fd03');
|
|
197
|
+
$ti-icon-carousel-horizontal: unicode('fa92');
|
|
198
|
+
$ti-icon-carousel-vertical: unicode('fa93');
|
|
199
|
+
$ti-icon-cash-banknote: unicode('fe80');
|
|
200
|
+
$ti-icon-category: unicode('fb2e');
|
|
201
|
+
$ti-icon-chart-area: unicode('f66b');
|
|
202
|
+
$ti-icon-chart-area-line: unicode('f66c');
|
|
203
|
+
$ti-icon-chart-bubble: unicode('f66d');
|
|
204
|
+
$ti-icon-chart-candle: unicode('f66e');
|
|
205
|
+
$ti-icon-chart-donut: unicode('f66f');
|
|
206
|
+
$ti-icon-chart-dots: unicode('fd04');
|
|
207
|
+
$ti-icon-chart-grid-dots: unicode('fd05');
|
|
208
|
+
$ti-icon-chart-pie: unicode('f670');
|
|
209
|
+
$ti-icon-cherry: unicode('f728');
|
|
210
|
+
$ti-icon-chess: unicode('f72a');
|
|
211
|
+
$ti-icon-chess-bishop: unicode('f729');
|
|
212
|
+
$ti-icon-chess-king: unicode('f72b');
|
|
213
|
+
$ti-icon-chess-knight: unicode('f72c');
|
|
214
|
+
$ti-icon-chess-queen: unicode('f72d');
|
|
215
|
+
$ti-icon-chess-rook: unicode('f72e');
|
|
216
|
+
$ti-icon-circle: unicode('f671');
|
|
217
|
+
$ti-icon-circle-arrow-down: unicode('f6f4');
|
|
218
|
+
$ti-icon-circle-arrow-down-left: unicode('f6f5');
|
|
219
|
+
$ti-icon-circle-arrow-down-right: unicode('f6f7');
|
|
220
|
+
$ti-icon-circle-arrow-left: unicode('f6fa');
|
|
221
|
+
$ti-icon-circle-arrow-right: unicode('f6fc');
|
|
222
|
+
$ti-icon-circle-arrow-up: unicode('f6fe');
|
|
223
|
+
$ti-icon-circle-arrow-up-left: unicode('f6ff');
|
|
224
|
+
$ti-icon-circle-arrow-up-right: unicode('f701');
|
|
225
|
+
$ti-icon-circle-check: unicode('f704');
|
|
226
|
+
$ti-icon-circle-dot: unicode('f705');
|
|
227
|
+
$ti-icon-circle-key: unicode('f706');
|
|
228
|
+
$ti-icon-circle-letter-a: unicode('fe7f');
|
|
229
|
+
$ti-icon-circle-letter-b: unicode('fe7e');
|
|
230
|
+
$ti-icon-circle-letter-c: unicode('fe7d');
|
|
231
|
+
$ti-icon-circle-letter-d: unicode('fe7c');
|
|
232
|
+
$ti-icon-circle-letter-e: unicode('fe7b');
|
|
233
|
+
$ti-icon-circle-letter-f: unicode('fe7a');
|
|
234
|
+
$ti-icon-circle-letter-g: unicode('fe79');
|
|
235
|
+
$ti-icon-circle-letter-h: unicode('fe78');
|
|
236
|
+
$ti-icon-circle-letter-i: unicode('fe77');
|
|
237
|
+
$ti-icon-circle-letter-j: unicode('fe76');
|
|
238
|
+
$ti-icon-circle-letter-k: unicode('fe75');
|
|
239
|
+
$ti-icon-circle-letter-l: unicode('fe74');
|
|
240
|
+
$ti-icon-circle-letter-m: unicode('fe73');
|
|
241
|
+
$ti-icon-circle-letter-n: unicode('fe72');
|
|
242
|
+
$ti-icon-circle-letter-o: unicode('fe71');
|
|
243
|
+
$ti-icon-circle-letter-p: unicode('fe70');
|
|
244
|
+
$ti-icon-circle-letter-q: unicode('fe6f');
|
|
245
|
+
$ti-icon-circle-letter-r: unicode('fe6e');
|
|
246
|
+
$ti-icon-circle-letter-s: unicode('fe6d');
|
|
247
|
+
$ti-icon-circle-letter-t: unicode('fe6c');
|
|
248
|
+
$ti-icon-circle-letter-u: unicode('fe6b');
|
|
249
|
+
$ti-icon-circle-letter-v: unicode('fe6a');
|
|
250
|
+
$ti-icon-circle-letter-w: unicode('fe69');
|
|
251
|
+
$ti-icon-circle-letter-x: unicode('fe68');
|
|
252
|
+
$ti-icon-circle-letter-y: unicode('fe67');
|
|
253
|
+
$ti-icon-circle-letter-z: unicode('fe66');
|
|
254
|
+
$ti-icon-circle-number-0: unicode('f72f');
|
|
255
|
+
$ti-icon-circle-number-1: unicode('f730');
|
|
256
|
+
$ti-icon-circle-number-2: unicode('f731');
|
|
257
|
+
$ti-icon-circle-number-3: unicode('f732');
|
|
258
|
+
$ti-icon-circle-number-4: unicode('f733');
|
|
259
|
+
$ti-icon-circle-number-5: unicode('f734');
|
|
260
|
+
$ti-icon-circle-number-6: unicode('f735');
|
|
261
|
+
$ti-icon-circle-number-7: unicode('f736');
|
|
262
|
+
$ti-icon-circle-number-8: unicode('f737');
|
|
263
|
+
$ti-icon-circle-number-9: unicode('f738');
|
|
264
|
+
$ti-icon-circle-x: unicode('f739');
|
|
265
|
+
$ti-icon-circles: unicode('f672');
|
|
266
|
+
$ti-icon-clock: unicode('f73a');
|
|
267
|
+
$ti-icon-clock-hour-1: unicode('fe65');
|
|
268
|
+
$ti-icon-clock-hour-10: unicode('fe64');
|
|
269
|
+
$ti-icon-clock-hour-11: unicode('fe63');
|
|
270
|
+
$ti-icon-clock-hour-12: unicode('fe62');
|
|
271
|
+
$ti-icon-clock-hour-2: unicode('fe61');
|
|
272
|
+
$ti-icon-clock-hour-3: unicode('fe60');
|
|
273
|
+
$ti-icon-clock-hour-4: unicode('fe5f');
|
|
274
|
+
$ti-icon-clock-hour-5: unicode('fe5e');
|
|
275
|
+
$ti-icon-clock-hour-6: unicode('fe5d');
|
|
276
|
+
$ti-icon-clock-hour-7: unicode('fe5c');
|
|
277
|
+
$ti-icon-clock-hour-8: unicode('fe5b');
|
|
278
|
+
$ti-icon-clock-hour-9: unicode('fe5a');
|
|
279
|
+
$ti-icon-cloud: unicode('f673');
|
|
280
|
+
$ti-icon-clubs: unicode('f674');
|
|
281
|
+
$ti-icon-coin: unicode('fd08');
|
|
282
|
+
$ti-icon-coin-bitcoin: unicode('fd06');
|
|
283
|
+
$ti-icon-coin-euro: unicode('fd07');
|
|
284
|
+
$ti-icon-coin-monero: unicode('fd09');
|
|
285
|
+
$ti-icon-coin-pound: unicode('fd0a');
|
|
286
|
+
$ti-icon-coin-rupee: unicode('fd0b');
|
|
287
|
+
$ti-icon-coin-taka: unicode('fd0c');
|
|
288
|
+
$ti-icon-coin-yen: unicode('fd0e');
|
|
289
|
+
$ti-icon-coin-yuan: unicode('fd0f');
|
|
290
|
+
$ti-icon-compass: unicode('fd10');
|
|
291
|
+
$ti-icon-cone: unicode('fe58');
|
|
292
|
+
$ti-icon-cone-2: unicode('fe59');
|
|
293
|
+
$ti-icon-contrast: unicode('fe56');
|
|
294
|
+
$ti-icon-contrast-2: unicode('fe57');
|
|
295
|
+
$ti-icon-cookie: unicode('fe54');
|
|
296
|
+
$ti-icon-cookie-man: unicode('fe55');
|
|
297
|
+
$ti-icon-copy-check: unicode('fe53');
|
|
298
|
+
$ti-icon-copy-minus: unicode('fe52');
|
|
299
|
+
$ti-icon-copy-plus: unicode('fe51');
|
|
300
|
+
$ti-icon-copy-x: unicode('fe50');
|
|
301
|
+
$ti-icon-copyleft: unicode('f73b');
|
|
302
|
+
$ti-icon-copyright: unicode('f73c');
|
|
303
|
+
$ti-icon-credit-card: unicode('fd11');
|
|
304
|
+
$ti-icon-crop-1-1: unicode('fe4f');
|
|
305
|
+
$ti-icon-crop-16-9: unicode('fe4e');
|
|
306
|
+
$ti-icon-crop-3-2: unicode('fe4d');
|
|
307
|
+
$ti-icon-crop-5-4: unicode('fe4c');
|
|
308
|
+
$ti-icon-crop-7-5: unicode('fe4b');
|
|
309
|
+
$ti-icon-crop-landscape: unicode('fe4a');
|
|
310
|
+
$ti-icon-crop-portrait: unicode('fe49');
|
|
311
|
+
$ti-icon-cross: unicode('f675');
|
|
312
|
+
$ti-icon-device-heart-monitor: unicode('fa38');
|
|
313
|
+
$ti-icon-device-mobile: unicode('fa39');
|
|
314
|
+
$ti-icon-device-tablet: unicode('fa3a');
|
|
315
|
+
$ti-icon-dialpad: unicode('fa3b');
|
|
316
|
+
$ti-icon-diamond: unicode('f73d');
|
|
317
|
+
$ti-icon-diamonds: unicode('f676');
|
|
318
|
+
$ti-icon-dice: unicode('f744');
|
|
319
|
+
$ti-icon-dice-1: unicode('f73e');
|
|
320
|
+
$ti-icon-dice-2: unicode('f73f');
|
|
321
|
+
$ti-icon-dice-3: unicode('f740');
|
|
322
|
+
$ti-icon-dice-4: unicode('f741');
|
|
323
|
+
$ti-icon-dice-5: unicode('f742');
|
|
324
|
+
$ti-icon-dice-6: unicode('f743');
|
|
325
|
+
$ti-icon-direction-sign: unicode('f745');
|
|
326
|
+
$ti-icon-droplet: unicode('ee80');
|
|
327
|
+
$ti-icon-droplet-half: unicode('f6c5');
|
|
328
|
+
$ti-icon-droplet-half-2: unicode('fb6c');
|
|
329
|
+
$ti-icon-egg: unicode('f678');
|
|
330
|
+
$ti-icon-eye: unicode('f679');
|
|
331
|
+
$ti-icon-file: unicode('f747');
|
|
332
|
+
$ti-icon-file-x: unicode('f748');
|
|
333
|
+
$ti-icon-filter: unicode('fc27');
|
|
334
|
+
$ti-icon-flag: unicode('f67a');
|
|
335
|
+
$ti-icon-flag-2: unicode('f707');
|
|
336
|
+
$ti-icon-flag-3: unicode('f708');
|
|
337
|
+
$ti-icon-flask: unicode('fd13');
|
|
338
|
+
$ti-icon-flask-2: unicode('fd12');
|
|
339
|
+
$ti-icon-folder: unicode('f749');
|
|
340
|
+
$ti-icon-forbid: unicode('fc29');
|
|
341
|
+
$ti-icon-forbid-2: unicode('fc28');
|
|
342
|
+
$ti-icon-fountain: unicode('fc2a');
|
|
343
|
+
$ti-icon-function: unicode('fc2b');
|
|
344
|
+
$ti-icon-gauge: unicode('fc2c');
|
|
345
|
+
$ti-icon-ghost: unicode('f74b');
|
|
346
|
+
$ti-icon-ghost-2: unicode('f74a');
|
|
347
|
+
$ti-icon-gift: unicode('fd14');
|
|
348
|
+
$ti-icon-gift-card: unicode('fc2d');
|
|
349
|
+
$ti-icon-glass-full: unicode('fc2e');
|
|
350
|
+
$ti-icon-globe: unicode('fc2f');
|
|
351
|
+
$ti-icon-gps: unicode('fe48');
|
|
352
|
+
$ti-icon-graph: unicode('fd15');
|
|
353
|
+
$ti-icon-guitar-pick: unicode('f67b');
|
|
354
|
+
$ti-icon-headphones: unicode('fa3c');
|
|
355
|
+
$ti-icon-heart: unicode('f67c');
|
|
356
|
+
$ti-icon-help-circle: unicode('fa3d');
|
|
357
|
+
$ti-icon-help-hexagon: unicode('fa3e');
|
|
358
|
+
$ti-icon-help-octagon: unicode('fa3f');
|
|
359
|
+
$ti-icon-help-square: unicode('fa40');
|
|
360
|
+
$ti-icon-help-square-rounded: unicode('fa41');
|
|
361
|
+
$ti-icon-help-triangle: unicode('fa42');
|
|
362
|
+
$ti-icon-hexagon: unicode('f67d');
|
|
363
|
+
$ti-icon-hexagon-letter-a: unicode('fe47');
|
|
364
|
+
$ti-icon-hexagon-letter-b: unicode('fe46');
|
|
365
|
+
$ti-icon-hexagon-letter-c: unicode('fe45');
|
|
366
|
+
$ti-icon-hexagon-letter-d: unicode('fe44');
|
|
367
|
+
$ti-icon-hexagon-letter-e: unicode('fe43');
|
|
368
|
+
$ti-icon-hexagon-letter-f: unicode('fe42');
|
|
369
|
+
$ti-icon-hexagon-letter-g: unicode('fe41');
|
|
370
|
+
$ti-icon-hexagon-letter-h: unicode('fe40');
|
|
371
|
+
$ti-icon-hexagon-letter-i: unicode('fe3f');
|
|
372
|
+
$ti-icon-hexagon-letter-j: unicode('fe3e');
|
|
373
|
+
$ti-icon-hexagon-letter-k: unicode('fe3d');
|
|
374
|
+
$ti-icon-hexagon-letter-l: unicode('fe3c');
|
|
375
|
+
$ti-icon-hexagon-letter-m: unicode('fe3b');
|
|
376
|
+
$ti-icon-hexagon-letter-n: unicode('fe3a');
|
|
377
|
+
$ti-icon-hexagon-letter-o: unicode('fe39');
|
|
378
|
+
$ti-icon-hexagon-letter-p: unicode('fe38');
|
|
379
|
+
$ti-icon-hexagon-letter-q: unicode('fe37');
|
|
380
|
+
$ti-icon-hexagon-letter-r: unicode('fe36');
|
|
381
|
+
$ti-icon-hexagon-letter-s: unicode('fe35');
|
|
382
|
+
$ti-icon-hexagon-letter-t: unicode('fe34');
|
|
383
|
+
$ti-icon-hexagon-letter-u: unicode('fe33');
|
|
384
|
+
$ti-icon-hexagon-letter-v: unicode('fe32');
|
|
385
|
+
$ti-icon-hexagon-letter-w: unicode('fe31');
|
|
386
|
+
$ti-icon-hexagon-letter-x: unicode('fe30');
|
|
387
|
+
$ti-icon-hexagon-letter-y: unicode('fe2f');
|
|
388
|
+
$ti-icon-hexagon-letter-z: unicode('fe2e');
|
|
389
|
+
$ti-icon-hexagon-minus: unicode('fe2d');
|
|
390
|
+
$ti-icon-hexagon-number-0: unicode('f74c');
|
|
391
|
+
$ti-icon-hexagon-number-1: unicode('f74d');
|
|
392
|
+
$ti-icon-hexagon-number-2: unicode('f74e');
|
|
393
|
+
$ti-icon-hexagon-number-3: unicode('f74f');
|
|
394
|
+
$ti-icon-hexagon-number-4: unicode('f750');
|
|
395
|
+
$ti-icon-hexagon-number-5: unicode('f751');
|
|
396
|
+
$ti-icon-hexagon-number-6: unicode('f752');
|
|
397
|
+
$ti-icon-hexagon-number-7: unicode('f753');
|
|
398
|
+
$ti-icon-hexagon-number-8: unicode('f754');
|
|
399
|
+
$ti-icon-hexagon-number-9: unicode('f755');
|
|
400
|
+
$ti-icon-hexagon-plus: unicode('fe2c');
|
|
401
|
+
$ti-icon-home: unicode('fe2b');
|
|
402
|
+
$ti-icon-hourglass: unicode('f756');
|
|
403
|
+
$ti-icon-info-circle: unicode('f6d8');
|
|
404
|
+
$ti-icon-info-hexagon: unicode('fa43');
|
|
405
|
+
$ti-icon-info-octagon: unicode('fa44');
|
|
406
|
+
$ti-icon-info-square: unicode('fa45');
|
|
407
|
+
$ti-icon-info-square-rounded: unicode('f6d9');
|
|
408
|
+
$ti-icon-info-triangle: unicode('fa46');
|
|
409
|
+
$ti-icon-inner-shadow-bottom: unicode('f757');
|
|
410
|
+
$ti-icon-inner-shadow-bottom-left: unicode('f758');
|
|
411
|
+
$ti-icon-inner-shadow-bottom-right: unicode('f759');
|
|
412
|
+
$ti-icon-inner-shadow-left: unicode('f75a');
|
|
413
|
+
$ti-icon-inner-shadow-right: unicode('f75b');
|
|
414
|
+
$ti-icon-inner-shadow-top: unicode('f75c');
|
|
415
|
+
$ti-icon-inner-shadow-top-left: unicode('f75d');
|
|
416
|
+
$ti-icon-inner-shadow-top-right: unicode('f75e');
|
|
417
|
+
$ti-icon-ironing: unicode('fe2a');
|
|
418
|
+
$ti-icon-jetpack: unicode('fe29');
|
|
419
|
+
$ti-icon-jewish-star: unicode('f67e');
|
|
420
|
+
$ti-icon-key: unicode('fe28');
|
|
421
|
+
$ti-icon-keyframe: unicode('fc33');
|
|
422
|
+
$ti-icon-keyframe-align-center: unicode('fc30');
|
|
423
|
+
$ti-icon-keyframe-align-horizontal: unicode('fc31');
|
|
424
|
+
$ti-icon-keyframe-align-vertical: unicode('fc32');
|
|
425
|
+
$ti-icon-keyframes: unicode('fc34');
|
|
426
|
+
$ti-icon-layout: unicode('fe17');
|
|
427
|
+
$ti-icon-layout-2: unicode('fe27');
|
|
428
|
+
$ti-icon-layout-align-bottom: unicode('fe26');
|
|
429
|
+
$ti-icon-layout-align-center: unicode('fe25');
|
|
430
|
+
$ti-icon-layout-align-left: unicode('fe24');
|
|
431
|
+
$ti-icon-layout-align-middle: unicode('fe23');
|
|
432
|
+
$ti-icon-layout-align-right: unicode('fe22');
|
|
433
|
+
$ti-icon-layout-align-top: unicode('fe21');
|
|
434
|
+
$ti-icon-layout-bottombar: unicode('fc37');
|
|
435
|
+
$ti-icon-layout-bottombar-collapse: unicode('fc35');
|
|
436
|
+
$ti-icon-layout-bottombar-expand: unicode('fc36');
|
|
437
|
+
$ti-icon-layout-cards: unicode('fe20');
|
|
438
|
+
$ti-icon-layout-dashboard: unicode('fe1f');
|
|
439
|
+
$ti-icon-layout-distribute-horizontal: unicode('fe1e');
|
|
440
|
+
$ti-icon-layout-distribute-vertical: unicode('fe1d');
|
|
441
|
+
$ti-icon-layout-grid: unicode('fe1c');
|
|
442
|
+
$ti-icon-layout-kanban: unicode('fe1b');
|
|
443
|
+
$ti-icon-layout-list: unicode('fe1a');
|
|
444
|
+
$ti-icon-layout-navbar: unicode('fc3a');
|
|
445
|
+
$ti-icon-layout-navbar-collapse: unicode('fc38');
|
|
446
|
+
$ti-icon-layout-navbar-expand: unicode('fc39');
|
|
447
|
+
$ti-icon-layout-sidebar: unicode('fe18');
|
|
448
|
+
$ti-icon-layout-sidebar-left-collapse: unicode('fc3b');
|
|
449
|
+
$ti-icon-layout-sidebar-left-expand: unicode('fc3c');
|
|
450
|
+
$ti-icon-layout-sidebar-right: unicode('fe19');
|
|
451
|
+
$ti-icon-layout-sidebar-right-collapse: unicode('fc3d');
|
|
452
|
+
$ti-icon-layout-sidebar-right-expand: unicode('fc3e');
|
|
453
|
+
$ti-icon-lego: unicode('fe16');
|
|
454
|
+
$ti-icon-location: unicode('f67f');
|
|
455
|
+
$ti-icon-lock: unicode('fe15');
|
|
456
|
+
$ti-icon-lock-square-rounded: unicode('f6da');
|
|
457
|
+
$ti-icon-lungs: unicode('fe14');
|
|
458
|
+
$ti-icon-macro: unicode('fe13');
|
|
459
|
+
$ti-icon-magnet: unicode('fe12');
|
|
460
|
+
$ti-icon-mail: unicode('fa47');
|
|
461
|
+
$ti-icon-mail-opened: unicode('fa48');
|
|
462
|
+
$ti-icon-man: unicode('fe11');
|
|
463
|
+
$ti-icon-manual-gearbox: unicode('fe10');
|
|
464
|
+
$ti-icon-map-pin: unicode('f680');
|
|
465
|
+
$ti-icon-medical-cross: unicode('f681');
|
|
466
|
+
$ti-icon-message-circle-2: unicode('f682');
|
|
467
|
+
$ti-icon-mickey: unicode('f683');
|
|
468
|
+
$ti-icon-microphone: unicode('fe0f');
|
|
469
|
+
$ti-icon-microwave: unicode('fe0e');
|
|
470
|
+
$ti-icon-mood-confuzed: unicode('f7f2');
|
|
471
|
+
$ti-icon-mood-empty: unicode('f7f3');
|
|
472
|
+
$ti-icon-mood-happy: unicode('f7f4');
|
|
473
|
+
$ti-icon-mood-kid: unicode('f7f5');
|
|
474
|
+
$ti-icon-mood-neutral: unicode('f7f6');
|
|
475
|
+
$ti-icon-mood-sad: unicode('f7f7');
|
|
476
|
+
$ti-icon-mood-smile: unicode('f7f8');
|
|
477
|
+
$ti-icon-moon: unicode('f684');
|
|
478
|
+
$ti-icon-mouse: unicode('fb2f');
|
|
479
|
+
$ti-icon-mushroom: unicode('f7f9');
|
|
480
|
+
$ti-icon-navigation: unicode('f685');
|
|
481
|
+
$ti-icon-octagon: unicode('f686');
|
|
482
|
+
$ti-icon-oval: unicode('f687');
|
|
483
|
+
$ti-icon-oval-vertical: unicode('f688');
|
|
484
|
+
$ti-icon-paint: unicode('f75f');
|
|
485
|
+
$ti-icon-paw: unicode('f689');
|
|
486
|
+
$ti-icon-pennant: unicode('f68b');
|
|
487
|
+
$ti-icon-pennant-2: unicode('f68a');
|
|
488
|
+
$ti-icon-pentagon: unicode('f68c');
|
|
489
|
+
$ti-icon-phone: unicode('fa49');
|
|
490
|
+
$ti-icon-photo: unicode('fa4a');
|
|
491
|
+
$ti-icon-pin: unicode('f68d');
|
|
492
|
+
$ti-icon-pinned: unicode('f68e');
|
|
493
|
+
$ti-icon-player-eject: unicode('f68f');
|
|
494
|
+
$ti-icon-player-pause: unicode('f690');
|
|
495
|
+
$ti-icon-player-play: unicode('f691');
|
|
496
|
+
$ti-icon-player-record: unicode('f692');
|
|
497
|
+
$ti-icon-player-skip-back: unicode('f693');
|
|
498
|
+
$ti-icon-player-skip-forward: unicode('f694');
|
|
499
|
+
$ti-icon-player-stop: unicode('f695');
|
|
500
|
+
$ti-icon-player-track-next: unicode('f696');
|
|
501
|
+
$ti-icon-player-track-prev: unicode('f697');
|
|
502
|
+
$ti-icon-point: unicode('f698');
|
|
503
|
+
$ti-icon-pointer: unicode('fb30');
|
|
504
|
+
$ti-icon-polaroid: unicode('fa4b');
|
|
505
|
+
$ti-icon-puzzle: unicode('f699');
|
|
506
|
+
$ti-icon-radar: unicode('fe0d');
|
|
507
|
+
$ti-icon-radioactive: unicode('f760');
|
|
508
|
+
$ti-icon-rectangle: unicode('f69a');
|
|
509
|
+
$ti-icon-rectangle-vertical: unicode('f69b');
|
|
510
|
+
$ti-icon-relation-many-to-many: unicode('fe0c');
|
|
511
|
+
$ti-icon-relation-one-to-many: unicode('fe0b');
|
|
512
|
+
$ti-icon-relation-one-to-one: unicode('fe0a');
|
|
513
|
+
$ti-icon-replace: unicode('f69c');
|
|
514
|
+
$ti-icon-rosette: unicode('f69d');
|
|
515
|
+
$ti-icon-rosette-discount-check: unicode('f746');
|
|
516
|
+
$ti-icon-section: unicode('fe09');
|
|
517
|
+
$ti-icon-settings: unicode('f69e');
|
|
518
|
+
$ti-icon-shield: unicode('f69f');
|
|
519
|
+
$ti-icon-shield-check: unicode('f761');
|
|
520
|
+
$ti-icon-shield-checkered: unicode('f762');
|
|
521
|
+
$ti-icon-shield-half: unicode('f357');
|
|
522
|
+
$ti-icon-shield-lock: unicode('f763');
|
|
523
|
+
$ti-icon-shirt: unicode('f6a0');
|
|
524
|
+
$ti-icon-shopping-cart: unicode('fc3f');
|
|
525
|
+
$ti-icon-sign-left: unicode('f6a1');
|
|
526
|
+
$ti-icon-sign-right: unicode('f6a2');
|
|
527
|
+
$ti-icon-soup: unicode('fe08');
|
|
528
|
+
$ti-icon-spade: unicode('f6a3');
|
|
529
|
+
$ti-icon-square: unicode('fc40');
|
|
530
|
+
$ti-icon-square-arrow-down: unicode('fb31');
|
|
531
|
+
$ti-icon-square-arrow-left: unicode('fb32');
|
|
532
|
+
$ti-icon-square-arrow-right: unicode('fb33');
|
|
533
|
+
$ti-icon-square-arrow-up: unicode('fb34');
|
|
534
|
+
$ti-icon-square-asterisk: unicode('fb35');
|
|
535
|
+
$ti-icon-square-check: unicode('f76d');
|
|
536
|
+
$ti-icon-square-chevron-down: unicode('fb36');
|
|
537
|
+
$ti-icon-square-chevron-left: unicode('fb37');
|
|
538
|
+
$ti-icon-square-chevron-right: unicode('fb38');
|
|
539
|
+
$ti-icon-square-chevron-up: unicode('fb39');
|
|
540
|
+
$ti-icon-square-chevrons-down: unicode('fb3a');
|
|
541
|
+
$ti-icon-square-chevrons-left: unicode('fb3b');
|
|
542
|
+
$ti-icon-square-chevrons-right: unicode('fb3c');
|
|
543
|
+
$ti-icon-square-chevrons-up: unicode('fb3d');
|
|
544
|
+
$ti-icon-square-dot: unicode('fb3e');
|
|
545
|
+
$ti-icon-square-f0: unicode('f76e');
|
|
546
|
+
$ti-icon-square-f1: unicode('f76f');
|
|
547
|
+
$ti-icon-square-f2: unicode('f770');
|
|
548
|
+
$ti-icon-square-f3: unicode('f771');
|
|
549
|
+
$ti-icon-square-f4: unicode('f772');
|
|
550
|
+
$ti-icon-square-f5: unicode('f773');
|
|
551
|
+
$ti-icon-square-f6: unicode('f774');
|
|
552
|
+
$ti-icon-square-f7: unicode('f775');
|
|
553
|
+
$ti-icon-square-f8: unicode('f776');
|
|
554
|
+
$ti-icon-square-f9: unicode('f777');
|
|
555
|
+
$ti-icon-square-letter-a: unicode('fe07');
|
|
556
|
+
$ti-icon-square-letter-b: unicode('fe06');
|
|
557
|
+
$ti-icon-square-letter-c: unicode('fe05');
|
|
558
|
+
$ti-icon-square-letter-d: unicode('fe04');
|
|
559
|
+
$ti-icon-square-letter-e: unicode('fe03');
|
|
560
|
+
$ti-icon-square-letter-f: unicode('fe02');
|
|
561
|
+
$ti-icon-square-letter-g: unicode('fe01');
|
|
562
|
+
$ti-icon-square-letter-h: unicode('fe00');
|
|
563
|
+
$ti-icon-square-letter-i: unicode('fdff');
|
|
564
|
+
$ti-icon-square-letter-j: unicode('fdfe');
|
|
565
|
+
$ti-icon-square-letter-k: unicode('fdfd');
|
|
566
|
+
$ti-icon-square-letter-l: unicode('fdfc');
|
|
567
|
+
$ti-icon-square-letter-m: unicode('fdfb');
|
|
568
|
+
$ti-icon-square-letter-n: unicode('fdfa');
|
|
569
|
+
$ti-icon-square-letter-o: unicode('fdf9');
|
|
570
|
+
$ti-icon-square-letter-p: unicode('fdf8');
|
|
571
|
+
$ti-icon-square-letter-q: unicode('fdf7');
|
|
572
|
+
$ti-icon-square-letter-r: unicode('fdf6');
|
|
573
|
+
$ti-icon-square-letter-s: unicode('fdf5');
|
|
574
|
+
$ti-icon-square-letter-t: unicode('fdf4');
|
|
575
|
+
$ti-icon-square-letter-u: unicode('fdf3');
|
|
576
|
+
$ti-icon-square-letter-v: unicode('fdf2');
|
|
577
|
+
$ti-icon-square-letter-w: unicode('fdf1');
|
|
578
|
+
$ti-icon-square-letter-x: unicode('fdf0');
|
|
579
|
+
$ti-icon-square-letter-y: unicode('fdef');
|
|
580
|
+
$ti-icon-square-letter-z: unicode('fdee');
|
|
581
|
+
$ti-icon-square-minus: unicode('fb3f');
|
|
582
|
+
$ti-icon-square-number-0: unicode('f764');
|
|
583
|
+
$ti-icon-square-number-1: unicode('f765');
|
|
584
|
+
$ti-icon-square-number-2: unicode('f7fa');
|
|
585
|
+
$ti-icon-square-number-3: unicode('f766');
|
|
586
|
+
$ti-icon-square-number-4: unicode('f767');
|
|
587
|
+
$ti-icon-square-number-5: unicode('f768');
|
|
588
|
+
$ti-icon-square-number-6: unicode('f769');
|
|
589
|
+
$ti-icon-square-number-7: unicode('f76a');
|
|
590
|
+
$ti-icon-square-number-8: unicode('f76b');
|
|
591
|
+
$ti-icon-square-number-9: unicode('f76c');
|
|
592
|
+
$ti-icon-square-rotated: unicode('f6a4');
|
|
593
|
+
$ti-icon-square-rounded: unicode('f6a5');
|
|
594
|
+
$ti-icon-square-rounded-arrow-down: unicode('f6db');
|
|
595
|
+
$ti-icon-square-rounded-arrow-left: unicode('f6dc');
|
|
596
|
+
$ti-icon-square-rounded-arrow-right: unicode('f6dd');
|
|
597
|
+
$ti-icon-square-rounded-arrow-up: unicode('f6de');
|
|
598
|
+
$ti-icon-square-rounded-check: unicode('f6df');
|
|
599
|
+
$ti-icon-square-rounded-chevron-down: unicode('f6e0');
|
|
600
|
+
$ti-icon-square-rounded-chevron-left: unicode('f6e1');
|
|
601
|
+
$ti-icon-square-rounded-chevron-right: unicode('f6e2');
|
|
602
|
+
$ti-icon-square-rounded-chevron-up: unicode('f6e3');
|
|
603
|
+
$ti-icon-square-rounded-chevrons-down: unicode('f6e4');
|
|
604
|
+
$ti-icon-square-rounded-chevrons-left: unicode('f6e5');
|
|
605
|
+
$ti-icon-square-rounded-chevrons-right: unicode('f6e6');
|
|
606
|
+
$ti-icon-square-rounded-chevrons-up: unicode('f6e7');
|
|
607
|
+
$ti-icon-square-rounded-letter-a: unicode('fded');
|
|
608
|
+
$ti-icon-square-rounded-letter-b: unicode('fdec');
|
|
609
|
+
$ti-icon-square-rounded-letter-c: unicode('fdeb');
|
|
610
|
+
$ti-icon-square-rounded-letter-d: unicode('fdea');
|
|
611
|
+
$ti-icon-square-rounded-letter-e: unicode('fde9');
|
|
612
|
+
$ti-icon-square-rounded-letter-f: unicode('fde8');
|
|
613
|
+
$ti-icon-square-rounded-letter-g: unicode('fde7');
|
|
614
|
+
$ti-icon-square-rounded-letter-h: unicode('fde6');
|
|
615
|
+
$ti-icon-square-rounded-letter-i: unicode('fde5');
|
|
616
|
+
$ti-icon-square-rounded-letter-j: unicode('fde4');
|
|
617
|
+
$ti-icon-square-rounded-letter-k: unicode('fde3');
|
|
618
|
+
$ti-icon-square-rounded-letter-l: unicode('fde2');
|
|
619
|
+
$ti-icon-square-rounded-letter-m: unicode('fde1');
|
|
620
|
+
$ti-icon-square-rounded-letter-n: unicode('fde0');
|
|
621
|
+
$ti-icon-square-rounded-letter-o: unicode('fddf');
|
|
622
|
+
$ti-icon-square-rounded-letter-p: unicode('fdde');
|
|
623
|
+
$ti-icon-square-rounded-letter-q: unicode('fddd');
|
|
624
|
+
$ti-icon-square-rounded-letter-r: unicode('fddc');
|
|
625
|
+
$ti-icon-square-rounded-letter-s: unicode('fddb');
|
|
626
|
+
$ti-icon-square-rounded-letter-t: unicode('fdda');
|
|
627
|
+
$ti-icon-square-rounded-letter-u: unicode('fdd9');
|
|
628
|
+
$ti-icon-square-rounded-letter-v: unicode('fdd8');
|
|
629
|
+
$ti-icon-square-rounded-letter-w: unicode('fdd7');
|
|
630
|
+
$ti-icon-square-rounded-letter-x: unicode('fdd6');
|
|
631
|
+
$ti-icon-square-rounded-letter-y: unicode('fdd5');
|
|
632
|
+
$ti-icon-square-rounded-letter-z: unicode('fdd4');
|
|
633
|
+
$ti-icon-square-rounded-minus: unicode('fb40');
|
|
634
|
+
$ti-icon-square-rounded-number-0: unicode('f778');
|
|
635
|
+
$ti-icon-square-rounded-number-1: unicode('f779');
|
|
636
|
+
$ti-icon-square-rounded-number-2: unicode('f77a');
|
|
637
|
+
$ti-icon-square-rounded-number-3: unicode('f77b');
|
|
638
|
+
$ti-icon-square-rounded-number-4: unicode('f77c');
|
|
639
|
+
$ti-icon-square-rounded-number-5: unicode('f77d');
|
|
640
|
+
$ti-icon-square-rounded-number-6: unicode('f77e');
|
|
641
|
+
$ti-icon-square-rounded-number-7: unicode('f77f');
|
|
642
|
+
$ti-icon-square-rounded-number-8: unicode('f780');
|
|
643
|
+
$ti-icon-square-rounded-number-9: unicode('f781');
|
|
644
|
+
$ti-icon-square-rounded-plus: unicode('f6e8');
|
|
645
|
+
$ti-icon-square-rounded-x: unicode('f6e9');
|
|
646
|
+
$ti-icon-square-x: unicode('fb41');
|
|
647
|
+
$ti-icon-stack: unicode('fdd1');
|
|
648
|
+
$ti-icon-stack-2: unicode('fdd3');
|
|
649
|
+
$ti-icon-stack-3: unicode('fdd2');
|
|
650
|
+
$ti-icon-star: unicode('f6a6');
|
|
651
|
+
$ti-icon-star-half: unicode('f6a7');
|
|
652
|
+
$ti-icon-stars: unicode('f6a8');
|
|
653
|
+
$ti-icon-sun: unicode('f6a9');
|
|
654
|
+
$ti-icon-table: unicode('f782');
|
|
655
|
+
$ti-icon-thumb-down: unicode('f6aa');
|
|
656
|
+
$ti-icon-thumb-up: unicode('f6ab');
|
|
657
|
+
$ti-icon-timeline-event: unicode('fd18');
|
|
658
|
+
$ti-icon-transform: unicode('f6ac');
|
|
659
|
+
$ti-icon-transition-bottom: unicode('fdd0');
|
|
660
|
+
$ti-icon-transition-left: unicode('fdcf');
|
|
661
|
+
$ti-icon-transition-right: unicode('fdce');
|
|
662
|
+
$ti-icon-transition-top: unicode('fdcd');
|
|
663
|
+
$ti-icon-trash: unicode('f783');
|
|
664
|
+
$ti-icon-trash-x: unicode('f784');
|
|
665
|
+
$ti-icon-triangle: unicode('f6ad');
|
|
666
|
+
$ti-icon-triangle-inverted: unicode('f6ae');
|
|
667
|
+
$ti-icon-triangle-square-circle: unicode('fb42');
|
|
668
|
+
$ti-icon-trophy: unicode('f6af');
|
|
669
|
+
$ti-icon-umbrella: unicode('f6b0');
|
|
670
|
+
$ti-icon-user: unicode('fd19');
|
|
671
|
+
$ti-icon-versions: unicode('f6b1');
|
|
672
|
+
$ti-icon-windmill: unicode('f6b2');
|
|
673
|
+
$ti-icon-woman: unicode('fdcc');
|
|
674
|
+
$ti-icon-xbox-a: unicode('fdcb');
|
|
675
|
+
$ti-icon-xbox-b: unicode('fdca');
|
|
676
|
+
$ti-icon-xbox-x: unicode('fdc9');
|
|
677
|
+
$ti-icon-xbox-y: unicode('fdc8');
|
|
678
|
+
$ti-icon-yin-yang: unicode('f785');
|
|
679
|
+
$ti-icon-zeppelin: unicode('fdc7');
|
|
680
|
+
$ti-icon-zoom: unicode('f787');
|
|
681
|
+
$ti-icon-zoom-cancel: unicode('fdc6');
|
|
682
|
+
$ti-icon-zoom-check: unicode('f786');
|
|
683
|
+
$ti-icon-zoom-code: unicode('fdc5');
|
|
684
|
+
$ti-icon-zoom-exclamation: unicode('fdc4');
|
|
685
|
+
$ti-icon-zoom-in: unicode('f789');
|
|
686
|
+
$ti-icon-zoom-in-area: unicode('f788');
|
|
687
|
+
$ti-icon-zoom-money: unicode('fdc3');
|
|
688
|
+
$ti-icon-zoom-out: unicode('f78a');
|
|
689
|
+
$ti-icon-zoom-out-area: unicode('fdc2');
|
|
690
|
+
$ti-icon-zoom-pan: unicode('fdc1');
|
|
691
|
+
$ti-icon-zoom-question: unicode('fdc0');
|
|
692
|
+
$ti-icon-zoom-scan: unicode('fdbf');
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
.#{$ti-prefix}-accessible-off:before { content: $ti-icon-accessible-off; }
|
|
696
|
+
.#{$ti-prefix}-ad:before { content: $ti-icon-ad; }
|
|
697
|
+
.#{$ti-prefix}-ad-circle:before { content: $ti-icon-ad-circle; }
|
|
698
|
+
.#{$ti-prefix}-adjustments:before { content: $ti-icon-adjustments; }
|
|
699
|
+
.#{$ti-prefix}-affiliate:before { content: $ti-icon-affiliate; }
|
|
700
|
+
.#{$ti-prefix}-alarm:before { content: $ti-icon-alarm; }
|
|
701
|
+
.#{$ti-prefix}-alarm-minus:before { content: $ti-icon-alarm-minus; }
|
|
702
|
+
.#{$ti-prefix}-alarm-plus:before { content: $ti-icon-alarm-plus; }
|
|
703
|
+
.#{$ti-prefix}-alarm-snooze:before { content: $ti-icon-alarm-snooze; }
|
|
704
|
+
.#{$ti-prefix}-alert-circle:before { content: $ti-icon-alert-circle; }
|
|
705
|
+
.#{$ti-prefix}-alert-hexagon:before { content: $ti-icon-alert-hexagon; }
|
|
706
|
+
.#{$ti-prefix}-alert-octagon:before { content: $ti-icon-alert-octagon; }
|
|
707
|
+
.#{$ti-prefix}-alert-square:before { content: $ti-icon-alert-square; }
|
|
708
|
+
.#{$ti-prefix}-alert-square-rounded:before { content: $ti-icon-alert-square-rounded; }
|
|
709
|
+
.#{$ti-prefix}-alert-triangle:before { content: $ti-icon-alert-triangle; }
|
|
710
|
+
.#{$ti-prefix}-alien:before { content: $ti-icon-alien; }
|
|
711
|
+
.#{$ti-prefix}-align-box-bottom-center:before { content: $ti-icon-align-box-bottom-center; }
|
|
712
|
+
.#{$ti-prefix}-align-box-bottom-left:before { content: $ti-icon-align-box-bottom-left; }
|
|
713
|
+
.#{$ti-prefix}-align-box-bottom-right:before { content: $ti-icon-align-box-bottom-right; }
|
|
714
|
+
.#{$ti-prefix}-align-box-center-middle:before { content: $ti-icon-align-box-center-middle; }
|
|
715
|
+
.#{$ti-prefix}-align-box-left-bottom:before { content: $ti-icon-align-box-left-bottom; }
|
|
716
|
+
.#{$ti-prefix}-align-box-left-middle:before { content: $ti-icon-align-box-left-middle; }
|
|
717
|
+
.#{$ti-prefix}-align-box-left-top:before { content: $ti-icon-align-box-left-top; }
|
|
718
|
+
.#{$ti-prefix}-align-box-right-bottom:before { content: $ti-icon-align-box-right-bottom; }
|
|
719
|
+
.#{$ti-prefix}-align-box-right-middle:before { content: $ti-icon-align-box-right-middle; }
|
|
720
|
+
.#{$ti-prefix}-align-box-right-top:before { content: $ti-icon-align-box-right-top; }
|
|
721
|
+
.#{$ti-prefix}-align-box-top-center:before { content: $ti-icon-align-box-top-center; }
|
|
722
|
+
.#{$ti-prefix}-align-box-top-left:before { content: $ti-icon-align-box-top-left; }
|
|
723
|
+
.#{$ti-prefix}-align-box-top-right:before { content: $ti-icon-align-box-top-right; }
|
|
724
|
+
.#{$ti-prefix}-analyze:before { content: $ti-icon-analyze; }
|
|
725
|
+
.#{$ti-prefix}-app-window:before { content: $ti-icon-app-window; }
|
|
726
|
+
.#{$ti-prefix}-apps:before { content: $ti-icon-apps; }
|
|
727
|
+
.#{$ti-prefix}-archive:before { content: $ti-icon-archive; }
|
|
728
|
+
.#{$ti-prefix}-arrow-autofit-content:before { content: $ti-icon-arrow-autofit-content; }
|
|
729
|
+
.#{$ti-prefix}-arrow-badge-down:before { content: $ti-icon-arrow-badge-down; }
|
|
730
|
+
.#{$ti-prefix}-arrow-badge-left:before { content: $ti-icon-arrow-badge-left; }
|
|
731
|
+
.#{$ti-prefix}-arrow-badge-right:before { content: $ti-icon-arrow-badge-right; }
|
|
732
|
+
.#{$ti-prefix}-arrow-badge-up:before { content: $ti-icon-arrow-badge-up; }
|
|
733
|
+
.#{$ti-prefix}-arrow-big-down:before { content: $ti-icon-arrow-big-down; }
|
|
734
|
+
.#{$ti-prefix}-arrow-big-down-line:before { content: $ti-icon-arrow-big-down-line; }
|
|
735
|
+
.#{$ti-prefix}-arrow-big-down-lines:before { content: $ti-icon-arrow-big-down-lines; }
|
|
736
|
+
.#{$ti-prefix}-arrow-big-left:before { content: $ti-icon-arrow-big-left; }
|
|
737
|
+
.#{$ti-prefix}-arrow-big-left-line:before { content: $ti-icon-arrow-big-left-line; }
|
|
738
|
+
.#{$ti-prefix}-arrow-big-left-lines:before { content: $ti-icon-arrow-big-left-lines; }
|
|
739
|
+
.#{$ti-prefix}-arrow-big-right:before { content: $ti-icon-arrow-big-right; }
|
|
740
|
+
.#{$ti-prefix}-arrow-big-right-line:before { content: $ti-icon-arrow-big-right-line; }
|
|
741
|
+
.#{$ti-prefix}-arrow-big-right-lines:before { content: $ti-icon-arrow-big-right-lines; }
|
|
742
|
+
.#{$ti-prefix}-arrow-big-up:before { content: $ti-icon-arrow-big-up; }
|
|
743
|
+
.#{$ti-prefix}-arrow-big-up-line:before { content: $ti-icon-arrow-big-up-line; }
|
|
744
|
+
.#{$ti-prefix}-arrow-big-up-lines:before { content: $ti-icon-arrow-big-up-lines; }
|
|
745
|
+
.#{$ti-prefix}-artboard:before { content: $ti-icon-artboard; }
|
|
746
|
+
.#{$ti-prefix}-article:before { content: $ti-icon-article; }
|
|
747
|
+
.#{$ti-prefix}-aspect-ratio:before { content: $ti-icon-aspect-ratio; }
|
|
748
|
+
.#{$ti-prefix}-assembly:before { content: $ti-icon-assembly; }
|
|
749
|
+
.#{$ti-prefix}-asset:before { content: $ti-icon-asset; }
|
|
750
|
+
.#{$ti-prefix}-atom-2:before { content: $ti-icon-atom-2; }
|
|
751
|
+
.#{$ti-prefix}-award:before { content: $ti-icon-award; }
|
|
752
|
+
.#{$ti-prefix}-baby-carriage:before { content: $ti-icon-baby-carriage; }
|
|
753
|
+
.#{$ti-prefix}-backspace:before { content: $ti-icon-backspace; }
|
|
754
|
+
.#{$ti-prefix}-badge:before { content: $ti-icon-badge; }
|
|
755
|
+
.#{$ti-prefix}-badge-3d:before { content: $ti-icon-badge-3d; }
|
|
756
|
+
.#{$ti-prefix}-badge-4k:before { content: $ti-icon-badge-4k; }
|
|
757
|
+
.#{$ti-prefix}-badge-8k:before { content: $ti-icon-badge-8k; }
|
|
758
|
+
.#{$ti-prefix}-badge-ad:before { content: $ti-icon-badge-ad; }
|
|
759
|
+
.#{$ti-prefix}-badge-ar:before { content: $ti-icon-badge-ar; }
|
|
760
|
+
.#{$ti-prefix}-badge-cc:before { content: $ti-icon-badge-cc; }
|
|
761
|
+
.#{$ti-prefix}-badge-hd:before { content: $ti-icon-badge-hd; }
|
|
762
|
+
.#{$ti-prefix}-badge-sd:before { content: $ti-icon-badge-sd; }
|
|
763
|
+
.#{$ti-prefix}-badge-tm:before { content: $ti-icon-badge-tm; }
|
|
764
|
+
.#{$ti-prefix}-badge-vo:before { content: $ti-icon-badge-vo; }
|
|
765
|
+
.#{$ti-prefix}-badge-vr:before { content: $ti-icon-badge-vr; }
|
|
766
|
+
.#{$ti-prefix}-badge-wc:before { content: $ti-icon-badge-wc; }
|
|
767
|
+
.#{$ti-prefix}-badges:before { content: $ti-icon-badges; }
|
|
768
|
+
.#{$ti-prefix}-balloon:before { content: $ti-icon-balloon; }
|
|
769
|
+
.#{$ti-prefix}-ballpen:before { content: $ti-icon-ballpen; }
|
|
770
|
+
.#{$ti-prefix}-bandage:before { content: $ti-icon-bandage; }
|
|
771
|
+
.#{$ti-prefix}-barbell:before { content: $ti-icon-barbell; }
|
|
772
|
+
.#{$ti-prefix}-barrier-block:before { content: $ti-icon-barrier-block; }
|
|
773
|
+
.#{$ti-prefix}-basket:before { content: $ti-icon-basket; }
|
|
774
|
+
.#{$ti-prefix}-bath:before { content: $ti-icon-bath; }
|
|
775
|
+
.#{$ti-prefix}-battery:before { content: $ti-icon-battery; }
|
|
776
|
+
.#{$ti-prefix}-battery-1:before { content: $ti-icon-battery-1; }
|
|
777
|
+
.#{$ti-prefix}-battery-2:before { content: $ti-icon-battery-2; }
|
|
778
|
+
.#{$ti-prefix}-battery-3:before { content: $ti-icon-battery-3; }
|
|
779
|
+
.#{$ti-prefix}-battery-4:before { content: $ti-icon-battery-4; }
|
|
780
|
+
.#{$ti-prefix}-bed:before { content: $ti-icon-bed; }
|
|
781
|
+
.#{$ti-prefix}-bed-flat:before { content: $ti-icon-bed-flat; }
|
|
782
|
+
.#{$ti-prefix}-beer:before { content: $ti-icon-beer; }
|
|
783
|
+
.#{$ti-prefix}-bell:before { content: $ti-icon-bell; }
|
|
784
|
+
.#{$ti-prefix}-bell-minus:before { content: $ti-icon-bell-minus; }
|
|
785
|
+
.#{$ti-prefix}-bell-plus:before { content: $ti-icon-bell-plus; }
|
|
786
|
+
.#{$ti-prefix}-bell-ringing:before { content: $ti-icon-bell-ringing; }
|
|
787
|
+
.#{$ti-prefix}-bell-ringing-2:before { content: $ti-icon-bell-ringing-2; }
|
|
788
|
+
.#{$ti-prefix}-bell-x:before { content: $ti-icon-bell-x; }
|
|
789
|
+
.#{$ti-prefix}-bell-z:before { content: $ti-icon-bell-z; }
|
|
790
|
+
.#{$ti-prefix}-biohazard:before { content: $ti-icon-biohazard; }
|
|
791
|
+
.#{$ti-prefix}-blade:before { content: $ti-icon-blade; }
|
|
792
|
+
.#{$ti-prefix}-bomb:before { content: $ti-icon-bomb; }
|
|
793
|
+
.#{$ti-prefix}-bone:before { content: $ti-icon-bone; }
|
|
794
|
+
.#{$ti-prefix}-book:before { content: $ti-icon-book; }
|
|
795
|
+
.#{$ti-prefix}-bookmark:before { content: $ti-icon-bookmark; }
|
|
796
|
+
.#{$ti-prefix}-bookmarks:before { content: $ti-icon-bookmarks; }
|
|
797
|
+
.#{$ti-prefix}-boom:before { content: $ti-icon-boom; }
|
|
798
|
+
.#{$ti-prefix}-bottle:before { content: $ti-icon-bottle; }
|
|
799
|
+
.#{$ti-prefix}-bounce-left:before { content: $ti-icon-bounce-left; }
|
|
800
|
+
.#{$ti-prefix}-bounce-right:before { content: $ti-icon-bounce-right; }
|
|
801
|
+
.#{$ti-prefix}-bow:before { content: $ti-icon-bow; }
|
|
802
|
+
.#{$ti-prefix}-bowl:before { content: $ti-icon-bowl; }
|
|
803
|
+
.#{$ti-prefix}-bowl-chopsticks:before { content: $ti-icon-bowl-chopsticks; }
|
|
804
|
+
.#{$ti-prefix}-bowl-spoon:before { content: $ti-icon-bowl-spoon; }
|
|
805
|
+
.#{$ti-prefix}-box-align-bottom:before { content: $ti-icon-box-align-bottom; }
|
|
806
|
+
.#{$ti-prefix}-box-align-bottom-left:before { content: $ti-icon-box-align-bottom-left; }
|
|
807
|
+
.#{$ti-prefix}-box-align-bottom-right:before { content: $ti-icon-box-align-bottom-right; }
|
|
808
|
+
.#{$ti-prefix}-box-align-left:before { content: $ti-icon-box-align-left; }
|
|
809
|
+
.#{$ti-prefix}-box-align-right:before { content: $ti-icon-box-align-right; }
|
|
810
|
+
.#{$ti-prefix}-box-align-top:before { content: $ti-icon-box-align-top; }
|
|
811
|
+
.#{$ti-prefix}-box-align-top-left:before { content: $ti-icon-box-align-top-left; }
|
|
812
|
+
.#{$ti-prefix}-box-align-top-right:before { content: $ti-icon-box-align-top-right; }
|
|
813
|
+
.#{$ti-prefix}-brand-apple:before { content: $ti-icon-brand-apple; }
|
|
814
|
+
.#{$ti-prefix}-brand-discord:before { content: $ti-icon-brand-discord; }
|
|
815
|
+
.#{$ti-prefix}-brand-dribbble:before { content: $ti-icon-brand-dribbble; }
|
|
816
|
+
.#{$ti-prefix}-brand-facebook:before { content: $ti-icon-brand-facebook; }
|
|
817
|
+
.#{$ti-prefix}-brand-github:before { content: $ti-icon-brand-github; }
|
|
818
|
+
.#{$ti-prefix}-brand-google:before { content: $ti-icon-brand-google; }
|
|
819
|
+
.#{$ti-prefix}-brand-patreon:before { content: $ti-icon-brand-patreon; }
|
|
820
|
+
.#{$ti-prefix}-brand-paypal:before { content: $ti-icon-brand-paypal; }
|
|
821
|
+
.#{$ti-prefix}-brand-spotify:before { content: $ti-icon-brand-spotify; }
|
|
822
|
+
.#{$ti-prefix}-brand-tiktok:before { content: $ti-icon-brand-tiktok; }
|
|
823
|
+
.#{$ti-prefix}-brand-twitter:before { content: $ti-icon-brand-twitter; }
|
|
824
|
+
.#{$ti-prefix}-brand-x:before { content: $ti-icon-brand-x; }
|
|
825
|
+
.#{$ti-prefix}-brand-youtube:before { content: $ti-icon-brand-youtube; }
|
|
826
|
+
.#{$ti-prefix}-bread:before { content: $ti-icon-bread; }
|
|
827
|
+
.#{$ti-prefix}-briefcase:before { content: $ti-icon-briefcase; }
|
|
828
|
+
.#{$ti-prefix}-briefcase-2:before { content: $ti-icon-briefcase-2; }
|
|
829
|
+
.#{$ti-prefix}-brightness:before { content: $ti-icon-brightness; }
|
|
830
|
+
.#{$ti-prefix}-brightness-auto:before { content: $ti-icon-brightness-auto; }
|
|
831
|
+
.#{$ti-prefix}-brightness-down:before { content: $ti-icon-brightness-down; }
|
|
832
|
+
.#{$ti-prefix}-brightness-up:before { content: $ti-icon-brightness-up; }
|
|
833
|
+
.#{$ti-prefix}-bug:before { content: $ti-icon-bug; }
|
|
834
|
+
.#{$ti-prefix}-building-broadcast-tower:before { content: $ti-icon-building-broadcast-tower; }
|
|
835
|
+
.#{$ti-prefix}-bulb:before { content: $ti-icon-bulb; }
|
|
836
|
+
.#{$ti-prefix}-cactus:before { content: $ti-icon-cactus; }
|
|
837
|
+
.#{$ti-prefix}-calculator:before { content: $ti-icon-calculator; }
|
|
838
|
+
.#{$ti-prefix}-calendar:before { content: $ti-icon-calendar; }
|
|
839
|
+
.#{$ti-prefix}-camera:before { content: $ti-icon-camera; }
|
|
840
|
+
.#{$ti-prefix}-campfire:before { content: $ti-icon-campfire; }
|
|
841
|
+
.#{$ti-prefix}-candle:before { content: $ti-icon-candle; }
|
|
842
|
+
.#{$ti-prefix}-capsule:before { content: $ti-icon-capsule; }
|
|
843
|
+
.#{$ti-prefix}-capsule-horizontal:before { content: $ti-icon-capsule-horizontal; }
|
|
844
|
+
.#{$ti-prefix}-capture:before { content: $ti-icon-capture; }
|
|
845
|
+
.#{$ti-prefix}-cards:before { content: $ti-icon-cards; }
|
|
846
|
+
.#{$ti-prefix}-caret-down:before { content: $ti-icon-caret-down; }
|
|
847
|
+
.#{$ti-prefix}-caret-left:before { content: $ti-icon-caret-left; }
|
|
848
|
+
.#{$ti-prefix}-caret-left-right:before { content: $ti-icon-caret-left-right; }
|
|
849
|
+
.#{$ti-prefix}-caret-right:before { content: $ti-icon-caret-right; }
|
|
850
|
+
.#{$ti-prefix}-caret-up:before { content: $ti-icon-caret-up; }
|
|
851
|
+
.#{$ti-prefix}-caret-up-down:before { content: $ti-icon-caret-up-down; }
|
|
852
|
+
.#{$ti-prefix}-carousel-horizontal:before { content: $ti-icon-carousel-horizontal; }
|
|
853
|
+
.#{$ti-prefix}-carousel-vertical:before { content: $ti-icon-carousel-vertical; }
|
|
854
|
+
.#{$ti-prefix}-cash-banknote:before { content: $ti-icon-cash-banknote; }
|
|
855
|
+
.#{$ti-prefix}-category:before { content: $ti-icon-category; }
|
|
856
|
+
.#{$ti-prefix}-chart-area:before { content: $ti-icon-chart-area; }
|
|
857
|
+
.#{$ti-prefix}-chart-area-line:before { content: $ti-icon-chart-area-line; }
|
|
858
|
+
.#{$ti-prefix}-chart-bubble:before { content: $ti-icon-chart-bubble; }
|
|
859
|
+
.#{$ti-prefix}-chart-candle:before { content: $ti-icon-chart-candle; }
|
|
860
|
+
.#{$ti-prefix}-chart-donut:before { content: $ti-icon-chart-donut; }
|
|
861
|
+
.#{$ti-prefix}-chart-dots:before { content: $ti-icon-chart-dots; }
|
|
862
|
+
.#{$ti-prefix}-chart-grid-dots:before { content: $ti-icon-chart-grid-dots; }
|
|
863
|
+
.#{$ti-prefix}-chart-pie:before { content: $ti-icon-chart-pie; }
|
|
864
|
+
.#{$ti-prefix}-cherry:before { content: $ti-icon-cherry; }
|
|
865
|
+
.#{$ti-prefix}-chess:before { content: $ti-icon-chess; }
|
|
866
|
+
.#{$ti-prefix}-chess-bishop:before { content: $ti-icon-chess-bishop; }
|
|
867
|
+
.#{$ti-prefix}-chess-king:before { content: $ti-icon-chess-king; }
|
|
868
|
+
.#{$ti-prefix}-chess-knight:before { content: $ti-icon-chess-knight; }
|
|
869
|
+
.#{$ti-prefix}-chess-queen:before { content: $ti-icon-chess-queen; }
|
|
870
|
+
.#{$ti-prefix}-chess-rook:before { content: $ti-icon-chess-rook; }
|
|
871
|
+
.#{$ti-prefix}-circle:before { content: $ti-icon-circle; }
|
|
872
|
+
.#{$ti-prefix}-circle-arrow-down:before { content: $ti-icon-circle-arrow-down; }
|
|
873
|
+
.#{$ti-prefix}-circle-arrow-down-left:before { content: $ti-icon-circle-arrow-down-left; }
|
|
874
|
+
.#{$ti-prefix}-circle-arrow-down-right:before { content: $ti-icon-circle-arrow-down-right; }
|
|
875
|
+
.#{$ti-prefix}-circle-arrow-left:before { content: $ti-icon-circle-arrow-left; }
|
|
876
|
+
.#{$ti-prefix}-circle-arrow-right:before { content: $ti-icon-circle-arrow-right; }
|
|
877
|
+
.#{$ti-prefix}-circle-arrow-up:before { content: $ti-icon-circle-arrow-up; }
|
|
878
|
+
.#{$ti-prefix}-circle-arrow-up-left:before { content: $ti-icon-circle-arrow-up-left; }
|
|
879
|
+
.#{$ti-prefix}-circle-arrow-up-right:before { content: $ti-icon-circle-arrow-up-right; }
|
|
880
|
+
.#{$ti-prefix}-circle-check:before { content: $ti-icon-circle-check; }
|
|
881
|
+
.#{$ti-prefix}-circle-dot:before { content: $ti-icon-circle-dot; }
|
|
882
|
+
.#{$ti-prefix}-circle-key:before { content: $ti-icon-circle-key; }
|
|
883
|
+
.#{$ti-prefix}-circle-letter-a:before { content: $ti-icon-circle-letter-a; }
|
|
884
|
+
.#{$ti-prefix}-circle-letter-b:before { content: $ti-icon-circle-letter-b; }
|
|
885
|
+
.#{$ti-prefix}-circle-letter-c:before { content: $ti-icon-circle-letter-c; }
|
|
886
|
+
.#{$ti-prefix}-circle-letter-d:before { content: $ti-icon-circle-letter-d; }
|
|
887
|
+
.#{$ti-prefix}-circle-letter-e:before { content: $ti-icon-circle-letter-e; }
|
|
888
|
+
.#{$ti-prefix}-circle-letter-f:before { content: $ti-icon-circle-letter-f; }
|
|
889
|
+
.#{$ti-prefix}-circle-letter-g:before { content: $ti-icon-circle-letter-g; }
|
|
890
|
+
.#{$ti-prefix}-circle-letter-h:before { content: $ti-icon-circle-letter-h; }
|
|
891
|
+
.#{$ti-prefix}-circle-letter-i:before { content: $ti-icon-circle-letter-i; }
|
|
892
|
+
.#{$ti-prefix}-circle-letter-j:before { content: $ti-icon-circle-letter-j; }
|
|
893
|
+
.#{$ti-prefix}-circle-letter-k:before { content: $ti-icon-circle-letter-k; }
|
|
894
|
+
.#{$ti-prefix}-circle-letter-l:before { content: $ti-icon-circle-letter-l; }
|
|
895
|
+
.#{$ti-prefix}-circle-letter-m:before { content: $ti-icon-circle-letter-m; }
|
|
896
|
+
.#{$ti-prefix}-circle-letter-n:before { content: $ti-icon-circle-letter-n; }
|
|
897
|
+
.#{$ti-prefix}-circle-letter-o:before { content: $ti-icon-circle-letter-o; }
|
|
898
|
+
.#{$ti-prefix}-circle-letter-p:before { content: $ti-icon-circle-letter-p; }
|
|
899
|
+
.#{$ti-prefix}-circle-letter-q:before { content: $ti-icon-circle-letter-q; }
|
|
900
|
+
.#{$ti-prefix}-circle-letter-r:before { content: $ti-icon-circle-letter-r; }
|
|
901
|
+
.#{$ti-prefix}-circle-letter-s:before { content: $ti-icon-circle-letter-s; }
|
|
902
|
+
.#{$ti-prefix}-circle-letter-t:before { content: $ti-icon-circle-letter-t; }
|
|
903
|
+
.#{$ti-prefix}-circle-letter-u:before { content: $ti-icon-circle-letter-u; }
|
|
904
|
+
.#{$ti-prefix}-circle-letter-v:before { content: $ti-icon-circle-letter-v; }
|
|
905
|
+
.#{$ti-prefix}-circle-letter-w:before { content: $ti-icon-circle-letter-w; }
|
|
906
|
+
.#{$ti-prefix}-circle-letter-x:before { content: $ti-icon-circle-letter-x; }
|
|
907
|
+
.#{$ti-prefix}-circle-letter-y:before { content: $ti-icon-circle-letter-y; }
|
|
908
|
+
.#{$ti-prefix}-circle-letter-z:before { content: $ti-icon-circle-letter-z; }
|
|
909
|
+
.#{$ti-prefix}-circle-number-0:before { content: $ti-icon-circle-number-0; }
|
|
910
|
+
.#{$ti-prefix}-circle-number-1:before { content: $ti-icon-circle-number-1; }
|
|
911
|
+
.#{$ti-prefix}-circle-number-2:before { content: $ti-icon-circle-number-2; }
|
|
912
|
+
.#{$ti-prefix}-circle-number-3:before { content: $ti-icon-circle-number-3; }
|
|
913
|
+
.#{$ti-prefix}-circle-number-4:before { content: $ti-icon-circle-number-4; }
|
|
914
|
+
.#{$ti-prefix}-circle-number-5:before { content: $ti-icon-circle-number-5; }
|
|
915
|
+
.#{$ti-prefix}-circle-number-6:before { content: $ti-icon-circle-number-6; }
|
|
916
|
+
.#{$ti-prefix}-circle-number-7:before { content: $ti-icon-circle-number-7; }
|
|
917
|
+
.#{$ti-prefix}-circle-number-8:before { content: $ti-icon-circle-number-8; }
|
|
918
|
+
.#{$ti-prefix}-circle-number-9:before { content: $ti-icon-circle-number-9; }
|
|
919
|
+
.#{$ti-prefix}-circle-x:before { content: $ti-icon-circle-x; }
|
|
920
|
+
.#{$ti-prefix}-circles:before { content: $ti-icon-circles; }
|
|
921
|
+
.#{$ti-prefix}-clock:before { content: $ti-icon-clock; }
|
|
922
|
+
.#{$ti-prefix}-clock-hour-1:before { content: $ti-icon-clock-hour-1; }
|
|
923
|
+
.#{$ti-prefix}-clock-hour-10:before { content: $ti-icon-clock-hour-10; }
|
|
924
|
+
.#{$ti-prefix}-clock-hour-11:before { content: $ti-icon-clock-hour-11; }
|
|
925
|
+
.#{$ti-prefix}-clock-hour-12:before { content: $ti-icon-clock-hour-12; }
|
|
926
|
+
.#{$ti-prefix}-clock-hour-2:before { content: $ti-icon-clock-hour-2; }
|
|
927
|
+
.#{$ti-prefix}-clock-hour-3:before { content: $ti-icon-clock-hour-3; }
|
|
928
|
+
.#{$ti-prefix}-clock-hour-4:before { content: $ti-icon-clock-hour-4; }
|
|
929
|
+
.#{$ti-prefix}-clock-hour-5:before { content: $ti-icon-clock-hour-5; }
|
|
930
|
+
.#{$ti-prefix}-clock-hour-6:before { content: $ti-icon-clock-hour-6; }
|
|
931
|
+
.#{$ti-prefix}-clock-hour-7:before { content: $ti-icon-clock-hour-7; }
|
|
932
|
+
.#{$ti-prefix}-clock-hour-8:before { content: $ti-icon-clock-hour-8; }
|
|
933
|
+
.#{$ti-prefix}-clock-hour-9:before { content: $ti-icon-clock-hour-9; }
|
|
934
|
+
.#{$ti-prefix}-cloud:before { content: $ti-icon-cloud; }
|
|
935
|
+
.#{$ti-prefix}-clubs:before { content: $ti-icon-clubs; }
|
|
936
|
+
.#{$ti-prefix}-coin:before { content: $ti-icon-coin; }
|
|
937
|
+
.#{$ti-prefix}-coin-bitcoin:before { content: $ti-icon-coin-bitcoin; }
|
|
938
|
+
.#{$ti-prefix}-coin-euro:before { content: $ti-icon-coin-euro; }
|
|
939
|
+
.#{$ti-prefix}-coin-monero:before { content: $ti-icon-coin-monero; }
|
|
940
|
+
.#{$ti-prefix}-coin-pound:before { content: $ti-icon-coin-pound; }
|
|
941
|
+
.#{$ti-prefix}-coin-rupee:before { content: $ti-icon-coin-rupee; }
|
|
942
|
+
.#{$ti-prefix}-coin-taka:before { content: $ti-icon-coin-taka; }
|
|
943
|
+
.#{$ti-prefix}-coin-yen:before { content: $ti-icon-coin-yen; }
|
|
944
|
+
.#{$ti-prefix}-coin-yuan:before { content: $ti-icon-coin-yuan; }
|
|
945
|
+
.#{$ti-prefix}-compass:before { content: $ti-icon-compass; }
|
|
946
|
+
.#{$ti-prefix}-cone:before { content: $ti-icon-cone; }
|
|
947
|
+
.#{$ti-prefix}-cone-2:before { content: $ti-icon-cone-2; }
|
|
948
|
+
.#{$ti-prefix}-contrast:before { content: $ti-icon-contrast; }
|
|
949
|
+
.#{$ti-prefix}-contrast-2:before { content: $ti-icon-contrast-2; }
|
|
950
|
+
.#{$ti-prefix}-cookie:before { content: $ti-icon-cookie; }
|
|
951
|
+
.#{$ti-prefix}-cookie-man:before { content: $ti-icon-cookie-man; }
|
|
952
|
+
.#{$ti-prefix}-copy-check:before { content: $ti-icon-copy-check; }
|
|
953
|
+
.#{$ti-prefix}-copy-minus:before { content: $ti-icon-copy-minus; }
|
|
954
|
+
.#{$ti-prefix}-copy-plus:before { content: $ti-icon-copy-plus; }
|
|
955
|
+
.#{$ti-prefix}-copy-x:before { content: $ti-icon-copy-x; }
|
|
956
|
+
.#{$ti-prefix}-copyleft:before { content: $ti-icon-copyleft; }
|
|
957
|
+
.#{$ti-prefix}-copyright:before { content: $ti-icon-copyright; }
|
|
958
|
+
.#{$ti-prefix}-credit-card:before { content: $ti-icon-credit-card; }
|
|
959
|
+
.#{$ti-prefix}-crop-1-1:before { content: $ti-icon-crop-1-1; }
|
|
960
|
+
.#{$ti-prefix}-crop-16-9:before { content: $ti-icon-crop-16-9; }
|
|
961
|
+
.#{$ti-prefix}-crop-3-2:before { content: $ti-icon-crop-3-2; }
|
|
962
|
+
.#{$ti-prefix}-crop-5-4:before { content: $ti-icon-crop-5-4; }
|
|
963
|
+
.#{$ti-prefix}-crop-7-5:before { content: $ti-icon-crop-7-5; }
|
|
964
|
+
.#{$ti-prefix}-crop-landscape:before { content: $ti-icon-crop-landscape; }
|
|
965
|
+
.#{$ti-prefix}-crop-portrait:before { content: $ti-icon-crop-portrait; }
|
|
966
|
+
.#{$ti-prefix}-cross:before { content: $ti-icon-cross; }
|
|
967
|
+
.#{$ti-prefix}-device-heart-monitor:before { content: $ti-icon-device-heart-monitor; }
|
|
968
|
+
.#{$ti-prefix}-device-mobile:before { content: $ti-icon-device-mobile; }
|
|
969
|
+
.#{$ti-prefix}-device-tablet:before { content: $ti-icon-device-tablet; }
|
|
970
|
+
.#{$ti-prefix}-dialpad:before { content: $ti-icon-dialpad; }
|
|
971
|
+
.#{$ti-prefix}-diamond:before { content: $ti-icon-diamond; }
|
|
972
|
+
.#{$ti-prefix}-diamonds:before { content: $ti-icon-diamonds; }
|
|
973
|
+
.#{$ti-prefix}-dice:before { content: $ti-icon-dice; }
|
|
974
|
+
.#{$ti-prefix}-dice-1:before { content: $ti-icon-dice-1; }
|
|
975
|
+
.#{$ti-prefix}-dice-2:before { content: $ti-icon-dice-2; }
|
|
976
|
+
.#{$ti-prefix}-dice-3:before { content: $ti-icon-dice-3; }
|
|
977
|
+
.#{$ti-prefix}-dice-4:before { content: $ti-icon-dice-4; }
|
|
978
|
+
.#{$ti-prefix}-dice-5:before { content: $ti-icon-dice-5; }
|
|
979
|
+
.#{$ti-prefix}-dice-6:before { content: $ti-icon-dice-6; }
|
|
980
|
+
.#{$ti-prefix}-direction-sign:before { content: $ti-icon-direction-sign; }
|
|
981
|
+
.#{$ti-prefix}-droplet:before { content: $ti-icon-droplet; }
|
|
982
|
+
.#{$ti-prefix}-droplet-half:before { content: $ti-icon-droplet-half; }
|
|
983
|
+
.#{$ti-prefix}-droplet-half-2:before { content: $ti-icon-droplet-half-2; }
|
|
984
|
+
.#{$ti-prefix}-egg:before { content: $ti-icon-egg; }
|
|
985
|
+
.#{$ti-prefix}-eye:before { content: $ti-icon-eye; }
|
|
986
|
+
.#{$ti-prefix}-file:before { content: $ti-icon-file; }
|
|
987
|
+
.#{$ti-prefix}-file-x:before { content: $ti-icon-file-x; }
|
|
988
|
+
.#{$ti-prefix}-filter:before { content: $ti-icon-filter; }
|
|
989
|
+
.#{$ti-prefix}-flag:before { content: $ti-icon-flag; }
|
|
990
|
+
.#{$ti-prefix}-flag-2:before { content: $ti-icon-flag-2; }
|
|
991
|
+
.#{$ti-prefix}-flag-3:before { content: $ti-icon-flag-3; }
|
|
992
|
+
.#{$ti-prefix}-flask:before { content: $ti-icon-flask; }
|
|
993
|
+
.#{$ti-prefix}-flask-2:before { content: $ti-icon-flask-2; }
|
|
994
|
+
.#{$ti-prefix}-folder:before { content: $ti-icon-folder; }
|
|
995
|
+
.#{$ti-prefix}-forbid:before { content: $ti-icon-forbid; }
|
|
996
|
+
.#{$ti-prefix}-forbid-2:before { content: $ti-icon-forbid-2; }
|
|
997
|
+
.#{$ti-prefix}-fountain:before { content: $ti-icon-fountain; }
|
|
998
|
+
.#{$ti-prefix}-function:before { content: $ti-icon-function; }
|
|
999
|
+
.#{$ti-prefix}-gauge:before { content: $ti-icon-gauge; }
|
|
1000
|
+
.#{$ti-prefix}-ghost:before { content: $ti-icon-ghost; }
|
|
1001
|
+
.#{$ti-prefix}-ghost-2:before { content: $ti-icon-ghost-2; }
|
|
1002
|
+
.#{$ti-prefix}-gift:before { content: $ti-icon-gift; }
|
|
1003
|
+
.#{$ti-prefix}-gift-card:before { content: $ti-icon-gift-card; }
|
|
1004
|
+
.#{$ti-prefix}-glass-full:before { content: $ti-icon-glass-full; }
|
|
1005
|
+
.#{$ti-prefix}-globe:before { content: $ti-icon-globe; }
|
|
1006
|
+
.#{$ti-prefix}-gps:before { content: $ti-icon-gps; }
|
|
1007
|
+
.#{$ti-prefix}-graph:before { content: $ti-icon-graph; }
|
|
1008
|
+
.#{$ti-prefix}-guitar-pick:before { content: $ti-icon-guitar-pick; }
|
|
1009
|
+
.#{$ti-prefix}-headphones:before { content: $ti-icon-headphones; }
|
|
1010
|
+
.#{$ti-prefix}-heart:before { content: $ti-icon-heart; }
|
|
1011
|
+
.#{$ti-prefix}-help-circle:before { content: $ti-icon-help-circle; }
|
|
1012
|
+
.#{$ti-prefix}-help-hexagon:before { content: $ti-icon-help-hexagon; }
|
|
1013
|
+
.#{$ti-prefix}-help-octagon:before { content: $ti-icon-help-octagon; }
|
|
1014
|
+
.#{$ti-prefix}-help-square:before { content: $ti-icon-help-square; }
|
|
1015
|
+
.#{$ti-prefix}-help-square-rounded:before { content: $ti-icon-help-square-rounded; }
|
|
1016
|
+
.#{$ti-prefix}-help-triangle:before { content: $ti-icon-help-triangle; }
|
|
1017
|
+
.#{$ti-prefix}-hexagon:before { content: $ti-icon-hexagon; }
|
|
1018
|
+
.#{$ti-prefix}-hexagon-letter-a:before { content: $ti-icon-hexagon-letter-a; }
|
|
1019
|
+
.#{$ti-prefix}-hexagon-letter-b:before { content: $ti-icon-hexagon-letter-b; }
|
|
1020
|
+
.#{$ti-prefix}-hexagon-letter-c:before { content: $ti-icon-hexagon-letter-c; }
|
|
1021
|
+
.#{$ti-prefix}-hexagon-letter-d:before { content: $ti-icon-hexagon-letter-d; }
|
|
1022
|
+
.#{$ti-prefix}-hexagon-letter-e:before { content: $ti-icon-hexagon-letter-e; }
|
|
1023
|
+
.#{$ti-prefix}-hexagon-letter-f:before { content: $ti-icon-hexagon-letter-f; }
|
|
1024
|
+
.#{$ti-prefix}-hexagon-letter-g:before { content: $ti-icon-hexagon-letter-g; }
|
|
1025
|
+
.#{$ti-prefix}-hexagon-letter-h:before { content: $ti-icon-hexagon-letter-h; }
|
|
1026
|
+
.#{$ti-prefix}-hexagon-letter-i:before { content: $ti-icon-hexagon-letter-i; }
|
|
1027
|
+
.#{$ti-prefix}-hexagon-letter-j:before { content: $ti-icon-hexagon-letter-j; }
|
|
1028
|
+
.#{$ti-prefix}-hexagon-letter-k:before { content: $ti-icon-hexagon-letter-k; }
|
|
1029
|
+
.#{$ti-prefix}-hexagon-letter-l:before { content: $ti-icon-hexagon-letter-l; }
|
|
1030
|
+
.#{$ti-prefix}-hexagon-letter-m:before { content: $ti-icon-hexagon-letter-m; }
|
|
1031
|
+
.#{$ti-prefix}-hexagon-letter-n:before { content: $ti-icon-hexagon-letter-n; }
|
|
1032
|
+
.#{$ti-prefix}-hexagon-letter-o:before { content: $ti-icon-hexagon-letter-o; }
|
|
1033
|
+
.#{$ti-prefix}-hexagon-letter-p:before { content: $ti-icon-hexagon-letter-p; }
|
|
1034
|
+
.#{$ti-prefix}-hexagon-letter-q:before { content: $ti-icon-hexagon-letter-q; }
|
|
1035
|
+
.#{$ti-prefix}-hexagon-letter-r:before { content: $ti-icon-hexagon-letter-r; }
|
|
1036
|
+
.#{$ti-prefix}-hexagon-letter-s:before { content: $ti-icon-hexagon-letter-s; }
|
|
1037
|
+
.#{$ti-prefix}-hexagon-letter-t:before { content: $ti-icon-hexagon-letter-t; }
|
|
1038
|
+
.#{$ti-prefix}-hexagon-letter-u:before { content: $ti-icon-hexagon-letter-u; }
|
|
1039
|
+
.#{$ti-prefix}-hexagon-letter-v:before { content: $ti-icon-hexagon-letter-v; }
|
|
1040
|
+
.#{$ti-prefix}-hexagon-letter-w:before { content: $ti-icon-hexagon-letter-w; }
|
|
1041
|
+
.#{$ti-prefix}-hexagon-letter-x:before { content: $ti-icon-hexagon-letter-x; }
|
|
1042
|
+
.#{$ti-prefix}-hexagon-letter-y:before { content: $ti-icon-hexagon-letter-y; }
|
|
1043
|
+
.#{$ti-prefix}-hexagon-letter-z:before { content: $ti-icon-hexagon-letter-z; }
|
|
1044
|
+
.#{$ti-prefix}-hexagon-minus:before { content: $ti-icon-hexagon-minus; }
|
|
1045
|
+
.#{$ti-prefix}-hexagon-number-0:before { content: $ti-icon-hexagon-number-0; }
|
|
1046
|
+
.#{$ti-prefix}-hexagon-number-1:before { content: $ti-icon-hexagon-number-1; }
|
|
1047
|
+
.#{$ti-prefix}-hexagon-number-2:before { content: $ti-icon-hexagon-number-2; }
|
|
1048
|
+
.#{$ti-prefix}-hexagon-number-3:before { content: $ti-icon-hexagon-number-3; }
|
|
1049
|
+
.#{$ti-prefix}-hexagon-number-4:before { content: $ti-icon-hexagon-number-4; }
|
|
1050
|
+
.#{$ti-prefix}-hexagon-number-5:before { content: $ti-icon-hexagon-number-5; }
|
|
1051
|
+
.#{$ti-prefix}-hexagon-number-6:before { content: $ti-icon-hexagon-number-6; }
|
|
1052
|
+
.#{$ti-prefix}-hexagon-number-7:before { content: $ti-icon-hexagon-number-7; }
|
|
1053
|
+
.#{$ti-prefix}-hexagon-number-8:before { content: $ti-icon-hexagon-number-8; }
|
|
1054
|
+
.#{$ti-prefix}-hexagon-number-9:before { content: $ti-icon-hexagon-number-9; }
|
|
1055
|
+
.#{$ti-prefix}-hexagon-plus:before { content: $ti-icon-hexagon-plus; }
|
|
1056
|
+
.#{$ti-prefix}-home:before { content: $ti-icon-home; }
|
|
1057
|
+
.#{$ti-prefix}-hourglass:before { content: $ti-icon-hourglass; }
|
|
1058
|
+
.#{$ti-prefix}-info-circle:before { content: $ti-icon-info-circle; }
|
|
1059
|
+
.#{$ti-prefix}-info-hexagon:before { content: $ti-icon-info-hexagon; }
|
|
1060
|
+
.#{$ti-prefix}-info-octagon:before { content: $ti-icon-info-octagon; }
|
|
1061
|
+
.#{$ti-prefix}-info-square:before { content: $ti-icon-info-square; }
|
|
1062
|
+
.#{$ti-prefix}-info-square-rounded:before { content: $ti-icon-info-square-rounded; }
|
|
1063
|
+
.#{$ti-prefix}-info-triangle:before { content: $ti-icon-info-triangle; }
|
|
1064
|
+
.#{$ti-prefix}-inner-shadow-bottom:before { content: $ti-icon-inner-shadow-bottom; }
|
|
1065
|
+
.#{$ti-prefix}-inner-shadow-bottom-left:before { content: $ti-icon-inner-shadow-bottom-left; }
|
|
1066
|
+
.#{$ti-prefix}-inner-shadow-bottom-right:before { content: $ti-icon-inner-shadow-bottom-right; }
|
|
1067
|
+
.#{$ti-prefix}-inner-shadow-left:before { content: $ti-icon-inner-shadow-left; }
|
|
1068
|
+
.#{$ti-prefix}-inner-shadow-right:before { content: $ti-icon-inner-shadow-right; }
|
|
1069
|
+
.#{$ti-prefix}-inner-shadow-top:before { content: $ti-icon-inner-shadow-top; }
|
|
1070
|
+
.#{$ti-prefix}-inner-shadow-top-left:before { content: $ti-icon-inner-shadow-top-left; }
|
|
1071
|
+
.#{$ti-prefix}-inner-shadow-top-right:before { content: $ti-icon-inner-shadow-top-right; }
|
|
1072
|
+
.#{$ti-prefix}-ironing:before { content: $ti-icon-ironing; }
|
|
1073
|
+
.#{$ti-prefix}-jetpack:before { content: $ti-icon-jetpack; }
|
|
1074
|
+
.#{$ti-prefix}-jewish-star:before { content: $ti-icon-jewish-star; }
|
|
1075
|
+
.#{$ti-prefix}-key:before { content: $ti-icon-key; }
|
|
1076
|
+
.#{$ti-prefix}-keyframe:before { content: $ti-icon-keyframe; }
|
|
1077
|
+
.#{$ti-prefix}-keyframe-align-center:before { content: $ti-icon-keyframe-align-center; }
|
|
1078
|
+
.#{$ti-prefix}-keyframe-align-horizontal:before { content: $ti-icon-keyframe-align-horizontal; }
|
|
1079
|
+
.#{$ti-prefix}-keyframe-align-vertical:before { content: $ti-icon-keyframe-align-vertical; }
|
|
1080
|
+
.#{$ti-prefix}-keyframes:before { content: $ti-icon-keyframes; }
|
|
1081
|
+
.#{$ti-prefix}-layout:before { content: $ti-icon-layout; }
|
|
1082
|
+
.#{$ti-prefix}-layout-2:before { content: $ti-icon-layout-2; }
|
|
1083
|
+
.#{$ti-prefix}-layout-align-bottom:before { content: $ti-icon-layout-align-bottom; }
|
|
1084
|
+
.#{$ti-prefix}-layout-align-center:before { content: $ti-icon-layout-align-center; }
|
|
1085
|
+
.#{$ti-prefix}-layout-align-left:before { content: $ti-icon-layout-align-left; }
|
|
1086
|
+
.#{$ti-prefix}-layout-align-middle:before { content: $ti-icon-layout-align-middle; }
|
|
1087
|
+
.#{$ti-prefix}-layout-align-right:before { content: $ti-icon-layout-align-right; }
|
|
1088
|
+
.#{$ti-prefix}-layout-align-top:before { content: $ti-icon-layout-align-top; }
|
|
1089
|
+
.#{$ti-prefix}-layout-bottombar:before { content: $ti-icon-layout-bottombar; }
|
|
1090
|
+
.#{$ti-prefix}-layout-bottombar-collapse:before { content: $ti-icon-layout-bottombar-collapse; }
|
|
1091
|
+
.#{$ti-prefix}-layout-bottombar-expand:before { content: $ti-icon-layout-bottombar-expand; }
|
|
1092
|
+
.#{$ti-prefix}-layout-cards:before { content: $ti-icon-layout-cards; }
|
|
1093
|
+
.#{$ti-prefix}-layout-dashboard:before { content: $ti-icon-layout-dashboard; }
|
|
1094
|
+
.#{$ti-prefix}-layout-distribute-horizontal:before { content: $ti-icon-layout-distribute-horizontal; }
|
|
1095
|
+
.#{$ti-prefix}-layout-distribute-vertical:before { content: $ti-icon-layout-distribute-vertical; }
|
|
1096
|
+
.#{$ti-prefix}-layout-grid:before { content: $ti-icon-layout-grid; }
|
|
1097
|
+
.#{$ti-prefix}-layout-kanban:before { content: $ti-icon-layout-kanban; }
|
|
1098
|
+
.#{$ti-prefix}-layout-list:before { content: $ti-icon-layout-list; }
|
|
1099
|
+
.#{$ti-prefix}-layout-navbar:before { content: $ti-icon-layout-navbar; }
|
|
1100
|
+
.#{$ti-prefix}-layout-navbar-collapse:before { content: $ti-icon-layout-navbar-collapse; }
|
|
1101
|
+
.#{$ti-prefix}-layout-navbar-expand:before { content: $ti-icon-layout-navbar-expand; }
|
|
1102
|
+
.#{$ti-prefix}-layout-sidebar:before { content: $ti-icon-layout-sidebar; }
|
|
1103
|
+
.#{$ti-prefix}-layout-sidebar-left-collapse:before { content: $ti-icon-layout-sidebar-left-collapse; }
|
|
1104
|
+
.#{$ti-prefix}-layout-sidebar-left-expand:before { content: $ti-icon-layout-sidebar-left-expand; }
|
|
1105
|
+
.#{$ti-prefix}-layout-sidebar-right:before { content: $ti-icon-layout-sidebar-right; }
|
|
1106
|
+
.#{$ti-prefix}-layout-sidebar-right-collapse:before { content: $ti-icon-layout-sidebar-right-collapse; }
|
|
1107
|
+
.#{$ti-prefix}-layout-sidebar-right-expand:before { content: $ti-icon-layout-sidebar-right-expand; }
|
|
1108
|
+
.#{$ti-prefix}-lego:before { content: $ti-icon-lego; }
|
|
1109
|
+
.#{$ti-prefix}-location:before { content: $ti-icon-location; }
|
|
1110
|
+
.#{$ti-prefix}-lock:before { content: $ti-icon-lock; }
|
|
1111
|
+
.#{$ti-prefix}-lock-square-rounded:before { content: $ti-icon-lock-square-rounded; }
|
|
1112
|
+
.#{$ti-prefix}-lungs:before { content: $ti-icon-lungs; }
|
|
1113
|
+
.#{$ti-prefix}-macro:before { content: $ti-icon-macro; }
|
|
1114
|
+
.#{$ti-prefix}-magnet:before { content: $ti-icon-magnet; }
|
|
1115
|
+
.#{$ti-prefix}-mail:before { content: $ti-icon-mail; }
|
|
1116
|
+
.#{$ti-prefix}-mail-opened:before { content: $ti-icon-mail-opened; }
|
|
1117
|
+
.#{$ti-prefix}-man:before { content: $ti-icon-man; }
|
|
1118
|
+
.#{$ti-prefix}-manual-gearbox:before { content: $ti-icon-manual-gearbox; }
|
|
1119
|
+
.#{$ti-prefix}-map-pin:before { content: $ti-icon-map-pin; }
|
|
1120
|
+
.#{$ti-prefix}-medical-cross:before { content: $ti-icon-medical-cross; }
|
|
1121
|
+
.#{$ti-prefix}-message-circle-2:before { content: $ti-icon-message-circle-2; }
|
|
1122
|
+
.#{$ti-prefix}-mickey:before { content: $ti-icon-mickey; }
|
|
1123
|
+
.#{$ti-prefix}-microphone:before { content: $ti-icon-microphone; }
|
|
1124
|
+
.#{$ti-prefix}-microwave:before { content: $ti-icon-microwave; }
|
|
1125
|
+
.#{$ti-prefix}-mood-confuzed:before { content: $ti-icon-mood-confuzed; }
|
|
1126
|
+
.#{$ti-prefix}-mood-empty:before { content: $ti-icon-mood-empty; }
|
|
1127
|
+
.#{$ti-prefix}-mood-happy:before { content: $ti-icon-mood-happy; }
|
|
1128
|
+
.#{$ti-prefix}-mood-kid:before { content: $ti-icon-mood-kid; }
|
|
1129
|
+
.#{$ti-prefix}-mood-neutral:before { content: $ti-icon-mood-neutral; }
|
|
1130
|
+
.#{$ti-prefix}-mood-sad:before { content: $ti-icon-mood-sad; }
|
|
1131
|
+
.#{$ti-prefix}-mood-smile:before { content: $ti-icon-mood-smile; }
|
|
1132
|
+
.#{$ti-prefix}-moon:before { content: $ti-icon-moon; }
|
|
1133
|
+
.#{$ti-prefix}-mouse:before { content: $ti-icon-mouse; }
|
|
1134
|
+
.#{$ti-prefix}-mushroom:before { content: $ti-icon-mushroom; }
|
|
1135
|
+
.#{$ti-prefix}-navigation:before { content: $ti-icon-navigation; }
|
|
1136
|
+
.#{$ti-prefix}-octagon:before { content: $ti-icon-octagon; }
|
|
1137
|
+
.#{$ti-prefix}-oval:before { content: $ti-icon-oval; }
|
|
1138
|
+
.#{$ti-prefix}-oval-vertical:before { content: $ti-icon-oval-vertical; }
|
|
1139
|
+
.#{$ti-prefix}-paint:before { content: $ti-icon-paint; }
|
|
1140
|
+
.#{$ti-prefix}-paw:before { content: $ti-icon-paw; }
|
|
1141
|
+
.#{$ti-prefix}-pennant:before { content: $ti-icon-pennant; }
|
|
1142
|
+
.#{$ti-prefix}-pennant-2:before { content: $ti-icon-pennant-2; }
|
|
1143
|
+
.#{$ti-prefix}-pentagon:before { content: $ti-icon-pentagon; }
|
|
1144
|
+
.#{$ti-prefix}-phone:before { content: $ti-icon-phone; }
|
|
1145
|
+
.#{$ti-prefix}-photo:before { content: $ti-icon-photo; }
|
|
1146
|
+
.#{$ti-prefix}-pin:before { content: $ti-icon-pin; }
|
|
1147
|
+
.#{$ti-prefix}-pinned:before { content: $ti-icon-pinned; }
|
|
1148
|
+
.#{$ti-prefix}-player-eject:before { content: $ti-icon-player-eject; }
|
|
1149
|
+
.#{$ti-prefix}-player-pause:before { content: $ti-icon-player-pause; }
|
|
1150
|
+
.#{$ti-prefix}-player-play:before { content: $ti-icon-player-play; }
|
|
1151
|
+
.#{$ti-prefix}-player-record:before { content: $ti-icon-player-record; }
|
|
1152
|
+
.#{$ti-prefix}-player-skip-back:before { content: $ti-icon-player-skip-back; }
|
|
1153
|
+
.#{$ti-prefix}-player-skip-forward:before { content: $ti-icon-player-skip-forward; }
|
|
1154
|
+
.#{$ti-prefix}-player-stop:before { content: $ti-icon-player-stop; }
|
|
1155
|
+
.#{$ti-prefix}-player-track-next:before { content: $ti-icon-player-track-next; }
|
|
1156
|
+
.#{$ti-prefix}-player-track-prev:before { content: $ti-icon-player-track-prev; }
|
|
1157
|
+
.#{$ti-prefix}-point:before { content: $ti-icon-point; }
|
|
1158
|
+
.#{$ti-prefix}-pointer:before { content: $ti-icon-pointer; }
|
|
1159
|
+
.#{$ti-prefix}-polaroid:before { content: $ti-icon-polaroid; }
|
|
1160
|
+
.#{$ti-prefix}-puzzle:before { content: $ti-icon-puzzle; }
|
|
1161
|
+
.#{$ti-prefix}-radar:before { content: $ti-icon-radar; }
|
|
1162
|
+
.#{$ti-prefix}-radioactive:before { content: $ti-icon-radioactive; }
|
|
1163
|
+
.#{$ti-prefix}-rectangle:before { content: $ti-icon-rectangle; }
|
|
1164
|
+
.#{$ti-prefix}-rectangle-vertical:before { content: $ti-icon-rectangle-vertical; }
|
|
1165
|
+
.#{$ti-prefix}-relation-many-to-many:before { content: $ti-icon-relation-many-to-many; }
|
|
1166
|
+
.#{$ti-prefix}-relation-one-to-many:before { content: $ti-icon-relation-one-to-many; }
|
|
1167
|
+
.#{$ti-prefix}-relation-one-to-one:before { content: $ti-icon-relation-one-to-one; }
|
|
1168
|
+
.#{$ti-prefix}-replace:before { content: $ti-icon-replace; }
|
|
1169
|
+
.#{$ti-prefix}-rosette:before { content: $ti-icon-rosette; }
|
|
1170
|
+
.#{$ti-prefix}-rosette-discount-check:before { content: $ti-icon-rosette-discount-check; }
|
|
1171
|
+
.#{$ti-prefix}-section:before { content: $ti-icon-section; }
|
|
1172
|
+
.#{$ti-prefix}-settings:before { content: $ti-icon-settings; }
|
|
1173
|
+
.#{$ti-prefix}-shield:before { content: $ti-icon-shield; }
|
|
1174
|
+
.#{$ti-prefix}-shield-check:before { content: $ti-icon-shield-check; }
|
|
1175
|
+
.#{$ti-prefix}-shield-checkered:before { content: $ti-icon-shield-checkered; }
|
|
1176
|
+
.#{$ti-prefix}-shield-half:before { content: $ti-icon-shield-half; }
|
|
1177
|
+
.#{$ti-prefix}-shield-lock:before { content: $ti-icon-shield-lock; }
|
|
1178
|
+
.#{$ti-prefix}-shirt:before { content: $ti-icon-shirt; }
|
|
1179
|
+
.#{$ti-prefix}-shopping-cart:before { content: $ti-icon-shopping-cart; }
|
|
1180
|
+
.#{$ti-prefix}-sign-left:before { content: $ti-icon-sign-left; }
|
|
1181
|
+
.#{$ti-prefix}-sign-right:before { content: $ti-icon-sign-right; }
|
|
1182
|
+
.#{$ti-prefix}-soup:before { content: $ti-icon-soup; }
|
|
1183
|
+
.#{$ti-prefix}-spade:before { content: $ti-icon-spade; }
|
|
1184
|
+
.#{$ti-prefix}-square:before { content: $ti-icon-square; }
|
|
1185
|
+
.#{$ti-prefix}-square-arrow-down:before { content: $ti-icon-square-arrow-down; }
|
|
1186
|
+
.#{$ti-prefix}-square-arrow-left:before { content: $ti-icon-square-arrow-left; }
|
|
1187
|
+
.#{$ti-prefix}-square-arrow-right:before { content: $ti-icon-square-arrow-right; }
|
|
1188
|
+
.#{$ti-prefix}-square-arrow-up:before { content: $ti-icon-square-arrow-up; }
|
|
1189
|
+
.#{$ti-prefix}-square-asterisk:before { content: $ti-icon-square-asterisk; }
|
|
1190
|
+
.#{$ti-prefix}-square-check:before { content: $ti-icon-square-check; }
|
|
1191
|
+
.#{$ti-prefix}-square-chevron-down:before { content: $ti-icon-square-chevron-down; }
|
|
1192
|
+
.#{$ti-prefix}-square-chevron-left:before { content: $ti-icon-square-chevron-left; }
|
|
1193
|
+
.#{$ti-prefix}-square-chevron-right:before { content: $ti-icon-square-chevron-right; }
|
|
1194
|
+
.#{$ti-prefix}-square-chevron-up:before { content: $ti-icon-square-chevron-up; }
|
|
1195
|
+
.#{$ti-prefix}-square-chevrons-down:before { content: $ti-icon-square-chevrons-down; }
|
|
1196
|
+
.#{$ti-prefix}-square-chevrons-left:before { content: $ti-icon-square-chevrons-left; }
|
|
1197
|
+
.#{$ti-prefix}-square-chevrons-right:before { content: $ti-icon-square-chevrons-right; }
|
|
1198
|
+
.#{$ti-prefix}-square-chevrons-up:before { content: $ti-icon-square-chevrons-up; }
|
|
1199
|
+
.#{$ti-prefix}-square-dot:before { content: $ti-icon-square-dot; }
|
|
1200
|
+
.#{$ti-prefix}-square-f0:before { content: $ti-icon-square-f0; }
|
|
1201
|
+
.#{$ti-prefix}-square-f1:before { content: $ti-icon-square-f1; }
|
|
1202
|
+
.#{$ti-prefix}-square-f2:before { content: $ti-icon-square-f2; }
|
|
1203
|
+
.#{$ti-prefix}-square-f3:before { content: $ti-icon-square-f3; }
|
|
1204
|
+
.#{$ti-prefix}-square-f4:before { content: $ti-icon-square-f4; }
|
|
1205
|
+
.#{$ti-prefix}-square-f5:before { content: $ti-icon-square-f5; }
|
|
1206
|
+
.#{$ti-prefix}-square-f6:before { content: $ti-icon-square-f6; }
|
|
1207
|
+
.#{$ti-prefix}-square-f7:before { content: $ti-icon-square-f7; }
|
|
1208
|
+
.#{$ti-prefix}-square-f8:before { content: $ti-icon-square-f8; }
|
|
1209
|
+
.#{$ti-prefix}-square-f9:before { content: $ti-icon-square-f9; }
|
|
1210
|
+
.#{$ti-prefix}-square-letter-a:before { content: $ti-icon-square-letter-a; }
|
|
1211
|
+
.#{$ti-prefix}-square-letter-b:before { content: $ti-icon-square-letter-b; }
|
|
1212
|
+
.#{$ti-prefix}-square-letter-c:before { content: $ti-icon-square-letter-c; }
|
|
1213
|
+
.#{$ti-prefix}-square-letter-d:before { content: $ti-icon-square-letter-d; }
|
|
1214
|
+
.#{$ti-prefix}-square-letter-e:before { content: $ti-icon-square-letter-e; }
|
|
1215
|
+
.#{$ti-prefix}-square-letter-f:before { content: $ti-icon-square-letter-f; }
|
|
1216
|
+
.#{$ti-prefix}-square-letter-g:before { content: $ti-icon-square-letter-g; }
|
|
1217
|
+
.#{$ti-prefix}-square-letter-h:before { content: $ti-icon-square-letter-h; }
|
|
1218
|
+
.#{$ti-prefix}-square-letter-i:before { content: $ti-icon-square-letter-i; }
|
|
1219
|
+
.#{$ti-prefix}-square-letter-j:before { content: $ti-icon-square-letter-j; }
|
|
1220
|
+
.#{$ti-prefix}-square-letter-k:before { content: $ti-icon-square-letter-k; }
|
|
1221
|
+
.#{$ti-prefix}-square-letter-l:before { content: $ti-icon-square-letter-l; }
|
|
1222
|
+
.#{$ti-prefix}-square-letter-m:before { content: $ti-icon-square-letter-m; }
|
|
1223
|
+
.#{$ti-prefix}-square-letter-n:before { content: $ti-icon-square-letter-n; }
|
|
1224
|
+
.#{$ti-prefix}-square-letter-o:before { content: $ti-icon-square-letter-o; }
|
|
1225
|
+
.#{$ti-prefix}-square-letter-p:before { content: $ti-icon-square-letter-p; }
|
|
1226
|
+
.#{$ti-prefix}-square-letter-q:before { content: $ti-icon-square-letter-q; }
|
|
1227
|
+
.#{$ti-prefix}-square-letter-r:before { content: $ti-icon-square-letter-r; }
|
|
1228
|
+
.#{$ti-prefix}-square-letter-s:before { content: $ti-icon-square-letter-s; }
|
|
1229
|
+
.#{$ti-prefix}-square-letter-t:before { content: $ti-icon-square-letter-t; }
|
|
1230
|
+
.#{$ti-prefix}-square-letter-u:before { content: $ti-icon-square-letter-u; }
|
|
1231
|
+
.#{$ti-prefix}-square-letter-v:before { content: $ti-icon-square-letter-v; }
|
|
1232
|
+
.#{$ti-prefix}-square-letter-w:before { content: $ti-icon-square-letter-w; }
|
|
1233
|
+
.#{$ti-prefix}-square-letter-x:before { content: $ti-icon-square-letter-x; }
|
|
1234
|
+
.#{$ti-prefix}-square-letter-y:before { content: $ti-icon-square-letter-y; }
|
|
1235
|
+
.#{$ti-prefix}-square-letter-z:before { content: $ti-icon-square-letter-z; }
|
|
1236
|
+
.#{$ti-prefix}-square-minus:before { content: $ti-icon-square-minus; }
|
|
1237
|
+
.#{$ti-prefix}-square-number-0:before { content: $ti-icon-square-number-0; }
|
|
1238
|
+
.#{$ti-prefix}-square-number-1:before { content: $ti-icon-square-number-1; }
|
|
1239
|
+
.#{$ti-prefix}-square-number-2:before { content: $ti-icon-square-number-2; }
|
|
1240
|
+
.#{$ti-prefix}-square-number-3:before { content: $ti-icon-square-number-3; }
|
|
1241
|
+
.#{$ti-prefix}-square-number-4:before { content: $ti-icon-square-number-4; }
|
|
1242
|
+
.#{$ti-prefix}-square-number-5:before { content: $ti-icon-square-number-5; }
|
|
1243
|
+
.#{$ti-prefix}-square-number-6:before { content: $ti-icon-square-number-6; }
|
|
1244
|
+
.#{$ti-prefix}-square-number-7:before { content: $ti-icon-square-number-7; }
|
|
1245
|
+
.#{$ti-prefix}-square-number-8:before { content: $ti-icon-square-number-8; }
|
|
1246
|
+
.#{$ti-prefix}-square-number-9:before { content: $ti-icon-square-number-9; }
|
|
1247
|
+
.#{$ti-prefix}-square-rotated:before { content: $ti-icon-square-rotated; }
|
|
1248
|
+
.#{$ti-prefix}-square-rounded:before { content: $ti-icon-square-rounded; }
|
|
1249
|
+
.#{$ti-prefix}-square-rounded-arrow-down:before { content: $ti-icon-square-rounded-arrow-down; }
|
|
1250
|
+
.#{$ti-prefix}-square-rounded-arrow-left:before { content: $ti-icon-square-rounded-arrow-left; }
|
|
1251
|
+
.#{$ti-prefix}-square-rounded-arrow-right:before { content: $ti-icon-square-rounded-arrow-right; }
|
|
1252
|
+
.#{$ti-prefix}-square-rounded-arrow-up:before { content: $ti-icon-square-rounded-arrow-up; }
|
|
1253
|
+
.#{$ti-prefix}-square-rounded-check:before { content: $ti-icon-square-rounded-check; }
|
|
1254
|
+
.#{$ti-prefix}-square-rounded-chevron-down:before { content: $ti-icon-square-rounded-chevron-down; }
|
|
1255
|
+
.#{$ti-prefix}-square-rounded-chevron-left:before { content: $ti-icon-square-rounded-chevron-left; }
|
|
1256
|
+
.#{$ti-prefix}-square-rounded-chevron-right:before { content: $ti-icon-square-rounded-chevron-right; }
|
|
1257
|
+
.#{$ti-prefix}-square-rounded-chevron-up:before { content: $ti-icon-square-rounded-chevron-up; }
|
|
1258
|
+
.#{$ti-prefix}-square-rounded-chevrons-down:before { content: $ti-icon-square-rounded-chevrons-down; }
|
|
1259
|
+
.#{$ti-prefix}-square-rounded-chevrons-left:before { content: $ti-icon-square-rounded-chevrons-left; }
|
|
1260
|
+
.#{$ti-prefix}-square-rounded-chevrons-right:before { content: $ti-icon-square-rounded-chevrons-right; }
|
|
1261
|
+
.#{$ti-prefix}-square-rounded-chevrons-up:before { content: $ti-icon-square-rounded-chevrons-up; }
|
|
1262
|
+
.#{$ti-prefix}-square-rounded-letter-a:before { content: $ti-icon-square-rounded-letter-a; }
|
|
1263
|
+
.#{$ti-prefix}-square-rounded-letter-b:before { content: $ti-icon-square-rounded-letter-b; }
|
|
1264
|
+
.#{$ti-prefix}-square-rounded-letter-c:before { content: $ti-icon-square-rounded-letter-c; }
|
|
1265
|
+
.#{$ti-prefix}-square-rounded-letter-d:before { content: $ti-icon-square-rounded-letter-d; }
|
|
1266
|
+
.#{$ti-prefix}-square-rounded-letter-e:before { content: $ti-icon-square-rounded-letter-e; }
|
|
1267
|
+
.#{$ti-prefix}-square-rounded-letter-f:before { content: $ti-icon-square-rounded-letter-f; }
|
|
1268
|
+
.#{$ti-prefix}-square-rounded-letter-g:before { content: $ti-icon-square-rounded-letter-g; }
|
|
1269
|
+
.#{$ti-prefix}-square-rounded-letter-h:before { content: $ti-icon-square-rounded-letter-h; }
|
|
1270
|
+
.#{$ti-prefix}-square-rounded-letter-i:before { content: $ti-icon-square-rounded-letter-i; }
|
|
1271
|
+
.#{$ti-prefix}-square-rounded-letter-j:before { content: $ti-icon-square-rounded-letter-j; }
|
|
1272
|
+
.#{$ti-prefix}-square-rounded-letter-k:before { content: $ti-icon-square-rounded-letter-k; }
|
|
1273
|
+
.#{$ti-prefix}-square-rounded-letter-l:before { content: $ti-icon-square-rounded-letter-l; }
|
|
1274
|
+
.#{$ti-prefix}-square-rounded-letter-m:before { content: $ti-icon-square-rounded-letter-m; }
|
|
1275
|
+
.#{$ti-prefix}-square-rounded-letter-n:before { content: $ti-icon-square-rounded-letter-n; }
|
|
1276
|
+
.#{$ti-prefix}-square-rounded-letter-o:before { content: $ti-icon-square-rounded-letter-o; }
|
|
1277
|
+
.#{$ti-prefix}-square-rounded-letter-p:before { content: $ti-icon-square-rounded-letter-p; }
|
|
1278
|
+
.#{$ti-prefix}-square-rounded-letter-q:before { content: $ti-icon-square-rounded-letter-q; }
|
|
1279
|
+
.#{$ti-prefix}-square-rounded-letter-r:before { content: $ti-icon-square-rounded-letter-r; }
|
|
1280
|
+
.#{$ti-prefix}-square-rounded-letter-s:before { content: $ti-icon-square-rounded-letter-s; }
|
|
1281
|
+
.#{$ti-prefix}-square-rounded-letter-t:before { content: $ti-icon-square-rounded-letter-t; }
|
|
1282
|
+
.#{$ti-prefix}-square-rounded-letter-u:before { content: $ti-icon-square-rounded-letter-u; }
|
|
1283
|
+
.#{$ti-prefix}-square-rounded-letter-v:before { content: $ti-icon-square-rounded-letter-v; }
|
|
1284
|
+
.#{$ti-prefix}-square-rounded-letter-w:before { content: $ti-icon-square-rounded-letter-w; }
|
|
1285
|
+
.#{$ti-prefix}-square-rounded-letter-x:before { content: $ti-icon-square-rounded-letter-x; }
|
|
1286
|
+
.#{$ti-prefix}-square-rounded-letter-y:before { content: $ti-icon-square-rounded-letter-y; }
|
|
1287
|
+
.#{$ti-prefix}-square-rounded-letter-z:before { content: $ti-icon-square-rounded-letter-z; }
|
|
1288
|
+
.#{$ti-prefix}-square-rounded-minus:before { content: $ti-icon-square-rounded-minus; }
|
|
1289
|
+
.#{$ti-prefix}-square-rounded-number-0:before { content: $ti-icon-square-rounded-number-0; }
|
|
1290
|
+
.#{$ti-prefix}-square-rounded-number-1:before { content: $ti-icon-square-rounded-number-1; }
|
|
1291
|
+
.#{$ti-prefix}-square-rounded-number-2:before { content: $ti-icon-square-rounded-number-2; }
|
|
1292
|
+
.#{$ti-prefix}-square-rounded-number-3:before { content: $ti-icon-square-rounded-number-3; }
|
|
1293
|
+
.#{$ti-prefix}-square-rounded-number-4:before { content: $ti-icon-square-rounded-number-4; }
|
|
1294
|
+
.#{$ti-prefix}-square-rounded-number-5:before { content: $ti-icon-square-rounded-number-5; }
|
|
1295
|
+
.#{$ti-prefix}-square-rounded-number-6:before { content: $ti-icon-square-rounded-number-6; }
|
|
1296
|
+
.#{$ti-prefix}-square-rounded-number-7:before { content: $ti-icon-square-rounded-number-7; }
|
|
1297
|
+
.#{$ti-prefix}-square-rounded-number-8:before { content: $ti-icon-square-rounded-number-8; }
|
|
1298
|
+
.#{$ti-prefix}-square-rounded-number-9:before { content: $ti-icon-square-rounded-number-9; }
|
|
1299
|
+
.#{$ti-prefix}-square-rounded-plus:before { content: $ti-icon-square-rounded-plus; }
|
|
1300
|
+
.#{$ti-prefix}-square-rounded-x:before { content: $ti-icon-square-rounded-x; }
|
|
1301
|
+
.#{$ti-prefix}-square-x:before { content: $ti-icon-square-x; }
|
|
1302
|
+
.#{$ti-prefix}-stack:before { content: $ti-icon-stack; }
|
|
1303
|
+
.#{$ti-prefix}-stack-2:before { content: $ti-icon-stack-2; }
|
|
1304
|
+
.#{$ti-prefix}-stack-3:before { content: $ti-icon-stack-3; }
|
|
1305
|
+
.#{$ti-prefix}-star:before { content: $ti-icon-star; }
|
|
1306
|
+
.#{$ti-prefix}-star-half:before { content: $ti-icon-star-half; }
|
|
1307
|
+
.#{$ti-prefix}-stars:before { content: $ti-icon-stars; }
|
|
1308
|
+
.#{$ti-prefix}-sun:before { content: $ti-icon-sun; }
|
|
1309
|
+
.#{$ti-prefix}-table:before { content: $ti-icon-table; }
|
|
1310
|
+
.#{$ti-prefix}-thumb-down:before { content: $ti-icon-thumb-down; }
|
|
1311
|
+
.#{$ti-prefix}-thumb-up:before { content: $ti-icon-thumb-up; }
|
|
1312
|
+
.#{$ti-prefix}-timeline-event:before { content: $ti-icon-timeline-event; }
|
|
1313
|
+
.#{$ti-prefix}-transform:before { content: $ti-icon-transform; }
|
|
1314
|
+
.#{$ti-prefix}-transition-bottom:before { content: $ti-icon-transition-bottom; }
|
|
1315
|
+
.#{$ti-prefix}-transition-left:before { content: $ti-icon-transition-left; }
|
|
1316
|
+
.#{$ti-prefix}-transition-right:before { content: $ti-icon-transition-right; }
|
|
1317
|
+
.#{$ti-prefix}-transition-top:before { content: $ti-icon-transition-top; }
|
|
1318
|
+
.#{$ti-prefix}-trash:before { content: $ti-icon-trash; }
|
|
1319
|
+
.#{$ti-prefix}-trash-x:before { content: $ti-icon-trash-x; }
|
|
1320
|
+
.#{$ti-prefix}-triangle:before { content: $ti-icon-triangle; }
|
|
1321
|
+
.#{$ti-prefix}-triangle-inverted:before { content: $ti-icon-triangle-inverted; }
|
|
1322
|
+
.#{$ti-prefix}-triangle-square-circle:before { content: $ti-icon-triangle-square-circle; }
|
|
1323
|
+
.#{$ti-prefix}-trophy:before { content: $ti-icon-trophy; }
|
|
1324
|
+
.#{$ti-prefix}-umbrella:before { content: $ti-icon-umbrella; }
|
|
1325
|
+
.#{$ti-prefix}-user:before { content: $ti-icon-user; }
|
|
1326
|
+
.#{$ti-prefix}-versions:before { content: $ti-icon-versions; }
|
|
1327
|
+
.#{$ti-prefix}-windmill:before { content: $ti-icon-windmill; }
|
|
1328
|
+
.#{$ti-prefix}-woman:before { content: $ti-icon-woman; }
|
|
1329
|
+
.#{$ti-prefix}-xbox-a:before { content: $ti-icon-xbox-a; }
|
|
1330
|
+
.#{$ti-prefix}-xbox-b:before { content: $ti-icon-xbox-b; }
|
|
1331
|
+
.#{$ti-prefix}-xbox-x:before { content: $ti-icon-xbox-x; }
|
|
1332
|
+
.#{$ti-prefix}-xbox-y:before { content: $ti-icon-xbox-y; }
|
|
1333
|
+
.#{$ti-prefix}-yin-yang:before { content: $ti-icon-yin-yang; }
|
|
1334
|
+
.#{$ti-prefix}-zeppelin:before { content: $ti-icon-zeppelin; }
|
|
1335
|
+
.#{$ti-prefix}-zoom:before { content: $ti-icon-zoom; }
|
|
1336
|
+
.#{$ti-prefix}-zoom-cancel:before { content: $ti-icon-zoom-cancel; }
|
|
1337
|
+
.#{$ti-prefix}-zoom-check:before { content: $ti-icon-zoom-check; }
|
|
1338
|
+
.#{$ti-prefix}-zoom-code:before { content: $ti-icon-zoom-code; }
|
|
1339
|
+
.#{$ti-prefix}-zoom-exclamation:before { content: $ti-icon-zoom-exclamation; }
|
|
1340
|
+
.#{$ti-prefix}-zoom-in:before { content: $ti-icon-zoom-in; }
|
|
1341
|
+
.#{$ti-prefix}-zoom-in-area:before { content: $ti-icon-zoom-in-area; }
|
|
1342
|
+
.#{$ti-prefix}-zoom-money:before { content: $ti-icon-zoom-money; }
|
|
1343
|
+
.#{$ti-prefix}-zoom-out:before { content: $ti-icon-zoom-out; }
|
|
1344
|
+
.#{$ti-prefix}-zoom-out-area:before { content: $ti-icon-zoom-out-area; }
|
|
1345
|
+
.#{$ti-prefix}-zoom-pan:before { content: $ti-icon-zoom-pan; }
|
|
1346
|
+
.#{$ti-prefix}-zoom-question:before { content: $ti-icon-zoom-question; }
|
|
1347
|
+
.#{$ti-prefix}-zoom-scan:before { content: $ti-icon-zoom-scan; }
|
|
1348
|
+
|
|
1349
|
+
// Aliases
|
|
1350
|
+
.#{$ti-prefix}-discount-check:before { content: $ti-icon-rosette-discount-check; }
|
|
1351
|
+
|