font-awesome-sass 6.0.0 → 6.1.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
- data/assets/stylesheets/_font-awesome.scss +4 -13
- data/assets/stylesheets/font-awesome/_animated.scss +90 -27
- data/assets/stylesheets/font-awesome/_bordered-pulled.scss +4 -4
- data/assets/stylesheets/{_brands.scss → font-awesome/_brands.scss} +6 -6
- data/assets/stylesheets/font-awesome/_core.scss +7 -7
- data/assets/stylesheets/font-awesome/_functions.scss +17 -2
- data/assets/stylesheets/font-awesome/_icons.scss +3 -1
- data/assets/stylesheets/font-awesome/_list.scss +3 -1
- data/assets/stylesheets/font-awesome/_mixins.scss +4 -5
- data/assets/stylesheets/{_regular.scss → font-awesome/_regular.scss} +5 -5
- data/assets/stylesheets/font-awesome/_rotated-flipped.scss +1 -1
- data/assets/stylesheets/font-awesome/_screen-reader.scss +4 -4
- data/assets/stylesheets/font-awesome/_shims.scss +1191 -609
- data/assets/stylesheets/font-awesome/_sizing.scss +1 -1
- data/assets/stylesheets/{_solid.scss → font-awesome/_solid.scss} +5 -5
- data/assets/stylesheets/font-awesome/_variables.scss +549 -6
- data/lib/font_awesome/sass/version.rb +1 -1
- metadata +5 -6
- data/assets/stylesheets/_v4-shims.scss +0 -11
@@ -1,2027 +1,2609 @@
|
|
1
|
-
|
1
|
+
@import "functions";
|
2
|
+
@import "variables";
|
3
|
+
|
4
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before {
|
5
|
+
content: unquote('"#{ $fa-var-martini-glass-empty }"');
|
6
|
+
}
|
2
7
|
|
3
8
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
|
4
|
-
font-family:
|
9
|
+
font-family: "Font Awesome 6 Free";
|
5
10
|
font-weight: 400;
|
6
11
|
}
|
7
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before {
|
12
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before {
|
13
|
+
content: unquote('"#{ $fa-var-envelope }"');
|
14
|
+
}
|
8
15
|
|
9
16
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
|
10
|
-
font-family:
|
17
|
+
font-family: "Font Awesome 6 Free";
|
11
18
|
font-weight: 400;
|
12
19
|
}
|
13
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before {
|
20
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before {
|
21
|
+
content: unquote('"#{ $fa-var-star }"');
|
22
|
+
}
|
14
23
|
|
15
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before {
|
24
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before {
|
25
|
+
content: unquote('"#{ $fa-var-xmark }"');
|
26
|
+
}
|
16
27
|
|
17
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before {
|
28
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before {
|
29
|
+
content: unquote('"#{ $fa-var-xmark }"');
|
30
|
+
}
|
18
31
|
|
19
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before {
|
32
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before {
|
33
|
+
content: unquote('"#{ $fa-var-gear }"');
|
34
|
+
}
|
20
35
|
|
21
36
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
|
22
|
-
font-family:
|
37
|
+
font-family: "Font Awesome 6 Free";
|
23
38
|
font-weight: 400;
|
24
39
|
}
|
25
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before {
|
40
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before {
|
41
|
+
content: unquote('"#{ $fa-var-trash-can }"');
|
42
|
+
}
|
26
43
|
|
27
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-home:before {
|
44
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-home:before {
|
45
|
+
content: unquote('"#{ $fa-var-house }"');
|
46
|
+
}
|
28
47
|
|
29
48
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
|
30
|
-
font-family:
|
49
|
+
font-family: "Font Awesome 6 Free";
|
31
50
|
font-weight: 400;
|
32
51
|
}
|
33
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before {
|
52
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before {
|
53
|
+
content: unquote('"#{ $fa-var-file }"');
|
54
|
+
}
|
34
55
|
|
35
56
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
|
36
|
-
font-family:
|
57
|
+
font-family: "Font Awesome 6 Free";
|
37
58
|
font-weight: 400;
|
38
59
|
}
|
39
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before {
|
60
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before {
|
61
|
+
content: unquote('"#{ $fa-var-clock }"');
|
62
|
+
}
|
40
63
|
|
41
64
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
|
42
|
-
font-family:
|
65
|
+
font-family: "Font Awesome 6 Free";
|
43
66
|
font-weight: 400;
|
44
67
|
}
|
45
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before {
|
68
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before {
|
69
|
+
content: unquote('"#{ $fa-var-circle-down }"');
|
70
|
+
}
|
46
71
|
|
47
72
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
|
48
|
-
font-family:
|
73
|
+
font-family: "Font Awesome 6 Free";
|
49
74
|
font-weight: 400;
|
50
75
|
}
|
51
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before {
|
76
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before {
|
77
|
+
content: unquote('"#{ $fa-var-circle-up }"');
|
78
|
+
}
|
52
79
|
|
53
80
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
|
54
|
-
font-family:
|
81
|
+
font-family: "Font Awesome 6 Free";
|
55
82
|
font-weight: 400;
|
56
83
|
}
|
57
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before {
|
84
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before {
|
85
|
+
content: unquote('"#{ $fa-var-circle-play }"');
|
86
|
+
}
|
58
87
|
|
59
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before {
|
88
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before {
|
89
|
+
content: unquote('"#{ $fa-var-arrow-rotate-right }"');
|
90
|
+
}
|
60
91
|
|
61
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before {
|
92
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before {
|
93
|
+
content: unquote('"#{ $fa-var-arrow-rotate-right }"');
|
94
|
+
}
|
62
95
|
|
63
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before {
|
96
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before {
|
97
|
+
content: unquote('"#{ $fa-var-arrows-rotate }"');
|
98
|
+
}
|
64
99
|
|
65
100
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
|
66
|
-
font-family:
|
101
|
+
font-family: "Font Awesome 6 Free";
|
67
102
|
font-weight: 400;
|
68
103
|
}
|
69
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before {
|
104
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before {
|
105
|
+
content: unquote('"#{ $fa-var-rectangle-list }"');
|
106
|
+
}
|
70
107
|
|
71
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before {
|
108
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before {
|
109
|
+
content: unquote('"#{ $fa-var-outdent }"');
|
110
|
+
}
|
72
111
|
|
73
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before {
|
112
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before {
|
113
|
+
content: unquote('"#{ $fa-var-video }"');
|
114
|
+
}
|
74
115
|
|
75
116
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
|
76
|
-
font-family:
|
117
|
+
font-family: "Font Awesome 6 Free";
|
77
118
|
font-weight: 400;
|
78
119
|
}
|
79
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before {
|
120
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before {
|
121
|
+
content: unquote('"#{ $fa-var-image }"');
|
122
|
+
}
|
80
123
|
|
81
124
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
|
82
|
-
font-family:
|
125
|
+
font-family: "Font Awesome 6 Free";
|
83
126
|
font-weight: 400;
|
84
127
|
}
|
85
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before {
|
128
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before {
|
129
|
+
content: unquote('"#{ $fa-var-image }"');
|
130
|
+
}
|
86
131
|
|
87
132
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-image {
|
88
|
-
font-family:
|
133
|
+
font-family: "Font Awesome 6 Free";
|
89
134
|
font-weight: 400;
|
90
135
|
}
|
91
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before {
|
136
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before {
|
137
|
+
content: unquote('"#{ $fa-var-image }"');
|
138
|
+
}
|
92
139
|
|
93
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before {
|
140
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before {
|
141
|
+
content: unquote('"#{ $fa-var-location-dot }"');
|
142
|
+
}
|
94
143
|
|
95
144
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
|
96
|
-
font-family:
|
145
|
+
font-family: "Font Awesome 6 Free";
|
97
146
|
font-weight: 400;
|
98
147
|
}
|
99
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before {
|
148
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before {
|
149
|
+
content: unquote('"#{ $fa-var-pen-to-square }"');
|
150
|
+
}
|
100
151
|
|
101
152
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
|
102
|
-
font-family:
|
153
|
+
font-family: "Font Awesome 6 Free";
|
103
154
|
font-weight: 400;
|
104
155
|
}
|
105
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before {
|
156
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before {
|
157
|
+
content: unquote('"#{ $fa-var-pen-to-square }"');
|
158
|
+
}
|
106
159
|
|
107
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before {
|
160
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before {
|
161
|
+
content: unquote('"#{ $fa-var-share-from-square }"');
|
162
|
+
}
|
108
163
|
|
109
164
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
|
110
|
-
font-family:
|
165
|
+
font-family: "Font Awesome 6 Free";
|
111
166
|
font-weight: 400;
|
112
167
|
}
|
113
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before {
|
168
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before {
|
169
|
+
content: unquote('"#{ $fa-var-square-check }"');
|
170
|
+
}
|
114
171
|
|
115
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before {
|
172
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before {
|
173
|
+
content: unquote('"#{ $fa-var-up-down-left-right }"');
|
174
|
+
}
|
116
175
|
|
117
176
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
|
118
|
-
font-family:
|
177
|
+
font-family: "Font Awesome 6 Free";
|
119
178
|
font-weight: 400;
|
120
179
|
}
|
121
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before {
|
180
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before {
|
181
|
+
content: unquote('"#{ $fa-var-circle-xmark }"');
|
182
|
+
}
|
122
183
|
|
123
184
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
|
124
|
-
font-family:
|
185
|
+
font-family: "Font Awesome 6 Free";
|
125
186
|
font-weight: 400;
|
126
187
|
}
|
127
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before {
|
188
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before {
|
189
|
+
content: unquote('"#{ $fa-var-circle-check }"');
|
190
|
+
}
|
128
191
|
|
129
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before {
|
192
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before {
|
193
|
+
content: unquote('"#{ $fa-var-share }"');
|
194
|
+
}
|
130
195
|
|
131
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before {
|
196
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before {
|
197
|
+
content: unquote('"#{ $fa-var-up-right-and-down-left-from-center }"');
|
198
|
+
}
|
132
199
|
|
133
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before {
|
200
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before {
|
201
|
+
content: unquote('"#{ $fa-var-down-left-and-up-right-to-center }"');
|
202
|
+
}
|
134
203
|
|
135
204
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
|
136
|
-
font-family:
|
205
|
+
font-family: "Font Awesome 6 Free";
|
137
206
|
font-weight: 400;
|
138
207
|
}
|
139
208
|
|
140
209
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
|
141
|
-
font-family:
|
210
|
+
font-family: "Font Awesome 6 Free";
|
142
211
|
font-weight: 400;
|
143
212
|
}
|
144
213
|
|
145
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before {
|
214
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before {
|
215
|
+
content: unquote('"#{ $fa-var-triangle-exclamation }"');
|
216
|
+
}
|
146
217
|
|
147
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before {
|
218
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before {
|
219
|
+
content: unquote('"#{ $fa-var-calendar-days }"');
|
220
|
+
}
|
148
221
|
|
149
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before {
|
222
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before {
|
223
|
+
content: unquote('"#{ $fa-var-up-down }"');
|
224
|
+
}
|
150
225
|
|
151
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before {
|
226
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before {
|
227
|
+
content: unquote('"#{ $fa-var-left-right }"');
|
228
|
+
}
|
152
229
|
|
153
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before {
|
230
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before {
|
231
|
+
content: unquote('"#{ $fa-var-chart-column }"');
|
232
|
+
}
|
154
233
|
|
155
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before {
|
234
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before {
|
235
|
+
content: unquote('"#{ $fa-var-chart-column }"');
|
236
|
+
}
|
156
237
|
|
157
238
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
|
158
|
-
font-family:
|
239
|
+
font-family: "Font Awesome 6 Brands";
|
159
240
|
font-weight: 400;
|
160
241
|
}
|
161
242
|
|
162
243
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
|
163
|
-
font-family:
|
244
|
+
font-family: "Font Awesome 6 Brands";
|
164
245
|
font-weight: 400;
|
165
246
|
}
|
166
247
|
|
167
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before {
|
248
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before {
|
249
|
+
content: unquote('"#{ $fa-var-gears }"');
|
250
|
+
}
|
168
251
|
|
169
252
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
|
170
|
-
font-family:
|
253
|
+
font-family: "Font Awesome 6 Free";
|
171
254
|
font-weight: 400;
|
172
255
|
}
|
173
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before {
|
256
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before {
|
257
|
+
content: unquote('"#{ $fa-var-thumbs-up }"');
|
258
|
+
}
|
174
259
|
|
175
260
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
|
176
|
-
font-family:
|
261
|
+
font-family: "Font Awesome 6 Free";
|
177
262
|
font-weight: 400;
|
178
263
|
}
|
179
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before {
|
264
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before {
|
265
|
+
content: unquote('"#{ $fa-var-thumbs-down }"');
|
266
|
+
}
|
180
267
|
|
181
268
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
|
182
|
-
font-family:
|
269
|
+
font-family: "Font Awesome 6 Free";
|
183
270
|
font-weight: 400;
|
184
271
|
}
|
185
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before {
|
272
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before {
|
273
|
+
content: unquote('"#{ $fa-var-heart }"');
|
274
|
+
}
|
186
275
|
|
187
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before {
|
276
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before {
|
277
|
+
content: unquote('"#{ $fa-var-right-from-bracket }"');
|
278
|
+
}
|
188
279
|
|
189
280
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
|
190
|
-
font-family:
|
281
|
+
font-family: "Font Awesome 6 Brands";
|
191
282
|
font-weight: 400;
|
192
283
|
}
|
193
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before {
|
284
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before {
|
285
|
+
content: unquote('"#{ $fa-var-linkedin }"');
|
286
|
+
}
|
194
287
|
|
195
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before {
|
288
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before {
|
289
|
+
content: unquote('"#{ $fa-var-thumbtack }"');
|
290
|
+
}
|
196
291
|
|
197
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before {
|
292
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before {
|
293
|
+
content: unquote('"#{ $fa-var-up-right-from-square }"');
|
294
|
+
}
|
198
295
|
|
199
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before {
|
296
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before {
|
297
|
+
content: unquote('"#{ $fa-var-right-to-bracket }"');
|
298
|
+
}
|
200
299
|
|
201
300
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
|
202
|
-
font-family:
|
301
|
+
font-family: "Font Awesome 6 Brands";
|
203
302
|
font-weight: 400;
|
204
303
|
}
|
205
304
|
|
206
305
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
|
207
|
-
font-family:
|
306
|
+
font-family: "Font Awesome 6 Free";
|
208
307
|
font-weight: 400;
|
209
308
|
}
|
210
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before {
|
309
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before {
|
310
|
+
content: unquote('"#{ $fa-var-lemon }"');
|
311
|
+
}
|
211
312
|
|
212
313
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
|
213
|
-
font-family:
|
314
|
+
font-family: "Font Awesome 6 Free";
|
214
315
|
font-weight: 400;
|
215
316
|
}
|
216
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before {
|
317
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before {
|
318
|
+
content: unquote('"#{ $fa-var-square }"');
|
319
|
+
}
|
217
320
|
|
218
321
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
|
219
|
-
font-family:
|
322
|
+
font-family: "Font Awesome 6 Free";
|
220
323
|
font-weight: 400;
|
221
324
|
}
|
222
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before {
|
325
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before {
|
326
|
+
content: unquote('"#{ $fa-var-bookmark }"');
|
327
|
+
}
|
223
328
|
|
224
329
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
|
225
|
-
font-family:
|
330
|
+
font-family: "Font Awesome 6 Brands";
|
226
331
|
font-weight: 400;
|
227
332
|
}
|
228
333
|
|
229
334
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
|
230
|
-
font-family:
|
335
|
+
font-family: "Font Awesome 6 Brands";
|
231
336
|
font-weight: 400;
|
232
337
|
}
|
233
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before {
|
338
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before {
|
339
|
+
content: unquote('"#{ $fa-var-facebook-f }"');
|
340
|
+
}
|
234
341
|
|
235
342
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
|
236
|
-
font-family:
|
343
|
+
font-family: "Font Awesome 6 Brands";
|
237
344
|
font-weight: 400;
|
238
345
|
}
|
239
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before {
|
346
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before {
|
347
|
+
content: unquote('"#{ $fa-var-facebook-f }"');
|
348
|
+
}
|
240
349
|
|
241
350
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github {
|
242
|
-
font-family:
|
351
|
+
font-family: "Font Awesome 6 Brands";
|
243
352
|
font-weight: 400;
|
244
353
|
}
|
245
354
|
|
246
355
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
|
247
|
-
font-family:
|
356
|
+
font-family: "Font Awesome 6 Free";
|
248
357
|
font-weight: 400;
|
249
358
|
}
|
250
359
|
|
251
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before {
|
360
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before {
|
361
|
+
content: unquote('"#{ $fa-var-rss }"');
|
362
|
+
}
|
252
363
|
|
253
364
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
|
254
|
-
font-family:
|
365
|
+
font-family: "Font Awesome 6 Free";
|
255
366
|
font-weight: 400;
|
256
367
|
}
|
257
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before {
|
368
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before {
|
369
|
+
content: unquote('"#{ $fa-var-hard-drive }"');
|
370
|
+
}
|
258
371
|
|
259
372
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
|
260
|
-
font-family:
|
373
|
+
font-family: "Font Awesome 6 Free";
|
261
374
|
font-weight: 400;
|
262
375
|
}
|
263
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before {
|
376
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before {
|
377
|
+
content: unquote('"#{ $fa-var-hand-point-right }"');
|
378
|
+
}
|
264
379
|
|
265
380
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
|
266
|
-
font-family:
|
381
|
+
font-family: "Font Awesome 6 Free";
|
267
382
|
font-weight: 400;
|
268
383
|
}
|
269
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before {
|
384
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before {
|
385
|
+
content: unquote('"#{ $fa-var-hand-point-left }"');
|
386
|
+
}
|
270
387
|
|
271
388
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
|
272
|
-
font-family:
|
389
|
+
font-family: "Font Awesome 6 Free";
|
273
390
|
font-weight: 400;
|
274
391
|
}
|
275
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before {
|
392
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before {
|
393
|
+
content: unquote('"#{ $fa-var-hand-point-up }"');
|
394
|
+
}
|
276
395
|
|
277
396
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
|
278
|
-
font-family:
|
397
|
+
font-family: "Font Awesome 6 Free";
|
279
398
|
font-weight: 400;
|
280
399
|
}
|
281
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before {
|
400
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before {
|
401
|
+
content: unquote('"#{ $fa-var-hand-point-down }"');
|
402
|
+
}
|
282
403
|
|
283
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before {
|
404
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before {
|
405
|
+
content: unquote('"#{ $fa-var-earth-americas }"');
|
406
|
+
}
|
284
407
|
|
285
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before {
|
408
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before {
|
409
|
+
content: unquote('"#{ $fa-var-bars-progress }"');
|
410
|
+
}
|
286
411
|
|
287
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before {
|
412
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before {
|
413
|
+
content: unquote('"#{ $fa-var-maximize }"');
|
414
|
+
}
|
288
415
|
|
289
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before {
|
416
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before {
|
417
|
+
content: unquote('"#{ $fa-var-users }"');
|
418
|
+
}
|
290
419
|
|
291
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before {
|
420
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before {
|
421
|
+
content: unquote('"#{ $fa-var-link }"');
|
422
|
+
}
|
292
423
|
|
293
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before {
|
424
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before {
|
425
|
+
content: unquote('"#{ $fa-var-scissors }"');
|
426
|
+
}
|
294
427
|
|
295
428
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
|
296
|
-
font-family:
|
429
|
+
font-family: "Font Awesome 6 Free";
|
297
430
|
font-weight: 400;
|
298
431
|
}
|
299
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before {
|
432
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before {
|
433
|
+
content: unquote('"#{ $fa-var-copy }"');
|
434
|
+
}
|
300
435
|
|
301
436
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
|
302
|
-
font-family:
|
437
|
+
font-family: "Font Awesome 6 Free";
|
303
438
|
font-weight: 400;
|
304
439
|
}
|
305
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before {
|
440
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before {
|
441
|
+
content: unquote('"#{ $fa-var-floppy-disk }"');
|
442
|
+
}
|
306
443
|
|
307
444
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-save {
|
308
|
-
font-family:
|
445
|
+
font-family: "Font Awesome 6 Free";
|
309
446
|
font-weight: 400;
|
310
447
|
}
|
311
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-save:before {
|
448
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-save:before {
|
449
|
+
content: unquote('"#{ $fa-var-floppy-disk }"');
|
450
|
+
}
|
312
451
|
|
313
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before {
|
452
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before {
|
453
|
+
content: unquote('"#{ $fa-var-bars }"');
|
454
|
+
}
|
314
455
|
|
315
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before {
|
456
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before {
|
457
|
+
content: unquote('"#{ $fa-var-bars }"');
|
458
|
+
}
|
316
459
|
|
317
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before {
|
460
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before {
|
461
|
+
content: unquote('"#{ $fa-var-wand-magic-sparkles }"');
|
462
|
+
}
|
318
463
|
|
319
464
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
|
320
|
-
font-family:
|
465
|
+
font-family: "Font Awesome 6 Brands";
|
321
466
|
font-weight: 400;
|
322
467
|
}
|
323
468
|
|
324
469
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
|
325
|
-
font-family:
|
470
|
+
font-family: "Font Awesome 6 Brands";
|
326
471
|
font-weight: 400;
|
327
472
|
}
|
328
473
|
|
329
474
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
|
330
|
-
font-family:
|
475
|
+
font-family: "Font Awesome 6 Brands";
|
331
476
|
font-weight: 400;
|
332
477
|
}
|
333
478
|
|
334
479
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
|
335
|
-
font-family:
|
480
|
+
font-family: "Font Awesome 6 Brands";
|
336
481
|
font-weight: 400;
|
337
482
|
}
|
338
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before {
|
483
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before {
|
484
|
+
content: unquote('"#{ $fa-var-google-plus-g }"');
|
485
|
+
}
|
339
486
|
|
340
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before {
|
487
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before {
|
488
|
+
content: unquote('"#{ $fa-var-money-bill-1 }"');
|
489
|
+
}
|
341
490
|
|
342
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before {
|
491
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before {
|
492
|
+
content: unquote('"#{ $fa-var-sort }"');
|
493
|
+
}
|
343
494
|
|
344
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before {
|
495
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before {
|
496
|
+
content: unquote('"#{ $fa-var-sort-down }"');
|
497
|
+
}
|
345
498
|
|
346
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before {
|
499
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before {
|
500
|
+
content: unquote('"#{ $fa-var-sort-up }"');
|
501
|
+
}
|
347
502
|
|
348
503
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
|
349
|
-
font-family:
|
504
|
+
font-family: "Font Awesome 6 Brands";
|
350
505
|
font-weight: 400;
|
351
506
|
}
|
352
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before {
|
507
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before {
|
508
|
+
content: unquote('"#{ $fa-var-linkedin-in }"');
|
509
|
+
}
|
353
510
|
|
354
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before {
|
511
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before {
|
512
|
+
content: unquote('"#{ $fa-var-arrow-rotate-left }"');
|
513
|
+
}
|
355
514
|
|
356
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before {
|
515
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before {
|
516
|
+
content: unquote('"#{ $fa-var-gavel }"');
|
517
|
+
}
|
357
518
|
|
358
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before {
|
519
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before {
|
520
|
+
content: unquote('"#{ $fa-var-gauge-high }"');
|
521
|
+
}
|
359
522
|
|
360
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before {
|
523
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before {
|
524
|
+
content: unquote('"#{ $fa-var-gauge-high }"');
|
525
|
+
}
|
361
526
|
|
362
527
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
|
363
|
-
font-family:
|
528
|
+
font-family: "Font Awesome 6 Free";
|
364
529
|
font-weight: 400;
|
365
530
|
}
|
366
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before {
|
531
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before {
|
532
|
+
content: unquote('"#{ $fa-var-comment }"');
|
533
|
+
}
|
367
534
|
|
368
535
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
|
369
|
-
font-family:
|
536
|
+
font-family: "Font Awesome 6 Free";
|
370
537
|
font-weight: 400;
|
371
538
|
}
|
372
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before {
|
539
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before {
|
540
|
+
content: unquote('"#{ $fa-var-comments }"');
|
541
|
+
}
|
373
542
|
|
374
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before {
|
543
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before {
|
544
|
+
content: unquote('"#{ $fa-var-bolt }"');
|
545
|
+
}
|
375
546
|
|
376
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before {
|
547
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before {
|
548
|
+
content: unquote('"#{ $fa-var-paste }"');
|
549
|
+
}
|
377
550
|
|
378
551
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
|
379
|
-
font-family:
|
552
|
+
font-family: "Font Awesome 6 Free";
|
380
553
|
font-weight: 400;
|
381
554
|
}
|
382
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before {
|
555
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before {
|
556
|
+
content: unquote('"#{ $fa-var-lightbulb }"');
|
557
|
+
}
|
383
558
|
|
384
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before {
|
559
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before {
|
560
|
+
content: unquote('"#{ $fa-var-right-left }"');
|
561
|
+
}
|
385
562
|
|
386
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before {
|
563
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before {
|
564
|
+
content: unquote('"#{ $fa-var-cloud-arrow-down }"');
|
565
|
+
}
|
387
566
|
|
388
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before {
|
567
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before {
|
568
|
+
content: unquote('"#{ $fa-var-cloud-arrow-up }"');
|
569
|
+
}
|
389
570
|
|
390
571
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
|
391
|
-
font-family:
|
572
|
+
font-family: "Font Awesome 6 Free";
|
392
573
|
font-weight: 400;
|
393
574
|
}
|
394
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before {
|
575
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before {
|
576
|
+
content: unquote('"#{ $fa-var-bell }"');
|
577
|
+
}
|
395
578
|
|
396
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before {
|
579
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before {
|
580
|
+
content: unquote('"#{ $fa-var-utensils }"');
|
581
|
+
}
|
397
582
|
|
398
583
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
|
399
|
-
font-family:
|
584
|
+
font-family: "Font Awesome 6 Free";
|
400
585
|
font-weight: 400;
|
401
586
|
}
|
402
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before {
|
587
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before {
|
588
|
+
content: unquote('"#{ $fa-var-file-lines }"');
|
589
|
+
}
|
403
590
|
|
404
591
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
|
405
|
-
font-family:
|
592
|
+
font-family: "Font Awesome 6 Free";
|
406
593
|
font-weight: 400;
|
407
594
|
}
|
408
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before {
|
595
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before {
|
596
|
+
content: unquote('"#{ $fa-var-building }"');
|
597
|
+
}
|
409
598
|
|
410
599
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
|
411
|
-
font-family:
|
600
|
+
font-family: "Font Awesome 6 Free";
|
412
601
|
font-weight: 400;
|
413
602
|
}
|
414
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before {
|
603
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before {
|
604
|
+
content: unquote('"#{ $fa-var-hospital }"');
|
605
|
+
}
|
415
606
|
|
416
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before {
|
607
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before {
|
608
|
+
content: unquote('"#{ $fa-var-tablet-screen-button }"');
|
609
|
+
}
|
417
610
|
|
418
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before {
|
611
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before {
|
612
|
+
content: unquote('"#{ $fa-var-mobile-screen-button }"');
|
613
|
+
}
|
419
614
|
|
420
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before {
|
615
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before {
|
616
|
+
content: unquote('"#{ $fa-var-mobile-screen-button }"');
|
617
|
+
}
|
421
618
|
|
422
619
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
|
423
|
-
font-family:
|
620
|
+
font-family: "Font Awesome 6 Free";
|
424
621
|
font-weight: 400;
|
425
622
|
}
|
426
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before {
|
623
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before {
|
624
|
+
content: unquote('"#{ $fa-var-circle }"');
|
625
|
+
}
|
427
626
|
|
428
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before {
|
627
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before {
|
628
|
+
content: unquote('"#{ $fa-var-reply }"');
|
629
|
+
}
|
429
630
|
|
430
631
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
|
431
|
-
font-family:
|
632
|
+
font-family: "Font Awesome 6 Brands";
|
432
633
|
font-weight: 400;
|
433
634
|
}
|
434
635
|
|
435
636
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
|
436
|
-
font-family:
|
637
|
+
font-family: "Font Awesome 6 Free";
|
437
638
|
font-weight: 400;
|
438
639
|
}
|
439
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before {
|
640
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before {
|
641
|
+
content: unquote('"#{ $fa-var-folder }"');
|
642
|
+
}
|
440
643
|
|
441
644
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
|
442
|
-
font-family:
|
645
|
+
font-family: "Font Awesome 6 Free";
|
443
646
|
font-weight: 400;
|
444
647
|
}
|
445
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before {
|
648
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before {
|
649
|
+
content: unquote('"#{ $fa-var-folder-open }"');
|
650
|
+
}
|
446
651
|
|
447
652
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
|
448
|
-
font-family:
|
653
|
+
font-family: "Font Awesome 6 Free";
|
449
654
|
font-weight: 400;
|
450
655
|
}
|
451
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before {
|
656
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before {
|
657
|
+
content: unquote('"#{ $fa-var-face-smile }"');
|
658
|
+
}
|
452
659
|
|
453
660
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
|
454
|
-
font-family:
|
661
|
+
font-family: "Font Awesome 6 Free";
|
455
662
|
font-weight: 400;
|
456
663
|
}
|
457
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before {
|
664
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before {
|
665
|
+
content: unquote('"#{ $fa-var-face-frown }"');
|
666
|
+
}
|
458
667
|
|
459
668
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
|
460
|
-
font-family:
|
669
|
+
font-family: "Font Awesome 6 Free";
|
461
670
|
font-weight: 400;
|
462
671
|
}
|
463
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before {
|
672
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before {
|
673
|
+
content: unquote('"#{ $fa-var-face-meh }"');
|
674
|
+
}
|
464
675
|
|
465
676
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
|
466
|
-
font-family:
|
677
|
+
font-family: "Font Awesome 6 Free";
|
467
678
|
font-weight: 400;
|
468
679
|
}
|
469
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before {
|
680
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before {
|
681
|
+
content: unquote('"#{ $fa-var-keyboard }"');
|
682
|
+
}
|
470
683
|
|
471
684
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
|
472
|
-
font-family:
|
685
|
+
font-family: "Font Awesome 6 Free";
|
473
686
|
font-weight: 400;
|
474
687
|
}
|
475
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before {
|
688
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before {
|
689
|
+
content: unquote('"#{ $fa-var-flag }"');
|
690
|
+
}
|
476
691
|
|
477
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before {
|
692
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before {
|
693
|
+
content: unquote('"#{ $fa-var-reply-all }"');
|
694
|
+
}
|
478
695
|
|
479
696
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
|
480
|
-
font-family:
|
697
|
+
font-family: "Font Awesome 6 Free";
|
481
698
|
font-weight: 400;
|
482
699
|
}
|
483
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before {
|
700
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before {
|
701
|
+
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
702
|
+
}
|
484
703
|
|
485
704
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
|
486
|
-
font-family:
|
705
|
+
font-family: "Font Awesome 6 Free";
|
487
706
|
font-weight: 400;
|
488
707
|
}
|
489
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before {
|
708
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before {
|
709
|
+
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
710
|
+
}
|
490
711
|
|
491
712
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
|
492
|
-
font-family:
|
713
|
+
font-family: "Font Awesome 6 Free";
|
493
714
|
font-weight: 400;
|
494
715
|
}
|
495
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before {
|
716
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before {
|
717
|
+
content: unquote('"#{ $fa-var-star-half-stroke }"');
|
718
|
+
}
|
496
719
|
|
497
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before {
|
720
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before {
|
721
|
+
content: unquote('"#{ $fa-var-code-branch }"');
|
722
|
+
}
|
498
723
|
|
499
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before {
|
724
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before {
|
725
|
+
content: unquote('"#{ $fa-var-link-slash }"');
|
726
|
+
}
|
500
727
|
|
501
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before {
|
728
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before {
|
729
|
+
content: unquote('"#{ $fa-var-link-slash }"');
|
730
|
+
}
|
502
731
|
|
503
732
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
|
504
|
-
font-family:
|
733
|
+
font-family: "Font Awesome 6 Free";
|
505
734
|
font-weight: 400;
|
506
735
|
}
|
507
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before {
|
736
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before {
|
737
|
+
content: unquote('"#{ $fa-var-calendar }"');
|
738
|
+
}
|
508
739
|
|
509
740
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
|
510
|
-
font-family:
|
741
|
+
font-family: "Font Awesome 6 Brands";
|
511
742
|
font-weight: 400;
|
512
743
|
}
|
513
744
|
|
514
745
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
|
515
|
-
font-family:
|
746
|
+
font-family: "Font Awesome 6 Brands";
|
516
747
|
font-weight: 400;
|
517
748
|
}
|
518
749
|
|
519
750
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
|
520
|
-
font-family:
|
751
|
+
font-family: "Font Awesome 6 Brands";
|
521
752
|
font-weight: 400;
|
522
753
|
}
|
523
754
|
|
524
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before {
|
755
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before {
|
756
|
+
content: unquote('"#{ $fa-var-unlock }"');
|
757
|
+
}
|
525
758
|
|
526
759
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
|
527
|
-
font-family:
|
760
|
+
font-family: "Font Awesome 6 Free";
|
528
761
|
font-weight: 400;
|
529
762
|
}
|
530
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before {
|
763
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before {
|
764
|
+
content: unquote('"#{ $fa-var-square-minus }"');
|
765
|
+
}
|
531
766
|
|
532
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before {
|
767
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before {
|
768
|
+
content: unquote('"#{ $fa-var-turn-up }"');
|
769
|
+
}
|
533
770
|
|
534
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before {
|
771
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before {
|
772
|
+
content: unquote('"#{ $fa-var-turn-down }"');
|
773
|
+
}
|
535
774
|
|
536
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before {
|
775
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before {
|
776
|
+
content: unquote('"#{ $fa-var-square-pen }"');
|
777
|
+
}
|
537
778
|
|
538
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before {
|
779
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before {
|
780
|
+
content: unquote('"#{ $fa-var-square-up-right }"');
|
781
|
+
}
|
539
782
|
|
540
783
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
|
541
|
-
font-family:
|
784
|
+
font-family: "Font Awesome 6 Free";
|
542
785
|
font-weight: 400;
|
543
786
|
}
|
544
787
|
|
545
788
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
|
546
|
-
font-family:
|
789
|
+
font-family: "Font Awesome 6 Free";
|
547
790
|
font-weight: 400;
|
548
791
|
}
|
549
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before {
|
792
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before {
|
793
|
+
content: unquote('"#{ $fa-var-square-caret-down }"');
|
794
|
+
}
|
550
795
|
|
551
796
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
|
552
|
-
font-family:
|
797
|
+
font-family: "Font Awesome 6 Free";
|
553
798
|
font-weight: 400;
|
554
799
|
}
|
555
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before {
|
800
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before {
|
801
|
+
content: unquote('"#{ $fa-var-square-caret-down }"');
|
802
|
+
}
|
556
803
|
|
557
804
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
|
558
|
-
font-family:
|
805
|
+
font-family: "Font Awesome 6 Free";
|
559
806
|
font-weight: 400;
|
560
807
|
}
|
561
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before {
|
808
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before {
|
809
|
+
content: unquote('"#{ $fa-var-square-caret-up }"');
|
810
|
+
}
|
562
811
|
|
563
812
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
|
564
|
-
font-family:
|
813
|
+
font-family: "Font Awesome 6 Free";
|
565
814
|
font-weight: 400;
|
566
815
|
}
|
567
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before {
|
816
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before {
|
817
|
+
content: unquote('"#{ $fa-var-square-caret-up }"');
|
818
|
+
}
|
568
819
|
|
569
820
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
|
570
|
-
font-family:
|
821
|
+
font-family: "Font Awesome 6 Free";
|
571
822
|
font-weight: 400;
|
572
823
|
}
|
573
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before {
|
824
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before {
|
825
|
+
content: unquote('"#{ $fa-var-square-caret-right }"');
|
826
|
+
}
|
574
827
|
|
575
828
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
|
576
|
-
font-family:
|
829
|
+
font-family: "Font Awesome 6 Free";
|
577
830
|
font-weight: 400;
|
578
831
|
}
|
579
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before {
|
832
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before {
|
833
|
+
content: unquote('"#{ $fa-var-square-caret-right }"');
|
834
|
+
}
|
580
835
|
|
581
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before {
|
836
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before {
|
837
|
+
content: unquote('"#{ $fa-var-euro-sign }"');
|
838
|
+
}
|
582
839
|
|
583
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before {
|
840
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before {
|
841
|
+
content: unquote('"#{ $fa-var-euro-sign }"');
|
842
|
+
}
|
584
843
|
|
585
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before {
|
844
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before {
|
845
|
+
content: unquote('"#{ $fa-var-sterling-sign }"');
|
846
|
+
}
|
586
847
|
|
587
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before {
|
848
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before {
|
849
|
+
content: unquote('"#{ $fa-var-dollar-sign }"');
|
850
|
+
}
|
588
851
|
|
589
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before {
|
852
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before {
|
853
|
+
content: unquote('"#{ $fa-var-dollar-sign }"');
|
854
|
+
}
|
590
855
|
|
591
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before {
|
856
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before {
|
857
|
+
content: unquote('"#{ $fa-var-indian-rupee-sign }"');
|
858
|
+
}
|
592
859
|
|
593
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before {
|
860
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before {
|
861
|
+
content: unquote('"#{ $fa-var-indian-rupee-sign }"');
|
862
|
+
}
|
594
863
|
|
595
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before {
|
864
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before {
|
865
|
+
content: unquote('"#{ $fa-var-yen-sign }"');
|
866
|
+
}
|
596
867
|
|
597
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before {
|
868
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before {
|
869
|
+
content: unquote('"#{ $fa-var-yen-sign }"');
|
870
|
+
}
|
598
871
|
|
599
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before {
|
872
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before {
|
873
|
+
content: unquote('"#{ $fa-var-yen-sign }"');
|
874
|
+
}
|
600
875
|
|
601
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before {
|
876
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before {
|
877
|
+
content: unquote('"#{ $fa-var-yen-sign }"');
|
878
|
+
}
|
602
879
|
|
603
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before {
|
880
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before {
|
881
|
+
content: unquote('"#{ $fa-var-ruble-sign }"');
|
882
|
+
}
|
604
883
|
|
605
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before {
|
884
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before {
|
885
|
+
content: unquote('"#{ $fa-var-ruble-sign }"');
|
886
|
+
}
|
606
887
|
|
607
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before {
|
888
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before {
|
889
|
+
content: unquote('"#{ $fa-var-ruble-sign }"');
|
890
|
+
}
|
608
891
|
|
609
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before {
|
892
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before {
|
893
|
+
content: unquote('"#{ $fa-var-won-sign }"');
|
894
|
+
}
|
610
895
|
|
611
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before {
|
896
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before {
|
897
|
+
content: unquote('"#{ $fa-var-won-sign }"');
|
898
|
+
}
|
612
899
|
|
613
900
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
|
614
|
-
font-family:
|
901
|
+
font-family: "Font Awesome 6 Brands";
|
615
902
|
font-weight: 400;
|
616
903
|
}
|
617
904
|
|
618
905
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
|
619
|
-
font-family:
|
906
|
+
font-family: "Font Awesome 6 Brands";
|
620
907
|
font-weight: 400;
|
621
908
|
}
|
622
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before {
|
909
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before {
|
910
|
+
content: unquote('"#{ $fa-var-btc }"');
|
911
|
+
}
|
623
912
|
|
624
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before {
|
913
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before {
|
914
|
+
content: unquote('"#{ $fa-var-file-lines }"');
|
915
|
+
}
|
625
916
|
|
626
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before {
|
917
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before {
|
918
|
+
content: unquote('"#{ $fa-var-arrow-down-a-z }"');
|
919
|
+
}
|
627
920
|
|
628
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before {
|
921
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before {
|
922
|
+
content: unquote('"#{ $fa-var-arrow-down-z-a }"');
|
923
|
+
}
|
629
924
|
|
630
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before {
|
925
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before {
|
926
|
+
content: unquote('"#{ $fa-var-arrow-down-short-wide }"');
|
927
|
+
}
|
631
928
|
|
632
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before {
|
929
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before {
|
930
|
+
content: unquote('"#{ $fa-var-arrow-down-wide-short }"');
|
931
|
+
}
|
633
932
|
|
634
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before {
|
933
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before {
|
934
|
+
content: unquote('"#{ $fa-var-arrow-down-1-9 }"');
|
935
|
+
}
|
635
936
|
|
636
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before {
|
937
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before {
|
938
|
+
content: unquote('"#{ $fa-var-arrow-down-9-1 }"');
|
939
|
+
}
|
637
940
|
|
638
941
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
|
639
|
-
font-family:
|
942
|
+
font-family: "Font Awesome 6 Brands";
|
640
943
|
font-weight: 400;
|
641
944
|
}
|
642
945
|
|
643
946
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
|
644
|
-
font-family:
|
947
|
+
font-family: "Font Awesome 6 Brands";
|
645
948
|
font-weight: 400;
|
646
949
|
}
|
647
950
|
|
648
951
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
|
649
|
-
font-family:
|
952
|
+
font-family: "Font Awesome 6 Brands";
|
650
953
|
font-weight: 400;
|
651
954
|
}
|
652
955
|
|
653
956
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
|
654
|
-
font-family:
|
957
|
+
font-family: "Font Awesome 6 Brands";
|
655
958
|
font-weight: 400;
|
656
959
|
}
|
657
960
|
|
658
961
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
|
659
|
-
font-family:
|
962
|
+
font-family: "Font Awesome 6 Brands";
|
660
963
|
font-weight: 400;
|
661
964
|
}
|
662
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before {
|
965
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before {
|
966
|
+
content: unquote('"#{ $fa-var-youtube }"');
|
967
|
+
}
|
663
968
|
|
664
969
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
|
665
|
-
font-family:
|
970
|
+
font-family: "Font Awesome 6 Brands";
|
666
971
|
font-weight: 400;
|
667
972
|
}
|
668
973
|
|
669
974
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
|
670
|
-
font-family:
|
975
|
+
font-family: "Font Awesome 6 Brands";
|
671
976
|
font-weight: 400;
|
672
977
|
}
|
673
978
|
|
674
979
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
|
675
|
-
font-family:
|
980
|
+
font-family: "Font Awesome 6 Brands";
|
676
981
|
font-weight: 400;
|
677
982
|
}
|
678
983
|
|
679
984
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
|
680
|
-
font-family:
|
985
|
+
font-family: "Font Awesome 6 Brands";
|
681
986
|
font-weight: 400;
|
682
987
|
}
|
683
988
|
|
684
989
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
|
685
|
-
font-family:
|
990
|
+
font-family: "Font Awesome 6 Brands";
|
686
991
|
font-weight: 400;
|
687
992
|
}
|
688
993
|
|
689
994
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
|
690
|
-
font-family:
|
995
|
+
font-family: "Font Awesome 6 Brands";
|
691
996
|
font-weight: 400;
|
692
997
|
}
|
693
998
|
|
694
999
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
|
695
|
-
font-family:
|
1000
|
+
font-family: "Font Awesome 6 Brands";
|
696
1001
|
font-weight: 400;
|
697
1002
|
}
|
698
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before {
|
1003
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before {
|
1004
|
+
content: unquote('"#{ $fa-var-bitbucket }"');
|
1005
|
+
}
|
699
1006
|
|
700
1007
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
|
701
|
-
font-family:
|
1008
|
+
font-family: "Font Awesome 6 Brands";
|
702
1009
|
font-weight: 400;
|
703
1010
|
}
|
704
1011
|
|
705
1012
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
|
706
|
-
font-family:
|
1013
|
+
font-family: "Font Awesome 6 Brands";
|
707
1014
|
font-weight: 400;
|
708
1015
|
}
|
709
1016
|
|
710
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before {
|
1017
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before {
|
1018
|
+
content: unquote('"#{ $fa-var-down-long }"');
|
1019
|
+
}
|
711
1020
|
|
712
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before {
|
1021
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before {
|
1022
|
+
content: unquote('"#{ $fa-var-up-long }"');
|
1023
|
+
}
|
713
1024
|
|
714
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before {
|
1025
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before {
|
1026
|
+
content: unquote('"#{ $fa-var-left-long }"');
|
1027
|
+
}
|
715
1028
|
|
716
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before {
|
1029
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before {
|
1030
|
+
content: unquote('"#{ $fa-var-right-long }"');
|
1031
|
+
}
|
717
1032
|
|
718
1033
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
|
719
|
-
font-family:
|
1034
|
+
font-family: "Font Awesome 6 Brands";
|
720
1035
|
font-weight: 400;
|
721
1036
|
}
|
722
1037
|
|
723
1038
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
|
724
|
-
font-family:
|
1039
|
+
font-family: "Font Awesome 6 Brands";
|
725
1040
|
font-weight: 400;
|
726
1041
|
}
|
727
1042
|
|
728
1043
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-android {
|
729
|
-
font-family:
|
1044
|
+
font-family: "Font Awesome 6 Brands";
|
730
1045
|
font-weight: 400;
|
731
1046
|
}
|
732
1047
|
|
733
1048
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
|
734
|
-
font-family:
|
1049
|
+
font-family: "Font Awesome 6 Brands";
|
735
1050
|
font-weight: 400;
|
736
1051
|
}
|
737
1052
|
|
738
1053
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
|
739
|
-
font-family:
|
1054
|
+
font-family: "Font Awesome 6 Brands";
|
740
1055
|
font-weight: 400;
|
741
1056
|
}
|
742
1057
|
|
743
1058
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
|
744
|
-
font-family:
|
1059
|
+
font-family: "Font Awesome 6 Brands";
|
745
1060
|
font-weight: 400;
|
746
1061
|
}
|
747
1062
|
|
748
1063
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
|
749
|
-
font-family:
|
1064
|
+
font-family: "Font Awesome 6 Brands";
|
750
1065
|
font-weight: 400;
|
751
1066
|
}
|
752
1067
|
|
753
1068
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
|
754
|
-
font-family:
|
1069
|
+
font-family: "Font Awesome 6 Brands";
|
755
1070
|
font-weight: 400;
|
756
1071
|
}
|
757
1072
|
|
758
1073
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
|
759
|
-
font-family:
|
1074
|
+
font-family: "Font Awesome 6 Brands";
|
760
1075
|
font-weight: 400;
|
761
1076
|
}
|
762
1077
|
|
763
1078
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
|
764
|
-
font-family:
|
1079
|
+
font-family: "Font Awesome 6 Brands";
|
765
1080
|
font-weight: 400;
|
766
1081
|
}
|
767
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before {
|
1082
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before {
|
1083
|
+
content: unquote('"#{ $fa-var-gratipay }"');
|
1084
|
+
}
|
768
1085
|
|
769
1086
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
|
770
|
-
font-family:
|
1087
|
+
font-family: "Font Awesome 6 Free";
|
771
1088
|
font-weight: 400;
|
772
1089
|
}
|
773
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before {
|
1090
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before {
|
1091
|
+
content: unquote('"#{ $fa-var-sun }"');
|
1092
|
+
}
|
774
1093
|
|
775
1094
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
|
776
|
-
font-family:
|
1095
|
+
font-family: "Font Awesome 6 Free";
|
777
1096
|
font-weight: 400;
|
778
1097
|
}
|
779
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before {
|
1098
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before {
|
1099
|
+
content: unquote('"#{ $fa-var-moon }"');
|
1100
|
+
}
|
780
1101
|
|
781
1102
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
|
782
|
-
font-family:
|
1103
|
+
font-family: "Font Awesome 6 Brands";
|
783
1104
|
font-weight: 400;
|
784
1105
|
}
|
785
1106
|
|
786
1107
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
|
787
|
-
font-family:
|
1108
|
+
font-family: "Font Awesome 6 Brands";
|
788
1109
|
font-weight: 400;
|
789
1110
|
}
|
790
1111
|
|
791
1112
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
|
792
|
-
font-family:
|
1113
|
+
font-family: "Font Awesome 6 Brands";
|
793
1114
|
font-weight: 400;
|
794
1115
|
}
|
795
1116
|
|
796
1117
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
|
797
|
-
font-family:
|
1118
|
+
font-family: "Font Awesome 6 Brands";
|
798
1119
|
font-weight: 400;
|
799
1120
|
}
|
800
1121
|
|
801
1122
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
|
802
|
-
font-family:
|
1123
|
+
font-family: "Font Awesome 6 Brands";
|
803
1124
|
font-weight: 400;
|
804
1125
|
}
|
805
1126
|
|
806
1127
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
|
807
|
-
font-family:
|
1128
|
+
font-family: "Font Awesome 6 Free";
|
808
1129
|
font-weight: 400;
|
809
1130
|
}
|
810
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before {
|
1131
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before {
|
1132
|
+
content: unquote('"#{ $fa-var-circle-right }"');
|
1133
|
+
}
|
811
1134
|
|
812
1135
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
|
813
|
-
font-family:
|
1136
|
+
font-family: "Font Awesome 6 Free";
|
814
1137
|
font-weight: 400;
|
815
1138
|
}
|
816
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before {
|
1139
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before {
|
1140
|
+
content: unquote('"#{ $fa-var-circle-left }"');
|
1141
|
+
}
|
817
1142
|
|
818
1143
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
|
819
|
-
font-family:
|
1144
|
+
font-family: "Font Awesome 6 Free";
|
820
1145
|
font-weight: 400;
|
821
1146
|
}
|
822
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before {
|
1147
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before {
|
1148
|
+
content: unquote('"#{ $fa-var-square-caret-left }"');
|
1149
|
+
}
|
823
1150
|
|
824
1151
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
|
825
|
-
font-family:
|
1152
|
+
font-family: "Font Awesome 6 Free";
|
826
1153
|
font-weight: 400;
|
827
1154
|
}
|
828
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before {
|
1155
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before {
|
1156
|
+
content: unquote('"#{ $fa-var-square-caret-left }"');
|
1157
|
+
}
|
829
1158
|
|
830
1159
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
|
831
|
-
font-family:
|
1160
|
+
font-family: "Font Awesome 6 Free";
|
832
1161
|
font-weight: 400;
|
833
1162
|
}
|
834
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before {
|
1163
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before {
|
1164
|
+
content: unquote('"#{ $fa-var-circle-dot }"');
|
1165
|
+
}
|
835
1166
|
|
836
1167
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
|
837
|
-
font-family:
|
1168
|
+
font-family: "Font Awesome 6 Brands";
|
838
1169
|
font-weight: 400;
|
839
1170
|
}
|
840
1171
|
|
841
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before {
|
1172
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before {
|
1173
|
+
content: unquote('"#{ $fa-var-turkish-lira-sign }"');
|
1174
|
+
}
|
842
1175
|
|
843
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before {
|
1176
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before {
|
1177
|
+
content: unquote('"#{ $fa-var-turkish-lira-sign }"');
|
1178
|
+
}
|
844
1179
|
|
845
1180
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
|
846
|
-
font-family:
|
1181
|
+
font-family: "Font Awesome 6 Free";
|
847
1182
|
font-weight: 400;
|
848
1183
|
}
|
849
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before {
|
1184
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before {
|
1185
|
+
content: unquote('"#{ $fa-var-square-plus }"');
|
1186
|
+
}
|
850
1187
|
|
851
1188
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
|
852
|
-
font-family:
|
1189
|
+
font-family: "Font Awesome 6 Brands";
|
853
1190
|
font-weight: 400;
|
854
1191
|
}
|
855
1192
|
|
856
1193
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
|
857
|
-
font-family:
|
1194
|
+
font-family: "Font Awesome 6 Brands";
|
858
1195
|
font-weight: 400;
|
859
1196
|
}
|
860
1197
|
|
861
1198
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
|
862
|
-
font-family:
|
1199
|
+
font-family: "Font Awesome 6 Brands";
|
863
1200
|
font-weight: 400;
|
864
1201
|
}
|
865
1202
|
|
866
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before {
|
1203
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before {
|
1204
|
+
content: unquote('"#{ $fa-var-building-columns }"');
|
1205
|
+
}
|
867
1206
|
|
868
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before {
|
1207
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before {
|
1208
|
+
content: unquote('"#{ $fa-var-building-columns }"');
|
1209
|
+
}
|
869
1210
|
|
870
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before {
|
1211
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before {
|
1212
|
+
content: unquote('"#{ $fa-var-graduation-cap }"');
|
1213
|
+
}
|
871
1214
|
|
872
1215
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
|
873
|
-
font-family:
|
1216
|
+
font-family: "Font Awesome 6 Brands";
|
874
1217
|
font-weight: 400;
|
875
1218
|
}
|
876
1219
|
|
877
1220
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google {
|
878
|
-
font-family:
|
1221
|
+
font-family: "Font Awesome 6 Brands";
|
879
1222
|
font-weight: 400;
|
880
1223
|
}
|
881
1224
|
|
882
1225
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
|
883
|
-
font-family:
|
1226
|
+
font-family: "Font Awesome 6 Brands";
|
884
1227
|
font-weight: 400;
|
885
1228
|
}
|
886
1229
|
|
887
1230
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
|
888
|
-
font-family:
|
1231
|
+
font-family: "Font Awesome 6 Brands";
|
889
1232
|
font-weight: 400;
|
890
1233
|
}
|
891
1234
|
|
892
1235
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
|
893
|
-
font-family:
|
1236
|
+
font-family: "Font Awesome 6 Brands";
|
894
1237
|
font-weight: 400;
|
895
1238
|
}
|
896
1239
|
|
897
1240
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
|
898
|
-
font-family:
|
1241
|
+
font-family: "Font Awesome 6 Brands";
|
899
1242
|
font-weight: 400;
|
900
1243
|
}
|
901
1244
|
|
902
1245
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
|
903
|
-
font-family:
|
1246
|
+
font-family: "Font Awesome 6 Brands";
|
904
1247
|
font-weight: 400;
|
905
1248
|
}
|
906
1249
|
|
907
1250
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
|
908
|
-
font-family:
|
1251
|
+
font-family: "Font Awesome 6 Brands";
|
909
1252
|
font-weight: 400;
|
910
1253
|
}
|
911
1254
|
|
912
1255
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
|
913
|
-
font-family:
|
1256
|
+
font-family: "Font Awesome 6 Brands";
|
914
1257
|
font-weight: 400;
|
915
1258
|
}
|
916
1259
|
|
917
1260
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
|
918
|
-
font-family:
|
1261
|
+
font-family: "Font Awesome 6 Brands";
|
919
1262
|
font-weight: 400;
|
920
1263
|
}
|
921
1264
|
|
922
1265
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
|
923
|
-
font-family:
|
1266
|
+
font-family: "Font Awesome 6 Brands";
|
924
1267
|
font-weight: 400;
|
925
1268
|
}
|
926
1269
|
|
927
1270
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
|
928
|
-
font-family:
|
1271
|
+
font-family: "Font Awesome 6 Brands";
|
929
1272
|
font-weight: 400;
|
930
1273
|
}
|
931
1274
|
|
932
1275
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
|
933
|
-
font-family:
|
1276
|
+
font-family: "Font Awesome 6 Brands";
|
934
1277
|
font-weight: 400;
|
935
1278
|
}
|
936
1279
|
|
937
1280
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
|
938
|
-
font-family:
|
1281
|
+
font-family: "Font Awesome 6 Brands";
|
939
1282
|
font-weight: 400;
|
940
1283
|
}
|
941
1284
|
|
942
1285
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
|
943
|
-
font-family:
|
1286
|
+
font-family: "Font Awesome 6 Brands";
|
944
1287
|
font-weight: 400;
|
945
1288
|
}
|
946
1289
|
|
947
1290
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
|
948
|
-
font-family:
|
1291
|
+
font-family: "Font Awesome 6 Brands";
|
949
1292
|
font-weight: 400;
|
950
1293
|
}
|
951
1294
|
|
952
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before {
|
1295
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before {
|
1296
|
+
content: unquote('"#{ $fa-var-car }"');
|
1297
|
+
}
|
953
1298
|
|
954
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before {
|
1299
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before {
|
1300
|
+
content: unquote('"#{ $fa-var-taxi }"');
|
1301
|
+
}
|
955
1302
|
|
956
1303
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
|
957
|
-
font-family:
|
1304
|
+
font-family: "Font Awesome 6 Brands";
|
958
1305
|
font-weight: 400;
|
959
1306
|
}
|
960
1307
|
|
961
1308
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
|
962
|
-
font-family:
|
1309
|
+
font-family: "Font Awesome 6 Brands";
|
963
1310
|
font-weight: 400;
|
964
1311
|
}
|
965
1312
|
|
966
1313
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
|
967
|
-
font-family:
|
1314
|
+
font-family: "Font Awesome 6 Brands";
|
968
1315
|
font-weight: 400;
|
969
1316
|
}
|
970
1317
|
|
971
1318
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
|
972
|
-
font-family:
|
1319
|
+
font-family: "Font Awesome 6 Free";
|
973
1320
|
font-weight: 400;
|
974
1321
|
}
|
975
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before {
|
1322
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before {
|
1323
|
+
content: unquote('"#{ $fa-var-file-pdf }"');
|
1324
|
+
}
|
976
1325
|
|
977
1326
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
|
978
|
-
font-family:
|
1327
|
+
font-family: "Font Awesome 6 Free";
|
979
1328
|
font-weight: 400;
|
980
1329
|
}
|
981
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before {
|
1330
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before {
|
1331
|
+
content: unquote('"#{ $fa-var-file-word }"');
|
1332
|
+
}
|
982
1333
|
|
983
1334
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
|
984
|
-
font-family:
|
1335
|
+
font-family: "Font Awesome 6 Free";
|
985
1336
|
font-weight: 400;
|
986
1337
|
}
|
987
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before {
|
1338
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before {
|
1339
|
+
content: unquote('"#{ $fa-var-file-excel }"');
|
1340
|
+
}
|
988
1341
|
|
989
1342
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
|
990
|
-
font-family:
|
1343
|
+
font-family: "Font Awesome 6 Free";
|
991
1344
|
font-weight: 400;
|
992
1345
|
}
|
993
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before {
|
1346
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before {
|
1347
|
+
content: unquote('"#{ $fa-var-file-powerpoint }"');
|
1348
|
+
}
|
994
1349
|
|
995
1350
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
|
996
|
-
font-family:
|
1351
|
+
font-family: "Font Awesome 6 Free";
|
997
1352
|
font-weight: 400;
|
998
1353
|
}
|
999
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before {
|
1354
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before {
|
1355
|
+
content: unquote('"#{ $fa-var-file-image }"');
|
1356
|
+
}
|
1000
1357
|
|
1001
1358
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
|
1002
|
-
font-family:
|
1359
|
+
font-family: "Font Awesome 6 Free";
|
1003
1360
|
font-weight: 400;
|
1004
1361
|
}
|
1005
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before {
|
1362
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before {
|
1363
|
+
content: unquote('"#{ $fa-var-file-image }"');
|
1364
|
+
}
|
1006
1365
|
|
1007
1366
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
|
1008
|
-
font-family:
|
1367
|
+
font-family: "Font Awesome 6 Free";
|
1009
1368
|
font-weight: 400;
|
1010
1369
|
}
|
1011
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before {
|
1370
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before {
|
1371
|
+
content: unquote('"#{ $fa-var-file-image }"');
|
1372
|
+
}
|
1012
1373
|
|
1013
1374
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
|
1014
|
-
font-family:
|
1375
|
+
font-family: "Font Awesome 6 Free";
|
1015
1376
|
font-weight: 400;
|
1016
1377
|
}
|
1017
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before {
|
1378
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before {
|
1379
|
+
content: unquote('"#{ $fa-var-file-zipper }"');
|
1380
|
+
}
|
1018
1381
|
|
1019
1382
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
|
1020
|
-
font-family:
|
1383
|
+
font-family: "Font Awesome 6 Free";
|
1021
1384
|
font-weight: 400;
|
1022
1385
|
}
|
1023
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before {
|
1386
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before {
|
1387
|
+
content: unquote('"#{ $fa-var-file-zipper }"');
|
1388
|
+
}
|
1024
1389
|
|
1025
1390
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
|
1026
|
-
font-family:
|
1391
|
+
font-family: "Font Awesome 6 Free";
|
1027
1392
|
font-weight: 400;
|
1028
1393
|
}
|
1029
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before {
|
1394
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before {
|
1395
|
+
content: unquote('"#{ $fa-var-file-audio }"');
|
1396
|
+
}
|
1030
1397
|
|
1031
1398
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
|
1032
|
-
font-family:
|
1399
|
+
font-family: "Font Awesome 6 Free";
|
1033
1400
|
font-weight: 400;
|
1034
1401
|
}
|
1035
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before {
|
1402
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before {
|
1403
|
+
content: unquote('"#{ $fa-var-file-audio }"');
|
1404
|
+
}
|
1036
1405
|
|
1037
1406
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
|
1038
|
-
font-family:
|
1407
|
+
font-family: "Font Awesome 6 Free";
|
1039
1408
|
font-weight: 400;
|
1040
1409
|
}
|
1041
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before {
|
1410
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before {
|
1411
|
+
content: unquote('"#{ $fa-var-file-video }"');
|
1412
|
+
}
|
1042
1413
|
|
1043
1414
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
|
1044
|
-
font-family:
|
1415
|
+
font-family: "Font Awesome 6 Free";
|
1045
1416
|
font-weight: 400;
|
1046
1417
|
}
|
1047
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before {
|
1418
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before {
|
1419
|
+
content: unquote('"#{ $fa-var-file-video }"');
|
1420
|
+
}
|
1048
1421
|
|
1049
1422
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
|
1050
|
-
font-family:
|
1423
|
+
font-family: "Font Awesome 6 Free";
|
1051
1424
|
font-weight: 400;
|
1052
1425
|
}
|
1053
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before {
|
1426
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before {
|
1427
|
+
content: unquote('"#{ $fa-var-file-code }"');
|
1428
|
+
}
|
1054
1429
|
|
1055
1430
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
|
1056
|
-
font-family:
|
1431
|
+
font-family: "Font Awesome 6 Brands";
|
1057
1432
|
font-weight: 400;
|
1058
1433
|
}
|
1059
1434
|
|
1060
1435
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
|
1061
|
-
font-family:
|
1436
|
+
font-family: "Font Awesome 6 Brands";
|
1062
1437
|
font-weight: 400;
|
1063
1438
|
}
|
1064
1439
|
|
1065
1440
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
|
1066
|
-
font-family:
|
1441
|
+
font-family: "Font Awesome 6 Brands";
|
1067
1442
|
font-weight: 400;
|
1068
1443
|
}
|
1069
1444
|
|
1070
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before {
|
1445
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before {
|
1446
|
+
content: unquote('"#{ $fa-var-life-ring }"');
|
1447
|
+
}
|
1071
1448
|
|
1072
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before {
|
1449
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before {
|
1450
|
+
content: unquote('"#{ $fa-var-life-ring }"');
|
1451
|
+
}
|
1073
1452
|
|
1074
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before {
|
1453
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before {
|
1454
|
+
content: unquote('"#{ $fa-var-life-ring }"');
|
1455
|
+
}
|
1075
1456
|
|
1076
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before {
|
1457
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before {
|
1458
|
+
content: unquote('"#{ $fa-var-life-ring }"');
|
1459
|
+
}
|
1077
1460
|
|
1078
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before {
|
1461
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before {
|
1462
|
+
content: unquote('"#{ $fa-var-circle-notch }"');
|
1463
|
+
}
|
1079
1464
|
|
1080
1465
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
|
1081
|
-
font-family:
|
1466
|
+
font-family: "Font Awesome 6 Brands";
|
1082
1467
|
font-weight: 400;
|
1083
1468
|
}
|
1084
1469
|
|
1085
1470
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
|
1086
|
-
font-family:
|
1471
|
+
font-family: "Font Awesome 6 Brands";
|
1087
1472
|
font-weight: 400;
|
1088
1473
|
}
|
1089
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before {
|
1474
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before {
|
1475
|
+
content: unquote('"#{ $fa-var-rebel }"');
|
1476
|
+
}
|
1090
1477
|
|
1091
1478
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
|
1092
|
-
font-family:
|
1479
|
+
font-family: "Font Awesome 6 Brands";
|
1093
1480
|
font-weight: 400;
|
1094
1481
|
}
|
1095
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before {
|
1482
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before {
|
1483
|
+
content: unquote('"#{ $fa-var-rebel }"');
|
1484
|
+
}
|
1096
1485
|
|
1097
1486
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
|
1098
|
-
font-family:
|
1487
|
+
font-family: "Font Awesome 6 Brands";
|
1099
1488
|
font-weight: 400;
|
1100
1489
|
}
|
1101
1490
|
|
1102
1491
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
|
1103
|
-
font-family:
|
1492
|
+
font-family: "Font Awesome 6 Brands";
|
1104
1493
|
font-weight: 400;
|
1105
1494
|
}
|
1106
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before {
|
1495
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before {
|
1496
|
+
content: unquote('"#{ $fa-var-empire }"');
|
1497
|
+
}
|
1107
1498
|
|
1108
1499
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
|
1109
|
-
font-family:
|
1500
|
+
font-family: "Font Awesome 6 Brands";
|
1110
1501
|
font-weight: 400;
|
1111
1502
|
}
|
1112
1503
|
|
1113
1504
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git {
|
1114
|
-
font-family:
|
1505
|
+
font-family: "Font Awesome 6 Brands";
|
1115
1506
|
font-weight: 400;
|
1116
1507
|
}
|
1117
1508
|
|
1118
1509
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
|
1119
|
-
font-family:
|
1510
|
+
font-family: "Font Awesome 6 Brands";
|
1120
1511
|
font-weight: 400;
|
1121
1512
|
}
|
1122
1513
|
|
1123
1514
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
|
1124
|
-
font-family:
|
1515
|
+
font-family: "Font Awesome 6 Brands";
|
1125
1516
|
font-weight: 400;
|
1126
1517
|
}
|
1127
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before {
|
1518
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before {
|
1519
|
+
content: unquote('"#{ $fa-var-hacker-news }"');
|
1520
|
+
}
|
1128
1521
|
|
1129
1522
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
|
1130
|
-
font-family:
|
1523
|
+
font-family: "Font Awesome 6 Brands";
|
1131
1524
|
font-weight: 400;
|
1132
1525
|
}
|
1133
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before {
|
1526
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before {
|
1527
|
+
content: unquote('"#{ $fa-var-hacker-news }"');
|
1528
|
+
}
|
1134
1529
|
|
1135
1530
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
|
1136
|
-
font-family:
|
1531
|
+
font-family: "Font Awesome 6 Brands";
|
1137
1532
|
font-weight: 400;
|
1138
1533
|
}
|
1139
1534
|
|
1140
1535
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
|
1141
|
-
font-family:
|
1536
|
+
font-family: "Font Awesome 6 Brands";
|
1142
1537
|
font-weight: 400;
|
1143
1538
|
}
|
1144
1539
|
|
1145
1540
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
|
1146
|
-
font-family:
|
1541
|
+
font-family: "Font Awesome 6 Brands";
|
1147
1542
|
font-weight: 400;
|
1148
1543
|
}
|
1149
1544
|
|
1150
1545
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
|
1151
|
-
font-family:
|
1546
|
+
font-family: "Font Awesome 6 Brands";
|
1152
1547
|
font-weight: 400;
|
1153
1548
|
}
|
1154
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before {
|
1549
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before {
|
1550
|
+
content: unquote('"#{ $fa-var-weixin }"');
|
1551
|
+
}
|
1155
1552
|
|
1156
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before {
|
1553
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before {
|
1554
|
+
content: unquote('"#{ $fa-var-paper-plane }"');
|
1555
|
+
}
|
1157
1556
|
|
1158
1557
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
|
1159
|
-
font-family:
|
1558
|
+
font-family: "Font Awesome 6 Free";
|
1160
1559
|
font-weight: 400;
|
1161
1560
|
}
|
1162
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before {
|
1561
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before {
|
1562
|
+
content: unquote('"#{ $fa-var-paper-plane }"');
|
1563
|
+
}
|
1163
1564
|
|
1164
1565
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
|
1165
|
-
font-family:
|
1566
|
+
font-family: "Font Awesome 6 Free";
|
1166
1567
|
font-weight: 400;
|
1167
1568
|
}
|
1168
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before {
|
1569
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before {
|
1570
|
+
content: unquote('"#{ $fa-var-paper-plane }"');
|
1571
|
+
}
|
1169
1572
|
|
1170
1573
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
|
1171
|
-
font-family:
|
1574
|
+
font-family: "Font Awesome 6 Free";
|
1172
1575
|
font-weight: 400;
|
1173
1576
|
}
|
1174
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before {
|
1577
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before {
|
1578
|
+
content: unquote('"#{ $fa-var-circle }"');
|
1579
|
+
}
|
1175
1580
|
|
1176
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before {
|
1581
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before {
|
1582
|
+
content: unquote('"#{ $fa-var-heading }"');
|
1583
|
+
}
|
1177
1584
|
|
1178
1585
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
|
1179
|
-
font-family:
|
1586
|
+
font-family: "Font Awesome 6 Free";
|
1180
1587
|
font-weight: 400;
|
1181
1588
|
}
|
1182
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before {
|
1589
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before {
|
1590
|
+
content: unquote('"#{ $fa-var-futbol }"');
|
1591
|
+
}
|
1183
1592
|
|
1184
1593
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
|
1185
|
-
font-family:
|
1594
|
+
font-family: "Font Awesome 6 Free";
|
1186
1595
|
font-weight: 400;
|
1187
1596
|
}
|
1188
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before {
|
1597
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before {
|
1598
|
+
content: unquote('"#{ $fa-var-futbol }"');
|
1599
|
+
}
|
1189
1600
|
|
1190
1601
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
|
1191
|
-
font-family:
|
1602
|
+
font-family: "Font Awesome 6 Brands";
|
1192
1603
|
font-weight: 400;
|
1193
1604
|
}
|
1194
1605
|
|
1195
1606
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
|
1196
|
-
font-family:
|
1607
|
+
font-family: "Font Awesome 6 Brands";
|
1197
1608
|
font-weight: 400;
|
1198
1609
|
}
|
1199
1610
|
|
1200
1611
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
|
1201
|
-
font-family:
|
1612
|
+
font-family: "Font Awesome 6 Brands";
|
1202
1613
|
font-weight: 400;
|
1203
1614
|
}
|
1204
1615
|
|
1205
1616
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
|
1206
|
-
font-family:
|
1617
|
+
font-family: "Font Awesome 6 Free";
|
1207
1618
|
font-weight: 400;
|
1208
1619
|
}
|
1209
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before {
|
1620
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before {
|
1621
|
+
content: unquote('"#{ $fa-var-newspaper }"');
|
1622
|
+
}
|
1210
1623
|
|
1211
1624
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
|
1212
|
-
font-family:
|
1625
|
+
font-family: "Font Awesome 6 Brands";
|
1213
1626
|
font-weight: 400;
|
1214
1627
|
}
|
1215
1628
|
|
1216
1629
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
|
1217
|
-
font-family:
|
1630
|
+
font-family: "Font Awesome 6 Brands";
|
1218
1631
|
font-weight: 400;
|
1219
1632
|
}
|
1220
1633
|
|
1221
1634
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
|
1222
|
-
font-family:
|
1635
|
+
font-family: "Font Awesome 6 Brands";
|
1223
1636
|
font-weight: 400;
|
1224
1637
|
}
|
1225
1638
|
|
1226
1639
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
|
1227
|
-
font-family:
|
1640
|
+
font-family: "Font Awesome 6 Brands";
|
1228
1641
|
font-weight: 400;
|
1229
1642
|
}
|
1230
1643
|
|
1231
1644
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
|
1232
|
-
font-family:
|
1645
|
+
font-family: "Font Awesome 6 Brands";
|
1233
1646
|
font-weight: 400;
|
1234
1647
|
}
|
1235
1648
|
|
1236
1649
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
|
1237
|
-
font-family:
|
1650
|
+
font-family: "Font Awesome 6 Brands";
|
1238
1651
|
font-weight: 400;
|
1239
1652
|
}
|
1240
1653
|
|
1241
1654
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
|
1242
|
-
font-family:
|
1655
|
+
font-family: "Font Awesome 6 Brands";
|
1243
1656
|
font-weight: 400;
|
1244
1657
|
}
|
1245
1658
|
|
1246
1659
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
|
1247
|
-
font-family:
|
1660
|
+
font-family: "Font Awesome 6 Brands";
|
1248
1661
|
font-weight: 400;
|
1249
1662
|
}
|
1250
1663
|
|
1251
1664
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
|
1252
|
-
font-family:
|
1665
|
+
font-family: "Font Awesome 6 Free";
|
1253
1666
|
font-weight: 400;
|
1254
1667
|
}
|
1255
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before {
|
1668
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before {
|
1669
|
+
content: unquote('"#{ $fa-var-bell-slash }"');
|
1670
|
+
}
|
1256
1671
|
|
1257
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before {
|
1672
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before {
|
1673
|
+
content: unquote('"#{ $fa-var-trash-can }"');
|
1674
|
+
}
|
1258
1675
|
|
1259
1676
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
|
1260
|
-
font-family:
|
1677
|
+
font-family: "Font Awesome 6 Free";
|
1261
1678
|
font-weight: 400;
|
1262
1679
|
}
|
1263
1680
|
|
1264
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before {
|
1681
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before {
|
1682
|
+
content: unquote('"#{ $fa-var-eye-dropper }"');
|
1683
|
+
}
|
1265
1684
|
|
1266
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before {
|
1685
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before {
|
1686
|
+
content: unquote('"#{ $fa-var-chart-area }"');
|
1687
|
+
}
|
1267
1688
|
|
1268
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before {
|
1689
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before {
|
1690
|
+
content: unquote('"#{ $fa-var-chart-pie }"');
|
1691
|
+
}
|
1269
1692
|
|
1270
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before {
|
1693
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before {
|
1694
|
+
content: unquote('"#{ $fa-var-chart-line }"');
|
1695
|
+
}
|
1271
1696
|
|
1272
1697
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
|
1273
|
-
font-family:
|
1698
|
+
font-family: "Font Awesome 6 Brands";
|
1274
1699
|
font-weight: 400;
|
1275
1700
|
}
|
1276
1701
|
|
1277
1702
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
|
1278
|
-
font-family:
|
1703
|
+
font-family: "Font Awesome 6 Brands";
|
1279
1704
|
font-weight: 400;
|
1280
1705
|
}
|
1281
1706
|
|
1282
1707
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
|
1283
|
-
font-family:
|
1708
|
+
font-family: "Font Awesome 6 Brands";
|
1284
1709
|
font-weight: 400;
|
1285
1710
|
}
|
1286
1711
|
|
1287
1712
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
|
1288
|
-
font-family:
|
1713
|
+
font-family: "Font Awesome 6 Brands";
|
1289
1714
|
font-weight: 400;
|
1290
1715
|
}
|
1291
1716
|
|
1292
1717
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
|
1293
|
-
font-family:
|
1718
|
+
font-family: "Font Awesome 6 Free";
|
1294
1719
|
font-weight: 400;
|
1295
1720
|
}
|
1296
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before {
|
1721
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before {
|
1722
|
+
content: unquote('"#{ $fa-var-closed-captioning }"');
|
1723
|
+
}
|
1297
1724
|
|
1298
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before {
|
1725
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before {
|
1726
|
+
content: unquote('"#{ $fa-var-shekel-sign }"');
|
1727
|
+
}
|
1299
1728
|
|
1300
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before {
|
1729
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before {
|
1730
|
+
content: unquote('"#{ $fa-var-shekel-sign }"');
|
1731
|
+
}
|
1301
1732
|
|
1302
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before {
|
1733
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before {
|
1734
|
+
content: unquote('"#{ $fa-var-shekel-sign }"');
|
1735
|
+
}
|
1303
1736
|
|
1304
1737
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
|
1305
|
-
font-family:
|
1738
|
+
font-family: "Font Awesome 6 Brands";
|
1306
1739
|
font-weight: 400;
|
1307
1740
|
}
|
1308
1741
|
|
1309
1742
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
|
1310
|
-
font-family:
|
1743
|
+
font-family: "Font Awesome 6 Brands";
|
1311
1744
|
font-weight: 400;
|
1312
1745
|
}
|
1313
1746
|
|
1314
1747
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
|
1315
|
-
font-family:
|
1748
|
+
font-family: "Font Awesome 6 Brands";
|
1316
1749
|
font-weight: 400;
|
1317
1750
|
}
|
1318
1751
|
|
1319
1752
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
|
1320
|
-
font-family:
|
1753
|
+
font-family: "Font Awesome 6 Brands";
|
1321
1754
|
font-weight: 400;
|
1322
1755
|
}
|
1323
1756
|
|
1324
1757
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
|
1325
|
-
font-family:
|
1758
|
+
font-family: "Font Awesome 6 Brands";
|
1326
1759
|
font-weight: 400;
|
1327
1760
|
}
|
1328
1761
|
|
1329
1762
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
|
1330
|
-
font-family:
|
1763
|
+
font-family: "Font Awesome 6 Brands";
|
1331
1764
|
font-weight: 400;
|
1332
1765
|
}
|
1333
1766
|
|
1334
1767
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
|
1335
|
-
font-family:
|
1768
|
+
font-family: "Font Awesome 6 Brands";
|
1336
1769
|
font-weight: 400;
|
1337
1770
|
}
|
1338
1771
|
|
1339
1772
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
|
1340
|
-
font-family:
|
1773
|
+
font-family: "Font Awesome 6 Brands";
|
1341
1774
|
font-weight: 400;
|
1342
1775
|
}
|
1343
1776
|
|
1344
1777
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
|
1345
|
-
font-family:
|
1778
|
+
font-family: "Font Awesome 6 Brands";
|
1346
1779
|
font-weight: 400;
|
1347
1780
|
}
|
1348
1781
|
|
1349
1782
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
|
1350
|
-
font-family:
|
1783
|
+
font-family: "Font Awesome 6 Free";
|
1351
1784
|
font-weight: 400;
|
1352
1785
|
}
|
1353
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before {
|
1786
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before {
|
1787
|
+
content: unquote('"#{ $fa-var-gem }"');
|
1788
|
+
}
|
1354
1789
|
|
1355
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before {
|
1790
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before {
|
1791
|
+
content: unquote('"#{ $fa-var-mars-and-venus }"');
|
1792
|
+
}
|
1356
1793
|
|
1357
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before {
|
1794
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before {
|
1795
|
+
content: unquote('"#{ $fa-var-mars-and-venus }"');
|
1796
|
+
}
|
1358
1797
|
|
1359
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before {
|
1798
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before {
|
1799
|
+
content: unquote('"#{ $fa-var-transgender }"');
|
1800
|
+
}
|
1360
1801
|
|
1361
1802
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
|
1362
|
-
font-family:
|
1803
|
+
font-family: "Font Awesome 6 Brands";
|
1363
1804
|
font-weight: 400;
|
1364
1805
|
}
|
1365
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before {
|
1806
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before {
|
1807
|
+
content: unquote('"#{ $fa-var-facebook }"');
|
1808
|
+
}
|
1366
1809
|
|
1367
1810
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
|
1368
|
-
font-family:
|
1811
|
+
font-family: "Font Awesome 6 Brands";
|
1369
1812
|
font-weight: 400;
|
1370
1813
|
}
|
1371
1814
|
|
1372
1815
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
|
1373
|
-
font-family:
|
1816
|
+
font-family: "Font Awesome 6 Brands";
|
1374
1817
|
font-weight: 400;
|
1375
1818
|
}
|
1376
1819
|
|
1377
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before {
|
1820
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before {
|
1821
|
+
content: unquote('"#{ $fa-var-bed }"');
|
1822
|
+
}
|
1378
1823
|
|
1379
1824
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
|
1380
|
-
font-family:
|
1825
|
+
font-family: "Font Awesome 6 Brands";
|
1381
1826
|
font-weight: 400;
|
1382
1827
|
}
|
1383
1828
|
|
1384
1829
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
|
1385
|
-
font-family:
|
1830
|
+
font-family: "Font Awesome 6 Brands";
|
1386
1831
|
font-weight: 400;
|
1387
1832
|
}
|
1388
1833
|
|
1389
1834
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
|
1390
|
-
font-family:
|
1835
|
+
font-family: "Font Awesome 6 Brands";
|
1391
1836
|
font-weight: 400;
|
1392
1837
|
}
|
1393
1838
|
|
1394
1839
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
|
1395
|
-
font-family:
|
1840
|
+
font-family: "Font Awesome 6 Brands";
|
1396
1841
|
font-weight: 400;
|
1397
1842
|
}
|
1398
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before {
|
1843
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before {
|
1844
|
+
content: unquote('"#{ $fa-var-y-combinator }"');
|
1845
|
+
}
|
1399
1846
|
|
1400
1847
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
|
1401
|
-
font-family:
|
1848
|
+
font-family: "Font Awesome 6 Brands";
|
1402
1849
|
font-weight: 400;
|
1403
1850
|
}
|
1404
1851
|
|
1405
1852
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
|
1406
|
-
font-family:
|
1853
|
+
font-family: "Font Awesome 6 Brands";
|
1407
1854
|
font-weight: 400;
|
1408
1855
|
}
|
1409
1856
|
|
1410
1857
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
|
1411
|
-
font-family:
|
1858
|
+
font-family: "Font Awesome 6 Brands";
|
1412
1859
|
font-weight: 400;
|
1413
1860
|
}
|
1414
1861
|
|
1415
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before {
|
1862
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before {
|
1863
|
+
content: unquote('"#{ $fa-var-battery-full }"');
|
1864
|
+
}
|
1416
1865
|
|
1417
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before {
|
1866
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before {
|
1867
|
+
content: unquote('"#{ $fa-var-battery-full }"');
|
1868
|
+
}
|
1418
1869
|
|
1419
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before {
|
1870
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before {
|
1871
|
+
content: unquote('"#{ $fa-var-battery-three-quarters }"');
|
1872
|
+
}
|
1420
1873
|
|
1421
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before {
|
1874
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before {
|
1875
|
+
content: unquote('"#{ $fa-var-battery-half }"');
|
1876
|
+
}
|
1422
1877
|
|
1423
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before {
|
1878
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before {
|
1879
|
+
content: unquote('"#{ $fa-var-battery-quarter }"');
|
1880
|
+
}
|
1424
1881
|
|
1425
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before {
|
1882
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before {
|
1883
|
+
content: unquote('"#{ $fa-var-battery-empty }"');
|
1884
|
+
}
|
1426
1885
|
|
1427
1886
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
|
1428
|
-
font-family:
|
1887
|
+
font-family: "Font Awesome 6 Free";
|
1429
1888
|
font-weight: 400;
|
1430
1889
|
}
|
1431
1890
|
|
1432
1891
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
|
1433
|
-
font-family:
|
1892
|
+
font-family: "Font Awesome 6 Free";
|
1434
1893
|
font-weight: 400;
|
1435
1894
|
}
|
1436
1895
|
|
1437
1896
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
|
1438
|
-
font-family:
|
1897
|
+
font-family: "Font Awesome 6 Free";
|
1439
1898
|
font-weight: 400;
|
1440
1899
|
}
|
1441
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before {
|
1900
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before {
|
1901
|
+
content: unquote('"#{ $fa-var-note-sticky }"');
|
1902
|
+
}
|
1442
1903
|
|
1443
1904
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
|
1444
|
-
font-family:
|
1905
|
+
font-family: "Font Awesome 6 Brands";
|
1445
1906
|
font-weight: 400;
|
1446
1907
|
}
|
1447
1908
|
|
1448
1909
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
|
1449
|
-
font-family:
|
1910
|
+
font-family: "Font Awesome 6 Brands";
|
1450
1911
|
font-weight: 400;
|
1451
1912
|
}
|
1452
1913
|
|
1453
1914
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
|
1454
|
-
font-family:
|
1915
|
+
font-family: "Font Awesome 6 Free";
|
1455
1916
|
font-weight: 400;
|
1456
1917
|
}
|
1457
1918
|
|
1458
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before {
|
1919
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before {
|
1920
|
+
content: unquote('"#{ $fa-var-hourglass-empty }"');
|
1921
|
+
}
|
1459
1922
|
|
1460
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before {
|
1923
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before {
|
1924
|
+
content: unquote('"#{ $fa-var-hourglass-start }"');
|
1925
|
+
}
|
1461
1926
|
|
1462
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-half:before {
|
1927
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-half:before {
|
1928
|
+
content: unquote('"#{ $fa-var-hourglass }"');
|
1929
|
+
}
|
1463
1930
|
|
1464
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before {
|
1931
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before {
|
1932
|
+
content: unquote('"#{ $fa-var-hourglass }"');
|
1933
|
+
}
|
1465
1934
|
|
1466
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before {
|
1935
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before {
|
1936
|
+
content: unquote('"#{ $fa-var-hourglass-end }"');
|
1937
|
+
}
|
1467
1938
|
|
1468
1939
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
|
1469
|
-
font-family:
|
1940
|
+
font-family: "Font Awesome 6 Free";
|
1470
1941
|
font-weight: 400;
|
1471
1942
|
}
|
1472
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before {
|
1943
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before {
|
1944
|
+
content: unquote('"#{ $fa-var-hand-back-fist }"');
|
1945
|
+
}
|
1473
1946
|
|
1474
1947
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
|
1475
|
-
font-family:
|
1948
|
+
font-family: "Font Awesome 6 Free";
|
1476
1949
|
font-weight: 400;
|
1477
1950
|
}
|
1478
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before {
|
1951
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before {
|
1952
|
+
content: unquote('"#{ $fa-var-hand-back-fist }"');
|
1953
|
+
}
|
1479
1954
|
|
1480
1955
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
|
1481
|
-
font-family:
|
1956
|
+
font-family: "Font Awesome 6 Free";
|
1482
1957
|
font-weight: 400;
|
1483
1958
|
}
|
1484
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before {
|
1959
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before {
|
1960
|
+
content: unquote('"#{ $fa-var-hand }"');
|
1961
|
+
}
|
1485
1962
|
|
1486
1963
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
|
1487
|
-
font-family:
|
1964
|
+
font-family: "Font Awesome 6 Free";
|
1488
1965
|
font-weight: 400;
|
1489
1966
|
}
|
1490
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before {
|
1967
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before {
|
1968
|
+
content: unquote('"#{ $fa-var-hand }"');
|
1969
|
+
}
|
1491
1970
|
|
1492
1971
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
|
1493
|
-
font-family:
|
1972
|
+
font-family: "Font Awesome 6 Free";
|
1494
1973
|
font-weight: 400;
|
1495
1974
|
}
|
1496
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before {
|
1975
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before {
|
1976
|
+
content: unquote('"#{ $fa-var-hand-scissors }"');
|
1977
|
+
}
|
1497
1978
|
|
1498
1979
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
|
1499
|
-
font-family:
|
1980
|
+
font-family: "Font Awesome 6 Free";
|
1500
1981
|
font-weight: 400;
|
1501
1982
|
}
|
1502
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before {
|
1983
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before {
|
1984
|
+
content: unquote('"#{ $fa-var-hand-lizard }"');
|
1985
|
+
}
|
1503
1986
|
|
1504
1987
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
|
1505
|
-
font-family:
|
1988
|
+
font-family: "Font Awesome 6 Free";
|
1506
1989
|
font-weight: 400;
|
1507
1990
|
}
|
1508
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before {
|
1991
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before {
|
1992
|
+
content: unquote('"#{ $fa-var-hand-spock }"');
|
1993
|
+
}
|
1509
1994
|
|
1510
1995
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
|
1511
|
-
font-family:
|
1996
|
+
font-family: "Font Awesome 6 Free";
|
1512
1997
|
font-weight: 400;
|
1513
1998
|
}
|
1514
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before {
|
1999
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before {
|
2000
|
+
content: unquote('"#{ $fa-var-hand-pointer }"');
|
2001
|
+
}
|
1515
2002
|
|
1516
2003
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
|
1517
|
-
font-family:
|
2004
|
+
font-family: "Font Awesome 6 Free";
|
1518
2005
|
font-weight: 400;
|
1519
2006
|
}
|
1520
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before {
|
2007
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before {
|
2008
|
+
content: unquote('"#{ $fa-var-hand-peace }"');
|
2009
|
+
}
|
1521
2010
|
|
1522
2011
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
|
1523
|
-
font-family:
|
2012
|
+
font-family: "Font Awesome 6 Free";
|
1524
2013
|
font-weight: 400;
|
1525
2014
|
}
|
1526
2015
|
|
1527
2016
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
|
1528
|
-
font-family:
|
2017
|
+
font-family: "Font Awesome 6 Brands";
|
1529
2018
|
font-weight: 400;
|
1530
2019
|
}
|
1531
2020
|
|
1532
2021
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
|
1533
|
-
font-family:
|
2022
|
+
font-family: "Font Awesome 6 Brands";
|
1534
2023
|
font-weight: 400;
|
1535
2024
|
}
|
1536
2025
|
|
1537
2026
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
|
1538
|
-
font-family:
|
2027
|
+
font-family: "Font Awesome 6 Brands";
|
1539
2028
|
font-weight: 400;
|
1540
2029
|
}
|
1541
2030
|
|
1542
2031
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
|
1543
|
-
font-family:
|
2032
|
+
font-family: "Font Awesome 6 Brands";
|
1544
2033
|
font-weight: 400;
|
1545
2034
|
}
|
1546
2035
|
|
1547
2036
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
|
1548
|
-
font-family:
|
2037
|
+
font-family: "Font Awesome 6 Brands";
|
1549
2038
|
font-weight: 400;
|
1550
2039
|
}
|
1551
2040
|
|
1552
2041
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
|
1553
|
-
font-family:
|
2042
|
+
font-family: "Font Awesome 6 Brands";
|
1554
2043
|
font-weight: 400;
|
1555
2044
|
}
|
1556
2045
|
|
1557
2046
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
|
1558
|
-
font-family:
|
2047
|
+
font-family: "Font Awesome 6 Brands";
|
1559
2048
|
font-weight: 400;
|
1560
2049
|
}
|
1561
2050
|
|
1562
2051
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
|
1563
|
-
font-family:
|
2052
|
+
font-family: "Font Awesome 6 Brands";
|
1564
2053
|
font-weight: 400;
|
1565
2054
|
}
|
1566
2055
|
|
1567
2056
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
|
1568
|
-
font-family:
|
2057
|
+
font-family: "Font Awesome 6 Brands";
|
1569
2058
|
font-weight: 400;
|
1570
2059
|
}
|
1571
2060
|
|
1572
2061
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
|
1573
|
-
font-family:
|
2062
|
+
font-family: "Font Awesome 6 Brands";
|
1574
2063
|
font-weight: 400;
|
1575
2064
|
}
|
1576
2065
|
|
1577
2066
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
|
1578
|
-
font-family:
|
2067
|
+
font-family: "Font Awesome 6 Brands";
|
1579
2068
|
font-weight: 400;
|
1580
2069
|
}
|
1581
2070
|
|
1582
2071
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
|
1583
|
-
font-family:
|
2072
|
+
font-family: "Font Awesome 6 Brands";
|
1584
2073
|
font-weight: 400;
|
1585
2074
|
}
|
1586
2075
|
|
1587
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before {
|
2076
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before {
|
2077
|
+
content: unquote('"#{ $fa-var-tv }"');
|
2078
|
+
}
|
1588
2079
|
|
1589
2080
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
|
1590
|
-
font-family:
|
2081
|
+
font-family: "Font Awesome 6 Brands";
|
1591
2082
|
font-weight: 400;
|
1592
2083
|
}
|
1593
2084
|
|
1594
2085
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
|
1595
|
-
font-family:
|
2086
|
+
font-family: "Font Awesome 6 Brands";
|
1596
2087
|
font-weight: 400;
|
1597
2088
|
}
|
1598
2089
|
|
1599
2090
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
|
1600
|
-
font-family:
|
2091
|
+
font-family: "Font Awesome 6 Brands";
|
1601
2092
|
font-weight: 400;
|
1602
2093
|
}
|
1603
2094
|
|
1604
2095
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
|
1605
|
-
font-family:
|
2096
|
+
font-family: "Font Awesome 6 Free";
|
1606
2097
|
font-weight: 400;
|
1607
2098
|
}
|
1608
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before {
|
2099
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before {
|
2100
|
+
content: unquote('"#{ $fa-var-calendar-plus }"');
|
2101
|
+
}
|
1609
2102
|
|
1610
2103
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
|
1611
|
-
font-family:
|
2104
|
+
font-family: "Font Awesome 6 Free";
|
1612
2105
|
font-weight: 400;
|
1613
2106
|
}
|
1614
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before {
|
2107
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before {
|
2108
|
+
content: unquote('"#{ $fa-var-calendar-minus }"');
|
2109
|
+
}
|
1615
2110
|
|
1616
2111
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
|
1617
|
-
font-family:
|
2112
|
+
font-family: "Font Awesome 6 Free";
|
1618
2113
|
font-weight: 400;
|
1619
2114
|
}
|
1620
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before {
|
2115
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before {
|
2116
|
+
content: unquote('"#{ $fa-var-calendar-xmark }"');
|
2117
|
+
}
|
1621
2118
|
|
1622
2119
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
|
1623
|
-
font-family:
|
2120
|
+
font-family: "Font Awesome 6 Free";
|
1624
2121
|
font-weight: 400;
|
1625
2122
|
}
|
1626
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before {
|
2123
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before {
|
2124
|
+
content: unquote('"#{ $fa-var-calendar-check }"');
|
2125
|
+
}
|
1627
2126
|
|
1628
2127
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
|
1629
|
-
font-family:
|
2128
|
+
font-family: "Font Awesome 6 Free";
|
1630
2129
|
font-weight: 400;
|
1631
2130
|
}
|
1632
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before {
|
2131
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before {
|
2132
|
+
content: unquote('"#{ $fa-var-map }"');
|
2133
|
+
}
|
1633
2134
|
|
1634
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before {
|
2135
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before {
|
2136
|
+
content: unquote('"#{ $fa-var-comment-dots }"');
|
2137
|
+
}
|
1635
2138
|
|
1636
2139
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
|
1637
|
-
font-family:
|
2140
|
+
font-family: "Font Awesome 6 Free";
|
1638
2141
|
font-weight: 400;
|
1639
2142
|
}
|
1640
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before {
|
2143
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before {
|
2144
|
+
content: unquote('"#{ $fa-var-comment-dots }"');
|
2145
|
+
}
|
1641
2146
|
|
1642
2147
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
|
1643
|
-
font-family:
|
2148
|
+
font-family: "Font Awesome 6 Brands";
|
1644
2149
|
font-weight: 400;
|
1645
2150
|
}
|
1646
2151
|
|
1647
2152
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
|
1648
|
-
font-family:
|
2153
|
+
font-family: "Font Awesome 6 Brands";
|
1649
2154
|
font-weight: 400;
|
1650
2155
|
}
|
1651
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before {
|
2156
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before {
|
2157
|
+
content: unquote('"#{ $fa-var-vimeo-v }"');
|
2158
|
+
}
|
1652
2159
|
|
1653
2160
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
|
1654
|
-
font-family:
|
2161
|
+
font-family: "Font Awesome 6 Brands";
|
1655
2162
|
font-weight: 400;
|
1656
2163
|
}
|
1657
2164
|
|
1658
2165
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
|
1659
|
-
font-family:
|
2166
|
+
font-family: "Font Awesome 6 Brands";
|
1660
2167
|
font-weight: 400;
|
1661
2168
|
}
|
1662
2169
|
|
1663
2170
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
|
1664
|
-
font-family:
|
2171
|
+
font-family: "Font Awesome 6 Brands";
|
1665
2172
|
font-weight: 400;
|
1666
2173
|
}
|
1667
2174
|
|
1668
2175
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
|
1669
|
-
font-family:
|
2176
|
+
font-family: "Font Awesome 6 Brands";
|
1670
2177
|
font-weight: 400;
|
1671
2178
|
}
|
1672
2179
|
|
1673
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before {
|
2180
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before {
|
2181
|
+
content: unquote('"#{ $fa-var-credit-card }"');
|
2182
|
+
}
|
1674
2183
|
|
1675
2184
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
|
1676
|
-
font-family:
|
2185
|
+
font-family: "Font Awesome 6 Brands";
|
1677
2186
|
font-weight: 400;
|
1678
2187
|
}
|
1679
2188
|
|
1680
2189
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
|
1681
|
-
font-family:
|
2190
|
+
font-family: "Font Awesome 6 Brands";
|
1682
2191
|
font-weight: 400;
|
1683
2192
|
}
|
1684
2193
|
|
1685
2194
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
|
1686
|
-
font-family:
|
2195
|
+
font-family: "Font Awesome 6 Brands";
|
1687
2196
|
font-weight: 400;
|
1688
2197
|
}
|
1689
2198
|
|
1690
2199
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
|
1691
|
-
font-family:
|
2200
|
+
font-family: "Font Awesome 6 Brands";
|
1692
2201
|
font-weight: 400;
|
1693
2202
|
}
|
1694
2203
|
|
1695
2204
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
|
1696
|
-
font-family:
|
2205
|
+
font-family: "Font Awesome 6 Brands";
|
1697
2206
|
font-weight: 400;
|
1698
2207
|
}
|
1699
2208
|
|
1700
2209
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
|
1701
|
-
font-family:
|
2210
|
+
font-family: "Font Awesome 6 Brands";
|
1702
2211
|
font-weight: 400;
|
1703
2212
|
}
|
1704
2213
|
|
1705
2214
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
|
1706
|
-
font-family:
|
2215
|
+
font-family: "Font Awesome 6 Brands";
|
1707
2216
|
font-weight: 400;
|
1708
2217
|
}
|
1709
2218
|
|
1710
2219
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
|
1711
|
-
font-family:
|
2220
|
+
font-family: "Font Awesome 6 Free";
|
1712
2221
|
font-weight: 400;
|
1713
2222
|
}
|
1714
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before {
|
2223
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before {
|
2224
|
+
content: unquote('"#{ $fa-var-circle-pause }"');
|
2225
|
+
}
|
1715
2226
|
|
1716
2227
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
|
1717
|
-
font-family:
|
2228
|
+
font-family: "Font Awesome 6 Free";
|
1718
2229
|
font-weight: 400;
|
1719
2230
|
}
|
1720
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before {
|
2231
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before {
|
2232
|
+
content: unquote('"#{ $fa-var-circle-stop }"');
|
2233
|
+
}
|
1721
2234
|
|
1722
2235
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
|
1723
|
-
font-family:
|
2236
|
+
font-family: "Font Awesome 6 Brands";
|
1724
2237
|
font-weight: 400;
|
1725
2238
|
}
|
1726
2239
|
|
1727
2240
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
|
1728
|
-
font-family:
|
2241
|
+
font-family: "Font Awesome 6 Brands";
|
1729
2242
|
font-weight: 400;
|
1730
2243
|
}
|
1731
2244
|
|
1732
2245
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
|
1733
|
-
font-family:
|
2246
|
+
font-family: "Font Awesome 6 Brands";
|
1734
2247
|
font-weight: 400;
|
1735
2248
|
}
|
1736
2249
|
|
1737
2250
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
|
1738
|
-
font-family:
|
2251
|
+
font-family: "Font Awesome 6 Brands";
|
1739
2252
|
font-weight: 400;
|
1740
2253
|
}
|
1741
2254
|
|
1742
2255
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
|
1743
|
-
font-family:
|
2256
|
+
font-family: "Font Awesome 6 Brands";
|
1744
2257
|
font-weight: 400;
|
1745
2258
|
}
|
1746
2259
|
|
1747
2260
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
|
1748
|
-
font-family:
|
2261
|
+
font-family: "Font Awesome 6 Brands";
|
1749
2262
|
font-weight: 400;
|
1750
2263
|
}
|
1751
2264
|
|
1752
2265
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
|
1753
|
-
font-family:
|
2266
|
+
font-family: "Font Awesome 6 Brands";
|
1754
2267
|
font-weight: 400;
|
1755
2268
|
}
|
1756
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before {
|
2269
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before {
|
2270
|
+
content: unquote('"#{ $fa-var-accessible-icon }"');
|
2271
|
+
}
|
1757
2272
|
|
1758
2273
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
|
1759
|
-
font-family:
|
2274
|
+
font-family: "Font Awesome 6 Free";
|
1760
2275
|
font-weight: 400;
|
1761
2276
|
}
|
1762
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before {
|
2277
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before {
|
2278
|
+
content: unquote('"#{ $fa-var-circle-question }"');
|
2279
|
+
}
|
1763
2280
|
|
1764
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before {
|
2281
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before {
|
2282
|
+
content: unquote('"#{ $fa-var-phone-volume }"');
|
2283
|
+
}
|
1765
2284
|
|
1766
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before {
|
2285
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before {
|
2286
|
+
content: unquote('"#{ $fa-var-hands-asl-interpreting }"');
|
2287
|
+
}
|
1767
2288
|
|
1768
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before {
|
2289
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before {
|
2290
|
+
content: unquote('"#{ $fa-var-ear-deaf }"');
|
2291
|
+
}
|
1769
2292
|
|
1770
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before {
|
2293
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before {
|
2294
|
+
content: unquote('"#{ $fa-var-ear-deaf }"');
|
2295
|
+
}
|
1771
2296
|
|
1772
2297
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
|
1773
|
-
font-family:
|
2298
|
+
font-family: "Font Awesome 6 Brands";
|
1774
2299
|
font-weight: 400;
|
1775
2300
|
}
|
1776
2301
|
|
1777
2302
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
|
1778
|
-
font-family:
|
2303
|
+
font-family: "Font Awesome 6 Brands";
|
1779
2304
|
font-weight: 400;
|
1780
2305
|
}
|
1781
2306
|
|
1782
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before {
|
2307
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before {
|
2308
|
+
content: unquote('"#{ $fa-var-hands }"');
|
2309
|
+
}
|
1783
2310
|
|
1784
2311
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
|
1785
|
-
font-family:
|
2312
|
+
font-family: "Font Awesome 6 Brands";
|
1786
2313
|
font-weight: 400;
|
1787
2314
|
}
|
1788
2315
|
|
1789
2316
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
|
1790
|
-
font-family:
|
2317
|
+
font-family: "Font Awesome 6 Brands";
|
1791
2318
|
font-weight: 400;
|
1792
2319
|
}
|
1793
2320
|
|
1794
2321
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
|
1795
|
-
font-family:
|
2322
|
+
font-family: "Font Awesome 6 Brands";
|
1796
2323
|
font-weight: 400;
|
1797
2324
|
}
|
1798
2325
|
|
1799
2326
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
|
1800
|
-
font-family:
|
2327
|
+
font-family: "Font Awesome 6 Brands";
|
1801
2328
|
font-weight: 400;
|
1802
2329
|
}
|
1803
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before {
|
2330
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before {
|
2331
|
+
content: unquote('"#{ $fa-var-snapchat }"');
|
2332
|
+
}
|
1804
2333
|
|
1805
2334
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
|
1806
|
-
font-family:
|
2335
|
+
font-family: "Font Awesome 6 Brands";
|
1807
2336
|
font-weight: 400;
|
1808
2337
|
}
|
1809
2338
|
|
1810
2339
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
|
1811
|
-
font-family:
|
2340
|
+
font-family: "Font Awesome 6 Brands";
|
1812
2341
|
font-weight: 400;
|
1813
2342
|
}
|
1814
2343
|
|
1815
2344
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
|
1816
|
-
font-family:
|
2345
|
+
font-family: "Font Awesome 6 Brands";
|
1817
2346
|
font-weight: 400;
|
1818
2347
|
}
|
1819
2348
|
|
1820
2349
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
|
1821
|
-
font-family:
|
2350
|
+
font-family: "Font Awesome 6 Brands";
|
1822
2351
|
font-weight: 400;
|
1823
2352
|
}
|
1824
2353
|
|
1825
2354
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
|
1826
|
-
font-family:
|
2355
|
+
font-family: "Font Awesome 6 Brands";
|
1827
2356
|
font-weight: 400;
|
1828
2357
|
}
|
1829
2358
|
|
1830
2359
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
|
1831
|
-
font-family:
|
2360
|
+
font-family: "Font Awesome 6 Brands";
|
1832
2361
|
font-weight: 400;
|
1833
2362
|
}
|
1834
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before {
|
2363
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before {
|
2364
|
+
content: unquote('"#{ $fa-var-google-plus }"');
|
2365
|
+
}
|
1835
2366
|
|
1836
2367
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
|
1837
|
-
font-family:
|
2368
|
+
font-family: "Font Awesome 6 Brands";
|
1838
2369
|
font-weight: 400;
|
1839
2370
|
}
|
1840
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before {
|
2371
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before {
|
2372
|
+
content: unquote('"#{ $fa-var-google-plus }"');
|
2373
|
+
}
|
1841
2374
|
|
1842
2375
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
|
1843
|
-
font-family:
|
2376
|
+
font-family: "Font Awesome 6 Brands";
|
1844
2377
|
font-weight: 400;
|
1845
2378
|
}
|
1846
2379
|
|
1847
2380
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
|
1848
|
-
font-family:
|
2381
|
+
font-family: "Font Awesome 6 Brands";
|
1849
2382
|
font-weight: 400;
|
1850
2383
|
}
|
1851
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before {
|
2384
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before {
|
2385
|
+
content: unquote('"#{ $fa-var-font-awesome }"');
|
2386
|
+
}
|
1852
2387
|
|
1853
2388
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
|
1854
|
-
font-family:
|
2389
|
+
font-family: "Font Awesome 6 Free";
|
1855
2390
|
font-weight: 400;
|
1856
2391
|
}
|
1857
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before {
|
2392
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before {
|
2393
|
+
content: unquote('"#{ $fa-var-handshake }"');
|
2394
|
+
}
|
1858
2395
|
|
1859
2396
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
|
1860
|
-
font-family:
|
2397
|
+
font-family: "Font Awesome 6 Free";
|
1861
2398
|
font-weight: 400;
|
1862
2399
|
}
|
1863
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before {
|
2400
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before {
|
2401
|
+
content: unquote('"#{ $fa-var-envelope-open }"');
|
2402
|
+
}
|
1864
2403
|
|
1865
2404
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
|
1866
|
-
font-family:
|
2405
|
+
font-family: "Font Awesome 6 Brands";
|
1867
2406
|
font-weight: 400;
|
1868
2407
|
}
|
1869
2408
|
|
1870
2409
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
|
1871
|
-
font-family:
|
2410
|
+
font-family: "Font Awesome 6 Free";
|
1872
2411
|
font-weight: 400;
|
1873
2412
|
}
|
1874
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before {
|
2413
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before {
|
2414
|
+
content: unquote('"#{ $fa-var-address-book }"');
|
2415
|
+
}
|
1875
2416
|
|
1876
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before {
|
2417
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before {
|
2418
|
+
content: unquote('"#{ $fa-var-address-card }"');
|
2419
|
+
}
|
1877
2420
|
|
1878
2421
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
|
1879
|
-
font-family:
|
2422
|
+
font-family: "Font Awesome 6 Free";
|
1880
2423
|
font-weight: 400;
|
1881
2424
|
}
|
1882
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before {
|
2425
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before {
|
2426
|
+
content: unquote('"#{ $fa-var-address-card }"');
|
2427
|
+
}
|
1883
2428
|
|
1884
2429
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
|
1885
|
-
font-family:
|
2430
|
+
font-family: "Font Awesome 6 Free";
|
1886
2431
|
font-weight: 400;
|
1887
2432
|
}
|
1888
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before {
|
2433
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before {
|
2434
|
+
content: unquote('"#{ $fa-var-address-card }"');
|
2435
|
+
}
|
1889
2436
|
|
1890
2437
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
|
1891
|
-
font-family:
|
2438
|
+
font-family: "Font Awesome 6 Free";
|
1892
2439
|
font-weight: 400;
|
1893
2440
|
}
|
1894
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before {
|
2441
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before {
|
2442
|
+
content: unquote('"#{ $fa-var-circle-user }"');
|
2443
|
+
}
|
1895
2444
|
|
1896
2445
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
|
1897
|
-
font-family:
|
2446
|
+
font-family: "Font Awesome 6 Free";
|
1898
2447
|
font-weight: 400;
|
1899
2448
|
}
|
1900
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before {
|
2449
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before {
|
2450
|
+
content: unquote('"#{ $fa-var-user }"');
|
2451
|
+
}
|
1901
2452
|
|
1902
2453
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
|
1903
|
-
font-family:
|
2454
|
+
font-family: "Font Awesome 6 Free";
|
1904
2455
|
font-weight: 400;
|
1905
2456
|
}
|
1906
2457
|
|
1907
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before {
|
2458
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before {
|
2459
|
+
content: unquote('"#{ $fa-var-id-card }"');
|
2460
|
+
}
|
1908
2461
|
|
1909
2462
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
|
1910
|
-
font-family:
|
2463
|
+
font-family: "Font Awesome 6 Free";
|
1911
2464
|
font-weight: 400;
|
1912
2465
|
}
|
1913
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before {
|
2466
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before {
|
2467
|
+
content: unquote('"#{ $fa-var-id-card }"');
|
2468
|
+
}
|
1914
2469
|
|
1915
2470
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
|
1916
|
-
font-family:
|
2471
|
+
font-family: "Font Awesome 6 Free";
|
1917
2472
|
font-weight: 400;
|
1918
2473
|
}
|
1919
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before {
|
2474
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before {
|
2475
|
+
content: unquote('"#{ $fa-var-id-card }"');
|
2476
|
+
}
|
1920
2477
|
|
1921
2478
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
|
1922
|
-
font-family:
|
2479
|
+
font-family: "Font Awesome 6 Brands";
|
1923
2480
|
font-weight: 400;
|
1924
2481
|
}
|
1925
2482
|
|
1926
2483
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
|
1927
|
-
font-family:
|
2484
|
+
font-family: "Font Awesome 6 Brands";
|
1928
2485
|
font-weight: 400;
|
1929
2486
|
}
|
1930
2487
|
|
1931
2488
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
|
1932
|
-
font-family:
|
2489
|
+
font-family: "Font Awesome 6 Brands";
|
1933
2490
|
font-weight: 400;
|
1934
2491
|
}
|
1935
2492
|
|
1936
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before {
|
2493
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before {
|
2494
|
+
content: unquote('"#{ $fa-var-temperature-full }"');
|
2495
|
+
}
|
1937
2496
|
|
1938
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before {
|
2497
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before {
|
2498
|
+
content: unquote('"#{ $fa-var-temperature-full }"');
|
2499
|
+
}
|
1939
2500
|
|
1940
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before {
|
2501
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before {
|
2502
|
+
content: unquote('"#{ $fa-var-temperature-three-quarters }"');
|
2503
|
+
}
|
1941
2504
|
|
1942
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before {
|
2505
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before {
|
2506
|
+
content: unquote('"#{ $fa-var-temperature-half }"');
|
2507
|
+
}
|
1943
2508
|
|
1944
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before {
|
2509
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before {
|
2510
|
+
content: unquote('"#{ $fa-var-temperature-quarter }"');
|
2511
|
+
}
|
1945
2512
|
|
1946
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before {
|
2513
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before {
|
2514
|
+
content: unquote('"#{ $fa-var-temperature-empty }"');
|
2515
|
+
}
|
1947
2516
|
|
1948
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before {
|
2517
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before {
|
2518
|
+
content: unquote('"#{ $fa-var-bath }"');
|
2519
|
+
}
|
1949
2520
|
|
1950
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before {
|
2521
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before {
|
2522
|
+
content: unquote('"#{ $fa-var-bath }"');
|
2523
|
+
}
|
1951
2524
|
|
1952
2525
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
|
1953
|
-
font-family:
|
2526
|
+
font-family: "Font Awesome 6 Free";
|
1954
2527
|
font-weight: 400;
|
1955
2528
|
}
|
1956
2529
|
|
1957
2530
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
|
1958
|
-
font-family:
|
2531
|
+
font-family: "Font Awesome 6 Free";
|
1959
2532
|
font-weight: 400;
|
1960
2533
|
}
|
1961
2534
|
|
1962
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before {
|
2535
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before {
|
2536
|
+
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
2537
|
+
}
|
1963
2538
|
|
1964
2539
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
|
1965
|
-
font-family:
|
2540
|
+
font-family: "Font Awesome 6 Free";
|
1966
2541
|
font-weight: 400;
|
1967
2542
|
}
|
1968
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before {
|
2543
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before {
|
2544
|
+
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
2545
|
+
}
|
1969
2546
|
|
1970
2547
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
|
1971
|
-
font-family:
|
2548
|
+
font-family: "Font Awesome 6 Free";
|
1972
2549
|
font-weight: 400;
|
1973
2550
|
}
|
1974
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before {
|
2551
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before {
|
2552
|
+
content: unquote('"#{ $fa-var-rectangle-xmark }"');
|
2553
|
+
}
|
1975
2554
|
|
1976
2555
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
|
1977
|
-
font-family:
|
2556
|
+
font-family: "Font Awesome 6 Brands";
|
1978
2557
|
font-weight: 400;
|
1979
2558
|
}
|
1980
2559
|
|
1981
2560
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
|
1982
|
-
font-family:
|
2561
|
+
font-family: "Font Awesome 6 Brands";
|
1983
2562
|
font-weight: 400;
|
1984
2563
|
}
|
1985
2564
|
|
1986
2565
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
|
1987
|
-
font-family:
|
2566
|
+
font-family: "Font Awesome 6 Brands";
|
1988
2567
|
font-weight: 400;
|
1989
2568
|
}
|
1990
2569
|
|
1991
2570
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
|
1992
|
-
font-family:
|
2571
|
+
font-family: "Font Awesome 6 Brands";
|
1993
2572
|
font-weight: 400;
|
1994
2573
|
}
|
1995
2574
|
|
1996
2575
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
|
1997
|
-
font-family:
|
2576
|
+
font-family: "Font Awesome 6 Brands";
|
1998
2577
|
font-weight: 400;
|
1999
2578
|
}
|
2000
2579
|
|
2001
2580
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
|
2002
|
-
font-family:
|
2581
|
+
font-family: "Font Awesome 6 Brands";
|
2003
2582
|
font-weight: 400;
|
2004
2583
|
}
|
2005
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before {
|
2584
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before {
|
2585
|
+
content: unquote('"#{ $fa-var-sellcast }"');
|
2586
|
+
}
|
2006
2587
|
|
2007
2588
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
|
2008
|
-
font-family:
|
2589
|
+
font-family: "Font Awesome 6 Free";
|
2009
2590
|
font-weight: 400;
|
2010
2591
|
}
|
2011
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before {
|
2592
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before {
|
2593
|
+
content: unquote('"#{ $fa-var-snowflake }"');
|
2594
|
+
}
|
2012
2595
|
|
2013
2596
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
|
2014
|
-
font-family:
|
2597
|
+
font-family: "Font Awesome 6 Brands";
|
2015
2598
|
font-weight: 400;
|
2016
2599
|
}
|
2017
2600
|
|
2018
2601
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
|
2019
|
-
font-family:
|
2602
|
+
font-family: "Font Awesome 6 Brands";
|
2020
2603
|
font-weight: 400;
|
2021
2604
|
}
|
2022
2605
|
|
2023
2606
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
|
2024
|
-
font-family:
|
2607
|
+
font-family: "Font Awesome 6 Brands";
|
2025
2608
|
font-weight: 400;
|
2026
2609
|
}
|
2027
|
-
|