ui_bibz 3.0.13 → 4.0.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +3 -3
- data/.github/workflows/linter.yml +13 -12
- data/.overcommit.yml +6 -0
- data/.rubocop.yml +6 -0
- data/.ruby-version +1 -1
- data/Gemfile +19 -12
- data/Gemfile.lock +178 -138
- data/app/assets/config/ui_bibz.js +12 -0
- data/app/assets/javascripts/forms/formula.js +82 -0
- data/app/assets/javascripts/forms/input-connected.js +132 -0
- data/app/assets/javascripts/forms/jquery.multi-select-extend.js +52 -0
- data/app/assets/javascripts/forms.js +160 -0
- data/app/assets/javascripts/interfaces.js +56 -0
- data/app/assets/javascripts/tables.js +49 -0
- data/app/assets/javascripts/ui_bibz_js.js +37 -0
- data/app/assets/stylesheets/navigations/_nav.sass +2 -0
- data/app/assets/stylesheets/navigations/_navbar.sass +12 -0
- data/app/assets/stylesheets/navigations/_progress_bar.sass +2 -0
- data/app/assets/stylesheets/navigations/_toolbar.sass +3 -0
- data/app/assets/stylesheets/sass/_boxes.sass +1 -0
- data/app/assets/stylesheets/sass/_containers.sass +2 -0
- data/app/assets/stylesheets/sass/_fixes.sass +2 -0
- data/app/assets/stylesheets/sass/_forms.sass +8 -0
- data/app/assets/stylesheets/sass/_navigations.sass +4 -0
- data/app/assets/stylesheets/sass/_notifications.sass +4 -0
- data/app/assets/stylesheets/sass/_tables.sass +2 -0
- data/app/assets/stylesheets/sass/_variables_mixins_functions.sass +3 -0
- data/app/assets/stylesheets/sass/boxes/_card.sass +4 -0
- data/app/assets/stylesheets/sass/containers/_panel.scss +330 -0
- data/app/assets/stylesheets/sass/forms/_bootstrap_select.sass +5 -0
- data/app/assets/stylesheets/sass/forms/_button.sass +3 -0
- data/app/assets/stylesheets/sass/forms/_date_picker.sass +3 -0
- data/app/assets/stylesheets/sass/forms/_form_check.sass +10 -0
- data/app/assets/stylesheets/sass/forms/_formula_field.sass +17 -0
- data/app/assets/stylesheets/sass/forms/_multiselect.sass +44 -0
- data/app/assets/stylesheets/sass/forms/_range.sass +44 -0
- data/app/assets/stylesheets/sass/forms/_slider.sass +136 -0
- data/app/assets/stylesheets/sass/forms/_surround_field.sass +25 -0
- data/app/assets/stylesheets/sass/notifications/_badge.sass +5 -0
- data/app/assets/stylesheets/sass/notifications/_glyph.sass +3 -0
- data/app/assets/stylesheets/sass/notifications/_star.sass +2 -0
- data/app/assets/stylesheets/sass/notifications/_toast.sass +3 -0
- data/app/assets/stylesheets/sass/tables/_table.sass +39 -0
- data/app/assets/stylesheets/sass/tables/_table_card.sass +39 -0
- data/app/assets/stylesheets/ui_bibz.sass +26 -0
- data/bin/test +3 -5
- data/config/importmap.rb +19 -0
- data/config/initializers/assets.rb +5 -0
- data/config/initializers/will_paginate.rb +1 -3
- data/lib/ui_bibz/builders/data_html_options_builder.rb +118 -0
- data/lib/ui_bibz/builders/html_classes_builder.rb +89 -0
- data/lib/ui_bibz/builders/html_options_builder.rb +22 -0
- data/lib/ui_bibz/factory_methods/component_initialize_factory_method.rb +33 -0
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +12 -12
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +50 -50
- data/lib/ui_bibz/helpers/ui/core/icons_helper.rb +6 -6
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +2 -2
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +2 -2
- data/lib/ui_bibz/helpers/ui/core/navigations_helper.rb +12 -12
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +4 -4
- data/lib/ui_bibz/helpers/ui/core/windows_helper.rb +10 -2
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +2 -2
- data/lib/ui_bibz/helpers/utils_helper.rb +2 -2
- data/lib/ui_bibz/infos.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +12 -12
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +1 -1
- data/lib/ui_bibz/rails/engine.rb +21 -4
- data/lib/ui_bibz/strategies/component_initialize_abstract_strategy.rb +27 -0
- data/lib/ui_bibz/strategies/component_initialize_block_strategy.rb +31 -0
- data/lib/ui_bibz/strategies/component_initialize_hash_strategy.rb +18 -0
- data/lib/ui_bibz/strategies/component_initialize_standard_strategy.rb +18 -0
- data/lib/ui_bibz/ui/concerns/card_itemable_concern.rb +4 -4
- data/lib/ui_bibz/ui/concerns/notification_concern.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/card.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +4 -4
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/card_grid.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +9 -9
- data/lib/ui_bibz/ui/core/boxes/components/card_col.rb +2 -2
- data/lib/ui_bibz/ui/core/boxes/components/card_list_group.rb +1 -1
- data/lib/ui_bibz/ui/core/boxes/components/card_row.rb +1 -1
- data/lib/ui_bibz/ui/core/component.rb +13 -62
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +3 -1
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +11 -11
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +7 -7
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +2 -2
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +1 -1
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +15 -15
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_link.rb +1 -1
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +5 -5
- data/lib/ui_bibz/ui/core/forms/numbers/slider_field.rb +1 -1
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +10 -10
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +2 -2
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +32 -32
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +7 -8
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +1 -1
- data/lib/ui_bibz/ui/core/icons/glyph.rb +4 -3
- data/lib/ui_bibz/ui/core/layouts/row.rb +2 -2
- data/lib/ui_bibz/ui/core/lists/components/list.rb +4 -4
- data/lib/ui_bibz/ui/core/lists/list_group.rb +1 -1
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +6 -4
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +1 -2
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +6 -5
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +2 -2
- data/lib/ui_bibz/ui/core/navigations/nav.rb +10 -6
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +21 -19
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +3 -3
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +5 -5
- data/lib/ui_bibz/ui/core/notifications/alert.rb +4 -5
- data/lib/ui_bibz/ui/core/notifications/badge.rb +6 -2
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +1 -1
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +3 -3
- data/lib/ui_bibz/ui/core/notifications/toast.rb +8 -9
- data/lib/ui_bibz/ui/core/windows/components/offcanvas_body.rb +47 -0
- data/lib/ui_bibz/ui/core/windows/components/offcanvas_header.rb +54 -0
- data/lib/ui_bibz/ui/core/windows/modal.rb +9 -9
- data/lib/ui_bibz/ui/core/windows/offcanvas.rb +84 -0
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +4 -20
- data/lib/ui_bibz/ui/extensions/core/component/klass_extension.rb +11 -19
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +1 -1
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +3 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +3 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +3 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +4 -4
- data/lib/ui_bibz/ui/ux/containers/panel.rb +13 -13
- data/lib/ui_bibz/ui/ux/tables/components/actions.rb +4 -4
- data/lib/ui_bibz/ui/ux/tables/components/column.rb +1 -1
- data/lib/ui_bibz/ui/ux/tables/components/columns.rb +2 -2
- data/lib/ui_bibz/ui/ux/tables/extensions/sortable.rb +1 -1
- data/lib/ui_bibz/ui/ux/tables/table.rb +5 -5
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +6 -6
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +1 -1
- data/lib/ui_bibz/utils/breakdown_class_name_generator.rb +3 -3
- data/lib/ui_bibz/utils/screwdriver.rb +1 -1
- data/lib/ui_bibz/view_objects/glyph_component_view_object.rb +38 -0
- data/lib/ui_bibz.rb +25 -0
- data/test/builders/data_html_classes_builder_test.rb +37 -0
- data/test/builders/html_classes_builder_test.rb +76 -0
- data/test/dummy/Rakefile +1 -1
- data/test/dummy/app/assets/stylesheets/application.css +1 -15
- data/test/dummy/app/channels/application_cable/channel.rb +6 -0
- data/test/dummy/app/channels/application_cable/connection.rb +6 -0
- data/test/dummy/app/jobs/application_job.rb +9 -0
- data/test/dummy/app/mailers/application_mailer.rb +6 -0
- data/test/dummy/app/views/layouts/application.html.erb +10 -12
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/test/dummy/bin/rails +3 -3
- data/test/dummy/bin/rake +2 -2
- data/test/dummy/bin/setup +12 -12
- data/test/dummy/config/application.rb +13 -17
- data/test/dummy/config/boot.rb +3 -3
- data/test/dummy/config/database.yml +2 -2
- data/test/dummy/config/environment.rb +1 -1
- data/test/dummy/config/environments/development.rb +21 -16
- data/test/dummy/config/environments/production.rb +16 -41
- data/test/dummy/config/environments/test.rb +19 -8
- data/test/dummy/config/importmap.rb +11 -0
- data/test/dummy/config/initializers/content_security_policy.rb +21 -24
- data/test/dummy/config/initializers/filter_parameter_logging.rb +6 -2
- data/test/dummy/config/initializers/inflections.rb +4 -4
- data/test/dummy/config/initializers/permissions_policy.rb +12 -0
- data/test/dummy/config/locales/en.yml +13 -3
- data/test/dummy/config/puma.rb +7 -2
- data/test/dummy/config/storage.yml +5 -5
- data/test/dummy/config.ru +2 -1
- data/test/simple_form_test.rb +24 -24
- data/test/ui/core/boxes/card_test.rb +2 -1
- data/test/ui/core/component_test.rb +2 -2
- data/test/ui/core/forms/buttons/button_group_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_link_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_refresh_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_test.rb +2 -2
- data/test/ui/core/forms/choices/box_switch_field_test.rb +10 -10
- data/test/ui/core/forms/choices/checkbox_field_test.rb +1 -1
- data/test/ui/core/forms/choices/choice_group_test.rb +1 -1
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +1 -1
- data/test/ui/core/forms/numbers/formula_field_test.rb +1 -1
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +2 -2
- data/test/ui/core/forms/selects/select_field_test.rb +1 -1
- data/test/ui/core/forms/surrounds/surround_field_test.rb +4 -4
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +2 -2
- data/test/ui/core/icons/glyph_test.rb +8 -4
- data/test/ui/core/icons/star_test.rb +12 -6
- data/test/ui/core/navigations/breadcrumb_test.rb +1 -1
- data/test/ui/core/navigations/link_test.rb +1 -1
- data/test/ui/core/navigations/nav_test.rb +11 -0
- data/test/ui/core/notifications/alert_test.rb +1 -1
- data/test/ui/core/notifications/badge_test.rb +3 -3
- data/test/ui/core/notifications/popover_test.rb +4 -4
- data/test/ui/core/notifications/spinner_test.rb +1 -1
- data/test/ui/core/notifications/toast_test.rb +1 -1
- data/test/ui/core/notifications/tooltip_test.rb +4 -4
- data/test/ui/core/windows/offcanvas_test.rb +27 -0
- data/test/ui/ux/containers/panel_test.rb +1 -1
- data/test/ui/ux/tables/table_test.rb +3 -3
- data/test/view_objects/glyph_component_view_object_test.rb +17 -0
- data/ui_bibz.gemspec +6 -20
- data/vendor/assets/fonts/fontawesome/fa-brands-400.ttf +0 -0
- data/vendor/assets/fonts/fontawesome/fa-brands-400.woff2 +0 -0
- data/vendor/assets/fonts/fontawesome/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fontawesome/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fontawesome/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fontawesome/fa-solid-900.woff2 +0 -0
- data/vendor/assets/fonts/fontawesome/fa-v4compatibility.ttf +0 -0
- data/vendor/assets/fonts/fontawesome/fa-v4compatibility.woff2 +0 -0
- data/vendor/assets/javascripts/bootstrap-markdown.js +1 -1555
- data/vendor/assets/javascripts/bootstrap-multiselect.min.js +40 -1176
- data/vendor/assets/javascripts/bootstrap-switch.min.js +9 -21
- data/vendor/assets/javascripts/bs-custom-file-input.min.js +0 -1
- data/vendor/assets/javascripts/fontawesome/all.js +5977 -0
- data/vendor/assets/javascripts/fontawesome/all.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/brands.js +749 -0
- data/vendor/assets/javascripts/fontawesome/brands.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/conflict-detection.js +1138 -0
- data/vendor/assets/javascripts/fontawesome/conflict-detection.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/fontawesome.js +3126 -0
- data/vendor/assets/javascripts/fontawesome/fontawesome.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/regular.js +445 -0
- data/vendor/assets/javascripts/fontawesome/regular.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/solid.js +1672 -0
- data/vendor/assets/javascripts/fontawesome/solid.min.js +6 -0
- data/vendor/assets/javascripts/fontawesome/v4-shims.js +225 -0
- data/vendor/assets/javascripts/fontawesome/v4-shims.min.js +6 -0
- data/vendor/assets/javascripts/fuzzysort.js +562 -0
- data/vendor/assets/javascripts/jquery-3.7.0.min.js +2 -0
- data/vendor/assets/javascripts/jquery.multi-select.min.js +725 -1
- data/vendor/assets/stylesheets/bootstrap-multiselect.sass +115 -0
- data/vendor/assets/stylesheets/bootstrap-switch.scss +211 -0
- data/vendor/assets/stylesheets/fontawesome/_animated.scss +142 -9
- data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +13 -13
- data/vendor/assets/stylesheets/fontawesome/_core.scss +28 -6
- data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +2 -1
- data/vendor/assets/stylesheets/fontawesome/_functions.scss +57 -0
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +7 -1438
- data/vendor/assets/stylesheets/fontawesome/_list.scss +4 -4
- data/vendor/assets/stylesheets/fontawesome/_mixins.scss +53 -34
- data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +25 -18
- data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +12 -3
- data/vendor/assets/stylesheets/fontawesome/_shims.scss +640 -664
- data/vendor/assets/stylesheets/fontawesome/_sizing.scss +16 -0
- data/vendor/assets/stylesheets/fontawesome/_stacked.scss +5 -4
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +4896 -1393
- data/vendor/assets/stylesheets/fontawesome/brands.scss +17 -10
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +7 -2
- data/vendor/assets/stylesheets/fontawesome/regular.scss +13 -10
- data/vendor/assets/stylesheets/fontawesome/solid.scss +13 -11
- data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +6 -1
- data/vendor/assets/stylesheets/multi-select.css +92 -0
- metadata +120 -348
- data/.gitlab-ci.yml +0 -17
- data/.travis.yml +0 -24
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +0 -70
- data/structure.md +0 -68
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/javascripts/packs/index.js +0 -3
- data/test/dummy/config/initializers/application_controller_renderer.rb +0 -9
- data/test/dummy/config/initializers/assets.rb +0 -14
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -8
- data/test/dummy/config/initializers/cookies_serializer.rb +0 -7
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/session_store.rb +0 -5
- data/test/dummy/config/initializers/ui_bibz.rb +0 -5
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -16
- data/test/dummy/config/secrets.yml +0 -22
- data/test/dummy/config/spring.rb +0 -8
- data/test/dummy/test/models/user_test.rb +0 -9
- data/vendor/assets/fonts/fa-brands-400.eot +0 -0
- data/vendor/assets/fonts/fa-brands-400.svg +0 -3570
- data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +0 -803
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +0 -4938
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/all.js +0 -4441
- data/vendor/assets/javascripts/all.min.js +0 -5
- data/vendor/assets/stylesheets/all.min.css +0 -5
- data/vendor/assets/stylesheets/fontawesome/_larger.scss +0 -23
- data/vendor/assets/stylesheets/svg-with-js.css +0 -5
- /data/{test/dummy/app/mailers/.keep → app/assets/stylesheets/sass/forms/_dropdown.sass} +0 -0
- /data/{test/dummy/app/views/users/index.html.erb → app/assets/stylesheets/sass/forms/_input_refresh_button.sass} +0 -0
@@ -1,2066 +1,2042 @@
|
|
1
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content:
|
1
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: unquote("\"#{ $fa-var-martini-glass-empty }\""); }
|
2
2
|
|
3
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
4
|
-
font-family: 'Font Awesome
|
3
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
|
4
|
+
font-family: 'Font Awesome 6 Free';
|
5
5
|
font-weight: 400;
|
6
6
|
}
|
7
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: unquote("\"#{ $fa-var-envelope }\""); }
|
7
8
|
|
8
9
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
|
9
|
-
font-family: 'Font Awesome
|
10
|
+
font-family: 'Font Awesome 6 Free';
|
10
11
|
font-weight: 400;
|
11
12
|
}
|
12
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content:
|
13
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: unquote("\"#{ $fa-var-star }\""); }
|
13
14
|
|
14
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content:
|
15
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: unquote("\"#{ $fa-var-xmark }\""); }
|
15
16
|
|
16
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content:
|
17
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: unquote("\"#{ $fa-var-xmark }\""); }
|
17
18
|
|
18
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content:
|
19
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: unquote("\"#{ $fa-var-gear }\""); }
|
19
20
|
|
20
21
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
|
21
|
-
font-family: 'Font Awesome
|
22
|
+
font-family: 'Font Awesome 6 Free';
|
22
23
|
font-weight: 400;
|
23
24
|
}
|
24
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content:
|
25
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: unquote("\"#{ $fa-var-trash-can }\""); }
|
26
|
+
|
27
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-home:before { content: unquote("\"#{ $fa-var-house }\""); }
|
25
28
|
|
26
29
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
|
27
|
-
font-family: 'Font Awesome
|
30
|
+
font-family: 'Font Awesome 6 Free';
|
28
31
|
font-weight: 400;
|
29
32
|
}
|
30
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content:
|
33
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: unquote("\"#{ $fa-var-file }\""); }
|
31
34
|
|
32
35
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
|
33
|
-
font-family: 'Font Awesome
|
36
|
+
font-family: 'Font Awesome 6 Free';
|
34
37
|
font-weight: 400;
|
35
38
|
}
|
36
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content:
|
39
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: unquote("\"#{ $fa-var-clock }\""); }
|
37
40
|
|
38
41
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
|
39
|
-
font-family: 'Font Awesome
|
42
|
+
font-family: 'Font Awesome 6 Free';
|
40
43
|
font-weight: 400;
|
41
44
|
}
|
42
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content:
|
45
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: unquote("\"#{ $fa-var-circle-down }\""); }
|
43
46
|
|
44
47
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
|
45
|
-
font-family: 'Font Awesome
|
48
|
+
font-family: 'Font Awesome 6 Free';
|
46
49
|
font-weight: 400;
|
47
50
|
}
|
48
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content:
|
51
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: unquote("\"#{ $fa-var-circle-up }\""); }
|
49
52
|
|
50
53
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
|
51
|
-
font-family: 'Font Awesome
|
54
|
+
font-family: 'Font Awesome 6 Free';
|
52
55
|
font-weight: 400;
|
53
56
|
}
|
54
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content:
|
57
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: unquote("\"#{ $fa-var-circle-play }\""); }
|
55
58
|
|
56
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content:
|
59
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
|
57
60
|
|
58
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content:
|
61
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
|
59
62
|
|
60
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content:
|
63
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: unquote("\"#{ $fa-var-arrows-rotate }\""); }
|
61
64
|
|
62
65
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
|
63
|
-
font-family: 'Font Awesome
|
66
|
+
font-family: 'Font Awesome 6 Free';
|
64
67
|
font-weight: 400;
|
65
68
|
}
|
69
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before { content: unquote("\"#{ $fa-var-rectangle-list }\""); }
|
66
70
|
|
67
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content:
|
71
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: unquote("\"#{ $fa-var-outdent }\""); }
|
68
72
|
|
69
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content:
|
73
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: unquote("\"#{ $fa-var-video }\""); }
|
70
74
|
|
71
75
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
|
72
|
-
font-family: 'Font Awesome
|
76
|
+
font-family: 'Font Awesome 6 Free';
|
73
77
|
font-weight: 400;
|
74
78
|
}
|
75
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content:
|
79
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: unquote("\"#{ $fa-var-image }\""); }
|
76
80
|
|
77
81
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
|
78
|
-
font-family: 'Font Awesome
|
82
|
+
font-family: 'Font Awesome 6 Free';
|
79
83
|
font-weight: 400;
|
80
84
|
}
|
81
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content:
|
85
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: unquote("\"#{ $fa-var-image }\""); }
|
82
86
|
|
83
87
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-image {
|
84
|
-
font-family: 'Font Awesome
|
88
|
+
font-family: 'Font Awesome 6 Free';
|
85
89
|
font-weight: 400;
|
86
90
|
}
|
87
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content:
|
88
|
-
|
89
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil-alt); }
|
91
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: unquote("\"#{ $fa-var-image }\""); }
|
90
92
|
|
91
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content:
|
93
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: unquote("\"#{ $fa-var-location-dot }\""); }
|
92
94
|
|
93
95
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
|
94
|
-
font-family: 'Font Awesome
|
96
|
+
font-family: 'Font Awesome 6 Free';
|
95
97
|
font-weight: 400;
|
96
98
|
}
|
97
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content:
|
99
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: unquote("\"#{ $fa-var-pen-to-square }\""); }
|
98
100
|
|
99
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
100
|
-
font-family: 'Font Awesome
|
101
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
|
102
|
+
font-family: 'Font Awesome 6 Free';
|
101
103
|
font-weight: 400;
|
102
104
|
}
|
103
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
105
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before { content: unquote("\"#{ $fa-var-pen-to-square }\""); }
|
106
|
+
|
107
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: unquote("\"#{ $fa-var-share-from-square }\""); }
|
104
108
|
|
105
109
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
|
106
|
-
font-family: 'Font Awesome
|
110
|
+
font-family: 'Font Awesome 6 Free';
|
107
111
|
font-weight: 400;
|
108
112
|
}
|
109
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content:
|
113
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: unquote("\"#{ $fa-var-square-check }\""); }
|
110
114
|
|
111
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content:
|
115
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: unquote("\"#{ $fa-var-up-down-left-right }\""); }
|
112
116
|
|
113
117
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
|
114
|
-
font-family: 'Font Awesome
|
118
|
+
font-family: 'Font Awesome 6 Free';
|
115
119
|
font-weight: 400;
|
116
120
|
}
|
117
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content:
|
121
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: unquote("\"#{ $fa-var-circle-xmark }\""); }
|
118
122
|
|
119
123
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
|
120
|
-
font-family: 'Font Awesome
|
124
|
+
font-family: 'Font Awesome 6 Free';
|
121
125
|
font-weight: 400;
|
122
126
|
}
|
123
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content:
|
127
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: unquote("\"#{ $fa-var-circle-check }\""); }
|
124
128
|
|
125
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content:
|
129
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: unquote("\"#{ $fa-var-share }\""); }
|
126
130
|
|
127
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content:
|
131
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: unquote("\"#{ $fa-var-up-right-and-down-left-from-center }\""); }
|
128
132
|
|
129
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content:
|
133
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: unquote("\"#{ $fa-var-down-left-and-up-right-to-center }\""); }
|
130
134
|
|
131
135
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
|
132
|
-
font-family: 'Font Awesome
|
136
|
+
font-family: 'Font Awesome 6 Free';
|
133
137
|
font-weight: 400;
|
134
138
|
}
|
135
139
|
|
136
140
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
|
137
|
-
font-family: 'Font Awesome
|
141
|
+
font-family: 'Font Awesome 6 Free';
|
138
142
|
font-weight: 400;
|
139
143
|
}
|
140
144
|
|
141
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content:
|
145
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: unquote("\"#{ $fa-var-triangle-exclamation }\""); }
|
142
146
|
|
143
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content:
|
147
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: unquote("\"#{ $fa-var-calendar-days }\""); }
|
144
148
|
|
145
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content:
|
149
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: unquote("\"#{ $fa-var-up-down }\""); }
|
146
150
|
|
147
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content:
|
151
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: unquote("\"#{ $fa-var-left-right }\""); }
|
148
152
|
|
149
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart {
|
150
|
-
font-family: 'Font Awesome 5 Free';
|
151
|
-
font-weight: 400;
|
152
|
-
}
|
153
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); }
|
153
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: unquote("\"#{ $fa-var-chart-column }\""); }
|
154
154
|
|
155
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o {
|
156
|
-
font-family: 'Font Awesome 5 Free';
|
157
|
-
font-weight: 400;
|
158
|
-
}
|
159
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); }
|
155
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: unquote("\"#{ $fa-var-chart-column }\""); }
|
160
156
|
|
161
157
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
|
162
|
-
font-family: 'Font Awesome
|
158
|
+
font-family: 'Font Awesome 6 Brands';
|
163
159
|
font-weight: 400;
|
164
160
|
}
|
161
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square:before { content: unquote("\"#{ $fa-var-square-twitter }\""); }
|
165
162
|
|
166
163
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
|
167
|
-
font-family: 'Font Awesome
|
164
|
+
font-family: 'Font Awesome 6 Brands';
|
168
165
|
font-weight: 400;
|
169
166
|
}
|
167
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square:before { content: unquote("\"#{ $fa-var-square-facebook }\""); }
|
170
168
|
|
171
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content:
|
169
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: unquote("\"#{ $fa-var-gears }\""); }
|
172
170
|
|
173
171
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
|
174
|
-
font-family: 'Font Awesome
|
172
|
+
font-family: 'Font Awesome 6 Free';
|
175
173
|
font-weight: 400;
|
176
174
|
}
|
177
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content:
|
175
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: unquote("\"#{ $fa-var-thumbs-up }\""); }
|
178
176
|
|
179
177
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
|
180
|
-
font-family: 'Font Awesome
|
178
|
+
font-family: 'Font Awesome 6 Free';
|
181
179
|
font-weight: 400;
|
182
180
|
}
|
183
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content:
|
181
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: unquote("\"#{ $fa-var-thumbs-down }\""); }
|
184
182
|
|
185
183
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
|
186
|
-
font-family: 'Font Awesome
|
184
|
+
font-family: 'Font Awesome 6 Free';
|
187
185
|
font-weight: 400;
|
188
186
|
}
|
189
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content:
|
187
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: unquote("\"#{ $fa-var-heart }\""); }
|
190
188
|
|
191
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content:
|
189
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: unquote("\"#{ $fa-var-right-from-bracket }\""); }
|
192
190
|
|
193
191
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
|
194
|
-
font-family: 'Font Awesome
|
192
|
+
font-family: 'Font Awesome 6 Brands';
|
195
193
|
font-weight: 400;
|
196
194
|
}
|
197
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content:
|
195
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: unquote("\"#{ $fa-var-linkedin }\""); }
|
198
196
|
|
199
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content:
|
197
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: unquote("\"#{ $fa-var-thumbtack }\""); }
|
200
198
|
|
201
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content:
|
199
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: unquote("\"#{ $fa-var-up-right-from-square }\""); }
|
202
200
|
|
203
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content:
|
201
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: unquote("\"#{ $fa-var-right-to-bracket }\""); }
|
204
202
|
|
205
203
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
|
206
|
-
font-family: 'Font Awesome
|
204
|
+
font-family: 'Font Awesome 6 Brands';
|
207
205
|
font-weight: 400;
|
208
206
|
}
|
207
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square:before { content: unquote("\"#{ $fa-var-square-github }\""); }
|
209
208
|
|
210
209
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
|
211
|
-
font-family: 'Font Awesome
|
210
|
+
font-family: 'Font Awesome 6 Free';
|
212
211
|
font-weight: 400;
|
213
212
|
}
|
214
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content:
|
213
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: unquote("\"#{ $fa-var-lemon }\""); }
|
215
214
|
|
216
215
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
|
217
|
-
font-family: 'Font Awesome
|
216
|
+
font-family: 'Font Awesome 6 Free';
|
218
217
|
font-weight: 400;
|
219
218
|
}
|
220
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content:
|
219
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: unquote("\"#{ $fa-var-square }\""); }
|
221
220
|
|
222
221
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
|
223
|
-
font-family: 'Font Awesome
|
222
|
+
font-family: 'Font Awesome 6 Free';
|
224
223
|
font-weight: 400;
|
225
224
|
}
|
226
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content:
|
225
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: unquote("\"#{ $fa-var-bookmark }\""); }
|
227
226
|
|
228
227
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
|
229
|
-
font-family: 'Font Awesome
|
228
|
+
font-family: 'Font Awesome 6 Brands';
|
230
229
|
font-weight: 400;
|
231
230
|
}
|
232
231
|
|
233
232
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
|
234
|
-
font-family: 'Font Awesome
|
233
|
+
font-family: 'Font Awesome 6 Brands';
|
235
234
|
font-weight: 400;
|
236
235
|
}
|
237
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content:
|
236
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: unquote("\"#{ $fa-var-facebook-f }\""); }
|
238
237
|
|
239
238
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
|
240
|
-
font-family: 'Font Awesome
|
239
|
+
font-family: 'Font Awesome 6 Brands';
|
241
240
|
font-weight: 400;
|
242
241
|
}
|
243
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content:
|
242
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: unquote("\"#{ $fa-var-facebook-f }\""); }
|
244
243
|
|
245
244
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github {
|
246
|
-
font-family: 'Font Awesome
|
245
|
+
font-family: 'Font Awesome 6 Brands';
|
247
246
|
font-weight: 400;
|
248
247
|
}
|
249
248
|
|
250
249
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
|
251
|
-
font-family: 'Font Awesome
|
250
|
+
font-family: 'Font Awesome 6 Free';
|
252
251
|
font-weight: 400;
|
253
252
|
}
|
254
253
|
|
255
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content:
|
254
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: unquote("\"#{ $fa-var-rss }\""); }
|
256
255
|
|
257
256
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
|
258
|
-
font-family: 'Font Awesome
|
257
|
+
font-family: 'Font Awesome 6 Free';
|
259
258
|
font-weight: 400;
|
260
259
|
}
|
261
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content:
|
260
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: unquote("\"#{ $fa-var-hard-drive }\""); }
|
262
261
|
|
263
262
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
|
264
|
-
font-family: 'Font Awesome
|
263
|
+
font-family: 'Font Awesome 6 Free';
|
265
264
|
font-weight: 400;
|
266
265
|
}
|
267
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content:
|
266
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: unquote("\"#{ $fa-var-hand-point-right }\""); }
|
268
267
|
|
269
268
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
|
270
|
-
font-family: 'Font Awesome
|
269
|
+
font-family: 'Font Awesome 6 Free';
|
271
270
|
font-weight: 400;
|
272
271
|
}
|
273
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content:
|
272
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: unquote("\"#{ $fa-var-hand-point-left }\""); }
|
274
273
|
|
275
274
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
|
276
|
-
font-family: 'Font Awesome
|
275
|
+
font-family: 'Font Awesome 6 Free';
|
277
276
|
font-weight: 400;
|
278
277
|
}
|
279
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content:
|
278
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: unquote("\"#{ $fa-var-hand-point-up }\""); }
|
280
279
|
|
281
280
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
|
282
|
-
font-family: 'Font Awesome
|
281
|
+
font-family: 'Font Awesome 6 Free';
|
283
282
|
font-weight: 400;
|
284
283
|
}
|
285
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content:
|
284
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: unquote("\"#{ $fa-var-hand-point-down }\""); }
|
285
|
+
|
286
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before { content: unquote("\"#{ $fa-var-earth-americas }\""); }
|
286
287
|
|
287
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
288
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before { content: unquote("\"#{ $fa-var-bars-progress }\""); }
|
288
289
|
|
289
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
290
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: unquote("\"#{ $fa-var-maximize }\""); }
|
290
291
|
|
291
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
292
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: unquote("\"#{ $fa-var-users }\""); }
|
292
293
|
|
293
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
294
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: unquote("\"#{ $fa-var-link }\""); }
|
295
|
+
|
296
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before { content: unquote("\"#{ $fa-var-scissors }\""); }
|
294
297
|
|
295
298
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
|
296
|
-
font-family: 'Font Awesome
|
299
|
+
font-family: 'Font Awesome 6 Free';
|
297
300
|
font-weight: 400;
|
298
301
|
}
|
299
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content:
|
302
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: unquote("\"#{ $fa-var-copy }\""); }
|
300
303
|
|
301
304
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
|
302
|
-
font-family: 'Font Awesome
|
305
|
+
font-family: 'Font Awesome 6 Free';
|
306
|
+
font-weight: 400;
|
307
|
+
}
|
308
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: unquote("\"#{ $fa-var-floppy-disk }\""); }
|
309
|
+
|
310
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-save {
|
311
|
+
font-family: 'Font Awesome 6 Free';
|
303
312
|
font-weight: 400;
|
304
313
|
}
|
305
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
314
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-save:before { content: unquote("\"#{ $fa-var-floppy-disk }\""); }
|
315
|
+
|
316
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: unquote("\"#{ $fa-var-bars }\""); }
|
306
317
|
|
307
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
318
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: unquote("\"#{ $fa-var-bars }\""); }
|
308
319
|
|
309
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
320
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before { content: unquote("\"#{ $fa-var-wand-magic-sparkles }\""); }
|
310
321
|
|
311
322
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
|
312
|
-
font-family: 'Font Awesome
|
323
|
+
font-family: 'Font Awesome 6 Brands';
|
313
324
|
font-weight: 400;
|
314
325
|
}
|
315
326
|
|
316
327
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
|
317
|
-
font-family: 'Font Awesome
|
328
|
+
font-family: 'Font Awesome 6 Brands';
|
318
329
|
font-weight: 400;
|
319
330
|
}
|
331
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square:before { content: unquote("\"#{ $fa-var-square-pinterest }\""); }
|
320
332
|
|
321
333
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
|
322
|
-
font-family: 'Font Awesome
|
334
|
+
font-family: 'Font Awesome 6 Brands';
|
323
335
|
font-weight: 400;
|
324
336
|
}
|
337
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square:before { content: unquote("\"#{ $fa-var-square-google-plus }\""); }
|
325
338
|
|
326
339
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
|
327
|
-
font-family: 'Font Awesome
|
340
|
+
font-family: 'Font Awesome 6 Brands';
|
328
341
|
font-weight: 400;
|
329
342
|
}
|
330
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content:
|
343
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: unquote("\"#{ $fa-var-google-plus-g }\""); }
|
331
344
|
|
332
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-money {
|
333
|
-
font-family: 'Font Awesome 5 Free';
|
334
|
-
font-weight: 400;
|
335
|
-
}
|
336
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); }
|
345
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: unquote("\"#{ $fa-var-money-bill-1 }\""); }
|
337
346
|
|
338
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content:
|
347
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: unquote("\"#{ $fa-var-sort }\""); }
|
339
348
|
|
340
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content:
|
349
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: unquote("\"#{ $fa-var-sort-down }\""); }
|
341
350
|
|
342
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content:
|
351
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: unquote("\"#{ $fa-var-sort-up }\""); }
|
343
352
|
|
344
353
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
|
345
|
-
font-family: 'Font Awesome
|
354
|
+
font-family: 'Font Awesome 6 Brands';
|
346
355
|
font-weight: 400;
|
347
356
|
}
|
348
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content:
|
357
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: unquote("\"#{ $fa-var-linkedin-in }\""); }
|
349
358
|
|
350
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content:
|
359
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: unquote("\"#{ $fa-var-arrow-rotate-left }\""); }
|
351
360
|
|
352
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content:
|
361
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: unquote("\"#{ $fa-var-gavel }\""); }
|
353
362
|
|
354
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content:
|
363
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: unquote("\"#{ $fa-var-gauge-high }\""); }
|
355
364
|
|
356
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content:
|
365
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: unquote("\"#{ $fa-var-gauge-high }\""); }
|
357
366
|
|
358
367
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
|
359
|
-
font-family: 'Font Awesome
|
368
|
+
font-family: 'Font Awesome 6 Free';
|
360
369
|
font-weight: 400;
|
361
370
|
}
|
362
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content:
|
371
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: unquote("\"#{ $fa-var-comment }\""); }
|
363
372
|
|
364
373
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
|
365
|
-
font-family: 'Font Awesome
|
374
|
+
font-family: 'Font Awesome 6 Free';
|
366
375
|
font-weight: 400;
|
367
376
|
}
|
368
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content:
|
377
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: unquote("\"#{ $fa-var-comments }\""); }
|
369
378
|
|
370
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content:
|
379
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: unquote("\"#{ $fa-var-bolt }\""); }
|
371
380
|
|
372
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard {
|
373
|
-
font-family: 'Font Awesome 5 Free';
|
374
|
-
font-weight: 400;
|
375
|
-
}
|
376
|
-
|
377
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-paste {
|
378
|
-
font-family: 'Font Awesome 5 Free';
|
379
|
-
font-weight: 400;
|
380
|
-
}
|
381
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); }
|
381
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before { content: unquote("\"#{ $fa-var-paste }\""); }
|
382
382
|
|
383
383
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
|
384
|
-
font-family: 'Font Awesome
|
384
|
+
font-family: 'Font Awesome 6 Free';
|
385
385
|
font-weight: 400;
|
386
386
|
}
|
387
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content:
|
387
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: unquote("\"#{ $fa-var-lightbulb }\""); }
|
388
388
|
|
389
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content:
|
389
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: unquote("\"#{ $fa-var-right-left }\""); }
|
390
390
|
|
391
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content:
|
391
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: unquote("\"#{ $fa-var-cloud-arrow-down }\""); }
|
392
392
|
|
393
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content:
|
393
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: unquote("\"#{ $fa-var-cloud-arrow-up }\""); }
|
394
394
|
|
395
395
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
|
396
|
-
font-family: 'Font Awesome
|
396
|
+
font-family: 'Font Awesome 6 Free';
|
397
397
|
font-weight: 400;
|
398
398
|
}
|
399
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content:
|
399
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: unquote("\"#{ $fa-var-bell }\""); }
|
400
400
|
|
401
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content:
|
401
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: unquote("\"#{ $fa-var-utensils }\""); }
|
402
402
|
|
403
403
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
|
404
|
-
font-family: 'Font Awesome
|
404
|
+
font-family: 'Font Awesome 6 Free';
|
405
405
|
font-weight: 400;
|
406
406
|
}
|
407
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content:
|
407
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: unquote("\"#{ $fa-var-file-lines }\""); }
|
408
408
|
|
409
409
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
|
410
|
-
font-family: 'Font Awesome
|
410
|
+
font-family: 'Font Awesome 6 Free';
|
411
411
|
font-weight: 400;
|
412
412
|
}
|
413
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content:
|
413
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: unquote("\"#{ $fa-var-building }\""); }
|
414
414
|
|
415
415
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
|
416
|
-
font-family: 'Font Awesome
|
416
|
+
font-family: 'Font Awesome 6 Free';
|
417
417
|
font-weight: 400;
|
418
418
|
}
|
419
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content:
|
419
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: unquote("\"#{ $fa-var-hospital }\""); }
|
420
420
|
|
421
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content:
|
421
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: unquote("\"#{ $fa-var-tablet-screen-button }\""); }
|
422
422
|
|
423
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content:
|
423
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
|
424
424
|
|
425
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content:
|
425
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
|
426
426
|
|
427
427
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
|
428
|
-
font-family: 'Font Awesome
|
428
|
+
font-family: 'Font Awesome 6 Free';
|
429
429
|
font-weight: 400;
|
430
430
|
}
|
431
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content:
|
431
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: unquote("\"#{ $fa-var-circle }\""); }
|
432
432
|
|
433
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content:
|
433
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: unquote("\"#{ $fa-var-reply }\""); }
|
434
434
|
|
435
435
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
|
436
|
-
font-family: 'Font Awesome
|
436
|
+
font-family: 'Font Awesome 6 Brands';
|
437
437
|
font-weight: 400;
|
438
438
|
}
|
439
439
|
|
440
440
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
|
441
|
-
font-family: 'Font Awesome
|
441
|
+
font-family: 'Font Awesome 6 Free';
|
442
442
|
font-weight: 400;
|
443
443
|
}
|
444
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content:
|
444
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: unquote("\"#{ $fa-var-folder }\""); }
|
445
445
|
|
446
446
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
|
447
|
-
font-family: 'Font Awesome
|
447
|
+
font-family: 'Font Awesome 6 Free';
|
448
448
|
font-weight: 400;
|
449
449
|
}
|
450
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content:
|
450
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: unquote("\"#{ $fa-var-folder-open }\""); }
|
451
451
|
|
452
452
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
|
453
|
-
font-family: 'Font Awesome
|
453
|
+
font-family: 'Font Awesome 6 Free';
|
454
454
|
font-weight: 400;
|
455
455
|
}
|
456
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content:
|
456
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: unquote("\"#{ $fa-var-face-smile }\""); }
|
457
457
|
|
458
458
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
|
459
|
-
font-family: 'Font Awesome
|
459
|
+
font-family: 'Font Awesome 6 Free';
|
460
460
|
font-weight: 400;
|
461
461
|
}
|
462
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content:
|
462
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: unquote("\"#{ $fa-var-face-frown }\""); }
|
463
463
|
|
464
464
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
|
465
|
-
font-family: 'Font Awesome
|
465
|
+
font-family: 'Font Awesome 6 Free';
|
466
466
|
font-weight: 400;
|
467
467
|
}
|
468
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content:
|
468
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: unquote("\"#{ $fa-var-face-meh }\""); }
|
469
469
|
|
470
470
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
|
471
|
-
font-family: 'Font Awesome
|
471
|
+
font-family: 'Font Awesome 6 Free';
|
472
472
|
font-weight: 400;
|
473
473
|
}
|
474
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content:
|
474
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: unquote("\"#{ $fa-var-keyboard }\""); }
|
475
475
|
|
476
476
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
|
477
|
-
font-family: 'Font Awesome
|
477
|
+
font-family: 'Font Awesome 6 Free';
|
478
478
|
font-weight: 400;
|
479
479
|
}
|
480
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content:
|
480
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: unquote("\"#{ $fa-var-flag }\""); }
|
481
481
|
|
482
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content:
|
482
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: unquote("\"#{ $fa-var-reply-all }\""); }
|
483
483
|
|
484
484
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
|
485
|
-
font-family: 'Font Awesome
|
485
|
+
font-family: 'Font Awesome 6 Free';
|
486
486
|
font-weight: 400;
|
487
487
|
}
|
488
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content:
|
488
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
|
489
489
|
|
490
490
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
|
491
|
-
font-family: 'Font Awesome
|
491
|
+
font-family: 'Font Awesome 6 Free';
|
492
492
|
font-weight: 400;
|
493
493
|
}
|
494
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content:
|
494
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
|
495
495
|
|
496
496
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
|
497
|
-
font-family: 'Font Awesome
|
497
|
+
font-family: 'Font Awesome 6 Free';
|
498
498
|
font-weight: 400;
|
499
499
|
}
|
500
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content:
|
500
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
|
501
501
|
|
502
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content:
|
502
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: unquote("\"#{ $fa-var-code-branch }\""); }
|
503
503
|
|
504
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content:
|
504
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: unquote("\"#{ $fa-var-link-slash }\""); }
|
505
505
|
|
506
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
506
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before { content: unquote("\"#{ $fa-var-link-slash }\""); }
|
507
507
|
|
508
508
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
|
509
|
-
font-family: 'Font Awesome
|
509
|
+
font-family: 'Font Awesome 6 Free';
|
510
510
|
font-weight: 400;
|
511
511
|
}
|
512
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content:
|
512
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: unquote("\"#{ $fa-var-calendar }\""); }
|
513
513
|
|
514
514
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
|
515
|
-
font-family: 'Font Awesome
|
515
|
+
font-family: 'Font Awesome 6 Brands';
|
516
516
|
font-weight: 400;
|
517
517
|
}
|
518
518
|
|
519
519
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
|
520
|
-
font-family: 'Font Awesome
|
520
|
+
font-family: 'Font Awesome 6 Brands';
|
521
521
|
font-weight: 400;
|
522
522
|
}
|
523
523
|
|
524
524
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
|
525
|
-
font-family: 'Font Awesome
|
525
|
+
font-family: 'Font Awesome 6 Brands';
|
526
526
|
font-weight: 400;
|
527
527
|
}
|
528
528
|
|
529
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
529
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before { content: unquote("\"#{ $fa-var-unlock }\""); }
|
530
530
|
|
531
531
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
|
532
|
-
font-family: 'Font Awesome
|
532
|
+
font-family: 'Font Awesome 6 Free';
|
533
533
|
font-weight: 400;
|
534
534
|
}
|
535
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content:
|
535
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: unquote("\"#{ $fa-var-square-minus }\""); }
|
536
536
|
|
537
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content:
|
537
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: unquote("\"#{ $fa-var-turn-up }\""); }
|
538
538
|
|
539
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content:
|
539
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: unquote("\"#{ $fa-var-turn-down }\""); }
|
540
540
|
|
541
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content:
|
541
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: unquote("\"#{ $fa-var-square-pen }\""); }
|
542
542
|
|
543
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content:
|
543
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: unquote("\"#{ $fa-var-square-up-right }\""); }
|
544
544
|
|
545
545
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
|
546
|
-
font-family: 'Font Awesome
|
546
|
+
font-family: 'Font Awesome 6 Free';
|
547
547
|
font-weight: 400;
|
548
548
|
}
|
549
549
|
|
550
550
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
|
551
|
-
font-family: 'Font Awesome
|
551
|
+
font-family: 'Font Awesome 6 Free';
|
552
552
|
font-weight: 400;
|
553
553
|
}
|
554
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content:
|
554
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: unquote("\"#{ $fa-var-square-caret-down }\""); }
|
555
555
|
|
556
556
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
|
557
|
-
font-family: 'Font Awesome
|
557
|
+
font-family: 'Font Awesome 6 Free';
|
558
558
|
font-weight: 400;
|
559
559
|
}
|
560
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content:
|
560
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: unquote("\"#{ $fa-var-square-caret-down }\""); }
|
561
561
|
|
562
562
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
|
563
|
-
font-family: 'Font Awesome
|
563
|
+
font-family: 'Font Awesome 6 Free';
|
564
564
|
font-weight: 400;
|
565
565
|
}
|
566
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content:
|
566
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: unquote("\"#{ $fa-var-square-caret-up }\""); }
|
567
567
|
|
568
568
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
|
569
|
-
font-family: 'Font Awesome
|
569
|
+
font-family: 'Font Awesome 6 Free';
|
570
570
|
font-weight: 400;
|
571
571
|
}
|
572
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content:
|
572
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: unquote("\"#{ $fa-var-square-caret-up }\""); }
|
573
573
|
|
574
574
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
|
575
|
-
font-family: 'Font Awesome
|
575
|
+
font-family: 'Font Awesome 6 Free';
|
576
576
|
font-weight: 400;
|
577
577
|
}
|
578
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content:
|
578
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: unquote("\"#{ $fa-var-square-caret-right }\""); }
|
579
579
|
|
580
580
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
|
581
|
-
font-family: 'Font Awesome
|
581
|
+
font-family: 'Font Awesome 6 Free';
|
582
582
|
font-weight: 400;
|
583
583
|
}
|
584
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content:
|
584
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: unquote("\"#{ $fa-var-square-caret-right }\""); }
|
585
585
|
|
586
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content:
|
586
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: unquote("\"#{ $fa-var-euro-sign }\""); }
|
587
587
|
|
588
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content:
|
588
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: unquote("\"#{ $fa-var-euro-sign }\""); }
|
589
589
|
|
590
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content:
|
590
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: unquote("\"#{ $fa-var-sterling-sign }\""); }
|
591
591
|
|
592
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content:
|
592
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: unquote("\"#{ $fa-var-dollar-sign }\""); }
|
593
593
|
|
594
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content:
|
594
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: unquote("\"#{ $fa-var-dollar-sign }\""); }
|
595
595
|
|
596
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content:
|
596
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
|
597
597
|
|
598
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content:
|
598
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
|
599
599
|
|
600
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content:
|
600
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
|
601
601
|
|
602
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content:
|
602
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
|
603
603
|
|
604
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content:
|
604
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
|
605
605
|
|
606
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content:
|
606
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
|
607
607
|
|
608
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content:
|
608
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
|
609
609
|
|
610
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content:
|
610
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
|
611
611
|
|
612
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content:
|
612
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
|
613
613
|
|
614
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content:
|
614
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: unquote("\"#{ $fa-var-won-sign }\""); }
|
615
615
|
|
616
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content:
|
616
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: unquote("\"#{ $fa-var-won-sign }\""); }
|
617
617
|
|
618
618
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
|
619
|
-
font-family: 'Font Awesome
|
619
|
+
font-family: 'Font Awesome 6 Brands';
|
620
620
|
font-weight: 400;
|
621
621
|
}
|
622
622
|
|
623
623
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
|
624
|
-
font-family: 'Font Awesome
|
624
|
+
font-family: 'Font Awesome 6 Brands';
|
625
625
|
font-weight: 400;
|
626
626
|
}
|
627
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content:
|
627
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: unquote("\"#{ $fa-var-btc }\""); }
|
628
628
|
|
629
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content:
|
629
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: unquote("\"#{ $fa-var-file-lines }\""); }
|
630
630
|
|
631
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content:
|
631
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: unquote("\"#{ $fa-var-arrow-down-a-z }\""); }
|
632
632
|
|
633
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content:
|
633
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: unquote("\"#{ $fa-var-arrow-down-z-a }\""); }
|
634
634
|
|
635
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content:
|
635
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: unquote("\"#{ $fa-var-arrow-down-short-wide }\""); }
|
636
636
|
|
637
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content:
|
637
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: unquote("\"#{ $fa-var-arrow-down-wide-short }\""); }
|
638
638
|
|
639
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content:
|
639
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: unquote("\"#{ $fa-var-arrow-down-1-9 }\""); }
|
640
640
|
|
641
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content:
|
641
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: unquote("\"#{ $fa-var-arrow-down-9-1 }\""); }
|
642
642
|
|
643
643
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
|
644
|
-
font-family: 'Font Awesome
|
644
|
+
font-family: 'Font Awesome 6 Brands';
|
645
645
|
font-weight: 400;
|
646
646
|
}
|
647
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square:before { content: unquote("\"#{ $fa-var-square-youtube }\""); }
|
647
648
|
|
648
649
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
|
649
|
-
font-family: 'Font Awesome
|
650
|
+
font-family: 'Font Awesome 6 Brands';
|
650
651
|
font-weight: 400;
|
651
652
|
}
|
652
653
|
|
653
654
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
|
654
|
-
font-family: 'Font Awesome
|
655
|
+
font-family: 'Font Awesome 6 Brands';
|
655
656
|
font-weight: 400;
|
656
657
|
}
|
657
658
|
|
658
659
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
|
659
|
-
font-family: 'Font Awesome
|
660
|
+
font-family: 'Font Awesome 6 Brands';
|
660
661
|
font-weight: 400;
|
661
662
|
}
|
663
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square:before { content: unquote("\"#{ $fa-var-square-xing }\""); }
|
662
664
|
|
663
665
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
|
664
|
-
font-family: 'Font Awesome
|
666
|
+
font-family: 'Font Awesome 6 Brands';
|
665
667
|
font-weight: 400;
|
666
668
|
}
|
667
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content:
|
669
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: unquote("\"#{ $fa-var-youtube }\""); }
|
668
670
|
|
669
671
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
|
670
|
-
font-family: 'Font Awesome
|
672
|
+
font-family: 'Font Awesome 6 Brands';
|
671
673
|
font-weight: 400;
|
672
674
|
}
|
673
675
|
|
674
676
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
|
675
|
-
font-family: 'Font Awesome
|
677
|
+
font-family: 'Font Awesome 6 Brands';
|
676
678
|
font-weight: 400;
|
677
679
|
}
|
678
680
|
|
679
681
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
|
680
|
-
font-family: 'Font Awesome
|
682
|
+
font-family: 'Font Awesome 6 Brands';
|
681
683
|
font-weight: 400;
|
682
684
|
}
|
683
685
|
|
684
686
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
|
685
|
-
font-family: 'Font Awesome
|
687
|
+
font-family: 'Font Awesome 6 Brands';
|
686
688
|
font-weight: 400;
|
687
689
|
}
|
688
690
|
|
689
691
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
|
690
|
-
font-family: 'Font Awesome
|
692
|
+
font-family: 'Font Awesome 6 Brands';
|
691
693
|
font-weight: 400;
|
692
694
|
}
|
693
695
|
|
694
696
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
|
695
|
-
font-family: 'Font Awesome
|
697
|
+
font-family: 'Font Awesome 6 Brands';
|
696
698
|
font-weight: 400;
|
697
699
|
}
|
698
700
|
|
699
701
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
|
700
|
-
font-family: 'Font Awesome
|
702
|
+
font-family: 'Font Awesome 6 Brands';
|
701
703
|
font-weight: 400;
|
702
704
|
}
|
703
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content:
|
705
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: unquote("\"#{ $fa-var-bitbucket }\""); }
|
704
706
|
|
705
707
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
|
706
|
-
font-family: 'Font Awesome
|
708
|
+
font-family: 'Font Awesome 6 Brands';
|
707
709
|
font-weight: 400;
|
708
710
|
}
|
709
711
|
|
710
712
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
|
711
|
-
font-family: 'Font Awesome
|
713
|
+
font-family: 'Font Awesome 6 Brands';
|
712
714
|
font-weight: 400;
|
713
715
|
}
|
716
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square:before { content: unquote("\"#{ $fa-var-square-tumblr }\""); }
|
714
717
|
|
715
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content:
|
718
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: unquote("\"#{ $fa-var-down-long }\""); }
|
716
719
|
|
717
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content:
|
720
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: unquote("\"#{ $fa-var-up-long }\""); }
|
718
721
|
|
719
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content:
|
722
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: unquote("\"#{ $fa-var-left-long }\""); }
|
720
723
|
|
721
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content:
|
724
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: unquote("\"#{ $fa-var-right-long }\""); }
|
722
725
|
|
723
726
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
|
724
|
-
font-family: 'Font Awesome
|
727
|
+
font-family: 'Font Awesome 6 Brands';
|
725
728
|
font-weight: 400;
|
726
729
|
}
|
727
730
|
|
728
731
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
|
729
|
-
font-family: 'Font Awesome
|
732
|
+
font-family: 'Font Awesome 6 Brands';
|
730
733
|
font-weight: 400;
|
731
734
|
}
|
732
735
|
|
733
736
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-android {
|
734
|
-
font-family: 'Font Awesome
|
737
|
+
font-family: 'Font Awesome 6 Brands';
|
735
738
|
font-weight: 400;
|
736
739
|
}
|
737
740
|
|
738
741
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
|
739
|
-
font-family: 'Font Awesome
|
742
|
+
font-family: 'Font Awesome 6 Brands';
|
740
743
|
font-weight: 400;
|
741
744
|
}
|
742
745
|
|
743
746
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
|
744
|
-
font-family: 'Font Awesome
|
747
|
+
font-family: 'Font Awesome 6 Brands';
|
745
748
|
font-weight: 400;
|
746
749
|
}
|
747
750
|
|
748
751
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
|
749
|
-
font-family: 'Font Awesome
|
752
|
+
font-family: 'Font Awesome 6 Brands';
|
750
753
|
font-weight: 400;
|
751
754
|
}
|
752
755
|
|
753
756
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
|
754
|
-
font-family: 'Font Awesome
|
757
|
+
font-family: 'Font Awesome 6 Brands';
|
755
758
|
font-weight: 400;
|
756
759
|
}
|
757
760
|
|
758
761
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
|
759
|
-
font-family: 'Font Awesome
|
762
|
+
font-family: 'Font Awesome 6 Brands';
|
760
763
|
font-weight: 400;
|
761
764
|
}
|
762
765
|
|
763
766
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
|
764
|
-
font-family: 'Font Awesome
|
767
|
+
font-family: 'Font Awesome 6 Brands';
|
765
768
|
font-weight: 400;
|
766
769
|
}
|
767
770
|
|
768
771
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
|
769
|
-
font-family: 'Font Awesome
|
772
|
+
font-family: 'Font Awesome 6 Brands';
|
770
773
|
font-weight: 400;
|
771
774
|
}
|
772
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content:
|
775
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: unquote("\"#{ $fa-var-gratipay }\""); }
|
773
776
|
|
774
777
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
|
775
|
-
font-family: 'Font Awesome
|
778
|
+
font-family: 'Font Awesome 6 Free';
|
776
779
|
font-weight: 400;
|
777
780
|
}
|
778
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content:
|
781
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: unquote("\"#{ $fa-var-sun }\""); }
|
779
782
|
|
780
783
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
|
781
|
-
font-family: 'Font Awesome
|
784
|
+
font-family: 'Font Awesome 6 Free';
|
782
785
|
font-weight: 400;
|
783
786
|
}
|
784
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content:
|
787
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: unquote("\"#{ $fa-var-moon }\""); }
|
785
788
|
|
786
789
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
|
787
|
-
font-family: 'Font Awesome
|
790
|
+
font-family: 'Font Awesome 6 Brands';
|
788
791
|
font-weight: 400;
|
789
792
|
}
|
790
793
|
|
791
794
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
|
792
|
-
font-family: 'Font Awesome
|
795
|
+
font-family: 'Font Awesome 6 Brands';
|
793
796
|
font-weight: 400;
|
794
797
|
}
|
795
798
|
|
796
799
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
|
797
|
-
font-family: 'Font Awesome
|
800
|
+
font-family: 'Font Awesome 6 Brands';
|
798
801
|
font-weight: 400;
|
799
802
|
}
|
800
803
|
|
801
804
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
|
802
|
-
font-family: 'Font Awesome
|
805
|
+
font-family: 'Font Awesome 6 Brands';
|
803
806
|
font-weight: 400;
|
804
807
|
}
|
805
808
|
|
806
809
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
|
807
|
-
font-family: 'Font Awesome
|
810
|
+
font-family: 'Font Awesome 6 Brands';
|
808
811
|
font-weight: 400;
|
809
812
|
}
|
810
813
|
|
811
814
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
|
812
|
-
font-family: 'Font Awesome
|
815
|
+
font-family: 'Font Awesome 6 Free';
|
813
816
|
font-weight: 400;
|
814
817
|
}
|
815
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content:
|
818
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: unquote("\"#{ $fa-var-circle-right }\""); }
|
816
819
|
|
817
820
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
|
818
|
-
font-family: 'Font Awesome
|
821
|
+
font-family: 'Font Awesome 6 Free';
|
819
822
|
font-weight: 400;
|
820
823
|
}
|
821
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content:
|
824
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: unquote("\"#{ $fa-var-circle-left }\""); }
|
822
825
|
|
823
826
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
|
824
|
-
font-family: 'Font Awesome
|
827
|
+
font-family: 'Font Awesome 6 Free';
|
825
828
|
font-weight: 400;
|
826
829
|
}
|
827
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content:
|
830
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: unquote("\"#{ $fa-var-square-caret-left }\""); }
|
828
831
|
|
829
832
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
|
830
|
-
font-family: 'Font Awesome
|
833
|
+
font-family: 'Font Awesome 6 Free';
|
831
834
|
font-weight: 400;
|
832
835
|
}
|
833
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content:
|
836
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: unquote("\"#{ $fa-var-square-caret-left }\""); }
|
834
837
|
|
835
838
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
|
836
|
-
font-family: 'Font Awesome
|
839
|
+
font-family: 'Font Awesome 6 Free';
|
837
840
|
font-weight: 400;
|
838
841
|
}
|
839
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content:
|
842
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: unquote("\"#{ $fa-var-circle-dot }\""); }
|
840
843
|
|
841
844
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
|
842
|
-
font-family: 'Font Awesome
|
845
|
+
font-family: 'Font Awesome 6 Brands';
|
843
846
|
font-weight: 400;
|
844
847
|
}
|
848
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square:before { content: unquote("\"#{ $fa-var-square-vimeo }\""); }
|
845
849
|
|
846
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content:
|
850
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
|
847
851
|
|
848
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content:
|
852
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
|
849
853
|
|
850
854
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
|
851
|
-
font-family: 'Font Awesome
|
855
|
+
font-family: 'Font Awesome 6 Free';
|
852
856
|
font-weight: 400;
|
853
857
|
}
|
854
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content:
|
858
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: unquote("\"#{ $fa-var-square-plus }\""); }
|
855
859
|
|
856
860
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
|
857
|
-
font-family: 'Font Awesome
|
861
|
+
font-family: 'Font Awesome 6 Brands';
|
858
862
|
font-weight: 400;
|
859
863
|
}
|
860
864
|
|
861
865
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
|
862
|
-
font-family: 'Font Awesome
|
866
|
+
font-family: 'Font Awesome 6 Brands';
|
863
867
|
font-weight: 400;
|
864
868
|
}
|
865
869
|
|
866
870
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
|
867
|
-
font-family: 'Font Awesome
|
871
|
+
font-family: 'Font Awesome 6 Brands';
|
868
872
|
font-weight: 400;
|
869
873
|
}
|
870
874
|
|
871
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content:
|
875
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: unquote("\"#{ $fa-var-building-columns }\""); }
|
872
876
|
|
873
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content:
|
877
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: unquote("\"#{ $fa-var-building-columns }\""); }
|
874
878
|
|
875
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content:
|
879
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: unquote("\"#{ $fa-var-graduation-cap }\""); }
|
876
880
|
|
877
881
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
|
878
|
-
font-family: 'Font Awesome
|
882
|
+
font-family: 'Font Awesome 6 Brands';
|
879
883
|
font-weight: 400;
|
880
884
|
}
|
881
885
|
|
882
886
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google {
|
883
|
-
font-family: 'Font Awesome
|
887
|
+
font-family: 'Font Awesome 6 Brands';
|
884
888
|
font-weight: 400;
|
885
889
|
}
|
886
890
|
|
887
891
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
|
888
|
-
font-family: 'Font Awesome
|
892
|
+
font-family: 'Font Awesome 6 Brands';
|
889
893
|
font-weight: 400;
|
890
894
|
}
|
891
895
|
|
892
896
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
|
893
|
-
font-family: 'Font Awesome
|
897
|
+
font-family: 'Font Awesome 6 Brands';
|
894
898
|
font-weight: 400;
|
895
899
|
}
|
900
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square:before { content: unquote("\"#{ $fa-var-square-reddit }\""); }
|
896
901
|
|
897
902
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
|
898
|
-
font-family: 'Font Awesome
|
903
|
+
font-family: 'Font Awesome 6 Brands';
|
899
904
|
font-weight: 400;
|
900
905
|
}
|
901
906
|
|
902
907
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
|
903
|
-
font-family: 'Font Awesome
|
908
|
+
font-family: 'Font Awesome 6 Brands';
|
904
909
|
font-weight: 400;
|
905
910
|
}
|
906
911
|
|
907
912
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
|
908
|
-
font-family: 'Font Awesome
|
913
|
+
font-family: 'Font Awesome 6 Brands';
|
909
914
|
font-weight: 400;
|
910
915
|
}
|
911
916
|
|
912
917
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
|
913
|
-
font-family: 'Font Awesome
|
918
|
+
font-family: 'Font Awesome 6 Brands';
|
914
919
|
font-weight: 400;
|
915
920
|
}
|
916
921
|
|
917
922
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
|
918
|
-
font-family: 'Font Awesome
|
923
|
+
font-family: 'Font Awesome 6 Brands';
|
919
924
|
font-weight: 400;
|
920
925
|
}
|
921
926
|
|
922
927
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
|
923
|
-
font-family: 'Font Awesome
|
928
|
+
font-family: 'Font Awesome 6 Brands';
|
924
929
|
font-weight: 400;
|
925
930
|
}
|
926
931
|
|
927
932
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
|
928
|
-
font-family: 'Font Awesome
|
933
|
+
font-family: 'Font Awesome 6 Brands';
|
929
934
|
font-weight: 400;
|
930
935
|
}
|
931
936
|
|
932
937
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
|
933
|
-
font-family: 'Font Awesome
|
938
|
+
font-family: 'Font Awesome 6 Brands';
|
934
939
|
font-weight: 400;
|
935
940
|
}
|
936
941
|
|
937
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); }
|
938
|
-
|
939
942
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
|
940
|
-
font-family: 'Font Awesome
|
943
|
+
font-family: 'Font Awesome 6 Brands';
|
941
944
|
font-weight: 400;
|
942
945
|
}
|
943
946
|
|
944
947
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
|
945
|
-
font-family: 'Font Awesome
|
948
|
+
font-family: 'Font Awesome 6 Brands';
|
946
949
|
font-weight: 400;
|
947
950
|
}
|
951
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square:before { content: unquote("\"#{ $fa-var-square-behance }\""); }
|
948
952
|
|
949
953
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
|
950
|
-
font-family: 'Font Awesome
|
954
|
+
font-family: 'Font Awesome 6 Brands';
|
951
955
|
font-weight: 400;
|
952
956
|
}
|
953
957
|
|
954
958
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
|
955
|
-
font-family: 'Font Awesome
|
959
|
+
font-family: 'Font Awesome 6 Brands';
|
956
960
|
font-weight: 400;
|
957
961
|
}
|
962
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square:before { content: unquote("\"#{ $fa-var-square-steam }\""); }
|
958
963
|
|
959
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content:
|
964
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: unquote("\"#{ $fa-var-car }\""); }
|
960
965
|
|
961
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
962
|
-
font-family: 'Font Awesome 5 Free';
|
963
|
-
font-weight: 400;
|
964
|
-
}
|
965
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); }
|
966
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: unquote("\"#{ $fa-var-taxi }\""); }
|
966
967
|
|
967
968
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
|
968
|
-
font-family: 'Font Awesome
|
969
|
+
font-family: 'Font Awesome 6 Brands';
|
969
970
|
font-weight: 400;
|
970
971
|
}
|
971
972
|
|
972
973
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
|
973
|
-
font-family: 'Font Awesome
|
974
|
+
font-family: 'Font Awesome 6 Brands';
|
974
975
|
font-weight: 400;
|
975
976
|
}
|
976
977
|
|
977
978
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
|
978
|
-
font-family: 'Font Awesome
|
979
|
+
font-family: 'Font Awesome 6 Brands';
|
979
980
|
font-weight: 400;
|
980
981
|
}
|
981
982
|
|
982
983
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
|
983
|
-
font-family: 'Font Awesome
|
984
|
+
font-family: 'Font Awesome 6 Free';
|
984
985
|
font-weight: 400;
|
985
986
|
}
|
986
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content:
|
987
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: unquote("\"#{ $fa-var-file-pdf }\""); }
|
987
988
|
|
988
989
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
|
989
|
-
font-family: 'Font Awesome
|
990
|
+
font-family: 'Font Awesome 6 Free';
|
990
991
|
font-weight: 400;
|
991
992
|
}
|
992
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content:
|
993
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: unquote("\"#{ $fa-var-file-word }\""); }
|
993
994
|
|
994
995
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
|
995
|
-
font-family: 'Font Awesome
|
996
|
+
font-family: 'Font Awesome 6 Free';
|
996
997
|
font-weight: 400;
|
997
998
|
}
|
998
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content:
|
999
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: unquote("\"#{ $fa-var-file-excel }\""); }
|
999
1000
|
|
1000
1001
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
|
1001
|
-
font-family: 'Font Awesome
|
1002
|
+
font-family: 'Font Awesome 6 Free';
|
1002
1003
|
font-weight: 400;
|
1003
1004
|
}
|
1004
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content:
|
1005
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: unquote("\"#{ $fa-var-file-powerpoint }\""); }
|
1005
1006
|
|
1006
1007
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
|
1007
|
-
font-family: 'Font Awesome
|
1008
|
+
font-family: 'Font Awesome 6 Free';
|
1008
1009
|
font-weight: 400;
|
1009
1010
|
}
|
1010
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content:
|
1011
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
|
1011
1012
|
|
1012
1013
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
|
1013
|
-
font-family: 'Font Awesome
|
1014
|
+
font-family: 'Font Awesome 6 Free';
|
1014
1015
|
font-weight: 400;
|
1015
1016
|
}
|
1016
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content:
|
1017
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
|
1017
1018
|
|
1018
1019
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
|
1019
|
-
font-family: 'Font Awesome
|
1020
|
+
font-family: 'Font Awesome 6 Free';
|
1020
1021
|
font-weight: 400;
|
1021
1022
|
}
|
1022
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content:
|
1023
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
|
1023
1024
|
|
1024
1025
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
|
1025
|
-
font-family: 'Font Awesome
|
1026
|
+
font-family: 'Font Awesome 6 Free';
|
1026
1027
|
font-weight: 400;
|
1027
1028
|
}
|
1028
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content:
|
1029
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: unquote("\"#{ $fa-var-file-zipper }\""); }
|
1029
1030
|
|
1030
1031
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
|
1031
|
-
font-family: 'Font Awesome
|
1032
|
+
font-family: 'Font Awesome 6 Free';
|
1032
1033
|
font-weight: 400;
|
1033
1034
|
}
|
1034
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content:
|
1035
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: unquote("\"#{ $fa-var-file-zipper }\""); }
|
1035
1036
|
|
1036
1037
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
|
1037
|
-
font-family: 'Font Awesome
|
1038
|
+
font-family: 'Font Awesome 6 Free';
|
1038
1039
|
font-weight: 400;
|
1039
1040
|
}
|
1040
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content:
|
1041
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: unquote("\"#{ $fa-var-file-audio }\""); }
|
1041
1042
|
|
1042
1043
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
|
1043
|
-
font-family: 'Font Awesome
|
1044
|
+
font-family: 'Font Awesome 6 Free';
|
1044
1045
|
font-weight: 400;
|
1045
1046
|
}
|
1046
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content:
|
1047
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: unquote("\"#{ $fa-var-file-audio }\""); }
|
1047
1048
|
|
1048
1049
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
|
1049
|
-
font-family: 'Font Awesome
|
1050
|
+
font-family: 'Font Awesome 6 Free';
|
1050
1051
|
font-weight: 400;
|
1051
1052
|
}
|
1052
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content:
|
1053
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: unquote("\"#{ $fa-var-file-video }\""); }
|
1053
1054
|
|
1054
1055
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
|
1055
|
-
font-family: 'Font Awesome
|
1056
|
+
font-family: 'Font Awesome 6 Free';
|
1056
1057
|
font-weight: 400;
|
1057
1058
|
}
|
1058
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content:
|
1059
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: unquote("\"#{ $fa-var-file-video }\""); }
|
1059
1060
|
|
1060
1061
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
|
1061
|
-
font-family: 'Font Awesome
|
1062
|
+
font-family: 'Font Awesome 6 Free';
|
1062
1063
|
font-weight: 400;
|
1063
1064
|
}
|
1064
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content:
|
1065
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: unquote("\"#{ $fa-var-file-code }\""); }
|
1065
1066
|
|
1066
1067
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
|
1067
|
-
font-family: 'Font Awesome
|
1068
|
+
font-family: 'Font Awesome 6 Brands';
|
1068
1069
|
font-weight: 400;
|
1069
1070
|
}
|
1070
1071
|
|
1071
1072
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
|
1072
|
-
font-family: 'Font Awesome
|
1073
|
+
font-family: 'Font Awesome 6 Brands';
|
1073
1074
|
font-weight: 400;
|
1074
1075
|
}
|
1075
1076
|
|
1076
1077
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
|
1077
|
-
font-family: 'Font Awesome
|
1078
|
+
font-family: 'Font Awesome 6 Brands';
|
1078
1079
|
font-weight: 400;
|
1079
1080
|
}
|
1080
1081
|
|
1081
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring
|
1082
|
-
font-family: 'Font Awesome 5 Free';
|
1083
|
-
font-weight: 400;
|
1084
|
-
}
|
1082
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
|
1085
1083
|
|
1086
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-
|
1087
|
-
font-family: 'Font Awesome 5 Free';
|
1088
|
-
font-weight: 400;
|
1089
|
-
}
|
1090
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); }
|
1084
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
|
1091
1085
|
|
1092
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-
|
1093
|
-
font-family: 'Font Awesome 5 Free';
|
1094
|
-
font-weight: 400;
|
1095
|
-
}
|
1096
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); }
|
1086
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
|
1097
1087
|
|
1098
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-
|
1099
|
-
font-family: 'Font Awesome 5 Free';
|
1100
|
-
font-weight: 400;
|
1101
|
-
}
|
1102
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); }
|
1103
|
-
|
1104
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-support {
|
1105
|
-
font-family: 'Font Awesome 5 Free';
|
1106
|
-
font-weight: 400;
|
1107
|
-
}
|
1108
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: fa-content($fa-var-life-ring); }
|
1088
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
|
1109
1089
|
|
1110
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content:
|
1090
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: unquote("\"#{ $fa-var-circle-notch }\""); }
|
1111
1091
|
|
1112
1092
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
|
1113
|
-
font-family: 'Font Awesome
|
1093
|
+
font-family: 'Font Awesome 6 Brands';
|
1114
1094
|
font-weight: 400;
|
1115
1095
|
}
|
1116
1096
|
|
1117
1097
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
|
1118
|
-
font-family: 'Font Awesome
|
1098
|
+
font-family: 'Font Awesome 6 Brands';
|
1119
1099
|
font-weight: 400;
|
1120
1100
|
}
|
1121
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content:
|
1101
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: unquote("\"#{ $fa-var-rebel }\""); }
|
1122
1102
|
|
1123
1103
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
|
1124
|
-
font-family: 'Font Awesome
|
1104
|
+
font-family: 'Font Awesome 6 Brands';
|
1125
1105
|
font-weight: 400;
|
1126
1106
|
}
|
1127
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content:
|
1107
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: unquote("\"#{ $fa-var-rebel }\""); }
|
1128
1108
|
|
1129
1109
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
|
1130
|
-
font-family: 'Font Awesome
|
1110
|
+
font-family: 'Font Awesome 6 Brands';
|
1131
1111
|
font-weight: 400;
|
1132
1112
|
}
|
1133
1113
|
|
1134
1114
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
|
1135
|
-
font-family: 'Font Awesome
|
1115
|
+
font-family: 'Font Awesome 6 Brands';
|
1136
1116
|
font-weight: 400;
|
1137
1117
|
}
|
1138
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content:
|
1118
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: unquote("\"#{ $fa-var-empire }\""); }
|
1139
1119
|
|
1140
1120
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
|
1141
|
-
font-family: 'Font Awesome
|
1121
|
+
font-family: 'Font Awesome 6 Brands';
|
1142
1122
|
font-weight: 400;
|
1143
1123
|
}
|
1124
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square:before { content: unquote("\"#{ $fa-var-square-git }\""); }
|
1144
1125
|
|
1145
1126
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-git {
|
1146
|
-
font-family: 'Font Awesome
|
1127
|
+
font-family: 'Font Awesome 6 Brands';
|
1147
1128
|
font-weight: 400;
|
1148
1129
|
}
|
1149
1130
|
|
1150
1131
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
|
1151
|
-
font-family: 'Font Awesome
|
1132
|
+
font-family: 'Font Awesome 6 Brands';
|
1152
1133
|
font-weight: 400;
|
1153
1134
|
}
|
1154
1135
|
|
1155
1136
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
|
1156
|
-
font-family: 'Font Awesome
|
1137
|
+
font-family: 'Font Awesome 6 Brands';
|
1157
1138
|
font-weight: 400;
|
1158
1139
|
}
|
1159
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content:
|
1140
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: unquote("\"#{ $fa-var-hacker-news }\""); }
|
1160
1141
|
|
1161
1142
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
|
1162
|
-
font-family: 'Font Awesome
|
1143
|
+
font-family: 'Font Awesome 6 Brands';
|
1163
1144
|
font-weight: 400;
|
1164
1145
|
}
|
1165
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content:
|
1146
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: unquote("\"#{ $fa-var-hacker-news }\""); }
|
1166
1147
|
|
1167
1148
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
|
1168
|
-
font-family: 'Font Awesome
|
1149
|
+
font-family: 'Font Awesome 6 Brands';
|
1169
1150
|
font-weight: 400;
|
1170
1151
|
}
|
1171
1152
|
|
1172
1153
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
|
1173
|
-
font-family: 'Font Awesome
|
1154
|
+
font-family: 'Font Awesome 6 Brands';
|
1174
1155
|
font-weight: 400;
|
1175
1156
|
}
|
1176
1157
|
|
1177
1158
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
|
1178
|
-
font-family: 'Font Awesome
|
1159
|
+
font-family: 'Font Awesome 6 Brands';
|
1179
1160
|
font-weight: 400;
|
1180
1161
|
}
|
1181
1162
|
|
1182
1163
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
|
1183
|
-
font-family: 'Font Awesome
|
1164
|
+
font-family: 'Font Awesome 6 Brands';
|
1184
1165
|
font-weight: 400;
|
1185
1166
|
}
|
1186
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content:
|
1167
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: unquote("\"#{ $fa-var-weixin }\""); }
|
1187
1168
|
|
1188
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content:
|
1169
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
|
1189
1170
|
|
1190
1171
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
|
1191
|
-
font-family: 'Font Awesome
|
1172
|
+
font-family: 'Font Awesome 6 Free';
|
1192
1173
|
font-weight: 400;
|
1193
1174
|
}
|
1194
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content:
|
1175
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
|
1195
1176
|
|
1196
1177
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
|
1197
|
-
font-family: 'Font Awesome
|
1178
|
+
font-family: 'Font Awesome 6 Free';
|
1198
1179
|
font-weight: 400;
|
1199
1180
|
}
|
1200
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content:
|
1181
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
|
1201
1182
|
|
1202
1183
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
|
1203
|
-
font-family: 'Font Awesome
|
1184
|
+
font-family: 'Font Awesome 6 Free';
|
1204
1185
|
font-weight: 400;
|
1205
1186
|
}
|
1206
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content:
|
1207
|
-
|
1208
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-heading); }
|
1187
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: unquote("\"#{ $fa-var-circle }\""); }
|
1209
1188
|
|
1210
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
1189
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: unquote("\"#{ $fa-var-heading }\""); }
|
1211
1190
|
|
1212
1191
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
|
1213
|
-
font-family: 'Font Awesome
|
1192
|
+
font-family: 'Font Awesome 6 Free';
|
1214
1193
|
font-weight: 400;
|
1215
1194
|
}
|
1216
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content:
|
1195
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: unquote("\"#{ $fa-var-futbol }\""); }
|
1217
1196
|
|
1218
1197
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
|
1219
|
-
font-family: 'Font Awesome
|
1198
|
+
font-family: 'Font Awesome 6 Free';
|
1220
1199
|
font-weight: 400;
|
1221
1200
|
}
|
1222
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content:
|
1201
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: unquote("\"#{ $fa-var-futbol }\""); }
|
1223
1202
|
|
1224
1203
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
|
1225
|
-
font-family: 'Font Awesome
|
1204
|
+
font-family: 'Font Awesome 6 Brands';
|
1226
1205
|
font-weight: 400;
|
1227
1206
|
}
|
1228
1207
|
|
1229
1208
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
|
1230
|
-
font-family: 'Font Awesome
|
1209
|
+
font-family: 'Font Awesome 6 Brands';
|
1231
1210
|
font-weight: 400;
|
1232
1211
|
}
|
1233
1212
|
|
1234
1213
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
|
1235
|
-
font-family: 'Font Awesome
|
1214
|
+
font-family: 'Font Awesome 6 Brands';
|
1236
1215
|
font-weight: 400;
|
1237
1216
|
}
|
1238
1217
|
|
1239
1218
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
|
1240
|
-
font-family: 'Font Awesome
|
1219
|
+
font-family: 'Font Awesome 6 Free';
|
1241
1220
|
font-weight: 400;
|
1242
1221
|
}
|
1243
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content:
|
1222
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: unquote("\"#{ $fa-var-newspaper }\""); }
|
1244
1223
|
|
1245
1224
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
|
1246
|
-
font-family: 'Font Awesome
|
1225
|
+
font-family: 'Font Awesome 6 Brands';
|
1247
1226
|
font-weight: 400;
|
1248
1227
|
}
|
1249
1228
|
|
1250
1229
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
|
1251
|
-
font-family: 'Font Awesome
|
1230
|
+
font-family: 'Font Awesome 6 Brands';
|
1252
1231
|
font-weight: 400;
|
1253
1232
|
}
|
1254
1233
|
|
1255
1234
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
|
1256
|
-
font-family: 'Font Awesome
|
1235
|
+
font-family: 'Font Awesome 6 Brands';
|
1257
1236
|
font-weight: 400;
|
1258
1237
|
}
|
1259
1238
|
|
1260
1239
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
|
1261
|
-
font-family: 'Font Awesome
|
1240
|
+
font-family: 'Font Awesome 6 Brands';
|
1262
1241
|
font-weight: 400;
|
1263
1242
|
}
|
1264
1243
|
|
1265
1244
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
|
1266
|
-
font-family: 'Font Awesome
|
1245
|
+
font-family: 'Font Awesome 6 Brands';
|
1267
1246
|
font-weight: 400;
|
1268
1247
|
}
|
1269
1248
|
|
1270
1249
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
|
1271
|
-
font-family: 'Font Awesome
|
1250
|
+
font-family: 'Font Awesome 6 Brands';
|
1272
1251
|
font-weight: 400;
|
1273
1252
|
}
|
1274
1253
|
|
1275
1254
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
|
1276
|
-
font-family: 'Font Awesome
|
1255
|
+
font-family: 'Font Awesome 6 Brands';
|
1277
1256
|
font-weight: 400;
|
1278
1257
|
}
|
1279
1258
|
|
1280
1259
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
|
1281
|
-
font-family: 'Font Awesome
|
1260
|
+
font-family: 'Font Awesome 6 Brands';
|
1282
1261
|
font-weight: 400;
|
1283
1262
|
}
|
1284
1263
|
|
1285
1264
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
|
1286
|
-
font-family: 'Font Awesome
|
1265
|
+
font-family: 'Font Awesome 6 Free';
|
1287
1266
|
font-weight: 400;
|
1288
1267
|
}
|
1289
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content:
|
1268
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: unquote("\"#{ $fa-var-bell-slash }\""); }
|
1290
1269
|
|
1291
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content:
|
1270
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: unquote("\"#{ $fa-var-trash-can }\""); }
|
1292
1271
|
|
1293
1272
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
|
1294
|
-
font-family: 'Font Awesome
|
1273
|
+
font-family: 'Font Awesome 6 Free';
|
1295
1274
|
font-weight: 400;
|
1296
1275
|
}
|
1297
1276
|
|
1298
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content:
|
1277
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: unquote("\"#{ $fa-var-eye-dropper }\""); }
|
1299
1278
|
|
1300
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content:
|
1279
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: unquote("\"#{ $fa-var-chart-area }\""); }
|
1301
1280
|
|
1302
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content:
|
1281
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: unquote("\"#{ $fa-var-chart-pie }\""); }
|
1303
1282
|
|
1304
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content:
|
1283
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: unquote("\"#{ $fa-var-chart-line }\""); }
|
1305
1284
|
|
1306
1285
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
|
1307
|
-
font-family: 'Font Awesome
|
1286
|
+
font-family: 'Font Awesome 6 Brands';
|
1308
1287
|
font-weight: 400;
|
1309
1288
|
}
|
1310
1289
|
|
1311
1290
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
|
1312
|
-
font-family: 'Font Awesome
|
1291
|
+
font-family: 'Font Awesome 6 Brands';
|
1313
1292
|
font-weight: 400;
|
1314
1293
|
}
|
1294
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square:before { content: unquote("\"#{ $fa-var-square-lastfm }\""); }
|
1315
1295
|
|
1316
1296
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
|
1317
|
-
font-family: 'Font Awesome
|
1297
|
+
font-family: 'Font Awesome 6 Brands';
|
1318
1298
|
font-weight: 400;
|
1319
1299
|
}
|
1320
1300
|
|
1321
1301
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
|
1322
|
-
font-family: 'Font Awesome
|
1302
|
+
font-family: 'Font Awesome 6 Brands';
|
1323
1303
|
font-weight: 400;
|
1324
1304
|
}
|
1325
1305
|
|
1326
1306
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
|
1327
|
-
font-family: 'Font Awesome
|
1307
|
+
font-family: 'Font Awesome 6 Free';
|
1328
1308
|
font-weight: 400;
|
1329
1309
|
}
|
1330
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content:
|
1310
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: unquote("\"#{ $fa-var-closed-captioning }\""); }
|
1331
1311
|
|
1332
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content:
|
1312
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
|
1333
1313
|
|
1334
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content:
|
1314
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
|
1335
1315
|
|
1336
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content:
|
1337
|
-
|
1338
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath {
|
1339
|
-
font-family: 'Font Awesome 5 Brands';
|
1340
|
-
font-weight: 400;
|
1341
|
-
}
|
1342
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); }
|
1316
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
|
1343
1317
|
|
1344
1318
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
|
1345
|
-
font-family: 'Font Awesome
|
1319
|
+
font-family: 'Font Awesome 6 Brands';
|
1346
1320
|
font-weight: 400;
|
1347
1321
|
}
|
1348
1322
|
|
1349
1323
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
|
1350
|
-
font-family: 'Font Awesome
|
1324
|
+
font-family: 'Font Awesome 6 Brands';
|
1351
1325
|
font-weight: 400;
|
1352
1326
|
}
|
1353
1327
|
|
1354
1328
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
|
1355
|
-
font-family: 'Font Awesome
|
1329
|
+
font-family: 'Font Awesome 6 Brands';
|
1356
1330
|
font-weight: 400;
|
1357
1331
|
}
|
1358
1332
|
|
1359
1333
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
|
1360
|
-
font-family: 'Font Awesome
|
1334
|
+
font-family: 'Font Awesome 6 Brands';
|
1361
1335
|
font-weight: 400;
|
1362
1336
|
}
|
1363
1337
|
|
1364
1338
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
|
1365
|
-
font-family: 'Font Awesome
|
1339
|
+
font-family: 'Font Awesome 6 Brands';
|
1366
1340
|
font-weight: 400;
|
1367
1341
|
}
|
1368
1342
|
|
1369
1343
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
|
1370
|
-
font-family: 'Font Awesome
|
1344
|
+
font-family: 'Font Awesome 6 Brands';
|
1371
1345
|
font-weight: 400;
|
1372
1346
|
}
|
1373
1347
|
|
1374
1348
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
|
1375
|
-
font-family: 'Font Awesome
|
1349
|
+
font-family: 'Font Awesome 6 Brands';
|
1376
1350
|
font-weight: 400;
|
1377
1351
|
}
|
1378
1352
|
|
1379
1353
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
|
1380
|
-
font-family: 'Font Awesome
|
1354
|
+
font-family: 'Font Awesome 6 Brands';
|
1381
1355
|
font-weight: 400;
|
1382
1356
|
}
|
1383
1357
|
|
1384
1358
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
|
1385
|
-
font-family: 'Font Awesome
|
1359
|
+
font-family: 'Font Awesome 6 Brands';
|
1386
1360
|
font-weight: 400;
|
1387
1361
|
}
|
1388
1362
|
|
1389
1363
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
|
1390
|
-
font-family: 'Font Awesome
|
1364
|
+
font-family: 'Font Awesome 6 Free';
|
1391
1365
|
font-weight: 400;
|
1392
1366
|
}
|
1393
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content:
|
1367
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: unquote("\"#{ $fa-var-gem }\""); }
|
1368
|
+
|
1369
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before { content: unquote("\"#{ $fa-var-mars-and-venus }\""); }
|
1394
1370
|
|
1395
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content:
|
1371
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: unquote("\"#{ $fa-var-mars-and-venus }\""); }
|
1372
|
+
|
1373
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before { content: unquote("\"#{ $fa-var-transgender }\""); }
|
1396
1374
|
|
1397
1375
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
|
1398
|
-
font-family: 'Font Awesome
|
1376
|
+
font-family: 'Font Awesome 6 Brands';
|
1399
1377
|
font-weight: 400;
|
1400
1378
|
}
|
1401
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content:
|
1379
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: unquote("\"#{ $fa-var-facebook }\""); }
|
1402
1380
|
|
1403
1381
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
|
1404
|
-
font-family: 'Font Awesome
|
1382
|
+
font-family: 'Font Awesome 6 Brands';
|
1405
1383
|
font-weight: 400;
|
1406
1384
|
}
|
1407
1385
|
|
1408
1386
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
|
1409
|
-
font-family: 'Font Awesome
|
1387
|
+
font-family: 'Font Awesome 6 Brands';
|
1410
1388
|
font-weight: 400;
|
1411
1389
|
}
|
1412
1390
|
|
1413
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content:
|
1391
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: unquote("\"#{ $fa-var-bed }\""); }
|
1414
1392
|
|
1415
1393
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
|
1416
|
-
font-family: 'Font Awesome
|
1394
|
+
font-family: 'Font Awesome 6 Brands';
|
1417
1395
|
font-weight: 400;
|
1418
1396
|
}
|
1419
1397
|
|
1420
1398
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
|
1421
|
-
font-family: 'Font Awesome
|
1399
|
+
font-family: 'Font Awesome 6 Brands';
|
1422
1400
|
font-weight: 400;
|
1423
1401
|
}
|
1424
1402
|
|
1425
1403
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
|
1426
|
-
font-family: 'Font Awesome
|
1404
|
+
font-family: 'Font Awesome 6 Brands';
|
1427
1405
|
font-weight: 400;
|
1428
1406
|
}
|
1429
1407
|
|
1430
1408
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
|
1431
|
-
font-family: 'Font Awesome
|
1409
|
+
font-family: 'Font Awesome 6 Brands';
|
1432
1410
|
font-weight: 400;
|
1433
1411
|
}
|
1434
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content:
|
1412
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: unquote("\"#{ $fa-var-y-combinator }\""); }
|
1435
1413
|
|
1436
1414
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
|
1437
|
-
font-family: 'Font Awesome
|
1415
|
+
font-family: 'Font Awesome 6 Brands';
|
1438
1416
|
font-weight: 400;
|
1439
1417
|
}
|
1440
1418
|
|
1441
1419
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
|
1442
|
-
font-family: 'Font Awesome
|
1420
|
+
font-family: 'Font Awesome 6 Brands';
|
1443
1421
|
font-weight: 400;
|
1444
1422
|
}
|
1445
1423
|
|
1446
1424
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
|
1447
|
-
font-family: 'Font Awesome
|
1425
|
+
font-family: 'Font Awesome 6 Brands';
|
1448
1426
|
font-weight: 400;
|
1449
1427
|
}
|
1450
1428
|
|
1451
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content:
|
1429
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: unquote("\"#{ $fa-var-battery-full }\""); }
|
1452
1430
|
|
1453
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content:
|
1431
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: unquote("\"#{ $fa-var-battery-full }\""); }
|
1454
1432
|
|
1455
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content:
|
1433
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: unquote("\"#{ $fa-var-battery-three-quarters }\""); }
|
1456
1434
|
|
1457
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content:
|
1435
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: unquote("\"#{ $fa-var-battery-half }\""); }
|
1458
1436
|
|
1459
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content:
|
1437
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: unquote("\"#{ $fa-var-battery-quarter }\""); }
|
1460
1438
|
|
1461
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content:
|
1439
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: unquote("\"#{ $fa-var-battery-empty }\""); }
|
1462
1440
|
|
1463
1441
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
|
1464
|
-
font-family: 'Font Awesome
|
1442
|
+
font-family: 'Font Awesome 6 Free';
|
1465
1443
|
font-weight: 400;
|
1466
1444
|
}
|
1467
1445
|
|
1468
1446
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
|
1469
|
-
font-family: 'Font Awesome
|
1447
|
+
font-family: 'Font Awesome 6 Free';
|
1470
1448
|
font-weight: 400;
|
1471
1449
|
}
|
1472
1450
|
|
1473
1451
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
|
1474
|
-
font-family: 'Font Awesome
|
1452
|
+
font-family: 'Font Awesome 6 Free';
|
1475
1453
|
font-weight: 400;
|
1476
1454
|
}
|
1477
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content:
|
1455
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: unquote("\"#{ $fa-var-note-sticky }\""); }
|
1478
1456
|
|
1479
1457
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
|
1480
|
-
font-family: 'Font Awesome
|
1458
|
+
font-family: 'Font Awesome 6 Brands';
|
1481
1459
|
font-weight: 400;
|
1482
1460
|
}
|
1483
1461
|
|
1484
1462
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
|
1485
|
-
font-family: 'Font Awesome
|
1463
|
+
font-family: 'Font Awesome 6 Brands';
|
1486
1464
|
font-weight: 400;
|
1487
1465
|
}
|
1488
1466
|
|
1489
1467
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
|
1490
|
-
font-family: 'Font Awesome
|
1468
|
+
font-family: 'Font Awesome 6 Free';
|
1491
1469
|
font-weight: 400;
|
1492
1470
|
}
|
1493
1471
|
|
1494
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o {
|
1495
|
-
font-family: 'Font Awesome 5 Free';
|
1496
|
-
font-weight: 400;
|
1497
|
-
}
|
1498
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); }
|
1472
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: unquote("\"#{ $fa-var-hourglass }\""); }
|
1499
1473
|
|
1500
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content:
|
1474
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: unquote("\"#{ $fa-var-hourglass-start }\""); }
|
1501
1475
|
|
1502
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content:
|
1476
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: unquote("\"#{ $fa-var-hourglass-half }\""); }
|
1503
1477
|
|
1504
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content:
|
1478
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: unquote("\"#{ $fa-var-hourglass-end }\""); }
|
1505
1479
|
|
1506
1480
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
|
1507
|
-
font-family: 'Font Awesome
|
1481
|
+
font-family: 'Font Awesome 6 Free';
|
1508
1482
|
font-weight: 400;
|
1509
1483
|
}
|
1510
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content:
|
1484
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: unquote("\"#{ $fa-var-hand-back-fist }\""); }
|
1511
1485
|
|
1512
1486
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
|
1513
|
-
font-family: 'Font Awesome
|
1487
|
+
font-family: 'Font Awesome 6 Free';
|
1514
1488
|
font-weight: 400;
|
1515
1489
|
}
|
1516
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content:
|
1490
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: unquote("\"#{ $fa-var-hand-back-fist }\""); }
|
1517
1491
|
|
1518
1492
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
|
1519
|
-
font-family: 'Font Awesome
|
1493
|
+
font-family: 'Font Awesome 6 Free';
|
1520
1494
|
font-weight: 400;
|
1521
1495
|
}
|
1522
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content:
|
1496
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: unquote("\"#{ $fa-var-hand }\""); }
|
1523
1497
|
|
1524
1498
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
|
1525
|
-
font-family: 'Font Awesome
|
1499
|
+
font-family: 'Font Awesome 6 Free';
|
1526
1500
|
font-weight: 400;
|
1527
1501
|
}
|
1528
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content:
|
1502
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: unquote("\"#{ $fa-var-hand }\""); }
|
1529
1503
|
|
1530
1504
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
|
1531
|
-
font-family: 'Font Awesome
|
1505
|
+
font-family: 'Font Awesome 6 Free';
|
1532
1506
|
font-weight: 400;
|
1533
1507
|
}
|
1534
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content:
|
1508
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: unquote("\"#{ $fa-var-hand-scissors }\""); }
|
1535
1509
|
|
1536
1510
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
|
1537
|
-
font-family: 'Font Awesome
|
1511
|
+
font-family: 'Font Awesome 6 Free';
|
1538
1512
|
font-weight: 400;
|
1539
1513
|
}
|
1540
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content:
|
1514
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: unquote("\"#{ $fa-var-hand-lizard }\""); }
|
1541
1515
|
|
1542
1516
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
|
1543
|
-
font-family: 'Font Awesome
|
1517
|
+
font-family: 'Font Awesome 6 Free';
|
1544
1518
|
font-weight: 400;
|
1545
1519
|
}
|
1546
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content:
|
1520
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: unquote("\"#{ $fa-var-hand-spock }\""); }
|
1547
1521
|
|
1548
1522
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
|
1549
|
-
font-family: 'Font Awesome
|
1523
|
+
font-family: 'Font Awesome 6 Free';
|
1550
1524
|
font-weight: 400;
|
1551
1525
|
}
|
1552
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content:
|
1526
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: unquote("\"#{ $fa-var-hand-pointer }\""); }
|
1553
1527
|
|
1554
1528
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
|
1555
|
-
font-family: 'Font Awesome
|
1529
|
+
font-family: 'Font Awesome 6 Free';
|
1556
1530
|
font-weight: 400;
|
1557
1531
|
}
|
1558
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content:
|
1532
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: unquote("\"#{ $fa-var-hand-peace }\""); }
|
1559
1533
|
|
1560
1534
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
|
1561
|
-
font-family: 'Font Awesome
|
1535
|
+
font-family: 'Font Awesome 6 Free';
|
1562
1536
|
font-weight: 400;
|
1563
1537
|
}
|
1564
1538
|
|
1565
1539
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
|
1566
|
-
font-family: 'Font Awesome
|
1540
|
+
font-family: 'Font Awesome 6 Brands';
|
1567
1541
|
font-weight: 400;
|
1568
1542
|
}
|
1569
1543
|
|
1570
1544
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
|
1571
|
-
font-family: 'Font Awesome
|
1545
|
+
font-family: 'Font Awesome 6 Brands';
|
1572
1546
|
font-weight: 400;
|
1573
1547
|
}
|
1574
1548
|
|
1575
1549
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
|
1576
|
-
font-family: 'Font Awesome
|
1577
|
-
font-weight: 400;
|
1578
|
-
}
|
1579
|
-
|
1580
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-tripadvisor {
|
1581
|
-
font-family: 'Font Awesome 5 Brands';
|
1550
|
+
font-family: 'Font Awesome 6 Brands';
|
1582
1551
|
font-weight: 400;
|
1583
1552
|
}
|
1584
1553
|
|
1585
1554
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
|
1586
|
-
font-family: 'Font Awesome
|
1555
|
+
font-family: 'Font Awesome 6 Brands';
|
1587
1556
|
font-weight: 400;
|
1588
1557
|
}
|
1589
1558
|
|
1590
1559
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
|
1591
|
-
font-family: 'Font Awesome
|
1560
|
+
font-family: 'Font Awesome 6 Brands';
|
1592
1561
|
font-weight: 400;
|
1593
1562
|
}
|
1563
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square:before { content: unquote("\"#{ $fa-var-square-odnoklassniki }\""); }
|
1594
1564
|
|
1595
1565
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
|
1596
|
-
font-family: 'Font Awesome
|
1566
|
+
font-family: 'Font Awesome 6 Brands';
|
1597
1567
|
font-weight: 400;
|
1598
1568
|
}
|
1599
1569
|
|
1600
1570
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
|
1601
|
-
font-family: 'Font Awesome
|
1571
|
+
font-family: 'Font Awesome 6 Brands';
|
1602
1572
|
font-weight: 400;
|
1603
1573
|
}
|
1604
1574
|
|
1605
1575
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
|
1606
|
-
font-family: 'Font Awesome
|
1576
|
+
font-family: 'Font Awesome 6 Brands';
|
1607
1577
|
font-weight: 400;
|
1608
1578
|
}
|
1609
1579
|
|
1610
1580
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
|
1611
|
-
font-family: 'Font Awesome
|
1581
|
+
font-family: 'Font Awesome 6 Brands';
|
1612
1582
|
font-weight: 400;
|
1613
1583
|
}
|
1614
1584
|
|
1615
1585
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
|
1616
|
-
font-family: 'Font Awesome
|
1586
|
+
font-family: 'Font Awesome 6 Brands';
|
1617
1587
|
font-weight: 400;
|
1618
1588
|
}
|
1619
1589
|
|
1620
1590
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
|
1621
|
-
font-family: 'Font Awesome
|
1591
|
+
font-family: 'Font Awesome 6 Brands';
|
1622
1592
|
font-weight: 400;
|
1623
1593
|
}
|
1624
1594
|
|
1625
1595
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
|
1626
|
-
font-family: 'Font Awesome
|
1596
|
+
font-family: 'Font Awesome 6 Brands';
|
1627
1597
|
font-weight: 400;
|
1628
1598
|
}
|
1629
1599
|
|
1630
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content:
|
1600
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: unquote("\"#{ $fa-var-tv }\""); }
|
1631
1601
|
|
1632
1602
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
|
1633
|
-
font-family: 'Font Awesome
|
1603
|
+
font-family: 'Font Awesome 6 Brands';
|
1634
1604
|
font-weight: 400;
|
1635
1605
|
}
|
1636
1606
|
|
1637
1607
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
|
1638
|
-
font-family: 'Font Awesome
|
1608
|
+
font-family: 'Font Awesome 6 Brands';
|
1639
1609
|
font-weight: 400;
|
1640
1610
|
}
|
1641
1611
|
|
1642
1612
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
|
1643
|
-
font-family: 'Font Awesome
|
1613
|
+
font-family: 'Font Awesome 6 Brands';
|
1644
1614
|
font-weight: 400;
|
1645
1615
|
}
|
1646
1616
|
|
1647
1617
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
|
1648
|
-
font-family: 'Font Awesome
|
1618
|
+
font-family: 'Font Awesome 6 Free';
|
1649
1619
|
font-weight: 400;
|
1650
1620
|
}
|
1651
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content:
|
1621
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: unquote("\"#{ $fa-var-calendar-plus }\""); }
|
1652
1622
|
|
1653
1623
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
|
1654
|
-
font-family: 'Font Awesome
|
1624
|
+
font-family: 'Font Awesome 6 Free';
|
1655
1625
|
font-weight: 400;
|
1656
1626
|
}
|
1657
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content:
|
1627
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: unquote("\"#{ $fa-var-calendar-minus }\""); }
|
1658
1628
|
|
1659
1629
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
|
1660
|
-
font-family: 'Font Awesome
|
1630
|
+
font-family: 'Font Awesome 6 Free';
|
1661
1631
|
font-weight: 400;
|
1662
1632
|
}
|
1663
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content:
|
1633
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: unquote("\"#{ $fa-var-calendar-xmark }\""); }
|
1664
1634
|
|
1665
1635
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
|
1666
|
-
font-family: 'Font Awesome
|
1636
|
+
font-family: 'Font Awesome 6 Free';
|
1667
1637
|
font-weight: 400;
|
1668
1638
|
}
|
1669
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content:
|
1639
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: unquote("\"#{ $fa-var-calendar-check }\""); }
|
1670
1640
|
|
1671
1641
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
|
1672
|
-
font-family: 'Font Awesome
|
1642
|
+
font-family: 'Font Awesome 6 Free';
|
1673
1643
|
font-weight: 400;
|
1674
1644
|
}
|
1675
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content:
|
1645
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: unquote("\"#{ $fa-var-map }\""); }
|
1676
1646
|
|
1677
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content:
|
1647
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: unquote("\"#{ $fa-var-comment-dots }\""); }
|
1678
1648
|
|
1679
1649
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
|
1680
|
-
font-family: 'Font Awesome
|
1650
|
+
font-family: 'Font Awesome 6 Free';
|
1681
1651
|
font-weight: 400;
|
1682
1652
|
}
|
1683
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content:
|
1653
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: unquote("\"#{ $fa-var-comment-dots }\""); }
|
1684
1654
|
|
1685
1655
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
|
1686
|
-
font-family: 'Font Awesome
|
1656
|
+
font-family: 'Font Awesome 6 Brands';
|
1687
1657
|
font-weight: 400;
|
1688
1658
|
}
|
1689
1659
|
|
1690
1660
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
|
1691
|
-
font-family: 'Font Awesome
|
1661
|
+
font-family: 'Font Awesome 6 Brands';
|
1692
1662
|
font-weight: 400;
|
1693
1663
|
}
|
1694
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content:
|
1664
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: unquote("\"#{ $fa-var-vimeo-v }\""); }
|
1695
1665
|
|
1696
1666
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
|
1697
|
-
font-family: 'Font Awesome
|
1667
|
+
font-family: 'Font Awesome 6 Brands';
|
1698
1668
|
font-weight: 400;
|
1699
1669
|
}
|
1700
1670
|
|
1701
1671
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
|
1702
|
-
font-family: 'Font Awesome
|
1672
|
+
font-family: 'Font Awesome 6 Brands';
|
1703
1673
|
font-weight: 400;
|
1704
1674
|
}
|
1705
1675
|
|
1706
1676
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
|
1707
|
-
font-family: 'Font Awesome
|
1677
|
+
font-family: 'Font Awesome 6 Brands';
|
1708
1678
|
font-weight: 400;
|
1709
1679
|
}
|
1710
1680
|
|
1711
1681
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
|
1712
|
-
font-family: 'Font Awesome
|
1682
|
+
font-family: 'Font Awesome 6 Brands';
|
1713
1683
|
font-weight: 400;
|
1714
1684
|
}
|
1715
1685
|
|
1716
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content:
|
1686
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: unquote("\"#{ $fa-var-credit-card }\""); }
|
1717
1687
|
|
1718
1688
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
|
1719
|
-
font-family: 'Font Awesome
|
1689
|
+
font-family: 'Font Awesome 6 Brands';
|
1720
1690
|
font-weight: 400;
|
1721
1691
|
}
|
1722
1692
|
|
1723
1693
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
|
1724
|
-
font-family: 'Font Awesome
|
1694
|
+
font-family: 'Font Awesome 6 Brands';
|
1725
1695
|
font-weight: 400;
|
1726
1696
|
}
|
1727
1697
|
|
1728
1698
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
|
1729
|
-
font-family: 'Font Awesome
|
1699
|
+
font-family: 'Font Awesome 6 Brands';
|
1730
1700
|
font-weight: 400;
|
1731
1701
|
}
|
1732
1702
|
|
1733
1703
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
|
1734
|
-
font-family: 'Font Awesome
|
1704
|
+
font-family: 'Font Awesome 6 Brands';
|
1735
1705
|
font-weight: 400;
|
1736
1706
|
}
|
1737
1707
|
|
1738
1708
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
|
1739
|
-
font-family: 'Font Awesome
|
1709
|
+
font-family: 'Font Awesome 6 Brands';
|
1740
1710
|
font-weight: 400;
|
1741
1711
|
}
|
1742
1712
|
|
1743
1713
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
|
1744
|
-
font-family: 'Font Awesome
|
1714
|
+
font-family: 'Font Awesome 6 Brands';
|
1745
1715
|
font-weight: 400;
|
1746
1716
|
}
|
1747
1717
|
|
1748
1718
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
|
1749
|
-
font-family: 'Font Awesome
|
1719
|
+
font-family: 'Font Awesome 6 Brands';
|
1750
1720
|
font-weight: 400;
|
1751
1721
|
}
|
1752
1722
|
|
1753
1723
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
|
1754
|
-
font-family: 'Font Awesome
|
1724
|
+
font-family: 'Font Awesome 6 Free';
|
1755
1725
|
font-weight: 400;
|
1756
1726
|
}
|
1757
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content:
|
1727
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: unquote("\"#{ $fa-var-circle-pause }\""); }
|
1758
1728
|
|
1759
1729
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
|
1760
|
-
font-family: 'Font Awesome
|
1730
|
+
font-family: 'Font Awesome 6 Free';
|
1761
1731
|
font-weight: 400;
|
1762
1732
|
}
|
1763
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content:
|
1733
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: unquote("\"#{ $fa-var-circle-stop }\""); }
|
1764
1734
|
|
1765
1735
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
|
1766
|
-
font-family: 'Font Awesome
|
1736
|
+
font-family: 'Font Awesome 6 Brands';
|
1767
1737
|
font-weight: 400;
|
1768
1738
|
}
|
1769
1739
|
|
1770
1740
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
|
1771
|
-
font-family: 'Font Awesome
|
1741
|
+
font-family: 'Font Awesome 6 Brands';
|
1772
1742
|
font-weight: 400;
|
1773
1743
|
}
|
1774
1744
|
|
1775
1745
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
|
1776
|
-
font-family: 'Font Awesome
|
1746
|
+
font-family: 'Font Awesome 6 Brands';
|
1777
1747
|
font-weight: 400;
|
1778
1748
|
}
|
1779
1749
|
|
1780
1750
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
|
1781
|
-
font-family: 'Font Awesome
|
1751
|
+
font-family: 'Font Awesome 6 Brands';
|
1782
1752
|
font-weight: 400;
|
1783
1753
|
}
|
1784
1754
|
|
1785
1755
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
|
1786
|
-
font-family: 'Font Awesome
|
1756
|
+
font-family: 'Font Awesome 6 Brands';
|
1787
1757
|
font-weight: 400;
|
1788
1758
|
}
|
1789
1759
|
|
1790
1760
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
|
1791
|
-
font-family: 'Font Awesome
|
1761
|
+
font-family: 'Font Awesome 6 Brands';
|
1792
1762
|
font-weight: 400;
|
1793
1763
|
}
|
1794
1764
|
|
1795
1765
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
|
1796
|
-
font-family: 'Font Awesome
|
1766
|
+
font-family: 'Font Awesome 6 Brands';
|
1797
1767
|
font-weight: 400;
|
1798
1768
|
}
|
1799
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content:
|
1769
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: unquote("\"#{ $fa-var-accessible-icon }\""); }
|
1800
1770
|
|
1801
1771
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
|
1802
|
-
font-family: 'Font Awesome
|
1772
|
+
font-family: 'Font Awesome 6 Free';
|
1803
1773
|
font-weight: 400;
|
1804
1774
|
}
|
1805
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content:
|
1775
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: unquote("\"#{ $fa-var-circle-question }\""); }
|
1806
1776
|
|
1807
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content:
|
1777
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: unquote("\"#{ $fa-var-phone-volume }\""); }
|
1808
1778
|
|
1809
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content:
|
1779
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: unquote("\"#{ $fa-var-hands-asl-interpreting }\""); }
|
1810
1780
|
|
1811
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content:
|
1781
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: unquote("\"#{ $fa-var-ear-deaf }\""); }
|
1812
1782
|
|
1813
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content:
|
1783
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: unquote("\"#{ $fa-var-ear-deaf }\""); }
|
1814
1784
|
|
1815
1785
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
|
1816
|
-
font-family: 'Font Awesome
|
1786
|
+
font-family: 'Font Awesome 6 Brands';
|
1817
1787
|
font-weight: 400;
|
1818
1788
|
}
|
1819
1789
|
|
1820
1790
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
|
1821
|
-
font-family: 'Font Awesome
|
1791
|
+
font-family: 'Font Awesome 6 Brands';
|
1822
1792
|
font-weight: 400;
|
1823
1793
|
}
|
1824
1794
|
|
1825
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content:
|
1795
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: unquote("\"#{ $fa-var-hands }\""); }
|
1826
1796
|
|
1827
1797
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
|
1828
|
-
font-family: 'Font Awesome
|
1798
|
+
font-family: 'Font Awesome 6 Brands';
|
1829
1799
|
font-weight: 400;
|
1830
1800
|
}
|
1831
1801
|
|
1832
1802
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
|
1833
|
-
font-family: 'Font Awesome
|
1803
|
+
font-family: 'Font Awesome 6 Brands';
|
1834
1804
|
font-weight: 400;
|
1835
1805
|
}
|
1806
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square:before { content: unquote("\"#{ $fa-var-square-viadeo }\""); }
|
1836
1807
|
|
1837
1808
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
|
1838
|
-
font-family: 'Font Awesome
|
1809
|
+
font-family: 'Font Awesome 6 Brands';
|
1839
1810
|
font-weight: 400;
|
1840
1811
|
}
|
1841
1812
|
|
1842
1813
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
|
1843
|
-
font-family: 'Font Awesome
|
1814
|
+
font-family: 'Font Awesome 6 Brands';
|
1844
1815
|
font-weight: 400;
|
1845
1816
|
}
|
1817
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before { content: unquote("\"#{ $fa-var-snapchat }\""); }
|
1846
1818
|
|
1847
1819
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
|
1848
|
-
font-family: 'Font Awesome
|
1820
|
+
font-family: 'Font Awesome 6 Brands';
|
1849
1821
|
font-weight: 400;
|
1850
1822
|
}
|
1823
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square:before { content: unquote("\"#{ $fa-var-square-snapchat }\""); }
|
1851
1824
|
|
1852
1825
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
|
1853
|
-
font-family: 'Font Awesome
|
1826
|
+
font-family: 'Font Awesome 6 Brands';
|
1854
1827
|
font-weight: 400;
|
1855
1828
|
}
|
1856
1829
|
|
1857
1830
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
|
1858
|
-
font-family: 'Font Awesome
|
1831
|
+
font-family: 'Font Awesome 6 Brands';
|
1859
1832
|
font-weight: 400;
|
1860
1833
|
}
|
1861
1834
|
|
1862
1835
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
|
1863
|
-
font-family: 'Font Awesome
|
1836
|
+
font-family: 'Font Awesome 6 Brands';
|
1864
1837
|
font-weight: 400;
|
1865
1838
|
}
|
1866
1839
|
|
1867
1840
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
|
1868
|
-
font-family: 'Font Awesome
|
1841
|
+
font-family: 'Font Awesome 6 Brands';
|
1869
1842
|
font-weight: 400;
|
1870
1843
|
}
|
1871
1844
|
|
1872
1845
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
|
1873
|
-
font-family: 'Font Awesome
|
1846
|
+
font-family: 'Font Awesome 6 Brands';
|
1874
1847
|
font-weight: 400;
|
1875
1848
|
}
|
1876
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content:
|
1849
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: unquote("\"#{ $fa-var-google-plus }\""); }
|
1877
1850
|
|
1878
1851
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
|
1879
|
-
font-family: 'Font Awesome
|
1852
|
+
font-family: 'Font Awesome 6 Brands';
|
1880
1853
|
font-weight: 400;
|
1881
1854
|
}
|
1882
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content:
|
1855
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: unquote("\"#{ $fa-var-google-plus }\""); }
|
1883
1856
|
|
1884
1857
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
|
1885
|
-
font-family: 'Font Awesome
|
1858
|
+
font-family: 'Font Awesome 6 Brands';
|
1886
1859
|
font-weight: 400;
|
1887
1860
|
}
|
1888
1861
|
|
1889
1862
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
|
1890
|
-
font-family: 'Font Awesome
|
1863
|
+
font-family: 'Font Awesome 6 Brands';
|
1891
1864
|
font-weight: 400;
|
1892
1865
|
}
|
1893
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content:
|
1866
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: unquote("\"#{ $fa-var-font-awesome }\""); }
|
1894
1867
|
|
1895
1868
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
|
1896
|
-
font-family: 'Font Awesome
|
1869
|
+
font-family: 'Font Awesome 6 Free';
|
1897
1870
|
font-weight: 400;
|
1898
1871
|
}
|
1899
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content:
|
1872
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: unquote("\"#{ $fa-var-handshake }\""); }
|
1900
1873
|
|
1901
1874
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
|
1902
|
-
font-family: 'Font Awesome
|
1875
|
+
font-family: 'Font Awesome 6 Free';
|
1903
1876
|
font-weight: 400;
|
1904
1877
|
}
|
1905
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content:
|
1878
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: unquote("\"#{ $fa-var-envelope-open }\""); }
|
1906
1879
|
|
1907
1880
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
|
1908
|
-
font-family: 'Font Awesome
|
1881
|
+
font-family: 'Font Awesome 6 Brands';
|
1909
1882
|
font-weight: 400;
|
1910
1883
|
}
|
1911
1884
|
|
1912
1885
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
|
1913
|
-
font-family: 'Font Awesome
|
1886
|
+
font-family: 'Font Awesome 6 Free';
|
1914
1887
|
font-weight: 400;
|
1915
1888
|
}
|
1916
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content:
|
1889
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: unquote("\"#{ $fa-var-address-book }\""); }
|
1917
1890
|
|
1918
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content:
|
1891
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: unquote("\"#{ $fa-var-address-card }\""); }
|
1919
1892
|
|
1920
1893
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
|
1921
|
-
font-family: 'Font Awesome
|
1894
|
+
font-family: 'Font Awesome 6 Free';
|
1922
1895
|
font-weight: 400;
|
1923
1896
|
}
|
1924
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content:
|
1897
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: unquote("\"#{ $fa-var-address-card }\""); }
|
1925
1898
|
|
1926
1899
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
|
1927
|
-
font-family: 'Font Awesome
|
1900
|
+
font-family: 'Font Awesome 6 Free';
|
1928
1901
|
font-weight: 400;
|
1929
1902
|
}
|
1930
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content:
|
1903
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: unquote("\"#{ $fa-var-address-card }\""); }
|
1931
1904
|
|
1932
1905
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
|
1933
|
-
font-family: 'Font Awesome
|
1906
|
+
font-family: 'Font Awesome 6 Free';
|
1934
1907
|
font-weight: 400;
|
1935
1908
|
}
|
1936
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content:
|
1909
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: unquote("\"#{ $fa-var-circle-user }\""); }
|
1937
1910
|
|
1938
1911
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
|
1939
|
-
font-family: 'Font Awesome
|
1912
|
+
font-family: 'Font Awesome 6 Free';
|
1940
1913
|
font-weight: 400;
|
1941
1914
|
}
|
1942
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content:
|
1915
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: unquote("\"#{ $fa-var-user }\""); }
|
1943
1916
|
|
1944
1917
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
|
1945
|
-
font-family: 'Font Awesome
|
1918
|
+
font-family: 'Font Awesome 6 Free';
|
1946
1919
|
font-weight: 400;
|
1947
1920
|
}
|
1948
1921
|
|
1949
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content:
|
1922
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: unquote("\"#{ $fa-var-id-card }\""); }
|
1950
1923
|
|
1951
1924
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
|
1952
|
-
font-family: 'Font Awesome
|
1925
|
+
font-family: 'Font Awesome 6 Free';
|
1953
1926
|
font-weight: 400;
|
1954
1927
|
}
|
1955
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content:
|
1928
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: unquote("\"#{ $fa-var-id-card }\""); }
|
1956
1929
|
|
1957
1930
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
|
1958
|
-
font-family: 'Font Awesome
|
1931
|
+
font-family: 'Font Awesome 6 Free';
|
1959
1932
|
font-weight: 400;
|
1960
1933
|
}
|
1961
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content:
|
1934
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: unquote("\"#{ $fa-var-id-card }\""); }
|
1962
1935
|
|
1963
1936
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
|
1964
|
-
font-family: 'Font Awesome
|
1937
|
+
font-family: 'Font Awesome 6 Brands';
|
1965
1938
|
font-weight: 400;
|
1966
1939
|
}
|
1967
1940
|
|
1968
1941
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
|
1969
|
-
font-family: 'Font Awesome
|
1942
|
+
font-family: 'Font Awesome 6 Brands';
|
1970
1943
|
font-weight: 400;
|
1971
1944
|
}
|
1972
1945
|
|
1973
1946
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
|
1974
|
-
font-family: 'Font Awesome
|
1947
|
+
font-family: 'Font Awesome 6 Brands';
|
1975
1948
|
font-weight: 400;
|
1976
1949
|
}
|
1977
1950
|
|
1978
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content:
|
1951
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: unquote("\"#{ $fa-var-temperature-full }\""); }
|
1979
1952
|
|
1980
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content:
|
1953
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: unquote("\"#{ $fa-var-temperature-full }\""); }
|
1981
1954
|
|
1982
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content:
|
1955
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: unquote("\"#{ $fa-var-temperature-three-quarters }\""); }
|
1983
1956
|
|
1984
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content:
|
1957
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: unquote("\"#{ $fa-var-temperature-half }\""); }
|
1985
1958
|
|
1986
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content:
|
1959
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: unquote("\"#{ $fa-var-temperature-quarter }\""); }
|
1987
1960
|
|
1988
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content:
|
1961
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: unquote("\"#{ $fa-var-temperature-empty }\""); }
|
1989
1962
|
|
1990
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content:
|
1963
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: unquote("\"#{ $fa-var-bath }\""); }
|
1991
1964
|
|
1992
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content:
|
1965
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: unquote("\"#{ $fa-var-bath }\""); }
|
1993
1966
|
|
1994
1967
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
|
1995
|
-
font-family: 'Font Awesome
|
1968
|
+
font-family: 'Font Awesome 6 Free';
|
1996
1969
|
font-weight: 400;
|
1997
1970
|
}
|
1998
1971
|
|
1999
1972
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
|
2000
|
-
font-family: 'Font Awesome
|
1973
|
+
font-family: 'Font Awesome 6 Free';
|
2001
1974
|
font-weight: 400;
|
2002
1975
|
}
|
2003
1976
|
|
2004
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content:
|
1977
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
|
2005
1978
|
|
2006
1979
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
|
2007
|
-
font-family: 'Font Awesome
|
1980
|
+
font-family: 'Font Awesome 6 Free';
|
2008
1981
|
font-weight: 400;
|
2009
1982
|
}
|
2010
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content:
|
1983
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
|
2011
1984
|
|
2012
1985
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
|
2013
|
-
font-family: 'Font Awesome
|
1986
|
+
font-family: 'Font Awesome 6 Free';
|
2014
1987
|
font-weight: 400;
|
2015
1988
|
}
|
2016
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content:
|
1989
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
|
2017
1990
|
|
2018
1991
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
|
2019
|
-
font-family: 'Font Awesome
|
1992
|
+
font-family: 'Font Awesome 6 Brands';
|
2020
1993
|
font-weight: 400;
|
2021
1994
|
}
|
2022
1995
|
|
2023
1996
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
|
2024
|
-
font-family: 'Font Awesome
|
1997
|
+
font-family: 'Font Awesome 6 Brands';
|
2025
1998
|
font-weight: 400;
|
2026
1999
|
}
|
2027
2000
|
|
2028
2001
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
|
2029
|
-
font-family: 'Font Awesome
|
2002
|
+
font-family: 'Font Awesome 6 Brands';
|
2030
2003
|
font-weight: 400;
|
2031
2004
|
}
|
2032
2005
|
|
2033
2006
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
|
2034
|
-
font-family: 'Font Awesome
|
2007
|
+
font-family: 'Font Awesome 6 Brands';
|
2035
2008
|
font-weight: 400;
|
2036
2009
|
}
|
2037
2010
|
|
2038
2011
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
|
2039
|
-
font-family: 'Font Awesome
|
2012
|
+
font-family: 'Font Awesome 6 Brands';
|
2040
2013
|
font-weight: 400;
|
2041
2014
|
}
|
2042
2015
|
|
2043
2016
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
|
2044
|
-
font-family: 'Font Awesome
|
2017
|
+
font-family: 'Font Awesome 6 Brands';
|
2045
2018
|
font-weight: 400;
|
2046
2019
|
}
|
2047
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content:
|
2020
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: unquote("\"#{ $fa-var-sellcast }\""); }
|
2048
2021
|
|
2049
2022
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
|
2050
|
-
font-family: 'Font Awesome
|
2023
|
+
font-family: 'Font Awesome 6 Free';
|
2051
2024
|
font-weight: 400;
|
2052
2025
|
}
|
2053
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content:
|
2026
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: unquote("\"#{ $fa-var-snowflake }\""); }
|
2054
2027
|
|
2055
2028
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
|
2056
|
-
font-family: 'Font Awesome
|
2029
|
+
font-family: 'Font Awesome 6 Brands';
|
2057
2030
|
font-weight: 400;
|
2058
2031
|
}
|
2059
2032
|
|
2060
2033
|
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
|
2061
|
-
font-family: 'Font Awesome
|
2034
|
+
font-family: 'Font Awesome 6 Brands';
|
2062
2035
|
font-weight: 400;
|
2063
2036
|
}
|
2064
2037
|
|
2065
|
-
.#{$fa-css-prefix}.#{$fa-css-prefix}-
|
2038
|
+
.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
|
2039
|
+
font-family: 'Font Awesome 6 Brands';
|
2040
|
+
font-weight: 400;
|
2041
|
+
}
|
2066
2042
|
|