diff --git a/.eslintrc.yml b/.eslintrc.yml
new file mode 100644
index 00000000..f0f5725e
--- /dev/null
+++ b/.eslintrc.yml
@@ -0,0 +1,17 @@
+env:
+ browser: true
+ jquery: true
+extends: 'eslint:recommended'
+rules:
+ indent:
+ - error
+ - 2
+ linebreak-style:
+ - error
+ - unix
+ quotes:
+ - error
+ - single
+ semi:
+ - error
+ - always
diff --git a/.stylelintrc b/.stylelintrc
deleted file mode 100644
index b4d808c1..00000000
--- a/.stylelintrc
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "rules": {
- "value-no-vendor-prefix": true
- }
-}
diff --git a/app/helpers/additionals_tag_helper.rb b/app/helpers/additionals_tag_helper.rb
index b3ea9336..bda8570e 100644
--- a/app/helpers/additionals_tag_helper.rb
+++ b/app/helpers/additionals_tag_helper.rb
@@ -73,7 +73,7 @@ module AdditionalsTagHelper
else
content_tag('span',
link_to(safe_join(tag_name), additionals_tag_url(tag.name)),
- class: 'tag-label-color',
+ class: 'additionals-tag-label-color',
style: "background-color: #{additionals_tag_color(tag.name)}")
end
end
diff --git a/app/models/additionals_font_awesome.rb b/app/models/additionals_font_awesome.rb
new file mode 100644
index 00000000..21a48f5c
--- /dev/null
+++ b/app/models/additionals_font_awesome.rb
@@ -0,0 +1,101 @@
+class AdditionalsFontAwesome
+ include Redmine::I18n
+
+ class << self
+ def load_icons(type)
+ data = YAML.safe_load(ERB.new(IO.read(Rails.root.join('plugins',
+ 'additionals',
+ 'config',
+ "fa_#{type}.yml"))).result) || {}
+ data['icons']
+ end
+
+ def font_weight(key)
+ case key
+ when :fas
+ 900
+ else
+ 'normal'
+ end
+ end
+
+ def font_family(key)
+ case key
+ when :fab
+ 'Font Awesome\ 5 Brands'
+ else
+ 'Font Awesome\ 5 Free'
+ end
+ end
+
+ def key2name(key)
+ 'fa-' + key.tr('_', '-')
+ end
+
+ def key2value(key, type)
+ "fa#{type}-" + key
+ end
+
+ def classes(value)
+ info = value_info(value)
+ return '' if info.blank?
+ info[:classes]
+ end
+
+ def json_values(type)
+ FONTAWESOME_ICONS[type].collect { |fa_symbol, _v| { id: key2value(fa_symbol, type[-1]), text: key2name(fa_symbol) } }
+ end
+
+ def select_values(type)
+ FONTAWESOME_ICONS[type].collect { |fa_symbol, _v| [key2name(fa_symbol), key2value(fa_symbol, type[-1])] }
+ end
+
+ def search_unicode(type, name)
+ return unless FONTAWESOME_ICONS.key?(type)
+ code = FONTAWESOME_ICONS[type][name]
+ "#{code}".html_safe if code.present?
+ end
+
+ def json_for_select
+ values = []
+ values << { text: l(:label_fontawesome_regular), children: json_values(:far) }
+ values << { text: l(:label_fontawesome_solid), children: json_values(:fas) }
+ values << { text: l(:label_fontawesome_brands), children: json_values(:fab) }
+
+ values.to_json
+ end
+
+ # show only one value as current selected
+ # (all other options are retrieved by select2
+ def active_option_for_select(selected)
+ info = value_info(selected)
+ return [] if info.blank?
+ [[info[:name], selected]]
+ end
+
+ def options_for_select
+ values = []
+ values << [l(:label_fontawesome_regular), select_values(:far)]
+ values << [l(:label_fontawesome_solid), select_values(:fas)]
+ values << [l(:label_fontawesome_brands), select_values(:fab)]
+ values
+ end
+
+ def value_info(value, options = {})
+ info = {}
+ return [] if value.blank?
+ values = value.split('-')
+ return [] unless values.count == 2
+ info[:type] = values[0].to_sym
+ info[:name] = key2name(values[1])
+ info[:classes] = "#{info[:type]} #{info[:name]}"
+ info[:font_weight] = font_weight(info[:type])
+ info[:font_family] = font_family(info[:type])
+ if options[:with_unicode]
+ info[:unicode] = search_unicode(info[:type], values[1])
+ return [] if info[:unicode].blank?
+ end
+ info
+ end
+ end
+end
diff --git a/assets/fonts/FontAwesome.otf b/assets/fonts/FontAwesome.otf
deleted file mode 100644
index 401ec0f3..00000000
Binary files a/assets/fonts/FontAwesome.otf and /dev/null differ
diff --git a/assets/fonts/fontawesome-webfont.eot b/assets/fonts/fontawesome-webfont.eot
deleted file mode 100644
index e9f60ca9..00000000
Binary files a/assets/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/assets/fonts/fontawesome-webfont.svg b/assets/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 855c845e..00000000
--- a/assets/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,2671 +0,0 @@
-
-
-
diff --git a/assets/fonts/fontawesome-webfont.ttf b/assets/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index 35acda2f..00000000
Binary files a/assets/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/assets/fonts/fontawesome-webfont.woff b/assets/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 400014a4..00000000
Binary files a/assets/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/assets/fonts/fontawesome-webfont.woff2 b/assets/fonts/fontawesome-webfont.woff2
deleted file mode 100644
index 4d13fc60..00000000
Binary files a/assets/fonts/fontawesome-webfont.woff2 and /dev/null differ
diff --git a/assets/javascripts/additionals_delay_ajax_indicator.js b/assets/javascripts/additionals_delay_ajax_indicator.js
index c5867b46..a5300013 100644
--- a/assets/javascripts/additionals_delay_ajax_indicator.js
+++ b/assets/javascripts/additionals_delay_ajax_indicator.js
@@ -1,14 +1,14 @@
function delayAjaxIndicator() {
$(document).off('ajaxSend').bind('ajaxSend', function(event, xhr, settings) {
- if ($('.ajax-loading').length === 0 && settings.contentType != 'application/octet-stream') {
- $('#ajax-indicator').stop(true, false).delay(300).show(0);
- }
+ if ($('.ajax-loading').length === 0 && settings.contentType != 'application/octet-stream') {
+ $('#ajax-indicator').stop(true, false).delay(300).show(0);
+ }
});
$(document).off('ajaxStop').bind('ajaxStop', function() {
$('#ajax-indicator').hide(0);
});
-};
+}
-$(document).ready(delayAjaxIndicator)
+$(document).ready(delayAjaxIndicator);
diff --git a/assets/javascripts/additionals_to_select2.js b/assets/javascripts/additionals_to_select2.js
index ff9b9de6..8787062e 100644
--- a/assets/javascripts/additionals_to_select2.js
+++ b/assets/javascripts/additionals_to_select2.js
@@ -3,12 +3,12 @@ var oldAdditionalsToggleFilter = window.toggleFilter;
window.toggleFilter = function(field) {
oldAdditionalsToggleFilter(field);
return additionals_transform_to_select2(field);
-}
+};
function filterAdditionalsFormatState (opt) {
var $opt = $('' + opt.name_with_icon + '');
return $opt;
-};
+}
function additionals_transform_to_select2(field){
field_format = availableFilters[field]['field_format'];
diff --git a/assets/javascripts/noreferrer.js b/assets/javascripts/noreferrer.js
index 351d5d97..3c1f56b8 100644
--- a/assets/javascripts/noreferrer.js
+++ b/assets/javascripts/noreferrer.js
@@ -1,6 +1,6 @@
$(function() {
- var handleNoReferrer = function() {
- this.rel = 'noreferrer';
- }
- $('a.external').each(handleNoReferrer);
+ var handleNoReferrer = function() {
+ this.rel = 'noreferrer';
+ };
+ $('a.external').each(handleNoReferrer);
});
diff --git a/assets/javascripts/tooltips.js b/assets/javascripts/tooltips.js
index 12799b32..e0fe3c1a 100644
--- a/assets/javascripts/tooltips.js
+++ b/assets/javascripts/tooltips.js
@@ -5,12 +5,12 @@
$(function() {
$(document).tooltip({
position: {
- my: "center bottom-20",
- at: "center top",
+ my: 'center bottom-20',
+ at: 'center top',
using: function(position, feedback) {
$(this).css(position);
- $("
")
- .addClass("tooltip-arrow")
+ $('
')
+ .addClass('tooltip-arrow')
.addClass(feedback.vertical)
.addClass(feedback.horizontal)
.appendTo(this);
diff --git a/assets/stylesheets/additionals.css b/assets/stylesheets/additionals.css
index fc7e1d9d..3ccb0acb 100644
--- a/assets/stylesheets/additionals.css
+++ b/assets/stylesheets/additionals.css
@@ -1,13 +1,11 @@
-/* ICONS */
-#admin-menu a.additionals::before {
- font-size: 1.3em;
- padding-right: 4px;
-}
+/* stylelint-disable font-family-no-missing-generic-family-keyword */
#admin-menu a.additionals::before {
- font-family: FontAwesome;
- font-weight: normal;
- content: "\f085"; /* fa-cogs */
+ font-family: Font Awesome\ 5 Free;
+ font-size: 1.1em;
+ font-weight: 900;
+ content: "\f085"; /* fas fa-cogs */
+ padding-right: 4px;
}
#admin-menu a.additionals {
@@ -158,17 +156,17 @@ ul.tags {
padding: 0;
}
-span.tag-label-color {
+span.additionals-tag-label-color {
display: inline-block;
margin-bottom: 5px !important;
}
-td.tags span.tag-label-color {
+td.tags span.additionals-tag-label-color {
display: inline-block;
margin: 2px !important;
}
-.tag-label-color {
+.additionals-tag-label-color {
padding: 2px 4px;
color: #fff;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
@@ -177,11 +175,11 @@ td.tags span.tag-label-color {
border-radius: 2px;
}
-.tag-label-color a::before {
- font-family: FontAwesome;
- font-size: 1em;
- font-weight: normal;
- content: "\f02b"; /* fa-tag */
+.additionals-tag-label-color a::before {
+ font-family: Font Awesome\ 5 Free;
+ font-size: 0.9em;
+ font-weight: 900;
+ content: "\f02b"; /* fas fa-tag */
padding-right: 3px;
color: #fff;
}
@@ -198,7 +196,7 @@ div.tags .tag-pass-7 { font-size: 1.4em; }
div.tags .tag-pass-8 { font-size: 1.5em; }
.tag-count { font-size: 0.75em; }
-.tag-label-color a { color: white; }
+.additionals-tag-label-color a { color: white; }
.tagit.ui-widget {
font-size: 1em;
diff --git a/assets/stylesheets/font-awesome.min.css b/assets/stylesheets/font-awesome.min.css
deleted file mode 100644
index 540440ce..00000000
--- a/assets/stylesheets/font-awesome.min.css
+++ /dev/null
@@ -1,4 +0,0 @@
-/*!
- * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/config/fa_brands.yml b/config/fa_fab.yml
similarity index 100%
rename from config/fa_brands.yml
rename to config/fa_fab.yml
diff --git a/config/fa_regular.yml b/config/fa_far.yml
similarity index 100%
rename from config/fa_regular.yml
rename to config/fa_far.yml
diff --git a/config/fa_solid.yml b/config/fa_fas.yml
similarity index 100%
rename from config/fa_solid.yml
rename to config/fa_fas.yml
diff --git a/config/fontawesome_icons.yml b/config/fontawesome_icons.yml
deleted file mode 100644
index bd1b5506..00000000
--- a/config/fontawesome_icons.yml
+++ /dev/null
@@ -1,6540 +0,0 @@
-icons:
- - name: Glass
- id: glass
- unicode: f000
- created: 1.0
- filter:
- - martini
- - drink
- - bar
- - alcohol
- - liquor
- categories:
- - Web Application Icons
-
- - name: Music
- id: music
- unicode: f001
- created: 1.0
- filter:
- - note
- - sound
- categories:
- - Web Application Icons
-
- - name: Search
- id: search
- unicode: f002
- created: 1.0
- filter:
- - magnify
- - zoom
- - enlarge
- - bigger
- categories:
- - Web Application Icons
-
- - name: Envelope Outlined
- id: envelope-o
- unicode: f003
- created: 1.0
- filter:
- - email
- - support
- - e-mail
- - letter
- - mail
- - notification
- categories:
- - Web Application Icons
-
- - name: Heart
- id: heart
- unicode: f004
- created: 1.0
- filter:
- - love
- - like
- - favorite
- categories:
- - Web Application Icons
- - Medical Icons
-
- - name: Star
- id: star
- unicode: f005
- created: 1.0
- filter:
- - award
- - achievement
- - night
- - rating
- - score
- - favorite
- categories:
- - Web Application Icons
-
- - name: Star Outlined
- id: star-o
- unicode: f006
- created: 1.0
- filter:
- - award
- - achievement
- - night
- - rating
- - score
- - favorite
- categories:
- - Web Application Icons
-
- - name: User
- id: user
- unicode: f007
- created: 1.0
- filter:
- - person
- - man
- - head
- - profile
- categories:
- - Web Application Icons
-
- - name: Film
- id: film
- unicode: f008
- created: 1.0
- filter:
- - movie
- categories:
- - Web Application Icons
-
- - name: th-large
- id: th-large
- unicode: f009
- created: 1.0
- filter:
- - blocks
- - squares
- - boxes
- - grid
- categories:
- - Text Editor Icons
-
- - name: th
- id: th
- unicode: f00a
- created: 1.0
- filter:
- - blocks
- - squares
- - boxes
- - grid
- categories:
- - Text Editor Icons
-
- - name: th-list
- id: th-list
- unicode: f00b
- created: 1.0
- filter:
- - ul
- - ol
- - checklist
- - finished
- - completed
- - done
- - todo
- categories:
- - Text Editor Icons
-
- - name: Check
- id: check
- unicode: f00c
- created: 1.0
- filter:
- - checkmark
- - done
- - todo
- - agree
- - accept
- - confirm
- - tick
- - ok
- categories:
- - Web Application Icons
-
- - name: Times
- id: times
- unicode: f00d
- created: 1.0
- aliases:
- - remove
- - close
- filter:
- - close
- - exit
- - x
- - cross
- categories:
- - Web Application Icons
-
- - name: Search Plus
- id: search-plus
- unicode: f00e
- created: 1.0
- filter:
- - magnify
- - zoom
- - enlarge
- - bigger
- categories:
- - Web Application Icons
-
-
- - name: Search Minus
- id: search-minus
- unicode: f010
- created: 1.0
- filter:
- - magnify
- - minify
- - zoom
- - smaller
- categories:
- - Web Application Icons
-
- - name: Power Off
- id: power-off
- unicode: f011
- created: 1.0
- filter:
- - "on"
- categories:
- - Web Application Icons
-
- - name: signal
- id: signal
- unicode: f012
- created: 1.0
- filter:
- - graph
- - bars
- categories:
- - Web Application Icons
-
- - name: cog
- id: cog
- unicode: f013
- created: 1.0
- filter:
- - settings
- aliases:
- - gear
- categories:
- - Web Application Icons
- - Spinner Icons
-
- - name: Trash Outlined
- id: trash-o
- unicode: f014
- created: 1.0
- filter:
- - garbage
- - delete
- - remove
- - trash
- - hide
- categories:
- - Web Application Icons
-
- - name: home
- id: home
- unicode: f015
- created: 1.0
- filter:
- - main
- - house
- categories:
- - Web Application Icons
-
- - name: File Outlined
- id: file-o
- unicode: f016
- created: 1.0
- filter:
- - new
- - page
- - pdf
- - document
- categories:
- - Text Editor Icons
- - File Type Icons
-
- - name: Clock Outlined
- id: clock-o
- unicode: f017
- created: 1.0
- filter:
- - watch
- - timer
- - late
- - timestamp
- categories:
- - Web Application Icons
-
- - name: road
- id: road
- unicode: f018
- created: 1.0
- filter:
- - street
- categories:
- - Web Application Icons
-
- - name: Download
- id: download
- unicode: f019
- created: 1.0
- filter:
- - import
- categories:
- - Web Application Icons
-
- - name: Arrow Circle Outlined Down
- id: arrow-circle-o-down
- unicode: f01a
- created: 1.0
- filter:
- - download
- categories:
- - Directional Icons
-
- - name: Arrow Circle Outlined Up
- id: arrow-circle-o-up
- unicode: f01b
- created: 1.0
- categories:
- - Directional Icons
-
- - name: inbox
- id: inbox
- unicode: f01c
- created: 1.0
- categories:
- - Web Application Icons
-
- - name: Play Circle Outlined
- id: play-circle-o
- unicode: f01d
- created: 1.0
- categories:
- - Video Player Icons
-
- - name: Repeat
- id: repeat
- unicode: f01e
- created: 1.0
- filter:
- - redo
- - forward
- aliases:
- - rotate-right
- categories:
- - Text Editor Icons
-
-
- - name: refresh
- id: refresh
- unicode: f021
- created: 1.0
- filter:
- - reload
- - sync
- categories:
- - Web Application Icons
- - Spinner Icons
-
- - name: list-alt
- id: list-alt
- unicode: f022
- created: 1.0
- filter:
- - ul
- - ol
- - checklist
- - finished
- - completed
- - done
- - todo
- categories:
- - Text Editor Icons
-
- - name: lock
- id: lock
- unicode: f023
- created: 1.0
- filter:
- - protect
- - admin
- - security
- categories:
- - Web Application Icons
-
- - name: flag
- id: flag
- unicode: f024
- created: 1.0
- filter:
- - report
- - notification
- - notify
- categories:
- - Web Application Icons
-
- - name: headphones
- id: headphones
- unicode: f025
- created: 1.0
- filter:
- - sound
- - listen
- - music
- - audio
- categories:
- - Web Application Icons
-
- - name: volume-off
- id: volume-off
- unicode: f026
- created: 1.0
- filter:
- - audio
- - mute
- - sound
- - music
- categories:
- - Web Application Icons
-
- - name: volume-down
- id: volume-down
- unicode: f027
- created: 1.0
- filter:
- - audio
- - lower
- - quieter
- - sound
- - music
- categories:
- - Web Application Icons
-
- - name: volume-up
- id: volume-up
- unicode: f028
- created: 1.0
- filter:
- - audio
- - higher
- - louder
- - sound
- - music
- categories:
- - Web Application Icons
-
- - name: qrcode
- id: qrcode
- unicode: f029
- created: 1.0
- filter:
- - scan
- categories:
- - Web Application Icons
-
- - name: barcode
- id: barcode
- unicode: f02a
- created: 1.0
- filter:
- - scan
- categories:
- - Web Application Icons
-
- - name: tag
- id: tag
- unicode: f02b
- created: 1.0
- filter:
- - label
- categories:
- - Web Application Icons
-
- - name: tags
- id: tags
- unicode: f02c
- created: 1.0
- filter:
- - labels
- categories:
- - Web Application Icons
-
- - name: book
- id: book
- unicode: f02d
- created: 1.0
- filter:
- - read
- - documentation
- categories:
- - Web Application Icons
-
- - name: bookmark
- id: bookmark
- unicode: f02e
- created: 1.0
- filter:
- - save
- categories:
- - Web Application Icons
-
- - name: print
- id: print
- unicode: f02f
- created: 1.0
- categories:
- - Web Application Icons
-
-
- - name: camera
- id: camera
- unicode: f030
- created: 1.0
- filter:
- - photo
- - picture
- - record
- categories:
- - Web Application Icons
-
- - name: font
- id: font
- unicode: f031
- created: 1.0
- filter:
- - text
- categories:
- - Text Editor Icons
-
- - name: bold
- id: bold
- unicode: f032
- created: 1.0
- categories:
- - Text Editor Icons
-
- - name: italic
- id: italic
- unicode: f033
- created: 1.0
- filter:
- - italics
- categories:
- - Text Editor Icons
-
- - name: text-height
- id: text-height
- unicode: f034
- created: 1.0
- categories:
- - Text Editor Icons
-
- - name: text-width
- id: text-width
- unicode: f035
- created: 1.0
- categories:
- - Text Editor Icons
-
- - name: align-left
- id: align-left
- unicode: f036
- created: 1.0
- filter:
- - text
- categories:
- - Text Editor Icons
-
- - name: align-center
- id: align-center
- unicode: f037
- created: 1.0
- filter:
- - middle
- - text
- categories:
- - Text Editor Icons
-
- - name: align-right
- id: align-right
- unicode: f038
- created: 1.0
- filter:
- - text
- categories:
- - Text Editor Icons
-
- - name: align-justify
- id: align-justify
- unicode: f039
- created: 1.0
- filter:
- - text
- categories:
- - Text Editor Icons
-
- - name: list
- id: list
- unicode: f03a
- created: 1.0
- filter:
- - ul
- - ol
- - checklist
- - finished
- - completed
- - done
- - todo
- categories:
- - Text Editor Icons
-
- - name: Outdent
- id: outdent
- unicode: f03b
- created: 1.0
- aliases:
- - dedent
- categories:
- - Text Editor Icons
-
- - name: Indent
- id: indent
- unicode: f03c
- created: 1.0
- categories:
- - Text Editor Icons
-
- - name: Video Camera
- id: video-camera
- unicode: f03d
- created: 1.0
- filter:
- - film
- - movie
- - record
- categories:
- - Web Application Icons
-
- - name: Picture Outlined
- id: picture-o
- unicode: f03e
- created: 1.0
- aliases:
- - photo
- - image
- categories:
- - Web Application Icons
-
-
- - name: pencil
- id: pencil
- unicode: f040
- created: 1.0
- filter:
- - write
- - edit
- - update
- categories:
- - Web Application Icons
-
- - name: map-marker
- id: map-marker
- unicode: f041
- created: 1.0
- filter:
- - map
- - pin
- - location
- - coordinates
- - localize
- - address
- - travel
- - where
- - place
- categories:
- - Web Application Icons
-
- - name: adjust
- id: adjust
- unicode: f042
- created: 1.0
- filter:
- - contrast
- categories:
- - Web Application Icons
-
- - name: tint
- id: tint
- unicode: f043
- created: 1.0
- filter:
- - raindrop
- - waterdrop
- - drop
- - droplet
- categories:
- - Web Application Icons
-
- - name: Pencil Square Outlined
- id: pencil-square-o
- unicode: f044
- created: 1.0
- filter:
- - write
- - edit
- - update
- aliases:
- - edit
- categories:
- - Web Application Icons
-
- - name: Share Square Outlined
- id: share-square-o
- unicode: f045
- created: 1.0
- filter:
- - social
- - send
- - arrow
- categories:
- - Web Application Icons
-
- - name: Check Square Outlined
- id: check-square-o
- unicode: f046
- created: 1.0
- filter:
- - todo
- - done
- - agree
- - accept
- - confirm
- - ok
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Arrows
- id: arrows
- unicode: f047
- created: 1.0
- filter:
- - move
- - reorder
- - resize
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: step-backward
- id: step-backward
- unicode: f048
- created: 1.0
- filter:
- - rewind
- - previous
- - beginning
- - start
- - first
- categories:
- - Video Player Icons
-
- - name: fast-backward
- id: fast-backward
- unicode: f049
- created: 1.0
- filter:
- - rewind
- - previous
- - beginning
- - start
- - first
- categories:
- - Video Player Icons
-
- - name: backward
- id: backward
- unicode: f04a
- created: 1.0
- filter:
- - rewind
- - previous
- categories:
- - Video Player Icons
-
- - name: play
- id: play
- unicode: f04b
- created: 1.0
- filter:
- - start
- - playing
- - music
- - sound
- categories:
- - Video Player Icons
-
- - name: pause
- id: pause
- unicode: f04c
- created: 1.0
- filter:
- - wait
- categories:
- - Video Player Icons
-
- - name: stop
- id: stop
- unicode: f04d
- created: 1.0
- filter:
- - block
- - box
- - square
- categories:
- - Video Player Icons
-
- - name: forward
- id: forward
- unicode: f04e
- created: 1.0
- filter:
- - forward
- - next
- categories:
- - Video Player Icons
-
-
- - name: fast-forward
- id: fast-forward
- unicode: f050
- created: 1.0
- filter:
- - next
- - end
- - last
- categories:
- - Video Player Icons
-
- - name: step-forward
- id: step-forward
- unicode: f051
- created: 1.0
- filter:
- - next
- - end
- - last
- categories:
- - Video Player Icons
-
- - name: eject
- id: eject
- unicode: f052
- created: 1.0
- categories:
- - Video Player Icons
-
- - name: chevron-left
- id: chevron-left
- unicode: f053
- created: 1.0
- filter:
- - bracket
- - previous
- - back
- categories:
- - Directional Icons
-
- - name: chevron-right
- id: chevron-right
- unicode: f054
- created: 1.0
- filter:
- - bracket
- - next
- - forward
- categories:
- - Directional Icons
-
- - name: Plus Circle
- id: plus-circle
- unicode: f055
- created: 1.0
- filter:
- - add
- - new
- - create
- - expand
- categories:
- - Web Application Icons
-
- - name: Minus Circle
- id: minus-circle
- unicode: f056
- created: 1.0
- filter:
- - delete
- - remove
- - trash
- - hide
- categories:
- - Web Application Icons
-
- - name: Times Circle
- id: times-circle
- unicode: f057
- created: 1.0
- filter:
- - close
- - exit
- - x
- categories:
- - Web Application Icons
-
- - name: Check Circle
- id: check-circle
- unicode: f058
- created: 1.0
- filter:
- - todo
- - done
- - agree
- - accept
- - confirm
- - ok
- categories:
- - Web Application Icons
-
- - name: Question Circle
- id: question-circle
- unicode: f059
- filter:
- - help
- - information
- - unknown
- - support
- created: 1.0
- categories:
- - Web Application Icons
-
- - name: Info Circle
- id: info-circle
- unicode: f05a
- created: 1.0
- filter:
- - help
- - information
- - more
- - details
- categories:
- - Web Application Icons
-
- - name: Crosshairs
- id: crosshairs
- unicode: f05b
- created: 1.0
- filter:
- - picker
- categories:
- - Web Application Icons
-
- - name: Times Circle Outlined
- id: times-circle-o
- unicode: f05c
- created: 1.0
- filter:
- - close
- - exit
- - x
- categories:
- - Web Application Icons
-
- - name: Check Circle Outlined
- id: check-circle-o
- unicode: f05d
- created: 1.0
- filter:
- - todo
- - done
- - agree
- - accept
- - confirm
- - ok
- categories:
- - Web Application Icons
-
- - name: ban
- id: ban
- unicode: f05e
- created: 1.0
- filter:
- - delete
- - remove
- - trash
- - hide
- - block
- - stop
- - abort
- - cancel
- categories:
- - Web Application Icons
-
-
- - name: arrow-left
- id: arrow-left
- unicode: f060
- created: 1.0
- filter:
- - previous
- - back
- categories:
- - Directional Icons
-
- - name: arrow-right
- id: arrow-right
- unicode: f061
- created: 1.0
- filter:
- - next
- - forward
- categories:
- - Directional Icons
-
- - name: arrow-up
- id: arrow-up
- unicode: f062
- created: 1.0
- categories:
- - Directional Icons
-
- - name: arrow-down
- id: arrow-down
- unicode: f063
- created: 1.0
- filter:
- - download
- categories:
- - Directional Icons
-
- - name: Share
- id: share
- unicode: f064
- created: 1.0
- aliases:
- - mail-forward
- categories:
- - Web Application Icons
-
- - name: Expand
- id: expand
- unicode: f065
- created: 1.0
- filter:
- - enlarge
- - bigger
- - resize
- categories:
- - Video Player Icons
-
- - name: Compress
- id: compress
- unicode: f066
- created: 1.0
- filter:
- - collapse
- - combine
- - contract
- - merge
- - smaller
- categories:
- - Video Player Icons
-
- - name: plus
- id: plus
- unicode: f067
- created: 1.0
- filter:
- - add
- - new
- - create
- - expand
- categories:
- - Web Application Icons
-
- - name: minus
- id: minus
- unicode: f068
- created: 1.0
- filter:
- - hide
- - minify
- - delete
- - remove
- - trash
- - hide
- - collapse
- categories:
- - Web Application Icons
-
- - name: asterisk
- id: asterisk
- unicode: f069
- created: 1.0
- filter:
- - details
- categories:
- - Web Application Icons
-
- - name: Exclamation Circle
- id: exclamation-circle
- unicode: f06a
- created: 1.0
- filter:
- - warning
- - error
- - problem
- - notification
- - alert
- categories:
- - Web Application Icons
-
- - name: gift
- id: gift
- unicode: f06b
- created: 1.0
- filter:
- - present
- categories:
- - Web Application Icons
-
- - name: leaf
- id: leaf
- unicode: f06c
- created: 1.0
- filter:
- - eco
- - nature
- - plant
- categories:
- - Web Application Icons
-
- - name: fire
- id: fire
- unicode: f06d
- created: 1.0
- filter:
- - flame
- - hot
- - popular
- categories:
- - Web Application Icons
-
- - name: Eye
- id: eye
- unicode: f06e
- created: 1.0
- filter:
- - show
- - visible
- - views
- categories:
- - Web Application Icons
-
-
- - name: Eye Slash
- id: eye-slash
- unicode: f070
- created: 1.0
- filter:
- - toggle
- - show
- - hide
- - visible
- - visiblity
- - views
- categories:
- - Web Application Icons
-
- - name: Exclamation Triangle
- id: exclamation-triangle
- unicode: f071
- created: 1.0
- filter:
- - warning
- - error
- - problem
- - notification
- - alert
- aliases:
- - warning
- categories:
- - Web Application Icons
-
- - name: plane
- id: plane
- unicode: f072
- created: 1.0
- filter:
- - travel
- - trip
- - location
- - destination
- - airplane
- - fly
- - mode
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: calendar
- id: calendar
- unicode: f073
- created: 1.0
- filter:
- - date
- - time
- - when
- - event
- categories:
- - Web Application Icons
-
- - name: random
- id: random
- unicode: f074
- created: 1.0
- filter:
- - sort
- - shuffle
- categories:
- - Web Application Icons
- - Video Player Icons
-
- - name: comment
- id: comment
- unicode: f075
- created: 1.0
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: magnet
- id: magnet
- unicode: f076
- created: 1.0
- categories:
- - Web Application Icons
-
- - name: chevron-up
- id: chevron-up
- unicode: f077
- created: 1.0
- categories:
- - Directional Icons
-
- - name: chevron-down
- id: chevron-down
- unicode: f078
- created: 1.0
- categories:
- - Directional Icons
-
- - name: retweet
- id: retweet
- unicode: f079
- created: 1.0
- filter:
- - refresh
- - reload
- - share
- categories:
- - Web Application Icons
-
- - name: shopping-cart
- id: shopping-cart
- unicode: f07a
- created: 1.0
- filter:
- - checkout
- - buy
- - purchase
- - payment
- categories:
- - Web Application Icons
-
- - name: Folder
- id: folder
- unicode: f07b
- created: 1.0
- categories:
- - Web Application Icons
-
- - name: Folder Open
- id: folder-open
- unicode: f07c
- created: 1.0
- categories:
- - Web Application Icons
-
- - name: Arrows Vertical
- id: arrows-v
- unicode: f07d
- created: 1.0
- filter:
- - resize
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Arrows Horizontal
- id: arrows-h
- unicode: f07e
- created: 1.0
- filter:
- - resize
- categories:
- - Web Application Icons
- - Directional Icons
-
-
- - name: Bar Chart
- id: bar-chart
- unicode: f080
- created: 1.0
- aliases:
- - bar-chart-o
- filter:
- - graph
- - analytics
- categories:
- - Web Application Icons
- - Chart Icons
-
- - name: Twitter Square
- id: twitter-square
- unicode: f081
- created: 1.0
- filter:
- - tweet
- - social network
- categories:
- - Brand Icons
-
- - name: Facebook Square
- id: facebook-square
- unicode: f082
- created: 1.0
- filter:
- - social network
- categories:
- - Brand Icons
-
- - name: camera-retro
- id: camera-retro
- unicode: f083
- created: 1.0
- filter:
- - photo
- - picture
- - record
- categories:
- - Web Application Icons
-
- - name: key
- id: key
- unicode: f084
- created: 1.0
- filter:
- - unlock
- - password
- categories:
- - Web Application Icons
-
- - name: cogs
- id: cogs
- unicode: f085
- created: 1.0
- aliases:
- - gears
- filter:
- - settings
- categories:
- - Web Application Icons
-
- - name: comments
- id: comments
- unicode: f086
- created: 1.0
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: Thumbs Up Outlined
- id: thumbs-o-up
- unicode: f087
- created: 1.0
- filter:
- - like
- - approve
- - favorite
- - agree
- - hand
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Thumbs Down Outlined
- id: thumbs-o-down
- unicode: f088
- created: 1.0
- filter:
- - dislike
- - disapprove
- - disagree
- - hand
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: star-half
- id: star-half
- unicode: f089
- created: 1.0
- filter:
- - award
- - achievement
- - rating
- - score
- categories:
- - Web Application Icons
-
- - name: Heart Outlined
- id: heart-o
- unicode: f08a
- created: 1.0
- filter:
- - love
- - like
- - favorite
- categories:
- - Web Application Icons
- - Medical Icons
-
- - name: Sign Out
- id: sign-out
- unicode: f08b
- created: 1.0
- filter:
- - log out
- - logout
- - leave
- - exit
- - arrow
- categories:
- - Web Application Icons
-
- - name: LinkedIn Square
- id: linkedin-square
- unicode: f08c
- created: 1.0
- categories:
- - Brand Icons
-
- - name: Thumb Tack
- id: thumb-tack
- unicode: f08d
- created: 1.0
- filter:
- - marker
- - pin
- - location
- - coordinates
- categories:
- - Web Application Icons
-
- - name: External Link
- id: external-link
- unicode: f08e
- created: 1.0
- filter:
- - open
- - new
- categories:
- - Web Application Icons
-
-
- - name: Sign In
- id: sign-in
- unicode: f090
- created: 1.0
- filter:
- - enter
- - join
- - log in
- - login
- - sign up
- - sign in
- - signin
- - signup
- - arrow
- categories:
- - Web Application Icons
-
- - name: trophy
- id: trophy
- unicode: f091
- created: 1.0
- filter:
- - award
- - achievement
- - cup
- - winner
- - game
- categories:
- - Web Application Icons
-
- - name: GitHub Square
- id: github-square
- unicode: f092
- created: 1.0
- url: github.com/logos
- filter:
- - octocat
- categories:
- - Brand Icons
-
- - name: Upload
- id: upload
- unicode: f093
- created: 1.0
- filter:
- - import
- categories:
- - Web Application Icons
-
- - name: Lemon Outlined
- id: lemon-o
- unicode: f094
- created: 1.0
- filter:
- - food
- categories:
- - Web Application Icons
-
- - name: Phone
- id: phone
- unicode: f095
- created: 2.0
- filter:
- - call
- - voice
- - number
- - support
- - earphone
- - telephone
- categories:
- - Web Application Icons
-
- - name: Square Outlined
- id: square-o
- unicode: f096
- created: 2.0
- filter:
- - block
- - square
- - box
- categories:
- - Web Application Icons
- - Form Control Icons
-
-
- - name: Bookmark Outlined
- id: bookmark-o
- unicode: f097
- created: 2.0
- filter:
- - save
- categories:
- - Web Application Icons
-
- - name: Phone Square
- id: phone-square
- unicode: f098
- created: 2.0
- filter:
- - call
- - voice
- - number
- - support
- - telephone
- categories:
- - Web Application Icons
-
- - name: Twitter
- id: twitter
- unicode: f099
- created: 2.0
- filter:
- - tweet
- - social network
- categories:
- - Brand Icons
-
- - name: Facebook
- id: facebook
- unicode: f09a
- created: 2.0
- aliases:
- - facebook-f
- filter:
- - social network
- categories:
- - Brand Icons
-
- - name: GitHub
- id: github
- unicode: f09b
- created: 2.0
- url: github.com/logos
- filter:
- - octocat
- categories:
- - Brand Icons
-
- - name: unlock
- id: unlock
- unicode: f09c
- created: 2.0
- filter:
- - protect
- - admin
- - password
- - lock
- categories:
- - Web Application Icons
-
- - name: credit-card
- id: credit-card
- unicode: f09d
- created: 2.0
- filter:
- - money
- - buy
- - debit
- - checkout
- - purchase
- - payment
- categories:
- - Web Application Icons
- - Payment Icons
-
- - name: rss
- id: rss
- unicode: f09e
- created: 2.0
- filter:
- - blog
- aliases:
- - feed
- categories:
- - Web Application Icons
-
-
- - name: HDD
- id: hdd-o
- unicode: f0a0
- created: 2.0
- filter:
- - harddrive
- - hard drive
- - storage
- - save
- categories:
- - Web Application Icons
-
- - name: bullhorn
- id: bullhorn
- unicode: f0a1
- created: 2.0
- filter:
- - announcement
- - share
- - broadcast
- - louder
- - megaphone
- categories:
- - Web Application Icons
-
- - name: bell
- id: bell
- unicode: f0f3
- created: 2.0
- filter:
- - alert
- - reminder
- - notification
- categories:
- - Web Application Icons
-
- - name: certificate
- id: certificate
- unicode: f0a3
- created: 2.0
- filter:
- - badge
- - star
- categories:
- - Web Application Icons
-
- - name: Hand Outlined Right
- id: hand-o-right
- unicode: f0a4
- created: 2.0
- filter:
- - point
- - right
- - next
- - forward
- - finger
- categories:
- - Directional Icons
- - Hand Icons
-
- - name: Hand Outlined Left
- id: hand-o-left
- unicode: f0a5
- created: 2.0
- filter:
- - point
- - left
- - previous
- - back
- - finger
- categories:
- - Directional Icons
- - Hand Icons
-
- - name: Hand Outlined Up
- id: hand-o-up
- unicode: f0a6
- created: 2.0
- filter:
- - point
- - finger
- categories:
- - Directional Icons
- - Hand Icons
-
- - name: Hand Outlined Down
- id: hand-o-down
- unicode: f0a7
- created: 2.0
- filter:
- - point
- - finger
- categories:
- - Directional Icons
- - Hand Icons
-
- - name: Arrow Circle Left
- id: arrow-circle-left
- unicode: f0a8
- created: 2.0
- filter:
- - previous
- - back
- categories:
- - Directional Icons
-
- - name: Arrow Circle Right
- id: arrow-circle-right
- unicode: f0a9
- created: 2.0
- filter:
- - next
- - forward
- categories:
- - Directional Icons
-
- - name: Arrow Circle Up
- id: arrow-circle-up
- unicode: f0aa
- created: 2.0
- categories:
- - Directional Icons
-
- - name: Arrow Circle Down
- id: arrow-circle-down
- unicode: f0ab
- created: 2.0
- filter:
- - download
- categories:
- - Directional Icons
-
- - name: Globe
- id: globe
- unicode: f0ac
- created: 2.0
- filter:
- - world
- - planet
- - map
- - place
- - travel
- - earth
- - global
- - translate
- - all
- - language
- - localize
- - location
- - coordinates
- - country
- categories:
- - Web Application Icons
-
- - name: Wrench
- id: wrench
- unicode: f0ad
- created: 2.0
- filter:
- - settings
- - fix
- - update
- - spanner
- categories:
- - Web Application Icons
-
- - name: Tasks
- id: tasks
- unicode: f0ae
- created: 2.0
- filter:
- - progress
- - loading
- - downloading
- - downloads
- - settings
- categories:
- - Web Application Icons
-
-
- - name: Filter
- id: filter
- unicode: f0b0
- created: 2.0
- filter:
- - funnel
- - options
- categories:
- - Web Application Icons
-
- - name: Briefcase
- id: briefcase
- unicode: f0b1
- created: 2.0
- filter:
- - work
- - business
- - office
- - luggage
- - bag
- categories:
- - Web Application Icons
-
- - name: Arrows Alt
- id: arrows-alt
- unicode: f0b2
- created: 2.0
- filter:
- - expand
- - enlarge
- - fullscreen
- - bigger
- - move
- - reorder
- - resize
- - arrow
- categories:
- - Video Player Icons
- - Directional Icons
-
-
- - name: Users
- id: users
- unicode: f0c0
- created: 2.0
- filter:
- - people
- - profiles
- - persons
- aliases:
- - group
- categories:
- - Web Application Icons
-
- - name: Link
- id: link
- unicode: f0c1
- created: 2.0
- filter:
- - chain
- aliases:
- - chain
- categories:
- - Text Editor Icons
-
- - name: Cloud
- id: cloud
- filter:
- - save
- unicode: f0c2
- created: 2.0
- categories:
- - Web Application Icons
-
- - name: Flask
- id: flask
- unicode: f0c3
- created: 2.0
- filter:
- - science
- - beaker
- - experimental
- - labs
- categories:
- - Web Application Icons
-
- - name: Scissors
- id: scissors
- unicode: f0c4
- created: 2.0
- aliases:
- - cut
- categories:
- - Text Editor Icons
-
- - name: Files Outlined
- id: files-o
- unicode: f0c5
- created: 2.0
- filter:
- - duplicate
- - clone
- - copy
- aliases:
- - copy
- categories:
- - Text Editor Icons
-
- - name: Paperclip
- id: paperclip
- unicode: f0c6
- created: 2.0
- filter:
- - attachment
- categories:
- - Text Editor Icons
-
- - name: Floppy Outlined
- id: floppy-o
- unicode: f0c7
- created: 2.0
- aliases:
- - save
- categories:
- - Text Editor Icons
-
- - name: Square
- id: square
- unicode: f0c8
- created: 2.0
- filter:
- - block
- - box
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Bars
- id: bars
- unicode: f0c9
- created: 2.0
- aliases:
- - navicon
- - reorder
- filter:
- - menu
- - drag
- - reorder
- - settings
- - list
- - ul
- - ol
- - checklist
- - todo
- - list
- - hamburger
- categories:
- - Web Application Icons
-
- - name: list-ul
- id: list-ul
- unicode: f0ca
- created: 2.0
- filter:
- - ul
- - ol
- - checklist
- - todo
- - list
- categories:
- - Text Editor Icons
-
- - name: list-ol
- id: list-ol
- unicode: f0cb
- created: 2.0
- filter:
- - ul
- - ol
- - checklist
- - list
- - todo
- - list
- - numbers
- categories:
- - Text Editor Icons
-
- - name: Strikethrough
- id: strikethrough
- unicode: f0cc
- created: 2.0
- categories:
- - Text Editor Icons
-
- - name: Underline
- id: underline
- unicode: f0cd
- created: 2.0
- categories:
- - Text Editor Icons
-
- - name: table
- id: table
- unicode: f0ce
- created: 2.0
- filter:
- - data
- - excel
- - spreadsheet
- categories:
- - Text Editor Icons
-
-
- - name: magic
- id: magic
- unicode: f0d0
- created: 2.0
- filter:
- - wizard
- - automatic
- - autocomplete
- categories:
- - Web Application Icons
-
- - name: truck
- id: truck
- unicode: f0d1
- created: 2.0
- filter:
- - shipping
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Pinterest
- id: pinterest
- unicode: f0d2
- created: 2.0
- categories:
- - Brand Icons
-
- - name: Pinterest Square
- id: pinterest-square
- unicode: f0d3
- created: 2.0
- categories:
- - Brand Icons
-
- - name: Google Plus Square
- id: google-plus-square
- unicode: f0d4
- created: 2.0
- filter:
- - social network
- categories:
- - Brand Icons
-
- - name: Google Plus
- id: google-plus
- unicode: f0d5
- created: 2.0
- filter:
- - social network
- categories:
- - Brand Icons
-
- - name: Money
- id: money
- unicode: f0d6
- created: 2.0
- filter:
- - cash
- - money
- - buy
- - checkout
- - purchase
- - payment
- categories:
- - Web Application Icons
- - Currency Icons
-
- - name: Caret Down
- id: caret-down
- unicode: f0d7
- created: 2.0
- filter:
- - more
- - dropdown
- - menu
- - triangle down
- - arrow
- categories:
- - Directional Icons
-
- - name: Caret Up
- id: caret-up
- unicode: f0d8
- created: 2.0
- filter:
- - triangle up
- - arrow
- categories:
- - Directional Icons
-
- - name: Caret Left
- id: caret-left
- unicode: f0d9
- created: 2.0
- filter:
- - previous
- - back
- - triangle left
- - arrow
- categories:
- - Directional Icons
-
- - name: Caret Right
- id: caret-right
- unicode: f0da
- created: 2.0
- filter:
- - next
- - forward
- - triangle right
- - arrow
- categories:
- - Directional Icons
-
- - name: Columns
- id: columns
- unicode: f0db
- created: 2.0
- filter:
- - split
- - panes
- categories:
- - Text Editor Icons
-
- - name: Sort
- id: sort
- unicode: f0dc
- created: 2.0
- filter:
- - order
- aliases:
- - unsorted
- categories:
- - Web Application Icons
-
- - name: Sort Descending
- id: sort-desc
- unicode: f0dd
- created: 2.0
- filter:
- - dropdown
- - more
- - menu
- - arrow
- aliases:
- - sort-down
- categories:
- - Web Application Icons
-
- - name: Sort Ascending
- id: sort-asc
- unicode: f0de
- created: 2.0
- aliases:
- - sort-up
- filter:
- - arrow
- categories:
- - Web Application Icons
-
-
- - name: Envelope
- id: envelope
- unicode: f0e0
- created: 2.0
- filter:
- - email
- - e-mail
- - letter
- - support
- - mail
- - notification
- categories:
- - Web Application Icons
-
- - name: LinkedIn
- id: linkedin
- unicode: f0e1
- created: 2.0
- categories:
- - Brand Icons
-
-
- - name: Undo
- id: undo
- unicode: f0e2
- created: 2.0
- filter:
- - back
- aliases:
- - rotate-left
- categories:
- - Text Editor Icons
-
- - name: Gavel
- id: gavel
- unicode: f0e3
- created: 2.0
- label:
- - judge
- - lawyer
- - opinion
- aliases:
- - legal
- categories:
- - Web Application Icons
-
- - name: Tachometer
- id: tachometer
- unicode: f0e4
- created: 2.0
- label:
- - speedometer
- - fast
- aliases:
- - dashboard
- categories:
- - Web Application Icons
-
- - name: comment-o
- id: comment-o
- unicode: f0e5
- created: 2.0
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: comments-o
- id: comments-o
- unicode: f0e6
- created: 2.0
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: Lightning Bolt
- id: bolt
- unicode: f0e7
- created: 2.0
- filter:
- - lightning
- - weather
- aliases:
- - flash
- categories:
- - Web Application Icons
-
- - name: Sitemap
- id: sitemap
- unicode: f0e8
- created: 2.0
- filter:
- - directory
- - hierarchy
- - organization
- categories:
- - Web Application Icons
-
- - name: Umbrella
- id: umbrella
- unicode: f0e9
- created: 2.0
- categories:
- - Web Application Icons
-
- - name: Clipboard
- id: clipboard
- unicode: f0ea
- created: 2.0
- filter:
- - copy
- aliases:
- - paste
- categories:
- - Text Editor Icons
-
- - name: Lightbulb Outlined
- id: lightbulb-o
- unicode: f0eb
- created: 3.0
- filter:
- - idea
- - inspiration
- categories:
- - Web Application Icons
-
- - name: Exchange
- id: exchange
- unicode: f0ec
- created: 3.0
- filter:
- - transfer
- - arrows
- - arrow
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Cloud Download
- id: cloud-download
- unicode: f0ed
- created: 3.0
- filter:
- - import
- categories:
- - Web Application Icons
-
- - name: Cloud Upload
- id: cloud-upload
- unicode: f0ee
- created: 3.0
- filter:
- - import
- categories:
- - Web Application Icons
-
-
- - name: user-md
- id: user-md
- unicode: f0f0
- created: 2.0
- filter:
- - doctor
- - profile
- - medical
- - nurse
- categories:
- - Medical Icons
-
- - name: Stethoscope
- id: stethoscope
- unicode: f0f1
- created: 3.0
- categories:
- - Medical Icons
-
- - name: Suitcase
- id: suitcase
- unicode: f0f2
- created: 3.0
- filter:
- - trip
- - luggage
- - travel
- - move
- - baggage
- categories:
- - Web Application Icons
-
- - name: Bell Outlined
- id: bell-o
- unicode: f0a2
- created: 3.0
- filter:
- - alert
- - reminder
- - notification
- categories:
- - Web Application Icons
-
- - name: Coffee
- id: coffee
- unicode: f0f4
- created: 3.0
- filter:
- - morning
- - mug
- - breakfast
- - tea
- - drink
- - cafe
- categories:
- - Web Application Icons
-
- - name: Cutlery
- id: cutlery
- unicode: f0f5
- created: 3.0
- filter:
- - food
- - restaurant
- - spoon
- - knife
- - dinner
- - eat
- categories:
- - Web Application Icons
-
- - name: File Text Outlined
- id: file-text-o
- unicode: f0f6
- created: 3.0
- filter:
- - new
- - page
- - pdf
- - document
- categories:
- - Text Editor Icons
- - File Type Icons
-
- - name: Building Outlined
- id: building-o
- unicode: f0f7
- created: 3.0
- filter:
- - work
- - business
- - apartment
- - office
- - company
- categories:
- - Web Application Icons
-
- - name: hospital Outlined
- id: hospital-o
- unicode: f0f8
- created: 3.0
- filter:
- - building
- categories:
- - Medical Icons
-
- - name: ambulance
- id: ambulance
- unicode: f0f9
- created: 3.0
- filter:
- - vehicle
- - support
- - help
- categories:
- - Medical Icons
- - Transportation Icons
-
- - name: medkit
- id: medkit
- unicode: f0fa
- created: 3.0
- filter:
- - first aid
- - firstaid
- - help
- - support
- - health
- categories:
- - Medical Icons
-
- - name: fighter-jet
- id: fighter-jet
- unicode: f0fb
- created: 3.0
- filter:
- - fly
- - plane
- - airplane
- - quick
- - fast
- - travel
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: beer
- id: beer
- unicode: f0fc
- created: 3.0
- filter:
- - alcohol
- - stein
- - drink
- - mug
- - bar
- - liquor
- categories:
- - Web Application Icons
-
- - name: H Square
- id: h-square
- unicode: f0fd
- created: 3.0
- filter:
- - hospital
- - hotel
- categories:
- - Medical Icons
-
- - name: Plus Square
- id: plus-square
- unicode: f0fe
- created: 3.0
- filter:
- - add
- - new
- - create
- - expand
- categories:
- - Medical Icons
- - Web Application Icons
- - Form Control Icons
-
-
- - name: Angle Double Left
- id: angle-double-left
- unicode: f100
- created: 3.0
- filter:
- - laquo
- - quote
- - previous
- - back
- - arrows
- categories:
- - Directional Icons
-
- - name: Angle Double Right
- id: angle-double-right
- unicode: f101
- created: 3.0
- filter:
- - raquo
- - quote
- - next
- - forward
- - arrows
- categories:
- - Directional Icons
-
- - name: Angle Double Up
- id: angle-double-up
- unicode: f102
- created: 3.0
- filter:
- - arrows
- categories:
- - Directional Icons
-
- - name: Angle Double Down
- id: angle-double-down
- unicode: f103
- created: 3.0
- filter:
- - arrows
- categories:
- - Directional Icons
-
- - name: angle-left
- id: angle-left
- unicode: f104
- created: 3.0
- filter:
- - previous
- - back
- - arrow
- categories:
- - Directional Icons
-
- - name: angle-right
- id: angle-right
- unicode: f105
- created: 3.0
- filter:
- - next
- - forward
- - arrow
- categories:
- - Directional Icons
-
- - name: angle-up
- id: angle-up
- unicode: f106
- created: 3.0
- filter:
- - arrow
- categories:
- - Directional Icons
-
- - name: angle-down
- id: angle-down
- unicode: f107
- created: 3.0
- filter:
- - arrow
- categories:
- - Directional Icons
-
- - name: Desktop
- id: desktop
- unicode: f108
- created: 3.0
- filter:
- - monitor
- - screen
- - desktop
- - computer
- - demo
- - device
- categories:
- - Web Application Icons
-
- - name: Laptop
- id: laptop
- unicode: f109
- created: 3.0
- filter:
- - demo
- - computer
- - device
- categories:
- - Web Application Icons
-
- - name: tablet
- id: tablet
- unicode: f10a
- created: 3.0
- filter:
- - ipad
- - device
- categories:
- - Web Application Icons
-
- - name: Mobile Phone
- id: mobile
- unicode: f10b
- created: 3.0
- filter:
- - cell phone
- - cellphone
- - text
- - call
- - iphone
- - number
- - telephone
- aliases:
- - mobile-phone
- categories:
- - Web Application Icons
-
- - name: Circle Outlined
- id: circle-o
- unicode: f10c
- created: 3.0
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: quote-left
- id: quote-left
- unicode: f10d
- created: 3.0
- categories:
- - Web Application Icons
-
- - name: quote-right
- id: quote-right
- unicode: f10e
- created: 3.0
- categories:
- - Web Application Icons
-
-
- - name: Spinner
- id: spinner
- unicode: f110
- created: 3.0
- filter:
- - loading
- - progress
- categories:
- - Web Application Icons
- - Spinner Icons
-
- - name: Circle
- id: circle
- unicode: f111
- created: 3.0
- filter:
- - dot
- - notification
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Reply
- id: reply
- unicode: f112
- created: 3.0
- aliases:
- - mail-reply
- categories:
- - Web Application Icons
-
- - name: GitHub Alt
- id: github-alt
- unicode: f113
- created: 3.0
- url: github.com/logos
- filter:
- - octocat
- categories:
- - Brand Icons
-
- - name: Folder Outlined
- id: folder-o
- unicode: f114
- created: 3.0
- categories:
- - Web Application Icons
-
- - name: Folder Open Outlined
- id: folder-open-o
- unicode: f115
- created: 3.0
- categories:
- - Web Application Icons
-
- - name: Smile Outlined
- id: smile-o
- unicode: f118
- created: 3.1
- filter:
- - face
- - emoticon
- - happy
- - approve
- - satisfied
- - rating
- categories:
- - Web Application Icons
-
- - name: Frown Outlined
- id: frown-o
- unicode: f119
- created: 3.1
- filter:
- - face
- - emoticon
- - sad
- - disapprove
- - rating
- categories:
- - Web Application Icons
-
- - name: Meh Outlined
- id: meh-o
- unicode: f11a
- created: 3.1
- filter:
- - face
- - emoticon
- - rating
- - neutral
- categories:
- - Web Application Icons
-
- - name: Gamepad
- id: gamepad
- unicode: f11b
- created: 3.1
- filter:
- - controller
- categories:
- - Web Application Icons
-
- - name: Keyboard Outlined
- id: keyboard-o
- unicode: f11c
- created: 3.1
- filter:
- - type
- - input
- categories:
- - Web Application Icons
-
- - name: Flag Outlined
- id: flag-o
- unicode: f11d
- created: 3.1
- filter:
- - report
- - notification
- categories:
- - Web Application Icons
-
- - name: flag-checkered
- id: flag-checkered
- unicode: f11e
- created: 3.1
- filter:
- - report
- - notification
- - notify
- categories:
- - Web Application Icons
-
-
- - name: Terminal
- id: terminal
- unicode: f120
- created: 3.1
- filter:
- - command
- - prompt
- - code
- categories:
- - Web Application Icons
-
- - name: Code
- id: code
- unicode: f121
- created: 3.1
- filter:
- - html
- - brackets
- categories:
- - Web Application Icons
-
- - name: reply-all
- id: reply-all
- unicode: f122
- created: 3.1
- aliases:
- - mail-reply-all
- categories:
- - Web Application Icons
-
- - name: Star Half Outlined
- id: star-half-o
- unicode: f123
- created: 3.1
- filter:
- - award
- - achievement
- - rating
- - score
- aliases:
- - star-half-empty
- - star-half-full
- categories:
- - Web Application Icons
-
- - name: location-arrow
- id: location-arrow
- unicode: f124
- created: 3.1
- filter:
- - map
- - coordinates
- - location
- - address
- - place
- - where
- categories:
- - Web Application Icons
-
- - name: crop
- id: crop
- unicode: f125
- created: 3.1
- categories:
- - Web Application Icons
-
- - name: code-fork
- id: code-fork
- unicode: f126
- created: 3.1
- filter:
- - git
- - fork
- - vcs
- - svn
- - github
- - rebase
- - version
- - merge
- categories:
- - Web Application Icons
-
- - name: Chain Broken
- id: chain-broken
- unicode: f127
- created: 3.1
- filter:
- - remove
- aliases:
- - unlink
- categories:
- - Text Editor Icons
-
- - name: Question
- id: question
- unicode: f128
- created: 3.1
- filter:
- - help
- - information
- - unknown
- - support
- categories:
- - Web Application Icons
-
- - name: Info
- id: info
- unicode: f129
- created: 3.1
- filter:
- - help
- - information
- - more
- - details
- categories:
- - Web Application Icons
-
- - name: exclamation
- id: exclamation
- unicode: f12a
- created: 3.1
- filter:
- - warning
- - error
- - problem
- - notification
- - notify
- - alert
- categories:
- - Web Application Icons
-
- - name: superscript
- id: superscript
- unicode: f12b
- created: 3.1
- filter:
- - exponential
- categories:
- - Text Editor Icons
-
- - name: subscript
- id: subscript
- unicode: f12c
- created: 3.1
- categories:
- - Text Editor Icons
-
- - name: eraser
- id: eraser
- unicode: f12d
- created: 3.1
- filter:
- - remove
- - delete
- categories:
- - Text Editor Icons
- - Web Application Icons
-
- - name: Puzzle Piece
- id: puzzle-piece
- unicode: f12e
- created: 3.1
- filter:
- - addon
- - add-on
- - section
- categories:
- - Web Application Icons
-
-
- - name: microphone
- id: microphone
- unicode: f130
- created: 3.1
- filter:
- - record
- - voice
- - sound
- categories:
- - Web Application Icons
-
- - name: Microphone Slash
- id: microphone-slash
- unicode: f131
- created: 3.1
- filter:
- - record
- - voice
- - sound
- - mute
- categories:
- - Web Application Icons
-
- - name: shield
- id: shield
- unicode: f132
- created: 3.1
- filter:
- - award
- - achievement
- - security
- - winner
- categories:
- - Web Application Icons
-
- - name: calendar-o
- id: calendar-o
- unicode: f133
- created: 3.1
- filter:
- - date
- - time
- - when
- - event
- categories:
- - Web Application Icons
-
- - name: fire-extinguisher
- id: fire-extinguisher
- unicode: f134
- created: 3.1
- categories:
- - Web Application Icons
-
- - name: rocket
- id: rocket
- unicode: f135
- created: 3.1
- filter:
- - app
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: MaxCDN
- id: maxcdn
- unicode: f136
- created: 3.1
- categories:
- - Brand Icons
-
- - name: Chevron Circle Left
- id: chevron-circle-left
- unicode: f137
- created: 3.1
- filter:
- - previous
- - back
- - arrow
- categories:
- - Directional Icons
-
- - name: Chevron Circle Right
- id: chevron-circle-right
- unicode: f138
- created: 3.1
- filter:
- - next
- - forward
- - arrow
- categories:
- - Directional Icons
-
- - name: Chevron Circle Up
- id: chevron-circle-up
- unicode: f139
- created: 3.1
- filter:
- - arrow
- categories:
- - Directional Icons
-
- - name: Chevron Circle Down
- id: chevron-circle-down
- unicode: f13a
- created: 3.1
- filter:
- - more
- - dropdown
- - menu
- - arrow
- categories:
- - Directional Icons
-
- - name: HTML 5 Logo
- id: html5
- unicode: f13b
- created: 3.1
- code:
- - code
- - html5
- categories:
- - Brand Icons
-
- - name: CSS 3 Logo
- id: css3
- unicode: f13c
- created: 3.1
- filter:
- - code
- categories:
- - Brand Icons
-
- - name: Anchor
- id: anchor
- unicode: f13d
- created: 3.1
- filter:
- - link
- categories:
- - Web Application Icons
-
- - name: Unlock Alt
- id: unlock-alt
- unicode: f13e
- created: 3.1
- filter:
- - protect
- - admin
- - password
- - lock
- categories:
- - Web Application Icons
-
-
- - name: Bullseye
- id: bullseye
- unicode: f140
- created: 3.1
- filter:
- - target
- categories:
- - Web Application Icons
-
- - name: Ellipsis Horizontal
- id: ellipsis-h
- unicode: f141
- created: 3.1
- filter:
- - dots
- categories:
- - Web Application Icons
-
- - name: Ellipsis Vertical
- id: ellipsis-v
- unicode: f142
- created: 3.1
- filter:
- - dots
- categories:
- - Web Application Icons
-
- - name: RSS Square
- id: rss-square
- unicode: f143
- created: 3.1
- filter:
- - feed
- - blog
- categories:
- - Web Application Icons
-
- - name: Play Circle
- id: play-circle
- unicode: f144
- created: 3.1
- filter:
- - start
- - playing
- categories:
- - Video Player Icons
-
- - name: Ticket
- id: ticket
- unicode: f145
- created: 3.1
- filter:
- - movie
- - pass
- - support
- categories:
- - Web Application Icons
-
- - name: Minus Square
- id: minus-square
- unicode: f146
- created: 3.1
- filter:
- - hide
- - minify
- - delete
- - remove
- - trash
- - hide
- - collapse
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Minus Square Outlined
- id: minus-square-o
- unicode: f147
- created: 3.1
- filter:
- - hide
- - minify
- - delete
- - remove
- - trash
- - hide
- - collapse
- categories:
- - Web Application Icons
- - Form Control Icons
-
-
- - name: Level Up
- id: level-up
- unicode: f148
- created: 3.1
- filter:
- - arrow
- categories:
- - Web Application Icons
-
- - name: Level Down
- id: level-down
- unicode: f149
- created: 3.1
- filter:
- - arrow
- categories:
- - Web Application Icons
-
- - name: Check Square
- id: check-square
- unicode: f14a
- created: 3.1
- filter:
- - checkmark
- - done
- - todo
- - agree
- - accept
- - confirm
- - ok
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Pencil Square
- id: pencil-square
- unicode: f14b
- created: 3.1
- filter:
- - write
- - edit
- - update
- categories:
- - Web Application Icons
-
- - name: External Link Square
- id: external-link-square
- unicode: f14c
- created: 3.1
- filter:
- - open
- - new
- categories:
- - Web Application Icons
-
- - name: Share Square
- id: share-square
- unicode: f14d
- created: 3.1
- filter:
- - social
- - send
- categories:
- - Web Application Icons
-
- - name: Compass
- id: compass
- unicode: f14e
- created: 3.2
- filter:
- - safari
- - directory
- - menu
- - location
- categories:
- - Web Application Icons
-
-
- - name: Caret Square Outlined Down
- id: caret-square-o-down
- unicode: f150
- created: 3.2
- aliases:
- - toggle-down
- filter:
- - more
- - dropdown
- - menu
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Caret Square Outlined Up
- id: caret-square-o-up
- unicode: f151
- created: 3.2
- aliases:
- - toggle-up
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Caret Square Outlined Right
- id: caret-square-o-right
- unicode: f152
- created: 3.2
- filter:
- - next
- - forward
- aliases:
- - toggle-right
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Euro (EUR)
- id: eur
- unicode: f153
- created: 3.2
- aliases:
- - euro
- categories:
- - Currency Icons
-
- - name: GBP
- id: gbp
- unicode: f154
- created: 3.2
- categories:
- - Currency Icons
-
- - name: US Dollar
- id: usd
- unicode: f155
- created: 3.2
- aliases:
- - dollar
- categories:
- - Currency Icons
-
- - name: Indian Rupee (INR)
- id: inr
- unicode: f156
- created: 3.2
- aliases:
- - rupee
- categories:
- - Currency Icons
-
- - name: Japanese Yen (JPY)
- id: jpy
- unicode: f157
- created: 3.2
- aliases:
- - cny
- - rmb
- - yen
- categories:
- - Currency Icons
-
- - name: Russian Ruble (RUB)
- id: rub
- unicode: f158
- created: 4.0
- aliases:
- - ruble
- - rouble
- categories:
- - Currency Icons
-
- - name: Korean Won (KRW)
- id: krw
- unicode: f159
- created: 3.2
- aliases:
- - won
- categories:
- - Currency Icons
-
- - name: Bitcoin (BTC)
- id: btc
- unicode: f15a
- created: 3.2
- aliases:
- - bitcoin
- categories:
- - Currency Icons
- - Brand Icons
-
- - name: File
- id: file
- unicode: f15b
- created: 3.2
- filter:
- - new
- - page
- - pdf
- - document
- categories:
- - Text Editor Icons
- - File Type Icons
-
- - name: File Text
- id: file-text
- unicode: f15c
- created: 3.2
- filter:
- - new
- - page
- - pdf
- - document
- categories:
- - Text Editor Icons
- - File Type Icons
-
- - name: Sort Alpha Ascending
- id: sort-alpha-asc
- unicode: f15d
- created: 3.2
- categories:
- - Web Application Icons
-
- - name: Sort Alpha Descending
- id: sort-alpha-desc
- unicode: f15e
- created: 3.2
- categories:
- - Web Application Icons
-
-
- - name: Sort Amount Ascending
- id: sort-amount-asc
- unicode: f160
- created: 3.2
- categories:
- - Web Application Icons
-
- - name: Sort Amount Descending
- id: sort-amount-desc
- unicode: f161
- created: 3.2
- categories:
- - Web Application Icons
-
- - name: Sort Numeric Ascending
- id: sort-numeric-asc
- unicode: f162
- created: 3.2
- filter:
- - numbers
- categories:
- - Web Application Icons
-
- - name: Sort Numeric Descending
- id: sort-numeric-desc
- unicode: f163
- created: 3.2
- filter:
- - numbers
- categories:
- - Web Application Icons
-
-
- - name: thumbs-up
- id: thumbs-up
- unicode: f164
- created: 3.2
- filter:
- - like
- - favorite
- - approve
- - agree
- - hand
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: thumbs-down
- id: thumbs-down
- unicode: f165
- created: 3.2
- filter:
- - dislike
- - disapprove
- - disagree
- - hand
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: YouTube Square
- id: youtube-square
- unicode: f166
- created: 3.2
- filter:
- - video
- - film
- categories:
- - Brand Icons
-
- - name: YouTube
- id: youtube
- unicode: f167
- created: 3.2
- filter:
- - video
- - film
- categories:
- - Brand Icons
-
- - name: Xing
- id: xing
- unicode: f168
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Xing Square
- id: xing-square
- unicode: f169
- created: 3.2
- categories:
- - Brand Icons
-
- - name: YouTube Play
- id: youtube-play
- unicode: f16a
- created: 3.2
- filter:
- - start
- - playing
- categories:
- - Brand Icons
- - Video Player Icons
-
- - name: Dropbox
- id: dropbox
- unicode: f16b
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Stack Overflow
- id: stack-overflow
- unicode: f16c
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Instagram
- id: instagram
- unicode: f16d
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Flickr
- id: flickr
- unicode: f16e
- created: 3.2
- categories:
- - Brand Icons
-
- - name: App.net
- id: adn
- unicode: f170
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Bitbucket
- id: bitbucket
- unicode: f171
- created: 3.2
- filter:
- - git
- categories:
- - Brand Icons
-
- - name: Bitbucket Square
- id: bitbucket-square
- unicode: f172
- created: 3.2
- filter:
- - git
- categories:
- - Brand Icons
-
- - name: Tumblr
- id: tumblr
- unicode: f173
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Tumblr Square
- id: tumblr-square
- unicode: f174
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Long Arrow Down
- id: long-arrow-down
- unicode: f175
- created: 3.2
- categories:
- - Directional Icons
-
- - name: Long Arrow Up
- id: long-arrow-up
- unicode: f176
- created: 3.2
- categories:
- - Directional Icons
-
- - name: Long Arrow Left
- id: long-arrow-left
- unicode: f177
- created: 3.2
- filter:
- - previous
- - back
- categories:
- - Directional Icons
-
- - name: Long Arrow Right
- id: long-arrow-right
- unicode: f178
- created: 3.2
- categories:
- - Directional Icons
-
- - name: Apple
- id: apple
- unicode: f179
- created: 3.2
- filter:
- - osx
- - food
- categories:
- - Brand Icons
-
- - name: Windows
- id: windows
- unicode: f17a
- created: 3.2
- filter:
- - microsoft
- categories:
- - Brand Icons
-
- - name: Android
- id: android
- unicode: f17b
- created: 3.2
- filter:
- - robot
- categories:
- - Brand Icons
-
- - name: Linux
- id: linux
- unicode: f17c
- created: 3.2
- filter:
- - tux
- categories:
- - Brand Icons
-
- - name: Dribbble
- id: dribbble
- unicode: f17d
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Skype
- id: skype
- unicode: f17e
- created: 3.2
- categories:
- - Brand Icons
-
-
- - name: Foursquare
- id: foursquare
- unicode: f180
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Trello
- id: trello
- unicode: f181
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Female
- id: female
- unicode: f182
- created: 3.2
- filter:
- - woman
- - user
- - person
- - profile
- categories:
- - Web Application Icons
-
- - name: Male
- id: male
- unicode: f183
- created: 3.2
- filter:
- - man
- - user
- - person
- - profile
- categories:
- - Web Application Icons
-
- - name: Gratipay (Gittip)
- id: gratipay
- unicode: f184
- created: 3.2
- aliases:
- - gittip
- filter:
- - heart
- - like
- - favorite
- - love
- categories:
- - Brand Icons
-
- - name: Sun Outlined
- id: sun-o
- unicode: f185
- created: 3.2
- filter:
- - weather
- - contrast
- - lighter
- - brighten
- - day
- categories:
- - Web Application Icons
-
- - name: Moon Outlined
- id: moon-o
- unicode: f186
- created: 3.2
- filter:
- - night
- - darker
- - contrast
- categories:
- - Web Application Icons
-
- - name: Archive
- id: archive
- unicode: f187
- created: 3.2
- filter:
- - box
- - storage
- categories:
- - Web Application Icons
-
- - name: Bug
- id: bug
- unicode: f188
- created: 3.2
- filter:
- - report
- - insect
- categories:
- - Web Application Icons
-
- - name: VK
- id: vk
- unicode: f189
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Weibo
- id: weibo
- unicode: f18a
- created: 3.2
- categories:
- - Brand Icons
-
- - name: Renren
- id: renren
- unicode: f18b
- created: 3.2
- categories:
- - Brand Icons
-
-
- - name: Pagelines
- id: pagelines
- unicode: f18c
- created: 4.0
- filter:
- - leaf
- - leaves
- - tree
- - plant
- - eco
- - nature
- categories:
- - Brand Icons
-
- - name: Stack Exchange
- id: stack-exchange
- unicode: f18d
- created: 4.0
- categories:
- - Brand Icons
-
- - name: Arrow Circle Outlined Right
- id: arrow-circle-o-right
- unicode: f18e
- created: 4.0
- filter:
- - next
- - forward
- categories:
- - Directional Icons
-
-
- - name: Arrow Circle Outlined Left
- id: arrow-circle-o-left
- unicode: f190
- created: 4.0
- filter:
- - previous
- - back
- categories:
- - Directional Icons
-
- - name: Caret Square Outlined Left
- id: caret-square-o-left
- unicode: f191
- created: 4.0
- filter:
- - previous
- - back
- aliases:
- - toggle-left
- categories:
- - Web Application Icons
- - Directional Icons
-
- - name: Dot Circle Outlined
- id: dot-circle-o
- unicode: f192
- created: 4.0
- filter:
- - target
- - bullseye
- - notification
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Wheelchair
- id: wheelchair
- unicode: f193
- created: 4.0
- filter:
- - handicap
- - person
- categories:
- - Web Application Icons
- - Medical Icons
- - Transportation Icons
- - Accessibility Icons
-
- - name: Vimeo Square
- id: vimeo-square
- unicode: f194
- created: 4.0
- categories:
- - Brand Icons
-
- - name: Turkish Lira (TRY)
- id: try
- unicode: f195
- created: 4.0
- aliases:
- - turkish-lira
- categories:
- - Currency Icons
-
- - name: Plus Square Outlined
- id: plus-square-o
- unicode: f196
- created: 4.0
- filter:
- - add
- - new
- - create
- - expand
- categories:
- - Web Application Icons
- - Form Control Icons
-
- - name: Space Shuttle
- id: space-shuttle
- unicode: f197
- created: 4.1
- filter:
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Slack Logo
- id: slack
- unicode: f198
- created: 4.1
- filter:
- - hashtag
- - anchor
- - hash
- categories:
- - Brand Icons
-
- - name: Envelope Square
- id: envelope-square
- unicode: f199
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: WordPress Logo
- id: wordpress
- unicode: f19a
- created: 4.1
- categories:
- - Brand Icons
-
- - name: OpenID
- id: openid
- unicode: f19b
- created: 4.1
- categories:
- - Brand Icons
-
- - name: University
- id: university
- unicode: f19c
- created: 4.1
- aliases:
- - institution
- - bank
- categories:
- - Web Application Icons
-
- - name: Graduation Cap
- id: graduation-cap
- unicode: f19d
- created: 4.1
- aliases:
- - mortar-board
- filter:
- - learning
- - school
- - student
- categories:
- - Web Application Icons
-
- - name: Yahoo Logo
- id: yahoo
- unicode: f19e
- created: 4.1
- categories:
- - Brand Icons
-
-
- - name: Google Logo
- id: google
- unicode: f1a0
- created: 4.1
- categories:
- - Brand Icons
-
- - name: reddit Logo
- id: reddit
- unicode: f1a1
- created: 4.1
- categories:
- - Brand Icons
-
- - name: reddit Square
- id: reddit-square
- unicode: f1a2
- created: 4.1
- categories:
- - Brand Icons
-
- - name: StumbleUpon Circle
- id: stumbleupon-circle
- unicode: f1a3
- created: 4.1
- categories:
- - Brand Icons
-
- - name: StumbleUpon Logo
- id: stumbleupon
- unicode: f1a4
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Delicious Logo
- id: delicious
- unicode: f1a5
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Digg Logo
- id: digg
- unicode: f1a6
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Pied Piper PP Logo (Old)
- id: pied-piper-pp
- unicode: f1a7
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Pied Piper Alternate Logo
- id: pied-piper-alt
- unicode: f1a8
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Drupal Logo
- id: drupal
- unicode: f1a9
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Joomla Logo
- id: joomla
- unicode: f1aa
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Language
- id: language
- unicode: f1ab
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Fax
- id: fax
- unicode: f1ac
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Building
- id: building
- unicode: f1ad
- created: 4.1
- filter:
- - work
- - business
- - apartment
- - office
- - company
- categories:
- - Web Application Icons
-
- - name: Child
- id: child
- unicode: f1ae
- created: 4.1
- categories:
- - Web Application Icons
-
-
- - name: Paw
- id: paw
- unicode: f1b0
- created: 4.1
- filter:
- - pet
- categories:
- - Web Application Icons
-
- - name: spoon
- id: spoon
- unicode: f1b1
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Cube
- id: cube
- unicode: f1b2
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Cubes
- id: cubes
- unicode: f1b3
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Behance
- id: behance
- unicode: f1b4
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Behance Square
- id: behance-square
- unicode: f1b5
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Steam
- id: steam
- unicode: f1b6
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Steam Square
- id: steam-square
- unicode: f1b7
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Recycle
- id: recycle
- unicode: f1b8
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Car
- id: car
- unicode: f1b9
- created: 4.1
- aliases:
- - automobile
- filter:
- - vehicle
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Taxi
- id: taxi
- unicode: f1ba
- created: 4.1
- aliases:
- - cab
- filter:
- - vehicle
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Tree
- id: tree
- unicode: f1bb
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Spotify
- id: spotify
- unicode: f1bc
- created: 4.1
- categories:
- - Brand Icons
-
- - name: deviantART
- id: deviantart
- unicode: f1bd
- created: 4.1
- categories:
- - Brand Icons
-
- - name: SoundCloud
- id: soundcloud
- unicode: f1be
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Database
- id: database
- unicode: f1c0
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: PDF File Outlined
- id: file-pdf-o
- unicode: f1c1
- created: 4.1
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Word File Outlined
- id: file-word-o
- unicode: f1c2
- created: 4.1
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Excel File Outlined
- id: file-excel-o
- unicode: f1c3
- created: 4.1
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Powerpoint File Outlined
- id: file-powerpoint-o
- unicode: f1c4
- created: 4.1
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Image File Outlined
- id: file-image-o
- unicode: f1c5
- created: 4.1
- aliases:
- - file-photo-o
- - file-picture-o
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Archive File Outlined
- id: file-archive-o
- unicode: f1c6
- created: 4.1
- aliases:
- - file-zip-o
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Audio File Outlined
- id: file-audio-o
- unicode: f1c7
- created: 4.1
- aliases:
- - file-sound-o
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Video File Outlined
- id: file-video-o
- unicode: f1c8
- created: 4.1
- aliases:
- - file-movie-o
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Code File Outlined
- id: file-code-o
- unicode: f1c9
- created: 4.1
- categories:
- - Web Application Icons
- - File Type Icons
-
- - name: Vine
- id: vine
- unicode: f1ca
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Codepen
- id: codepen
- unicode: f1cb
- created: 4.1
- categories:
- - Brand Icons
-
- - name: jsFiddle
- id: jsfiddle
- unicode: f1cc
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Life Ring
- id: life-ring
- unicode: f1cd
- created: 4.1
- aliases:
- - life-bouy # TODO: Deprecated - remove in 5.0.0
- - life-buoy
- - life-saver
- - support
- categories:
- - Web Application Icons
-
- - name: Circle Outlined Notched
- id: circle-o-notch
- unicode: f1ce
- created: 4.1
- categories:
- - Web Application Icons
- - Spinner Icons
-
-
- - name: Rebel Alliance
- id: rebel
- unicode: f1d0
- created: 4.1
- aliases:
- - ra
- - resistance
- categories:
- - Brand Icons
-
- - name: Galactic Empire
- id: empire
- unicode: f1d1
- created: 4.1
- aliases:
- - ge
- categories:
- - Brand Icons
-
- - name: Git Square
- id: git-square
- unicode: f1d2
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Git
- id: git
- unicode: f1d3
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Hacker News
- id: hacker-news
- unicode: f1d4
- created: 4.1
- aliases:
- - y-combinator-square
- - yc-square
- categories:
- - Brand Icons
-
- - name: Tencent Weibo
- id: tencent-weibo
- unicode: f1d5
- created: 4.1
- categories:
- - Brand Icons
-
- - name: QQ
- id: qq
- unicode: f1d6
- created: 4.1
- categories:
- - Brand Icons
-
- - name: Weixin (WeChat)
- id: weixin
- unicode: f1d7
- created: 4.1
- aliases:
- - wechat
- categories:
- - Brand Icons
-
- - name: Paper Plane
- id: paper-plane
- unicode: f1d8
- created: 4.1
- aliases:
- - send
- categories:
- - Web Application Icons
-
- - name: Paper Plane Outlined
- id: paper-plane-o
- unicode: f1d9
- created: 4.1
- aliases:
- - send-o
- categories:
- - Web Application Icons
-
- - name: History
- id: history
- unicode: f1da
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Circle Outlined Thin
- id: circle-thin
- unicode: f1db
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: header
- id: header
- unicode: f1dc
- created: 4.1
- filter:
- - heading
- categories:
- - Text Editor Icons
-
- - name: paragraph
- id: paragraph
- unicode: f1dd
- created: 4.1
- categories:
- - Text Editor Icons
-
- - name: Sliders
- id: sliders
- unicode: f1de
- created: 4.1
- filter:
- - settings
- categories:
- - Web Application Icons
-
-
- - name: Share Alt
- id: share-alt
- unicode: f1e0
- created: 4.1
- categories:
- - Web Application Icons
- - Brand Icons
-
- - name: Share Alt Square
- id: share-alt-square
- unicode: f1e1
- created: 4.1
- categories:
- - Web Application Icons
- - Brand Icons
-
- - name: Bomb
- id: bomb
- unicode: f1e2
- created: 4.1
- categories:
- - Web Application Icons
-
- - name: Futbol Outlined
- id: futbol-o
- unicode: f1e3
- created: 4.2
- aliases:
- - soccer-ball-o
- categories:
- - Web Application Icons
-
- - name: TTY
- id: tty
- unicode: f1e4
- created: 4.2
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Binoculars
- id: binoculars
- unicode: f1e5
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Plug
- id: plug
- unicode: f1e6
- created: 4.2
- filter:
- - power
- - connect
- categories:
- - Web Application Icons
-
- - name: Slideshare
- id: slideshare
- unicode: f1e7
- created: 4.2
- categories:
- - Brand Icons
-
- - name: Twitch
- id: twitch
- unicode: f1e8
- created: 4.2
- categories:
- - Brand Icons
-
- - name: Yelp
- id: yelp
- unicode: f1e9
- created: 4.2
- categories:
- - Brand Icons
-
- - name: Newspaper Outlined
- id: newspaper-o
- unicode: f1ea
- created: 4.2
- filter:
- - press
- categories:
- - Web Application Icons
-
- - name: WiFi
- id: wifi
- unicode: f1eb
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Calculator
- id: calculator
- unicode: f1ec
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Paypal
- id: paypal
- unicode: f1ed
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Google Wallet
- id: google-wallet
- unicode: f1ee
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
-
- - name: Visa Credit Card
- id: cc-visa
- unicode: f1f0
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: MasterCard Credit Card
- id: cc-mastercard
- unicode: f1f1
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Discover Credit Card
- id: cc-discover
- unicode: f1f2
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: American Express Credit Card
- id: cc-amex
- unicode: f1f3
- created: 4.2
- filter:
- - amex
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Paypal Credit Card
- id: cc-paypal
- unicode: f1f4
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Stripe Credit Card
- id: cc-stripe
- unicode: f1f5
- created: 4.2
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Bell Slash
- id: bell-slash
- unicode: f1f6
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Bell Slash Outlined
- id: bell-slash-o
- unicode: f1f7
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Trash
- id: trash
- unicode: f1f8
- created: 4.2
- filter:
- - garbage
- - delete
- - remove
- - hide
- categories:
- - Web Application Icons
-
- - name: Copyright
- id: copyright
- unicode: f1f9
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: At
- id: at
- unicode: f1fa
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Eyedropper
- id: eyedropper
- unicode: f1fb
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Paint Brush
- id: paint-brush
- unicode: f1fc
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Birthday Cake
- id: birthday-cake
- unicode: f1fd
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Area Chart
- id: area-chart
- unicode: f1fe
- created: 4.2
- filter:
- - graph
- - analytics
- categories:
- - Web Application Icons
- - Chart Icons
-
- - name: Pie Chart
- id: pie-chart
- unicode: f200
- created: 4.2
- filter:
- - graph
- - analytics
- categories:
- - Web Application Icons
- - Chart Icons
-
- - name: Line Chart
- id: line-chart
- unicode: f201
- created: 4.2
- filter:
- - graph
- - analytics
- categories:
- - Web Application Icons
- - Chart Icons
-
- - name: last.fm
- id: lastfm
- unicode: f202
- created: 4.2
- categories:
- - Brand Icons
-
- - name: last.fm Square
- id: lastfm-square
- unicode: f203
- created: 4.2
- categories:
- - Brand Icons
-
- - name: Toggle Off
- id: toggle-off
- unicode: f204
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Toggle On
- id: toggle-on
- unicode: f205
- created: 4.2
- categories:
- - Web Application Icons
-
- - name: Bicycle
- id: bicycle
- unicode: f206
- created: 4.2
- filter:
- - vehicle
- - bike
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Bus
- id: bus
- unicode: f207
- created: 4.2
- filter:
- - vehicle
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: ioxhost
- id: ioxhost
- unicode: f208
- created: 4.2
- url: ioxhost.co.uk
- categories:
- - Brand Icons
-
- - name: AngelList
- id: angellist
- unicode: f209
- created: 4.2
- categories:
- - Brand Icons
-
- - name: Closed Captions
- id: cc
- unicode: f20a
- created: 4.2
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Shekel (ILS)
- id: ils
- unicode: f20b
- created: 4.2
- aliases:
- - shekel
- - sheqel
- categories:
- - Currency Icons
-
- - name: meanpath
- id: meanpath
- unicode: f20c
- created: 4.2
- url: meanpath.com
- categories:
- - Brand Icons
-
- - name: BuySellAds
- id: buysellads
- unicode: f20d
- created: 4.3
- url: buysellads.com
- categories:
- - Brand Icons
-
- - name: Connect Develop
- id: connectdevelop
- unicode: f20e
- created: 4.3
- url: connectdevelop.com
- categories:
- - Brand Icons
-
-
- - name: DashCube
- id: dashcube
- unicode: f210
- created: 4.3
- url: dashcube.com
- categories:
- - Brand Icons
-
- - name: Forumbee
- id: forumbee
- unicode: f211
- created: 4.3
- url: forumbee.com
- categories:
- - Brand Icons
-
- - name: Leanpub
- id: leanpub
- unicode: f212
- created: 4.3
- url: leanpub.com
- categories:
- - Brand Icons
-
- - name: Sellsy
- id: sellsy
- unicode: f213
- created: 4.3
- url: sellsy.com
- categories:
- - Brand Icons
-
- - name: Shirts in Bulk
- id: shirtsinbulk
- unicode: f214
- created: 4.3
- url: shirtsinbulk.com
- categories:
- - Brand Icons
-
- - name: SimplyBuilt
- id: simplybuilt
- unicode: f215
- created: 4.3
- url: simplybuilt.com
- categories:
- - Brand Icons
-
- - name: skyatlas
- id: skyatlas
- unicode: f216
- created: 4.3
- url: skyatlas.com
- categories:
- - Brand Icons
-
- - name: Add to Shopping Cart
- id: cart-plus
- unicode: f217
- created: 4.3
- filter:
- - add
- - shopping
- categories:
- - Web Application Icons
-
- - name: Shopping Cart Arrow Down
- id: cart-arrow-down
- unicode: f218
- created: 4.3
- filter:
- - shopping
- categories:
- - Web Application Icons
-
- - name: Diamond
- id: diamond
- unicode: f219
- created: 4.3
- filter:
- - gem
- - gemstone
- categories:
- - Web Application Icons
-
- - name: Ship
- id: ship
- unicode: f21a
- created: 4.3
- filter:
- - boat
- - sea
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: User Secret
- id: user-secret
- unicode: f21b
- created: 4.3
- filter:
- - whisper
- - spy
- - incognito
- - privacy
- categories:
- - Web Application Icons
-
- - name: Motorcycle
- id: motorcycle
- unicode: f21c
- created: 4.3
- filter:
- - vehicle
- - bike
- categories:
- - Web Application Icons
- - Transportation Icons
-
- - name: Street View
- id: street-view
- unicode: f21d
- created: 4.3
- filter:
- - map
- categories:
- - Web Application Icons
-
- - name: Heartbeat
- id: heartbeat
- unicode: f21e
- created: 4.3
- filter:
- - ekg
- categories:
- - Web Application Icons
- - Medical Icons
-
-
- - name: Venus
- id: venus
- unicode: f221
- created: 4.3
- filter:
- - female
- categories:
- - Gender Icons
-
- - name: Mars
- id: mars
- unicode: f222
- created: 4.3
- filter:
- - male
- categories:
- - Gender Icons
-
- - name: Mercury
- id: mercury
- unicode: f223
- created: 4.3
- filter:
- - transgender
- categories:
- - Gender Icons
-
- - name: Transgender
- id: transgender
- unicode: f224
- created: 4.3
- aliases:
- - intersex
- categories:
- - Gender Icons
-
- - name: Transgender Alt
- id: transgender-alt
- unicode: f225
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Venus Double
- id: venus-double
- unicode: f226
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Mars Double
- id: mars-double
- unicode: f227
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Venus Mars
- id: venus-mars
- unicode: f228
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Mars Stroke
- id: mars-stroke
- unicode: f229
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Mars Stroke Vertical
- id: mars-stroke-v
- unicode: f22a
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Mars Stroke Horizontal
- id: mars-stroke-h
- unicode: f22b
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Neuter
- id: neuter
- unicode: f22c
- created: 4.3
- categories:
- - Gender Icons
-
- - name: Genderless
- id: genderless
- unicode: f22d
- created: 4.4
- categories:
- - Gender Icons
-
-
- - name: Facebook Official
- id: facebook-official
- unicode: f230
- created: 4.3
- categories:
- - Brand Icons
-
- - name: Pinterest P
- id: pinterest-p
- unicode: f231
- created: 4.3
- categories:
- - Brand Icons
-
- - name: What's App
- id: whatsapp
- unicode: f232
- created: 4.3
- categories:
- - Brand Icons
-
- - name: Server
- id: server
- unicode: f233
- created: 4.3
- categories:
- - Web Application Icons
-
- - name: Add User
- id: user-plus
- unicode: f234
- created: 4.3
- filter:
- - sign up
- - signup
- categories:
- - Web Application Icons
-
- - name: Remove User
- id: user-times
- unicode: f235
- created: 4.3
- categories:
- - Web Application Icons
-
- - name: Bed
- id: bed
- unicode: f236
- created: 4.3
- filter:
- - travel
- aliases:
- - hotel
- categories:
- - Web Application Icons
-
- - name: Viacoin
- id: viacoin
- unicode: f237
- created: 4.3
- url: viacoin.org
- categories:
- - Brand Icons
-
- - name: Train
- id: train
- unicode: f238
- created: 4.3
- categories:
- - Transportation Icons
-
- - name: Subway
- id: subway
- unicode: f239
- created: 4.3
- categories:
- - Transportation Icons
-
- - name: Medium
- id: medium
- unicode: f23a
- created: 4.3
- categories:
- - Brand Icons
-
- - name: Y Combinator
- id: y-combinator
- unicode: f23b
- created: 4.4
- aliases:
- - yc
- categories:
- - Brand Icons
-
- - name: Optin Monster
- id: optin-monster
- unicode: f23c
- created: 4.4
- url: optinmonster.com
- categories:
- - Brand Icons
-
- - name: OpenCart
- id: opencart
- unicode: f23d
- created: 4.4
- url: opencart.com
- categories:
- - Brand Icons
-
- - name: ExpeditedSSL
- id: expeditedssl
- unicode: f23e
- created: 4.4
- categories:
- - Brand Icons
-
-
- - name: Battery Full
- id: battery-full
- unicode: f240
- created: 4.4
- aliases:
- - battery-4
- - battery
- filter:
- - power
- categories:
- - Web Application Icons
-
- - name: Battery 3/4 Full
- id: battery-three-quarters
- unicode: f241
- created: 4.4
- aliases:
- - battery-3
- filter:
- - power
- categories:
- - Web Application Icons
-
- - name: Battery 1/2 Full
- id: battery-half
- unicode: f242
- created: 4.4
- aliases:
- - battery-2
- filter:
- - power
- categories:
- - Web Application Icons
-
- - name: Battery 1/4 Full
- id: battery-quarter
- unicode: f243
- created: 4.4
- aliases:
- - battery-1
- filter:
- - power
- categories:
- - Web Application Icons
-
- - name: Battery Empty
- id: battery-empty
- unicode: f244
- created: 4.4
- aliases:
- - battery-0
- filter:
- - power
- categories:
- - Web Application Icons
-
- - name: Mouse Pointer
- id: mouse-pointer
- unicode: f245
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: I Beam Cursor
- id: i-cursor
- unicode: f246
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Object Group
- id: object-group
- unicode: f247
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Object Ungroup
- id: object-ungroup
- unicode: f248
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Sticky Note
- id: sticky-note
- unicode: f249
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Sticky Note Outlined
- id: sticky-note-o
- unicode: f24a
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: JCB Credit Card
- id: cc-jcb
- unicode: f24b
- created: 4.4
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Diner's Club Credit Card
- id: cc-diners-club
- unicode: f24c
- created: 4.4
- categories:
- - Brand Icons
- - Payment Icons
-
- - name: Clone
- id: clone
- unicode: f24d
- created: 4.4
- filter:
- - copy
- categories:
- - Web Application Icons
-
- - name: Balance Scale
- id: balance-scale
- unicode: f24e
- created: 4.4
- categories:
- - Web Application Icons
-
-
- - name: Hourglass Outlined
- id: hourglass-o
- unicode: f250
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Hourglass Start
- id: hourglass-start
- unicode: f251
- created: 4.4
- aliases:
- - hourglass-1
- categories:
- - Web Application Icons
-
- - name: Hourglass Half
- id: hourglass-half
- unicode: f252
- created: 4.4
- aliases:
- - hourglass-2
- categories:
- - Web Application Icons
-
- - name: Hourglass End
- id: hourglass-end
- unicode: f253
- created: 4.4
- aliases:
- - hourglass-3
- categories:
- - Web Application Icons
-
- - name: Hourglass
- id: hourglass
- unicode: f254
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Rock (Hand)
- id: hand-rock-o
- unicode: f255
- created: 4.4
- aliases:
- - hand-grab-o
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Paper (Hand)
- id: hand-paper-o
- unicode: f256
- created: 4.4
- aliases:
- - hand-stop-o
- filter:
- - stop
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Scissors (Hand)
- id: hand-scissors-o
- unicode: f257
- created: 4.4
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Lizard (Hand)
- id: hand-lizard-o
- unicode: f258
- created: 4.4
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Spock (Hand)
- id: hand-spock-o
- unicode: f259
- created: 4.4
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Hand Pointer
- id: hand-pointer-o
- unicode: f25a
- created: 4.4
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Hand Peace
- id: hand-peace-o
- unicode: f25b
- created: 4.4
- categories:
- - Web Application Icons
- - Hand Icons
-
- - name: Trademark
- id: trademark
- unicode: f25c
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Registered Trademark
- id: registered
- unicode: f25d
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Creative Commons
- id: creative-commons
- unicode: f25e
- created: 4.4
- categories:
- - Web Application Icons
-
-
- - name: GG Currency
- id: gg
- unicode: f260
- created: 4.4
- categories:
- - Currency Icons
- - Brand Icons
-
- - name: GG Currency Circle
- id: gg-circle
- unicode: f261
- created: 4.4
- categories:
- - Currency Icons
- - Brand Icons
-
- - name: TripAdvisor
- id: tripadvisor
- unicode: f262
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Odnoklassniki
- id: odnoklassniki
- unicode: f263
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Odnoklassniki Square
- id: odnoklassniki-square
- unicode: f264
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Get Pocket
- id: get-pocket
- unicode: f265
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Wikipedia W
- id: wikipedia-w
- unicode: f266
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Safari
- id: safari
- unicode: f267
- created: 4.4
- filter:
- - browser
- categories:
- - Brand Icons
-
- - name: Chrome
- id: chrome
- unicode: f268
- created: 4.4
- filter:
- - browser
- categories:
- - Brand Icons
-
- - name: Firefox
- id: firefox
- unicode: f269
- created: 4.4
- filter:
- - browser
- categories:
- - Brand Icons
-
- - name: Opera
- id: opera
- unicode: f26a
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Internet-explorer
- id: internet-explorer
- unicode: f26b
- created: 4.4
- filter:
- - browser
- - ie
- categories:
- - Brand Icons
-
- - name: Television
- id: television
- unicode: f26c
- created: 4.4
- aliases:
- - tv
- filter:
- - display
- - computer
- - monitor
- categories:
- - Web Application Icons
-
- - name: Contao
- id: contao
- unicode: f26d
- created: 4.4
- categories:
- - Brand Icons
-
- - name: 500px
- id: 500px
- unicode: f26e
- created: 4.4
- categories:
- - Brand Icons
-
-
- - name: Amazon
- id: amazon
- unicode: f270
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Calendar Plus Outlined
- id: calendar-plus-o
- unicode: f271
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Calendar Minus Outlined
- id: calendar-minus-o
- unicode: f272
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Calendar Times Outlined
- id: calendar-times-o
- unicode: f273
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Calendar Check Outlined
- id: calendar-check-o
- unicode: f274
- created: 4.4
- filter:
- - ok
- categories:
- - Web Application Icons
-
- - name: Industry
- id: industry
- unicode: f275
- created: 4.4
- filter:
- - factory
- categories:
- - Web Application Icons
-
- - name: Map Pin
- id: map-pin
- unicode: f276
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Map Signs
- id: map-signs
- unicode: f277
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Map Outlined
- id: map-o
- unicode: f278
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Map
- id: map
- unicode: f279
- created: 4.4
- categories:
- - Web Application Icons
-
- - name: Commenting
- id: commenting
- unicode: f27a
- created: 4.4
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: Commenting Outlined
- id: commenting-o
- unicode: f27b
- created: 4.4
- filter:
- - speech
- - notification
- - note
- - chat
- - bubble
- - feedback
- - message
- - texting
- - sms
- - conversation
- categories:
- - Web Application Icons
-
- - name: Houzz
- id: houzz
- unicode: f27c
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Vimeo
- id: vimeo
- unicode: f27d
- created: 4.4
- categories:
- - Brand Icons
-
- - name: Font Awesome Black Tie
- id: black-tie
- unicode: f27e
- created: 4.4
- url: blacktie.io
- categories:
- - Brand Icons
-
-
- - name: Fonticons
- id: fonticons
- unicode: f280
- created: 4.4
- url: fonticons.com
- categories:
- - Brand Icons
-
- - name: reddit Alien
- id: reddit-alien
- unicode: f281
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Edge Browser
- id: edge
- unicode: f282
- created: 4.5
- filter:
- - browser
- - ie
- categories:
- - Brand Icons
-
- - name: Credit Card
- id: credit-card-alt
- unicode: f283
- created: 4.5
- filter:
- - money
- - buy
- - debit
- - checkout
- - purchase
- - payment
- - credit card
- categories:
- - Payment Icons
- - Web Application Icons
-
- - name: Codie Pie
- id: codiepie
- unicode: f284
- created: 4.5
- url: codiepie.com
- categories:
- - Brand Icons
-
- - name: MODX
- id: modx
- unicode: f285
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Fort Awesome
- id: fort-awesome
- unicode: f286
- created: 4.5
- url: fortawesome.com
- categories:
- - Brand Icons
-
- - name: USB
- id: usb
- unicode: f287
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Product Hunt
- id: product-hunt
- unicode: f288
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Mixcloud
- id: mixcloud
- unicode: f289
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Scribd
- id: scribd
- unicode: f28a
- created: 4.5
- categories:
- - Brand Icons
-
- - name: Pause Circle
- id: pause-circle
- unicode: f28b
- created: 4.5
- categories:
- - Video Player Icons
-
- - name: Pause Circle Outlined
- id: pause-circle-o
- unicode: f28c
- created: 4.5
- categories:
- - Video Player Icons
-
- - name: Stop Circle
- id: stop-circle
- unicode: f28d
- created: 4.5
- categories:
- - Video Player Icons
-
- - name: Stop Circle Outlined
- id: stop-circle-o
- unicode: f28e
- created: 4.5
- categories:
- - Video Player Icons
-
-
- - name: Shopping Bag
- id: shopping-bag
- unicode: f290
- created: 4.5
- categories:
- - Web Application Icons
-
- - name: Shopping Basket
- id: shopping-basket
- unicode: f291
- created: 4.5
- categories:
- - Web Application Icons
-
- - name: Hashtag
- id: hashtag
- unicode: f292
- created: 4.5
- categories:
- - Web Application Icons
-
- - name: Bluetooth
- id: bluetooth
- unicode: f293
- created: 4.5
- categories:
- - Web Application Icons
- - Brand Icons
-
- - name: Bluetooth
- id: bluetooth-b
- unicode: f294
- created: 4.5
- categories:
- - Web Application Icons
- - Brand Icons
-
- - name: Percent
- id: percent
- unicode: f295
- created: 4.5
- categories:
- - Web Application Icons
-
-
- - name: GitLab
- id: gitlab
- unicode: f296
- created: 4.6
- url: gitlab.com
- categories:
- - Brand Icons
-
- - name: WPBeginner
- id: wpbeginner
- unicode: f297
- created: 4.6
- url: wpbeginner.com
- categories:
- - Brand Icons
-
- - name: WPForms
- id: wpforms
- unicode: f298
- created: 4.6
- url: wpforms.com
- categories:
- - Brand Icons
-
- - name: Envira Gallery
- id: envira
- unicode: f299
- created: 4.6
- url: enviragallery.com
- filter:
- - leaf
- categories:
- - Brand Icons
-
- - name: Universal Access
- id: universal-access
- unicode: f29a
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Wheelchair Alt
- id: wheelchair-alt
- unicode: f29b
- created: 4.6
- filter:
- - handicap
- - person
- categories:
- - Web Application Icons
- - Medical Icons
- - Transportation Icons
- - Accessibility Icons
-
- - name: Question Circle Outlined
- id: question-circle-o
- unicode: f29c
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Blind
- id: blind
- unicode: f29d
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Audio Description
- id: audio-description
- unicode: f29e
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
-
- - name: Volume Control Phone
- id: volume-control-phone
- unicode: f2a0
- created: 4.6
- filter:
- - telephone
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Braille
- id: braille
- unicode: f2a1
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Assistive Listening Systems
- id: assistive-listening-systems
- unicode: f2a2
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: American Sign Language Interpreting
- id: american-sign-language-interpreting
- unicode: f2a3
- created: 4.6
- aliases:
- - asl-interpreting
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Deaf
- id: deaf
- unicode: f2a4
- created: 4.6
- aliases:
- - deafness
- - hard-of-hearing
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Glide
- id: glide
- unicode: f2a5
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Glide G
- id: glide-g
- unicode: f2a6
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Sign Language
- id: sign-language
- unicode: f2a7
- created: 4.6
- aliases:
- - signing
- categories:
- - Web Application Icons
- - Accessibility Icons
-
-
- - name: Low Vision
- id: low-vision
- unicode: f2a8
- created: 4.6
- categories:
- - Web Application Icons
- - Accessibility Icons
-
- - name: Viadeo
- id: viadeo
- unicode: f2a9
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Viadeo Square
- id: viadeo-square
- unicode: f2aa
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Snapchat
- id: snapchat
- unicode: f2ab
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Snapchat Ghost
- id: snapchat-ghost
- unicode: f2ac
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Snapchat Square
- id: snapchat-square
- unicode: f2ad
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Pied Piper Logo
- id: pied-piper
- unicode: f2ae
- created: 4.6
- categories:
- - Brand Icons
-
-
- - name: First Order
- id: first-order
- unicode: f2b0
- created: 4.6
- categories:
- - Brand Icons
-
- - name: Yoast
- id: yoast
- unicode: f2b1
- created: 4.6
- url: yoast.com
- categories:
- - Brand Icons
-
- - name: ThemeIsle
- id: themeisle
- unicode: f2b2
- created: 4.6
- url: themeisle.com
- categories:
- - Brand Icons
-
- - name: Google Plus Official
- id: google-plus-official
- unicode: f2b3
- created: 4.6
- aliases:
- - google-plus-circle
- categories:
- - Brand Icons
-
- - name: Font Awesome
- id: font-awesome
- unicode: f2b4
- created: 4.6
- aliases:
- - fa
- categories:
- - Brand Icons
-
- - name: Handshake Outlined
- id: handshake-o
- unicode: f2b5
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Envelope Open
- id: envelope-open
- unicode: f2b6
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Envelope Open Outlined
- id: envelope-open-o
- unicode: f2b7
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Linode
- id: linode
- unicode: f2b8
- created: 4.7
- url: linode.com
- categories:
- - Brand Icons
-
- - name: Address Book
- id: address-book
- unicode: f2b9
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Address Book Outlined
- id: address-book-o
- unicode: f2ba
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Address Card
- id: address-card
- unicode: f2bb
- created: 4.7
- aliases:
- - vcard
- categories:
- - Web Application Icons
-
- - name: Address Card Outlined
- id: address-card-o
- unicode: f2bc
- created: 4.7
- aliases:
- - vcard-o
- categories:
- - Web Application Icons
-
- - name: User Circle
- id: user-circle
- unicode: f2bd
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: User Circle Outlined
- id: user-circle-o
- unicode: f2be
- created: 4.7
- categories:
- - Web Application Icons
-
-
- - name: User Outlined
- id: user-o
- unicode: f2c0
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Identification Badge
- id: id-badge
- unicode: f2c1
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Identification Card
- id: id-card
- unicode: f2c2
- created: 4.7
- aliases:
- - drivers-license
- categories:
- - Web Application Icons
-
- - name: Identification Card Outlined
- id: id-card-o
- unicode: f2c3
- created: 4.7
- aliases:
- - drivers-license-o
- categories:
- - Web Application Icons
-
- - name: Quora
- id: quora
- unicode: f2c4
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Free Code Camp
- id: free-code-camp
- unicode: f2c5
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Telegram
- id: telegram
- unicode: f2c6
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Thermometer Full
- id: thermometer-full
- unicode: f2c7
- created: 4.7
- aliases:
- - thermometer-4
- - thermometer
- categories:
- - Web Application Icons
-
- - name: Thermometer 3/4 Full
- id: thermometer-three-quarters
- unicode: f2c8
- created: 4.7
- aliases:
- - thermometer-3
- categories:
- - Web Application Icons
-
- - name: Thermometer 1/2 Full
- id: thermometer-half
- unicode: f2c9
- created: 4.7
- aliases:
- - thermometer-2
- categories:
- - Web Application Icons
-
- - name: Thermometer 1/4 Full
- id: thermometer-quarter
- unicode: f2ca
- created: 4.7
- aliases:
- - thermometer-1
- categories:
- - Web Application Icons
-
- - name: Thermometer Empty
- id: thermometer-empty
- unicode: f2cb
- created: 4.7
- aliases:
- - thermometer-0
- categories:
- - Web Application Icons
-
- - name: Shower
- id: shower
- unicode: f2cc
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Bath
- id: bath
- unicode: f2cd
- created: 4.7
- aliases:
- - bathtub
- - s15
- categories:
- - Web Application Icons
-
- - name: Podcast
- id: podcast
- unicode: f2ce
- created: 4.7
- categories:
- - Web Application Icons
-
-
- - name: Window Maximize
- id: window-maximize
- unicode: f2d0
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Window Minimize
- id: window-minimize
- unicode: f2d1
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Window Restore
- id: window-restore
- unicode: f2d2
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Window Close
- id: window-close
- unicode: f2d3
- created: 4.7
- aliases:
- - times-rectangle
- categories:
- - Web Application Icons
-
- - name: Window Close Outline
- id: window-close-o
- unicode: f2d4
- created: 4.7
- aliases:
- - times-rectangle-o
- categories:
- - Web Application Icons
-
- - name: Bandcamp
- id: bandcamp
- unicode: f2d5
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Grav
- id: grav
- unicode: f2d6
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Etsy
- id: etsy
- unicode: f2d7
- created: 4.7
- categories:
- - Brand Icons
-
- - name: IMDB
- id: imdb
- unicode: f2d8
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Ravelry
- id: ravelry
- unicode: f2d9
- created: 4.7
- categories:
- - Brand Icons
-
- - name: Eercast
- id: eercast
- unicode: f2da
- created: 4.7
- url: eercast.com
- categories:
- - Brand Icons
-
- - name: Microchip
- id: microchip
- unicode: f2db
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Snowflake Outlined
- id: snowflake-o
- unicode: f2dc
- created: 4.7
- categories:
- - Web Application Icons
-
- - name: Superpowers
- id: superpowers
- unicode: f2dd
- created: 4.7
- url: superpowers.io
- categories:
- - Brand Icons
-
- - name: WPExplorer
- id: wpexplorer
- unicode: f2de
- created: 4.7
- url: wpexplorer.com
- categories:
- - Brand Icons
-
-
- - name: Meetup
- id: meetup
- unicode: f2e0
- created: 4.7
- categories:
- - Brand Icons
diff --git a/lib/additionals.rb b/lib/additionals.rb
index 915fa976..a660e4e1 100644
--- a/lib/additionals.rb
+++ b/lib/additionals.rb
@@ -52,14 +52,6 @@ module Additionals
'settings.yml'))).result) || {}
data.symbolize_keys
end
-
- def load_fontawesome_icons
- data = YAML.safe_load(ERB.new(IO.read(Rails.root.join('plugins',
- 'additionals',
- 'config',
- 'fontawesome_icons.yml'))).result) || {}
- data['icons']
- end
end
end
@@ -104,6 +96,12 @@ if ActiveRecord::Base.connection.table_exists?(:settings)
reddit slideshare tradingview twitter user vimeo youtube])
end
+ Rails.application.config.after_initialize do
+ FONTAWESOME_ICONS = { fab: AdditionalsFontAwesome.load_icons(:fab),
+ far: AdditionalsFontAwesome.load_icons(:far),
+ fas: AdditionalsFontAwesome.load_icons(:fas) }.freeze
+ end
+
# include deface overwrites
Rails.application.paths['app/overrides'] ||= []
additionals_overwrite_dir = "#{Redmine::Plugin.directory}/additionals/app/overrides".freeze
diff --git a/lib/additionals/helpers.rb b/lib/additionals/helpers.rb
index 0c910019..16e7eca9 100644
--- a/lib/additionals/helpers.rb
+++ b/lib/additionals/helpers.rb
@@ -260,7 +260,7 @@ module Additionals
end
def additionals_load_font_awesome
- additionals_include_css('font-awesome.min')
+ additionals_include_css('fontawesome-all.min')
end
def additionals_load_angular_gantt
@@ -314,13 +314,6 @@ module Additionals
additionals_include_js('zeroclipboard_min')
end
- def font_awesome_get_from_info
- s = []
- s << l(:label_set_icon_from)
- s << link_to('http://fontawesome.io/icons/', 'http://fontawesome.io/icons/', class: 'external')
- safe_join(s, ' ')
- end
-
def user_with_avatar(user, options = {})
return if user.nil?
options[:size] = 14 if options[:size].nil?
@@ -335,21 +328,31 @@ module Additionals
safe_join(s)
end
- # obsolete, because it conflicts with redmine_bootstrap_kit
- def fa_icon(name, options = {})
- font_awesome_icon(name, options)
+ def fontawesome_info_url
+ s = []
+ s << l(:label_set_icon_from)
+ s << link_to('https://fontawesome.com/icons?m=free', 'https://fontawesome.com/icons?m=free', class: 'external')
+ safe_join(s, ' ')
end
+ # name = TYPE-FA_NAME, eg. fas-car
+ # fas-cloud_upload_alt
+ # far-id_card
+ # fab-font_awesome
+ # options = class
+ # pre_text
+ # post_text
+ # title
def font_awesome_icon(name, options = {})
+ info = AdditionalsFontAwesome.value_info(name)
+ return '' if info.blank?
post_text = ''
- classes = ['fa']
- classes << name
options['aria-hidden'] = 'true'
options[:class] = if options[:class].present?
- classes.join(' ') + ' ' + options[:class]
+ info[:classes] + ' ' + options[:class]
else
- classes.join(' ')
+ info[:classes]
end
s = []
diff --git a/lib/additionals/wiki_macros/reddit_macro.rb b/lib/additionals/wiki_macros/reddit_macro.rb
index 8d324a88..ddb487db 100644
--- a/lib/additionals/wiki_macros/reddit_macro.rb
+++ b/lib/additionals/wiki_macros/reddit_macro.rb
@@ -12,18 +12,18 @@ module Additionals
case name[0..1]
when 'r/'
- link_to(font_awesome_icon('fa-reddit', post_text: name),
+ link_to(font_awesome_icon('fab-reddit', post_text: name),
"https://www.reddit.com/#{name}",
class: 'external reddit',
title: l(:label_reddit_subject))
when 'u/'
- link_to(font_awesome_icon('fa-reddit-square', post_text: name),
+ link_to(font_awesome_icon('fab-reddit_square', post_text: name),
"https://www.reddit.com/username/#{name[2..-1]}",
class: 'external reddit',
title: l(:label_reddit_user_account))
else
name = 'r/' + name
- link_to(font_awesome_icon('fa-reddit', post_text: name),
+ link_to(font_awesome_icon('fab-reddit', post_text: name),
"https://www.reddit.com/#{name}",
class: 'external reddit',
title: l(:label_reddit_subject))
diff --git a/lib/additionals/wiki_macros/twitter_macro.rb b/lib/additionals/wiki_macros/twitter_macro.rb
index 0787bfaa..3000c39a 100644
--- a/lib/additionals/wiki_macros/twitter_macro.rb
+++ b/lib/additionals/wiki_macros/twitter_macro.rb
@@ -11,17 +11,17 @@ module Additionals
name = args[0].strip
case name[0]
when '@'
- link_to(font_awesome_icon('fa-twitter', post_text: name),
+ link_to(font_awesome_icon('fab-twitter', post_text: name),
"https://twitter.com/#{name[1..-1]}",
class: 'external twitter',
title: l(:label_twitter_account))
when '#'
- link_to(font_awesome_icon('fa-twitter-square', post_text: name),
+ link_to(font_awesome_icon('fab-twitter_square', post_text: name),
"https://twitter.com/hashtag/#{name[1..-1]}",
class: 'external twitter',
title: l(:label_twitter_hashtag))
else
- link_to(font_awesome_icon('fa-twitter', post_text: " @#{name}"),
+ link_to(font_awesome_icon('fab-twitter', post_text: " @#{name}"),
"https://twitter.com/#{name}",
class: 'external twitter',
title: l(:label_twitter_account))
diff --git a/test/unit/additionals_fontawesome_test.rb b/test/unit/additionals_fontawesome_test.rb
new file mode 100644
index 00000000..076a1180
--- /dev/null
+++ b/test/unit/additionals_fontawesome_test.rb
@@ -0,0 +1,69 @@
+require File.expand_path('../../test_helper', __FILE__)
+
+class AdditionalsFontAwesomeTest < ActiveSupport::TestCase
+ fixtures :projects, :users, :members, :member_roles, :roles,
+ :trackers, :projects_trackers,
+ :enabled_modules,
+ :issue_statuses, :issue_categories, :workflows,
+ :enumerations,
+ :issues, :journals, :journal_details,
+ :custom_fields, :custom_fields_projects, :custom_fields_trackers, :custom_values,
+ :time_entries
+
+ include Redmine::I18n
+
+ def setup
+ set_language_if_valid 'en'
+ end
+
+ def test_value_info_should_return_infos
+ info = AdditionalsFontAwesome.value_info('invalid')
+ assert_equal [], info
+
+ info = AdditionalsFontAwesome.value_info('fas-car')
+ assert info.key?(:name)
+ assert_equal 'fa-car', info[:name]
+ assert_equal :fas, info[:type]
+ assert_equal 'fas fa-car', info[:classes]
+ assert_not info.key?(:unicode)
+ end
+
+ def test_value_info_regular_icons
+ info = AdditionalsFontAwesome.value_info('far-address_book')
+ assert info.key?(:name)
+ assert_equal 'normal', info[:font_weight]
+ assert_equal 'Font Awesome\ 5 Free', info[:font_family]
+ end
+
+ def test_value_info_solid_icons
+ info = AdditionalsFontAwesome.value_info('fas-address_book')
+ assert info.key?(:name)
+ assert_equal 900, info[:font_weight]
+ assert_equal 'Font Awesome\ 5 Free', info[:font_family]
+ end
+
+ def test_value_info_brands_icons
+ info = AdditionalsFontAwesome.value_info('fab-xing')
+ assert info.key?(:name)
+ assert_equal 'normal', info[:font_weight]
+ assert_equal 'Font Awesome\ 5 Brands', info[:font_family]
+ end
+
+ def test_brands_icon_with_unicode
+ info = AdditionalsFontAwesome.value_info('fab-amazon', with_unicode: true)
+ assert info.key?(:unicode)
+ assert_equal '', info[:unicode]
+ end
+
+ def test_regular_icon_with_unicode
+ info = AdditionalsFontAwesome.value_info('far-calendar', with_unicode: true)
+ assert info.key?(:unicode)
+ assert_equal '', info[:unicode]
+ end
+
+ def test_solid_icon_with_unicode
+ info = AdditionalsFontAwesome.value_info('fas-archive', with_unicode: true)
+ assert info.key?(:unicode)
+ assert_equal '', info[:unicode]
+ end
+end
diff --git a/test/unit/helpers/global_helper_test.rb b/test/unit/helpers/global_helper_test.rb
index 630d3736..42de4ddf 100644
--- a/test/unit/helpers/global_helper_test.rb
+++ b/test/unit/helpers/global_helper_test.rb
@@ -42,13 +42,16 @@ class GlobalHelperTest < ActionView::TestCase
end
def test_font_awesome_icon
- html = font_awesome_icon('fa-car', class: 'test')
- assert_include 'class="fa fa-car test"', html
+ html = font_awesome_icon('fas-cloud_upload_alt', class: 'test')
+ assert_include 'class="fas fa-cloud-upload-alt test"', html
- html = font_awesome_icon('fa-car', pre_text: 'Testing')
+ html = font_awesome_icon('fab-xing', class: 'test')
+ assert_include 'class="fab fa-xing test"', html
+
+ html = font_awesome_icon('fas-cloud_upload_alt', pre_text: 'Testing')
assert_include 'Testing Testing', html
end