diff --git a/Makefile b/Makefile index 40b0d60ed..8e738f66d 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ build: bundle exec lessc --yui-compress ${SITE_LESS} > ${SITE_CSS} cp -r ${FA_ROOT_DIRECTORY}/* ../ mv README.md-nobuild ../README.md - cd assets && mv font-awesome font-awesome-4.6.0 && zip -r9 font-awesome-4.6.0.zip font-awesome-4.6.0 && mv font-awesome-4.6.0 font-awesome + cd assets && mv font-awesome font-awesome-4.6.1 && zip -r9 font-awesome-4.6.1.zip font-awesome-4.6.1 && mv font-awesome-4.6.1 font-awesome find .. -type f ! -perm 644 -exec chmod 644 {} \; diff --git a/accessibility/index.html b/accessibility/index.html index 8c85205b5..41e0c1bc7 100644 --- a/accessibility/index.html +++ b/accessibility/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -243,7 +247,7 @@ The assistive technology may not find any content to read out to a user
  • - The assistive technolog may read the unicode equivalent which could not match up to what the icon means in context or worse is just plain confusing + The assistive technology may read the unicode equivalent, which could not match up to what the icon means in context, or worse is just plain confusing
  • @@ -280,26 +284,26 @@ an icon being used in front of link text -

    Icons that with semantic or interactive purpose

    +

    Icons with semantic or interactive purpose

    If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies. This goes for content you're abbreviating via icons as well as interactive controls (buttons, form elements, toggles, etc.). There are a few techniques to accomplish this:

    If an icon is not an interactive element

    - If not representing an interactive element, like a button or link, use both a title attribute and an on the icon to provide a text alternative. This has the advantages of working with all modern screen readers, working well with the most ubiquitous speech recognition program, and helping users with cognitive disabilities by providing a mouse tooltip. + The simplest way to provide a text alternative is to use the aria-hidden="true" attribute on the icon and to include the text with an additional element, such as a <span>, with appropriate CSS to visually hide the element while keeping it accessible to assistive technologies. In addition, you can add a title attribute on the icon to provide a tooltip for sighted mouse users.

    <dl>
       <dt>
    -    <i class="fa fa-car" aria-hidden="true"></i>
    +    <i class="fa fa-car" aria-hidden="true" title="Time to destination by car"></i>
         <span class="sr-only">Time to destination by car:</span>
       </dt>
       <dd>4 minutes</dd>
     
       <dt>
    -    <i class="fa fa-bicycle" aria-hidden="true"></i>
    +    <i class="fa fa-bicycle" aria-hidden="true" title="Time to destination by bike"></i>
         <span class="sr-only">Time to destination by bike:</span>
       </dt>
       <dd>12 minutes</dd>
    @@ -309,43 +313,40 @@
       
    -
    <i class="fa fa-hourglass" aria-hidden="true"></i>
    -<span class="sr-only">60 minutes remains in your exam</span>
    +
    <i class="fa fa-hourglass" aria-hidden="true" title="60 minutes remain in your exam"></i>
    +<span class="sr-only">60 minutes remain in your exam</span>
     
    -<i class="fa fa-hourglass-half" aria-hidden="true"></i>
    -<span class="sr-only">30 minutes remains in your exam</span>
    +<i class="fa fa-hourglass-half" aria-hidden="true" title="30 minutes remain in your exam"></i>
    +<span class="sr-only">30 minutes remain in your exam</span>
     
    -<i class="fa fa-hourglass-end" aria-hidden="true"></i>
    -<span class="sr-only">0 minutes remains in your exam</span>
    +<i class="fa fa-hourglass-end" aria-hidden="true" title="0 minutes remain in your exam"></i>
    +<span class="sr-only">0 minutes remain in your exam</span>
     
    an icon being used to denote time remaining

    If an icon represents an interactive element

    - In addition to the recommendations above, use a title attribute which makes the accessible text discoverable by mouse and those with cognitive disabilities. + In the case of focusable interactive elements, there are various options to include an alternative text or label to the element, without the need for any visually hidden <span> or similar. For instance, simply adding the title attribute to the interactive element itself will be sufficient to provide an accessible alternative name for the element, as well as providing the mouse tooltip.

    -
    <a href="path/to/shopping/cart">
    -  <i class="fa fa-shopping-cart" title="View 3 items in your shopping cart" aria-hidden="true"></i>
    -  <span class="sr-only">View 3 items in your shopping cart</span>
    +
    <a href="path/to/shopping/cart" title="View 3 items in your shopping cart">
    +  <i class="fa fa-shopping-cart" aria-hidden="true"></i>
     </a>
     
    an icon being used to communicate shopping cart state
    -
    <a href="#navigation-main">
    -  <i class="fa fa-bars" title="Skip to main navigation" aria-hidden="true"></i>
    -  <span class="sr-only">Skip to main navigation</span>
    +
    <a href="#navigation-main" title="Skip to main navigation">
    +  <i class="fa fa-bars" aria-hidden="true"></i>
     </a>
     
    an icon being used as a link to a navigation menu -
    <a class="btn btn-danger" href="path/to/settings">
    -  <i class="fa fa-trash-o" title="Delete" aria-hidden="true"></i>
    -  <span class="sr-only">Delete</span>
    +
    <a class="btn btn-danger" href="path/to/settings" title="Delete">
    +  <i class="fa fa-trash-o" aria-hidden="true"></i>
     </a>
     
    an icon being used as a delete button's symbol @@ -357,7 +358,7 @@
    @@ -374,7 +375,7 @@

    - While the scenarios and techniques above help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low quality vision using high contrast mode to better see UI. There are some great tools and resources to learning and work on these out there. Here are a few reads we recommend. + While the scenarios and techniques above help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision using high contrast mode to better see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend.

      @@ -412,7 +413,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/assets/font-awesome-4.6.0.zip b/assets/font-awesome-4.6.0.zip deleted file mode 100644 index 0c07b522a..000000000 Binary files a/assets/font-awesome-4.6.0.zip and /dev/null differ diff --git a/assets/font-awesome-4.6.1.zip b/assets/font-awesome-4.6.1.zip new file mode 100644 index 000000000..60b321492 Binary files /dev/null and b/assets/font-awesome-4.6.1.zip differ diff --git a/assets/font-awesome/css/font-awesome.css b/assets/font-awesome/css/font-awesome.css index 4037a5cb4..bb0fe51ad 100644 --- a/assets/font-awesome/css/font-awesome.css +++ b/assets/font-awesome/css/font-awesome.css @@ -1,13 +1,13 @@ /*! - * Font Awesome 4.6.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.6.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.0#fontawesomeregular') format('svg'); + src: url('../fonts/fontawesome-webfont.eot?v=4.6.1'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal; } diff --git a/assets/font-awesome/css/font-awesome.min.css b/assets/font-awesome/css/font-awesome.min.css index eb8bf6fab..885b38403 100644 --- a/assets/font-awesome/css/font-awesome.min.css +++ b/assets/font-awesome/css/font-awesome.min.css @@ -1,4 +1,4 @@ /*! - * Font Awesome 4.6.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.1 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.6.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.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: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-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-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"}.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} + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.1');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.1#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: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-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-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"}.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/assets/font-awesome/fonts/FontAwesome.otf b/assets/font-awesome/fonts/FontAwesome.otf index f7f9eaefe..59853bcda 100644 Binary files a/assets/font-awesome/fonts/FontAwesome.otf and b/assets/font-awesome/fonts/FontAwesome.otf differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.eot b/assets/font-awesome/fonts/fontawesome-webfont.eot index b15a0f513..96f92f9b8 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.eot and b/assets/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.svg b/assets/font-awesome/fonts/fontawesome-webfont.svg index 0706ea2f1..5a5f0ecd4 100644 --- a/assets/font-awesome/fonts/fontawesome-webfont.svg +++ b/assets/font-awesome/fonts/fontawesome-webfont.svg @@ -59,17 +59,17 @@ - + - + - - + + @@ -78,9 +78,9 @@ - - - + + + @@ -100,15 +100,15 @@ - - - + + + - - - + + + @@ -134,10 +134,10 @@ - + - + @@ -146,7 +146,7 @@ - + @@ -157,10 +157,10 @@ - + - + @@ -171,11 +171,11 @@ - - + + - + @@ -187,14 +187,14 @@ - + - + @@ -211,8 +211,8 @@ - - + + @@ -256,7 +256,7 @@ - + @@ -296,13 +296,13 @@ - - + + - - + + @@ -318,12 +318,12 @@ - + - + @@ -333,7 +333,7 @@ - + @@ -356,8 +356,8 @@ - - + + @@ -374,11 +374,11 @@ - + - - + + @@ -389,27 +389,27 @@ - + - + - + - + - + @@ -421,14 +421,14 @@ - + - + - + @@ -441,8 +441,8 @@ - - + + @@ -452,7 +452,7 @@ - + @@ -476,17 +476,17 @@ - - + + - + - + - + @@ -498,7 +498,7 @@ - + @@ -509,19 +509,19 @@ - + - + - + @@ -536,7 +536,7 @@ - + @@ -557,7 +557,7 @@ - + @@ -589,7 +589,7 @@ - + @@ -604,14 +604,14 @@ - + - + @@ -648,7 +648,7 @@ - + @@ -657,10 +657,10 @@ - + - + diff --git a/assets/font-awesome/fonts/fontawesome-webfont.ttf b/assets/font-awesome/fonts/fontawesome-webfont.ttf index cec09e000..86784df96 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.ttf and b/assets/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff b/assets/font-awesome/fonts/fontawesome-webfont.woff index 52d811658..c7faa19c4 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.woff and b/assets/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff2 b/assets/font-awesome/fonts/fontawesome-webfont.woff2 index 65aeb01eb..cab8571d5 100644 Binary files a/assets/font-awesome/fonts/fontawesome-webfont.woff2 and b/assets/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/assets/font-awesome/less/font-awesome.less b/assets/font-awesome/less/font-awesome.less index 6b689cb55..767096008 100644 --- a/assets/font-awesome/less/font-awesome.less +++ b/assets/font-awesome/less/font-awesome.less @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/assets/font-awesome/less/mixins.less b/assets/font-awesome/less/mixins.less index 3aca89f55..beef231d0 100644 --- a/assets/font-awesome/less/mixins.less +++ b/assets/font-awesome/less/mixins.less @@ -26,7 +26,7 @@ } -// Only display content to screen readers. À la Bootstrap 4. +// Only display content to screen readers. A la Bootstrap 4. // // See: http://a11yproject.com/posts/how-to-hide-content/ diff --git a/assets/font-awesome/less/variables.less b/assets/font-awesome/less/variables.less index e255588ed..8118e8f70 100644 --- a/assets/font-awesome/less/variables.less +++ b/assets/font-awesome/less/variables.less @@ -4,9 +4,9 @@ @fa-font-path: "../fonts"; @fa-font-size-base: 14px; @fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts"; // for referencing Bootstrap CDN font files directly +//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.1/fonts"; // for referencing Bootstrap CDN font files directly @fa-css-prefix: fa; -@fa-version: "4.6.0"; +@fa-version: "4.6.1"; @fa-border-color: #eee; @fa-inverse: #fff; @fa-li-width: (30em / 14); diff --git a/assets/font-awesome/scss/_mixins.scss b/assets/font-awesome/scss/_mixins.scss index c7c453429..c3bbd5745 100644 --- a/assets/font-awesome/scss/_mixins.scss +++ b/assets/font-awesome/scss/_mixins.scss @@ -26,7 +26,7 @@ } -// Only display content to screen readers. À la Bootstrap 4. +// Only display content to screen readers. A la Bootstrap 4. // // See: http://a11yproject.com/posts/how-to-hide-content/ diff --git a/assets/font-awesome/scss/_variables.scss b/assets/font-awesome/scss/_variables.scss index 93c3ba77c..1f374d6c9 100644 --- a/assets/font-awesome/scss/_variables.scss +++ b/assets/font-awesome/scss/_variables.scss @@ -4,9 +4,9 @@ $fa-font-path: "../fonts" !default; $fa-font-size-base: 14px !default; $fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts" !default; // for referencing Bootstrap CDN font files directly +//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.1/fonts" !default; // for referencing Bootstrap CDN font files directly $fa-css-prefix: fa !default; -$fa-version: "4.6.0" !default; +$fa-version: "4.6.1" !default; $fa-border-color: #eee !default; $fa-inverse: #fff !default; $fa-li-width: (30em / 14) !default; diff --git a/assets/font-awesome/scss/font-awesome.scss b/assets/font-awesome/scss/font-awesome.scss index 67c8b3354..a19d664c3 100644 --- a/assets/font-awesome/scss/font-awesome.scss +++ b/assets/font-awesome/scss/font-awesome.scss @@ -1,5 +1,5 @@ /*! - * Font Awesome 4.6.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ diff --git a/cheatsheet/index.html b/cheatsheet/index.html index 7ee9a2868..7fe98c580 100644 --- a/cheatsheet/index.html +++ b/cheatsheet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -172,7 +176,7 @@

      Cheatsheet

    -

    The complete Font Awesome 4.6.0 icon reference

    +

    The complete Font Awesome 4.6.1 icon reference

    @@ -228,7 +232,7 @@ - +
    @@ -6027,7 +6031,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/community/index.html b/community/index.html index 78550c9e7..3c3e972a8 100644 --- a/community/index.html +++ b/community/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -402,7 +406,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/examples/index.html b/examples/index.html index b0e99ab5c..ad3a5d789 100644 --- a/examples/index.html +++ b/examples/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -234,8 +238,8 @@ @@ -273,8 +277,8 @@
    @@ -313,8 +317,8 @@
    @@ -346,8 +350,8 @@
    @@ -376,8 +380,8 @@
    @@ -406,8 +410,8 @@ current, borne back ceaselessly into the past.
    @@ -571,8 +575,8 @@ current, borne back ceaselessly into the past.
    @@ -605,8 +609,8 @@ current, borne back ceaselessly into the past.
    @@ -678,7 +682,7 @@ fa-ban on fa-camera

    - Font Awesome
    Version 4.6.0
    + Font Awesome
    Version 4.6.1

    @@ -733,7 +737,7 @@ fa-ban on fa-camera <i class="fa fa-cog" aria-hidden="true"></i> Settings</a> <a class="btn btn-lg btn-success" href="#"> - <i class="fa fa-flag fa-2x pull-left" aria-hidden="true"></i> Font Awesome<br>Version 4.6.0</a> + <i class="fa fa-flag fa-2x pull-left" aria-hidden="true"></i> Font Awesome<br>Version 4.6.1</a> <div class="btn-group"> <a class="btn btn-default" href="#"> @@ -818,7 +822,7 @@ fa-ban on fa-camera
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/get-started/index.html b/get-started/index.html index d69b6a848..47068199e 100644 --- a/get-started/index.html +++ b/get-started/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -172,7 +176,7 @@

      Get Started

    -

    Easy ways to get Font Awesome 4.6.0 onto your website

    +

    Easy ways to get Font Awesome 4.6.1 onto your website

    @@ -236,7 +240,7 @@
    1. Paste the following code into the <head> section of your site's HTML. -
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">
      +
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
       

      Immediately after release, it takes a bit of time for BootstrapCDN to catch up and get the newest version live on their CDN.

    2. @@ -326,7 +330,7 @@
      -

      Use this method to customize Font Awesome 4.6.0 using LESS or SASS.

      +

      Use this method to customize Font Awesome 4.6.1 using LESS or SASS.

      1. Copy the font-awesome/ directory into your project.
      2. @@ -363,7 +367,7 @@

        - If you need IE7 support, you have my condolences. Really. Font Awesome 4.6.0 + If you need IE7 support, you have my condolences. Really. Font Awesome 4.6.1 doesn't support IE7, but an older version does. You'll need to check out the 3.2.1 instructions for using IE7. Then go complain to whomever decided your project needs IE7 support. @@ -402,7 +406,7 @@

    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/500px/index.html b/icon/500px/index.html index 26c6a7a23..cec21a682 100644 --- a/icon/500px/index.html +++ b/icon/500px/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of 500px at 6x   - + Example of 500px at 5x    - + Example of 500px at 4x    - + Example of 500px at 3x    - + Example of 500px at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/adjust/index.html b/icon/adjust/index.html index 07178bb62..0c5ffc62c 100644 --- a/icon/adjust/index.html +++ b/icon/adjust/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of adjust at 6x   - + Example of adjust at 5x    - + Example of adjust at 4x    - + Example of adjust at 3x    - + Example of adjust at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/adn/index.html b/icon/adn/index.html index 028b011cc..a621e0f39 100644 --- a/icon/adn/index.html +++ b/icon/adn/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of adn at 6x   - + Example of adn at 5x    - + Example of adn at 4x    - + Example of adn at 3x    - + Example of adn at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/align-center/index.html b/icon/align-center/index.html index 0a8e8e59f..20adebd3c 100644 --- a/icon/align-center/index.html +++ b/icon/align-center/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of align-center at 6x   - + Example of align-center at 5x    - + Example of align-center at 4x    - + Example of align-center at 3x    - + Example of align-center at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/align-justify/index.html b/icon/align-justify/index.html index a1c0c5cef..326910820 100644 --- a/icon/align-justify/index.html +++ b/icon/align-justify/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of align-justify at 6x   - + Example of align-justify at 5x    - + Example of align-justify at 4x    - + Example of align-justify at 3x    - + Example of align-justify at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/align-left/index.html b/icon/align-left/index.html index 01000609a..c067bbdc1 100644 --- a/icon/align-left/index.html +++ b/icon/align-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of align-left at 6x   - + Example of align-left at 5x    - + Example of align-left at 4x    - + Example of align-left at 3x    - + Example of align-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/align-right/index.html b/icon/align-right/index.html index b80b2d286..a52166497 100644 --- a/icon/align-right/index.html +++ b/icon/align-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of align-right at 6x   - + Example of align-right at 5x    - + Example of align-right at 4x    - + Example of align-right at 3x    - + Example of align-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/amazon/index.html b/icon/amazon/index.html index 89da523c3..1346289f0 100644 --- a/icon/amazon/index.html +++ b/icon/amazon/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of amazon at 6x   - + Example of amazon at 5x    - + Example of amazon at 4x    - + Example of amazon at 3x    - + Example of amazon at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ambulance/index.html b/icon/ambulance/index.html index a871b5b24..00bda3e7e 100644 --- a/icon/ambulance/index.html +++ b/icon/ambulance/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ambulance at 6x   - + Example of ambulance at 5x    - + Example of ambulance at 4x    - + Example of ambulance at 3x    - + Example of ambulance at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/american-sign-language-interpreting/index.html b/icon/american-sign-language-interpreting/index.html index 51a5c0ed1..d4a9c557d 100644 --- a/icon/american-sign-language-interpreting/index.html +++ b/icon/american-sign-language-interpreting/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of american-sign-language-interpreting at 6x   - + Example of american-sign-language-interpreting at 5x    - + Example of american-sign-language-interpreting at 4x    - + Example of american-sign-language-interpreting at 3x    - + Example of american-sign-language-interpreting at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/anchor/index.html b/icon/anchor/index.html index 6292209e0..aea17b8b2 100644 --- a/icon/anchor/index.html +++ b/icon/anchor/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of anchor at 6x   - + Example of anchor at 5x    - + Example of anchor at 4x    - + Example of anchor at 3x    - + Example of anchor at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/android/index.html b/icon/android/index.html index 0d13419bd..33718df2d 100644 --- a/icon/android/index.html +++ b/icon/android/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of android at 6x   - + Example of android at 5x    - + Example of android at 4x    - + Example of android at 3x    - + Example of android at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angellist/index.html b/icon/angellist/index.html index 3404edc2f..07f847815 100644 --- a/icon/angellist/index.html +++ b/icon/angellist/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angellist at 6x   - + Example of angellist at 5x    - + Example of angellist at 4x    - + Example of angellist at 3x    - + Example of angellist at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-double-down/index.html b/icon/angle-double-down/index.html index d7eb9bbe2..d7825e6ad 100644 --- a/icon/angle-double-down/index.html +++ b/icon/angle-double-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-double-down at 6x   - + Example of angle-double-down at 5x    - + Example of angle-double-down at 4x    - + Example of angle-double-down at 3x    - + Example of angle-double-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-double-left/index.html b/icon/angle-double-left/index.html index 4d6dab4b3..b61d9d5d6 100644 --- a/icon/angle-double-left/index.html +++ b/icon/angle-double-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-double-left at 6x   - + Example of angle-double-left at 5x    - + Example of angle-double-left at 4x    - + Example of angle-double-left at 3x    - + Example of angle-double-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-double-right/index.html b/icon/angle-double-right/index.html index 0f9b40d6a..bfae4155c 100644 --- a/icon/angle-double-right/index.html +++ b/icon/angle-double-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-double-right at 6x   - + Example of angle-double-right at 5x    - + Example of angle-double-right at 4x    - + Example of angle-double-right at 3x    - + Example of angle-double-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-double-up/index.html b/icon/angle-double-up/index.html index 5923461c0..e7d485d11 100644 --- a/icon/angle-double-up/index.html +++ b/icon/angle-double-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-double-up at 6x   - + Example of angle-double-up at 5x    - + Example of angle-double-up at 4x    - + Example of angle-double-up at 3x    - + Example of angle-double-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-down/index.html b/icon/angle-down/index.html index f5e2868e8..2dd5edc93 100644 --- a/icon/angle-down/index.html +++ b/icon/angle-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-down at 6x   - + Example of angle-down at 5x    - + Example of angle-down at 4x    - + Example of angle-down at 3x    - + Example of angle-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-left/index.html b/icon/angle-left/index.html index e36edaba4..5a23e3993 100644 --- a/icon/angle-left/index.html +++ b/icon/angle-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-left at 6x   - + Example of angle-left at 5x    - + Example of angle-left at 4x    - + Example of angle-left at 3x    - + Example of angle-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-right/index.html b/icon/angle-right/index.html index 724fb0f45..b5bf1f846 100644 --- a/icon/angle-right/index.html +++ b/icon/angle-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-right at 6x   - + Example of angle-right at 5x    - + Example of angle-right at 4x    - + Example of angle-right at 3x    - + Example of angle-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/angle-up/index.html b/icon/angle-up/index.html index e6c101366..1ab8404f1 100644 --- a/icon/angle-up/index.html +++ b/icon/angle-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of angle-up at 6x   - + Example of angle-up at 5x    - + Example of angle-up at 4x    - + Example of angle-up at 3x    - + Example of angle-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/apple/index.html b/icon/apple/index.html index fca5fd3f6..f9de57997 100644 --- a/icon/apple/index.html +++ b/icon/apple/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of apple at 6x   - + Example of apple at 5x    - + Example of apple at 4x    - + Example of apple at 3x    - + Example of apple at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/archive/index.html b/icon/archive/index.html index 264ca2bf7..2715549c9 100644 --- a/icon/archive/index.html +++ b/icon/archive/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of archive at 6x   - + Example of archive at 5x    - + Example of archive at 4x    - + Example of archive at 3x    - + Example of archive at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/area-chart/index.html b/icon/area-chart/index.html index 70dfbe57c..c4fefde84 100644 --- a/icon/area-chart/index.html +++ b/icon/area-chart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of area-chart at 6x   - + Example of area-chart at 5x    - + Example of area-chart at 4x    - + Example of area-chart at 3x    - + Example of area-chart at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-down/index.html b/icon/arrow-circle-down/index.html index ba81eed92..d70df0a8a 100644 --- a/icon/arrow-circle-down/index.html +++ b/icon/arrow-circle-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-down at 6x   - + Example of arrow-circle-down at 5x    - + Example of arrow-circle-down at 4x    - + Example of arrow-circle-down at 3x    - + Example of arrow-circle-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-left/index.html b/icon/arrow-circle-left/index.html index 37ae6ca93..77248d498 100644 --- a/icon/arrow-circle-left/index.html +++ b/icon/arrow-circle-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-left at 6x   - + Example of arrow-circle-left at 5x    - + Example of arrow-circle-left at 4x    - + Example of arrow-circle-left at 3x    - + Example of arrow-circle-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-o-down/index.html b/icon/arrow-circle-o-down/index.html index 11d1d6ba9..3f3b69f67 100644 --- a/icon/arrow-circle-o-down/index.html +++ b/icon/arrow-circle-o-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-o-down at 6x   - + Example of arrow-circle-o-down at 5x    - + Example of arrow-circle-o-down at 4x    - + Example of arrow-circle-o-down at 3x    - + Example of arrow-circle-o-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-o-left/index.html b/icon/arrow-circle-o-left/index.html index 4087a13dc..f71f212ec 100644 --- a/icon/arrow-circle-o-left/index.html +++ b/icon/arrow-circle-o-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-o-left at 6x   - + Example of arrow-circle-o-left at 5x    - + Example of arrow-circle-o-left at 4x    - + Example of arrow-circle-o-left at 3x    - + Example of arrow-circle-o-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-o-right/index.html b/icon/arrow-circle-o-right/index.html index f953baeef..eb850da6f 100644 --- a/icon/arrow-circle-o-right/index.html +++ b/icon/arrow-circle-o-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-o-right at 6x   - + Example of arrow-circle-o-right at 5x    - + Example of arrow-circle-o-right at 4x    - + Example of arrow-circle-o-right at 3x    - + Example of arrow-circle-o-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-o-up/index.html b/icon/arrow-circle-o-up/index.html index 7a876bb87..4aecd9546 100644 --- a/icon/arrow-circle-o-up/index.html +++ b/icon/arrow-circle-o-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-o-up at 6x   - + Example of arrow-circle-o-up at 5x    - + Example of arrow-circle-o-up at 4x    - + Example of arrow-circle-o-up at 3x    - + Example of arrow-circle-o-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-right/index.html b/icon/arrow-circle-right/index.html index 1ad766c66..c27addcf4 100644 --- a/icon/arrow-circle-right/index.html +++ b/icon/arrow-circle-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-right at 6x   - + Example of arrow-circle-right at 5x    - + Example of arrow-circle-right at 4x    - + Example of arrow-circle-right at 3x    - + Example of arrow-circle-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-circle-up/index.html b/icon/arrow-circle-up/index.html index 64ece2c24..f335c4977 100644 --- a/icon/arrow-circle-up/index.html +++ b/icon/arrow-circle-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-circle-up at 6x   - + Example of arrow-circle-up at 5x    - + Example of arrow-circle-up at 4x    - + Example of arrow-circle-up at 3x    - + Example of arrow-circle-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-down/index.html b/icon/arrow-down/index.html index e3376bc7b..9902f9106 100644 --- a/icon/arrow-down/index.html +++ b/icon/arrow-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-down at 6x   - + Example of arrow-down at 5x    - + Example of arrow-down at 4x    - + Example of arrow-down at 3x    - + Example of arrow-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-left/index.html b/icon/arrow-left/index.html index 339d4b19b..07ef72fd3 100644 --- a/icon/arrow-left/index.html +++ b/icon/arrow-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-left at 6x   - + Example of arrow-left at 5x    - + Example of arrow-left at 4x    - + Example of arrow-left at 3x    - + Example of arrow-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-right/index.html b/icon/arrow-right/index.html index 419d06b76..870a1a362 100644 --- a/icon/arrow-right/index.html +++ b/icon/arrow-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-right at 6x   - + Example of arrow-right at 5x    - + Example of arrow-right at 4x    - + Example of arrow-right at 3x    - + Example of arrow-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrow-up/index.html b/icon/arrow-up/index.html index 433c670be..c039063ce 100644 --- a/icon/arrow-up/index.html +++ b/icon/arrow-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrow-up at 6x   - + Example of arrow-up at 5x    - + Example of arrow-up at 4x    - + Example of arrow-up at 3x    - + Example of arrow-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrows-alt/index.html b/icon/arrows-alt/index.html index 8fc9f133a..f0d084997 100644 --- a/icon/arrows-alt/index.html +++ b/icon/arrows-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrows-alt at 6x   - + Example of arrows-alt at 5x    - + Example of arrows-alt at 4x    - + Example of arrows-alt at 3x    - + Example of arrows-alt at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrows-h/index.html b/icon/arrows-h/index.html index 7676aaca9..07d1e4e56 100644 --- a/icon/arrows-h/index.html +++ b/icon/arrows-h/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrows-h at 6x   - + Example of arrows-h at 5x    - + Example of arrows-h at 4x    - + Example of arrows-h at 3x    - + Example of arrows-h at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrows-v/index.html b/icon/arrows-v/index.html index 97261d84a..7c0bc17e3 100644 --- a/icon/arrows-v/index.html +++ b/icon/arrows-v/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrows-v at 6x   - + Example of arrows-v at 5x    - + Example of arrows-v at 4x    - + Example of arrows-v at 3x    - + Example of arrows-v at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/arrows/index.html b/icon/arrows/index.html index 500a925e3..6fd9d3f78 100644 --- a/icon/arrows/index.html +++ b/icon/arrows/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of arrows at 6x   - + Example of arrows at 5x    - + Example of arrows at 4x    - + Example of arrows at 3x    - + Example of arrows at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/assistive-listening-systems/index.html b/icon/assistive-listening-systems/index.html index 558e7c7e6..215e07301 100644 --- a/icon/assistive-listening-systems/index.html +++ b/icon/assistive-listening-systems/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of assistive-listening-systems at 6x   - + Example of assistive-listening-systems at 5x    - + Example of assistive-listening-systems at 4x    - + Example of assistive-listening-systems at 3x    - + Example of assistive-listening-systems at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/asterisk/index.html b/icon/asterisk/index.html index 3c7ac197d..92e5874f3 100644 --- a/icon/asterisk/index.html +++ b/icon/asterisk/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of asterisk at 6x   - + Example of asterisk at 5x    - + Example of asterisk at 4x    - + Example of asterisk at 3x    - + Example of asterisk at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/at/index.html b/icon/at/index.html index d8c67b1cd..7c098357e 100644 --- a/icon/at/index.html +++ b/icon/at/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of at at 6x   - + Example of at at 5x    - + Example of at at 4x    - + Example of at at 3x    - + Example of at at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/audio-description/index.html b/icon/audio-description/index.html index a35f1b461..0221567a9 100644 --- a/icon/audio-description/index.html +++ b/icon/audio-description/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of audio-description at 6x   - + Example of audio-description at 5x    - + Example of audio-description at 4x    - + Example of audio-description at 3x    - + Example of audio-description at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/backward/index.html b/icon/backward/index.html index fa9c8384b..70ed3ada1 100644 --- a/icon/backward/index.html +++ b/icon/backward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of backward at 6x   - + Example of backward at 5x    - + Example of backward at 4x    - + Example of backward at 3x    - + Example of backward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/balance-scale/index.html b/icon/balance-scale/index.html index d99136d5f..974ad55ea 100644 --- a/icon/balance-scale/index.html +++ b/icon/balance-scale/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of balance-scale at 6x   - + Example of balance-scale at 5x    - + Example of balance-scale at 4x    - + Example of balance-scale at 3x    - + Example of balance-scale at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ban/index.html b/icon/ban/index.html index e294f319f..d931c7a98 100644 --- a/icon/ban/index.html +++ b/icon/ban/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ban at 6x   - + Example of ban at 5x    - + Example of ban at 4x    - + Example of ban at 3x    - + Example of ban at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bar-chart/index.html b/icon/bar-chart/index.html index 8868a5011..2b7afbf5e 100644 --- a/icon/bar-chart/index.html +++ b/icon/bar-chart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bar-chart at 6x   - + Example of bar-chart at 5x    - + Example of bar-chart at 4x    - + Example of bar-chart at 3x    - + Example of bar-chart at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/barcode/index.html b/icon/barcode/index.html index d8f7bcd41..09bc414a0 100644 --- a/icon/barcode/index.html +++ b/icon/barcode/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of barcode at 6x   - + Example of barcode at 5x    - + Example of barcode at 4x    - + Example of barcode at 3x    - + Example of barcode at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bars/index.html b/icon/bars/index.html index a755ce307..a45287238 100644 --- a/icon/bars/index.html +++ b/icon/bars/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bars at 6x   - + Example of bars at 5x    - + Example of bars at 4x    - + Example of bars at 3x    - + Example of bars at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/battery-empty/index.html b/icon/battery-empty/index.html index 34bb273c6..159968cfc 100644 --- a/icon/battery-empty/index.html +++ b/icon/battery-empty/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of battery-empty at 6x   - + Example of battery-empty at 5x    - + Example of battery-empty at 4x    - + Example of battery-empty at 3x    - + Example of battery-empty at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/battery-full/index.html b/icon/battery-full/index.html index 807dfb9b1..6dcd63544 100644 --- a/icon/battery-full/index.html +++ b/icon/battery-full/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of battery-full at 6x   - + Example of battery-full at 5x    - + Example of battery-full at 4x    - + Example of battery-full at 3x    - + Example of battery-full at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/battery-half/index.html b/icon/battery-half/index.html index 470e7d43c..f50da306d 100644 --- a/icon/battery-half/index.html +++ b/icon/battery-half/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of battery-half at 6x   - + Example of battery-half at 5x    - + Example of battery-half at 4x    - + Example of battery-half at 3x    - + Example of battery-half at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/battery-quarter/index.html b/icon/battery-quarter/index.html index b13c02b59..c940ff4f3 100644 --- a/icon/battery-quarter/index.html +++ b/icon/battery-quarter/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of battery-quarter at 6x   - + Example of battery-quarter at 5x    - + Example of battery-quarter at 4x    - + Example of battery-quarter at 3x    - + Example of battery-quarter at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/battery-three-quarters/index.html b/icon/battery-three-quarters/index.html index 77ba03aa6..072e1f489 100644 --- a/icon/battery-three-quarters/index.html +++ b/icon/battery-three-quarters/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of battery-three-quarters at 6x   - + Example of battery-three-quarters at 5x    - + Example of battery-three-quarters at 4x    - + Example of battery-three-quarters at 3x    - + Example of battery-three-quarters at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bed/index.html b/icon/bed/index.html index 04781c46e..ec7033864 100644 --- a/icon/bed/index.html +++ b/icon/bed/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bed at 6x   - + Example of bed at 5x    - + Example of bed at 4x    - + Example of bed at 3x    - + Example of bed at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/beer/index.html b/icon/beer/index.html index 3b446257a..6146bd4e8 100644 --- a/icon/beer/index.html +++ b/icon/beer/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of beer at 6x   - + Example of beer at 5x    - + Example of beer at 4x    - + Example of beer at 3x    - + Example of beer at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/behance-square/index.html b/icon/behance-square/index.html index 7763f3cda..f08b39f0b 100644 --- a/icon/behance-square/index.html +++ b/icon/behance-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of behance-square at 6x   - + Example of behance-square at 5x    - + Example of behance-square at 4x    - + Example of behance-square at 3x    - + Example of behance-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/behance/index.html b/icon/behance/index.html index 5a8e9b7d8..1a877bb15 100644 --- a/icon/behance/index.html +++ b/icon/behance/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of behance at 6x   - + Example of behance at 5x    - + Example of behance at 4x    - + Example of behance at 3x    - + Example of behance at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bell-o/index.html b/icon/bell-o/index.html index 8252e1e57..8c737ec27 100644 --- a/icon/bell-o/index.html +++ b/icon/bell-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bell-o at 6x   - + Example of bell-o at 5x    - + Example of bell-o at 4x    - + Example of bell-o at 3x    - + Example of bell-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bell-slash-o/index.html b/icon/bell-slash-o/index.html index f9e212dd8..a4c2b5a2a 100644 --- a/icon/bell-slash-o/index.html +++ b/icon/bell-slash-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bell-slash-o at 6x   - + Example of bell-slash-o at 5x    - + Example of bell-slash-o at 4x    - + Example of bell-slash-o at 3x    - + Example of bell-slash-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bell-slash/index.html b/icon/bell-slash/index.html index 61bcc88c2..77e985393 100644 --- a/icon/bell-slash/index.html +++ b/icon/bell-slash/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bell-slash at 6x   - + Example of bell-slash at 5x    - + Example of bell-slash at 4x    - + Example of bell-slash at 3x    - + Example of bell-slash at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bell/index.html b/icon/bell/index.html index 81c8cfa72..cd2cd4984 100644 --- a/icon/bell/index.html +++ b/icon/bell/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bell at 6x   - + Example of bell at 5x    - + Example of bell at 4x    - + Example of bell at 3x    - + Example of bell at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bicycle/index.html b/icon/bicycle/index.html index 9b2d28e1f..1db888fec 100644 --- a/icon/bicycle/index.html +++ b/icon/bicycle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bicycle at 6x   - + Example of bicycle at 5x    - + Example of bicycle at 4x    - + Example of bicycle at 3x    - + Example of bicycle at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/binoculars/index.html b/icon/binoculars/index.html index c58ad5fa5..b0107747c 100644 --- a/icon/binoculars/index.html +++ b/icon/binoculars/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of binoculars at 6x   - + Example of binoculars at 5x    - + Example of binoculars at 4x    - + Example of binoculars at 3x    - + Example of binoculars at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/birthday-cake/index.html b/icon/birthday-cake/index.html index 89152018a..47997ab48 100644 --- a/icon/birthday-cake/index.html +++ b/icon/birthday-cake/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of birthday-cake at 6x   - + Example of birthday-cake at 5x    - + Example of birthday-cake at 4x    - + Example of birthday-cake at 3x    - + Example of birthday-cake at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bitbucket-square/index.html b/icon/bitbucket-square/index.html index 54e4aa2d3..59f29c1fd 100644 --- a/icon/bitbucket-square/index.html +++ b/icon/bitbucket-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bitbucket-square at 6x   - + Example of bitbucket-square at 5x    - + Example of bitbucket-square at 4x    - + Example of bitbucket-square at 3x    - + Example of bitbucket-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bitbucket/index.html b/icon/bitbucket/index.html index 9f4cd8478..d77403e57 100644 --- a/icon/bitbucket/index.html +++ b/icon/bitbucket/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bitbucket at 6x   - + Example of bitbucket at 5x    - + Example of bitbucket at 4x    - + Example of bitbucket at 3x    - + Example of bitbucket at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/black-tie/index.html b/icon/black-tie/index.html index 2d3682760..d524a0c3d 100644 --- a/icon/black-tie/index.html +++ b/icon/black-tie/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of black-tie at 6x   - + Example of black-tie at 5x    - + Example of black-tie at 4x    - + Example of black-tie at 3x    - + Example of black-tie at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/blind/index.html b/icon/blind/index.html index 4fe6cb4bd..b96512374 100644 --- a/icon/blind/index.html +++ b/icon/blind/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of blind at 6x   - + Example of blind at 5x    - + Example of blind at 4x    - + Example of blind at 3x    - + Example of blind at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bluetooth-b/index.html b/icon/bluetooth-b/index.html index affce3ac6..f1560cbca 100644 --- a/icon/bluetooth-b/index.html +++ b/icon/bluetooth-b/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bluetooth-b at 6x   - + Example of bluetooth-b at 5x    - + Example of bluetooth-b at 4x    - + Example of bluetooth-b at 3x    - + Example of bluetooth-b at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bluetooth/index.html b/icon/bluetooth/index.html index 07cd13f44..0be2faef6 100644 --- a/icon/bluetooth/index.html +++ b/icon/bluetooth/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bluetooth at 6x   - + Example of bluetooth at 5x    - + Example of bluetooth at 4x    - + Example of bluetooth at 3x    - + Example of bluetooth at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bold/index.html b/icon/bold/index.html index 491ce7e19..0ad59f731 100644 --- a/icon/bold/index.html +++ b/icon/bold/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bold at 6x   - + Example of bold at 5x    - + Example of bold at 4x    - + Example of bold at 3x    - + Example of bold at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bolt/index.html b/icon/bolt/index.html index d41ed4fa8..c4574db81 100644 --- a/icon/bolt/index.html +++ b/icon/bolt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bolt at 6x   - + Example of bolt at 5x    - + Example of bolt at 4x    - + Example of bolt at 3x    - + Example of bolt at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bomb/index.html b/icon/bomb/index.html index 7a8c31c42..8c331f1ef 100644 --- a/icon/bomb/index.html +++ b/icon/bomb/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bomb at 6x   - + Example of bomb at 5x    - + Example of bomb at 4x    - + Example of bomb at 3x    - + Example of bomb at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/book/index.html b/icon/book/index.html index c860d3143..b0c3d6c6e 100644 --- a/icon/book/index.html +++ b/icon/book/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of book at 6x   - + Example of book at 5x    - + Example of book at 4x    - + Example of book at 3x    - + Example of book at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bookmark-o/index.html b/icon/bookmark-o/index.html index dacbe64cf..c01dc4f64 100644 --- a/icon/bookmark-o/index.html +++ b/icon/bookmark-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bookmark-o at 6x   - + Example of bookmark-o at 5x    - + Example of bookmark-o at 4x    - + Example of bookmark-o at 3x    - + Example of bookmark-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bookmark/index.html b/icon/bookmark/index.html index 161e0e0df..3f65b1a43 100644 --- a/icon/bookmark/index.html +++ b/icon/bookmark/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bookmark at 6x   - + Example of bookmark at 5x    - + Example of bookmark at 4x    - + Example of bookmark at 3x    - + Example of bookmark at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/braille/index.html b/icon/braille/index.html index 47426e8be..16a78db80 100644 --- a/icon/braille/index.html +++ b/icon/braille/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of braille at 6x   - + Example of braille at 5x    - + Example of braille at 4x    - + Example of braille at 3x    - + Example of braille at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/briefcase/index.html b/icon/briefcase/index.html index 8881b90e8..0068ef1b5 100644 --- a/icon/briefcase/index.html +++ b/icon/briefcase/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of briefcase at 6x   - + Example of briefcase at 5x    - + Example of briefcase at 4x    - + Example of briefcase at 3x    - + Example of briefcase at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/btc/index.html b/icon/btc/index.html index 644fa55da..ef080cf28 100644 --- a/icon/btc/index.html +++ b/icon/btc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of btc at 6x   - + Example of btc at 5x    - + Example of btc at 4x    - + Example of btc at 3x    - + Example of btc at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bug/index.html b/icon/bug/index.html index 667302d97..518d2052f 100644 --- a/icon/bug/index.html +++ b/icon/bug/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bug at 6x   - + Example of bug at 5x    - + Example of bug at 4x    - + Example of bug at 3x    - + Example of bug at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/building-o/index.html b/icon/building-o/index.html index 665bc45e2..06bb33f5b 100644 --- a/icon/building-o/index.html +++ b/icon/building-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of building-o at 6x   - + Example of building-o at 5x    - + Example of building-o at 4x    - + Example of building-o at 3x    - + Example of building-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/building/index.html b/icon/building/index.html index 873fc1a09..27b8c161e 100644 --- a/icon/building/index.html +++ b/icon/building/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of building at 6x   - + Example of building at 5x    - + Example of building at 4x    - + Example of building at 3x    - + Example of building at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bullhorn/index.html b/icon/bullhorn/index.html index 036976eb6..4ce7ec755 100644 --- a/icon/bullhorn/index.html +++ b/icon/bullhorn/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bullhorn at 6x   - + Example of bullhorn at 5x    - + Example of bullhorn at 4x    - + Example of bullhorn at 3x    - + Example of bullhorn at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bullseye/index.html b/icon/bullseye/index.html index 83ee23448..de43317ed 100644 --- a/icon/bullseye/index.html +++ b/icon/bullseye/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bullseye at 6x   - + Example of bullseye at 5x    - + Example of bullseye at 4x    - + Example of bullseye at 3x    - + Example of bullseye at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/bus/index.html b/icon/bus/index.html index fac4acf18..b183c81e5 100644 --- a/icon/bus/index.html +++ b/icon/bus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of bus at 6x   - + Example of bus at 5x    - + Example of bus at 4x    - + Example of bus at 3x    - + Example of bus at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/buysellads/index.html b/icon/buysellads/index.html index 60017e3d9..4d1e7a28d 100644 --- a/icon/buysellads/index.html +++ b/icon/buysellads/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of buysellads at 6x   - + Example of buysellads at 5x    - + Example of buysellads at 4x    - + Example of buysellads at 3x    - + Example of buysellads at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calculator/index.html b/icon/calculator/index.html index baf0e87d6..a7b33b6ce 100644 --- a/icon/calculator/index.html +++ b/icon/calculator/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calculator at 6x   - + Example of calculator at 5x    - + Example of calculator at 4x    - + Example of calculator at 3x    - + Example of calculator at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar-check-o/index.html b/icon/calendar-check-o/index.html index 86ebaa81a..fc5ccf6b2 100644 --- a/icon/calendar-check-o/index.html +++ b/icon/calendar-check-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar-check-o at 6x   - + Example of calendar-check-o at 5x    - + Example of calendar-check-o at 4x    - + Example of calendar-check-o at 3x    - + Example of calendar-check-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar-minus-o/index.html b/icon/calendar-minus-o/index.html index 4f49fcaab..00461a217 100644 --- a/icon/calendar-minus-o/index.html +++ b/icon/calendar-minus-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar-minus-o at 6x   - + Example of calendar-minus-o at 5x    - + Example of calendar-minus-o at 4x    - + Example of calendar-minus-o at 3x    - + Example of calendar-minus-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar-o/index.html b/icon/calendar-o/index.html index 610008f53..f90c30c40 100644 --- a/icon/calendar-o/index.html +++ b/icon/calendar-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar-o at 6x   - + Example of calendar-o at 5x    - + Example of calendar-o at 4x    - + Example of calendar-o at 3x    - + Example of calendar-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar-plus-o/index.html b/icon/calendar-plus-o/index.html index 248eb99d1..a57d0ac5f 100644 --- a/icon/calendar-plus-o/index.html +++ b/icon/calendar-plus-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar-plus-o at 6x   - + Example of calendar-plus-o at 5x    - + Example of calendar-plus-o at 4x    - + Example of calendar-plus-o at 3x    - + Example of calendar-plus-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar-times-o/index.html b/icon/calendar-times-o/index.html index 3b6b4b6dc..fc16b43d3 100644 --- a/icon/calendar-times-o/index.html +++ b/icon/calendar-times-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar-times-o at 6x   - + Example of calendar-times-o at 5x    - + Example of calendar-times-o at 4x    - + Example of calendar-times-o at 3x    - + Example of calendar-times-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/calendar/index.html b/icon/calendar/index.html index 9d66a938c..e86239bb1 100644 --- a/icon/calendar/index.html +++ b/icon/calendar/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of calendar at 6x   - + Example of calendar at 5x    - + Example of calendar at 4x    - + Example of calendar at 3x    - + Example of calendar at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/camera-retro/index.html b/icon/camera-retro/index.html index d7bfa86c2..e957c39a1 100644 --- a/icon/camera-retro/index.html +++ b/icon/camera-retro/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of camera-retro at 6x   - + Example of camera-retro at 5x    - + Example of camera-retro at 4x    - + Example of camera-retro at 3x    - + Example of camera-retro at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/camera/index.html b/icon/camera/index.html index 76b5d999d..c7f28824f 100644 --- a/icon/camera/index.html +++ b/icon/camera/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of camera at 6x   - + Example of camera at 5x    - + Example of camera at 4x    - + Example of camera at 3x    - + Example of camera at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/car/index.html b/icon/car/index.html index beead5c2b..278300e09 100644 --- a/icon/car/index.html +++ b/icon/car/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of car at 6x   - + Example of car at 5x    - + Example of car at 4x    - + Example of car at 3x    - + Example of car at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-down/index.html b/icon/caret-down/index.html index b33f1dd45..2a77d4303 100644 --- a/icon/caret-down/index.html +++ b/icon/caret-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-down at 6x   - + Example of caret-down at 5x    - + Example of caret-down at 4x    - + Example of caret-down at 3x    - + Example of caret-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-left/index.html b/icon/caret-left/index.html index 76d120cba..9dc75d743 100644 --- a/icon/caret-left/index.html +++ b/icon/caret-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-left at 6x   - + Example of caret-left at 5x    - + Example of caret-left at 4x    - + Example of caret-left at 3x    - + Example of caret-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-right/index.html b/icon/caret-right/index.html index c3d15f9c2..9bdb1dbbb 100644 --- a/icon/caret-right/index.html +++ b/icon/caret-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-right at 6x   - + Example of caret-right at 5x    - + Example of caret-right at 4x    - + Example of caret-right at 3x    - + Example of caret-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-square-o-down/index.html b/icon/caret-square-o-down/index.html index 200ef3815..3e0b9039a 100644 --- a/icon/caret-square-o-down/index.html +++ b/icon/caret-square-o-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-square-o-down at 6x   - + Example of caret-square-o-down at 5x    - + Example of caret-square-o-down at 4x    - + Example of caret-square-o-down at 3x    - + Example of caret-square-o-down at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-square-o-left/index.html b/icon/caret-square-o-left/index.html index 8e632bec4..4b5a5b58e 100644 --- a/icon/caret-square-o-left/index.html +++ b/icon/caret-square-o-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-square-o-left at 6x   - + Example of caret-square-o-left at 5x    - + Example of caret-square-o-left at 4x    - + Example of caret-square-o-left at 3x    - + Example of caret-square-o-left at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-square-o-right/index.html b/icon/caret-square-o-right/index.html index 58389511e..6c26103e7 100644 --- a/icon/caret-square-o-right/index.html +++ b/icon/caret-square-o-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-square-o-right at 6x   - + Example of caret-square-o-right at 5x    - + Example of caret-square-o-right at 4x    - + Example of caret-square-o-right at 3x    - + Example of caret-square-o-right at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-square-o-up/index.html b/icon/caret-square-o-up/index.html index c083b55e7..4a826f216 100644 --- a/icon/caret-square-o-up/index.html +++ b/icon/caret-square-o-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-square-o-up at 6x   - + Example of caret-square-o-up at 5x    - + Example of caret-square-o-up at 4x    - + Example of caret-square-o-up at 3x    - + Example of caret-square-o-up at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/caret-up/index.html b/icon/caret-up/index.html index 21845d3d7..70ce6e192 100644 --- a/icon/caret-up/index.html +++ b/icon/caret-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of caret-up at 6x   - + Example of caret-up at 5x    - + Example of caret-up at 4x    - + Example of caret-up at 3x    - + Example of caret-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cart-arrow-down/index.html b/icon/cart-arrow-down/index.html index 8a2eeed49..6659fc775 100644 --- a/icon/cart-arrow-down/index.html +++ b/icon/cart-arrow-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cart-arrow-down at 6x   - + Example of cart-arrow-down at 5x    - + Example of cart-arrow-down at 4x    - + Example of cart-arrow-down at 3x    - + Example of cart-arrow-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cart-plus/index.html b/icon/cart-plus/index.html index ef2c2c46b..3b65a244f 100644 --- a/icon/cart-plus/index.html +++ b/icon/cart-plus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cart-plus at 6x   - + Example of cart-plus at 5x    - + Example of cart-plus at 4x    - + Example of cart-plus at 3x    - + Example of cart-plus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-amex/index.html b/icon/cc-amex/index.html index 60d81002a..0bc63cb70 100644 --- a/icon/cc-amex/index.html +++ b/icon/cc-amex/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-amex at 6x   - + Example of cc-amex at 5x    - + Example of cc-amex at 4x    - + Example of cc-amex at 3x    - + Example of cc-amex at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-diners-club/index.html b/icon/cc-diners-club/index.html index c81690fda..e136d0918 100644 --- a/icon/cc-diners-club/index.html +++ b/icon/cc-diners-club/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-diners-club at 6x   - + Example of cc-diners-club at 5x    - + Example of cc-diners-club at 4x    - + Example of cc-diners-club at 3x    - + Example of cc-diners-club at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-discover/index.html b/icon/cc-discover/index.html index a9377d074..37f59bfb9 100644 --- a/icon/cc-discover/index.html +++ b/icon/cc-discover/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-discover at 6x   - + Example of cc-discover at 5x    - + Example of cc-discover at 4x    - + Example of cc-discover at 3x    - + Example of cc-discover at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-jcb/index.html b/icon/cc-jcb/index.html index a4e2285bc..c191e18b6 100644 --- a/icon/cc-jcb/index.html +++ b/icon/cc-jcb/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-jcb at 6x   - + Example of cc-jcb at 5x    - + Example of cc-jcb at 4x    - + Example of cc-jcb at 3x    - + Example of cc-jcb at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-mastercard/index.html b/icon/cc-mastercard/index.html index a2d8221fe..ee6012b6e 100644 --- a/icon/cc-mastercard/index.html +++ b/icon/cc-mastercard/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-mastercard at 6x   - + Example of cc-mastercard at 5x    - + Example of cc-mastercard at 4x    - + Example of cc-mastercard at 3x    - + Example of cc-mastercard at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-paypal/index.html b/icon/cc-paypal/index.html index a6113b200..caaf4fdb7 100644 --- a/icon/cc-paypal/index.html +++ b/icon/cc-paypal/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-paypal at 6x   - + Example of cc-paypal at 5x    - + Example of cc-paypal at 4x    - + Example of cc-paypal at 3x    - + Example of cc-paypal at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-stripe/index.html b/icon/cc-stripe/index.html index da7dc230c..15603399d 100644 --- a/icon/cc-stripe/index.html +++ b/icon/cc-stripe/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-stripe at 6x   - + Example of cc-stripe at 5x    - + Example of cc-stripe at 4x    - + Example of cc-stripe at 3x    - + Example of cc-stripe at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc-visa/index.html b/icon/cc-visa/index.html index 7fa3bc16c..eddd8acd6 100644 --- a/icon/cc-visa/index.html +++ b/icon/cc-visa/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc-visa at 6x   - + Example of cc-visa at 5x    - + Example of cc-visa at 4x    - + Example of cc-visa at 3x    - + Example of cc-visa at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cc/index.html b/icon/cc/index.html index c0de7e4ef..45681add9 100644 --- a/icon/cc/index.html +++ b/icon/cc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cc at 6x   - + Example of cc at 5x    - + Example of cc at 4x    - + Example of cc at 3x    - + Example of cc at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/certificate/index.html b/icon/certificate/index.html index 6353e6369..b74c02134 100644 --- a/icon/certificate/index.html +++ b/icon/certificate/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of certificate at 6x   - + Example of certificate at 5x    - + Example of certificate at 4x    - + Example of certificate at 3x    - + Example of certificate at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chain-broken/index.html b/icon/chain-broken/index.html index 49afb3449..ee6b82454 100644 --- a/icon/chain-broken/index.html +++ b/icon/chain-broken/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chain-broken at 6x   - + Example of chain-broken at 5x    - + Example of chain-broken at 4x    - + Example of chain-broken at 3x    - + Example of chain-broken at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/check-circle-o/index.html b/icon/check-circle-o/index.html index 153fd67c8..cbc331bf0 100644 --- a/icon/check-circle-o/index.html +++ b/icon/check-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of check-circle-o at 6x   - + Example of check-circle-o at 5x    - + Example of check-circle-o at 4x    - + Example of check-circle-o at 3x    - + Example of check-circle-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/check-circle/index.html b/icon/check-circle/index.html index 19c35a137..948dae0ea 100644 --- a/icon/check-circle/index.html +++ b/icon/check-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of check-circle at 6x   - + Example of check-circle at 5x    - + Example of check-circle at 4x    - + Example of check-circle at 3x    - + Example of check-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/check-square-o/index.html b/icon/check-square-o/index.html index 447412964..91f9177ad 100644 --- a/icon/check-square-o/index.html +++ b/icon/check-square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of check-square-o at 6x   - + Example of check-square-o at 5x    - + Example of check-square-o at 4x    - + Example of check-square-o at 3x    - + Example of check-square-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/check-square/index.html b/icon/check-square/index.html index b92a7d6ac..1f066b867 100644 --- a/icon/check-square/index.html +++ b/icon/check-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of check-square at 6x   - + Example of check-square at 5x    - + Example of check-square at 4x    - + Example of check-square at 3x    - + Example of check-square at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/check/index.html b/icon/check/index.html index 714648858..b586d22ae 100644 --- a/icon/check/index.html +++ b/icon/check/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of check at 6x   - + Example of check at 5x    - + Example of check at 4x    - + Example of check at 3x    - + Example of check at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-circle-down/index.html b/icon/chevron-circle-down/index.html index 2a4e88597..f643d0dde 100644 --- a/icon/chevron-circle-down/index.html +++ b/icon/chevron-circle-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-circle-down at 6x   - + Example of chevron-circle-down at 5x    - + Example of chevron-circle-down at 4x    - + Example of chevron-circle-down at 3x    - + Example of chevron-circle-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-circle-left/index.html b/icon/chevron-circle-left/index.html index 38f61da65..0980ac247 100644 --- a/icon/chevron-circle-left/index.html +++ b/icon/chevron-circle-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-circle-left at 6x   - + Example of chevron-circle-left at 5x    - + Example of chevron-circle-left at 4x    - + Example of chevron-circle-left at 3x    - + Example of chevron-circle-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-circle-right/index.html b/icon/chevron-circle-right/index.html index 1717e2588..e02672abc 100644 --- a/icon/chevron-circle-right/index.html +++ b/icon/chevron-circle-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-circle-right at 6x   - + Example of chevron-circle-right at 5x    - + Example of chevron-circle-right at 4x    - + Example of chevron-circle-right at 3x    - + Example of chevron-circle-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-circle-up/index.html b/icon/chevron-circle-up/index.html index c6345eb44..363d63aa3 100644 --- a/icon/chevron-circle-up/index.html +++ b/icon/chevron-circle-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-circle-up at 6x   - + Example of chevron-circle-up at 5x    - + Example of chevron-circle-up at 4x    - + Example of chevron-circle-up at 3x    - + Example of chevron-circle-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-down/index.html b/icon/chevron-down/index.html index d9124dbbd..4f727fab6 100644 --- a/icon/chevron-down/index.html +++ b/icon/chevron-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-down at 6x   - + Example of chevron-down at 5x    - + Example of chevron-down at 4x    - + Example of chevron-down at 3x    - + Example of chevron-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-left/index.html b/icon/chevron-left/index.html index 7bc5c6605..e8a50878c 100644 --- a/icon/chevron-left/index.html +++ b/icon/chevron-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-left at 6x   - + Example of chevron-left at 5x    - + Example of chevron-left at 4x    - + Example of chevron-left at 3x    - + Example of chevron-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-right/index.html b/icon/chevron-right/index.html index 29b0bae9e..65f44368c 100644 --- a/icon/chevron-right/index.html +++ b/icon/chevron-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-right at 6x   - + Example of chevron-right at 5x    - + Example of chevron-right at 4x    - + Example of chevron-right at 3x    - + Example of chevron-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chevron-up/index.html b/icon/chevron-up/index.html index b834a2d9b..35e127b08 100644 --- a/icon/chevron-up/index.html +++ b/icon/chevron-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chevron-up at 6x   - + Example of chevron-up at 5x    - + Example of chevron-up at 4x    - + Example of chevron-up at 3x    - + Example of chevron-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/child/index.html b/icon/child/index.html index 903f7ffd0..629d57c19 100644 --- a/icon/child/index.html +++ b/icon/child/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of child at 6x   - + Example of child at 5x    - + Example of child at 4x    - + Example of child at 3x    - + Example of child at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/chrome/index.html b/icon/chrome/index.html index 976bc25bf..766d87b06 100644 --- a/icon/chrome/index.html +++ b/icon/chrome/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of chrome at 6x   - + Example of chrome at 5x    - + Example of chrome at 4x    - + Example of chrome at 3x    - + Example of chrome at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/circle-o-notch/index.html b/icon/circle-o-notch/index.html index e15479dfc..263240c56 100644 --- a/icon/circle-o-notch/index.html +++ b/icon/circle-o-notch/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of circle-o-notch at 6x   - + Example of circle-o-notch at 5x    - + Example of circle-o-notch at 4x    - + Example of circle-o-notch at 3x    - + Example of circle-o-notch at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/circle-o/index.html b/icon/circle-o/index.html index 80621ca41..a804de593 100644 --- a/icon/circle-o/index.html +++ b/icon/circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of circle-o at 6x   - + Example of circle-o at 5x    - + Example of circle-o at 4x    - + Example of circle-o at 3x    - + Example of circle-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/circle-thin/index.html b/icon/circle-thin/index.html index a5bc79da7..153137c59 100644 --- a/icon/circle-thin/index.html +++ b/icon/circle-thin/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of circle-thin at 6x   - + Example of circle-thin at 5x    - + Example of circle-thin at 4x    - + Example of circle-thin at 3x    - + Example of circle-thin at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/circle/index.html b/icon/circle/index.html index d455e53ef..f11edb8b6 100644 --- a/icon/circle/index.html +++ b/icon/circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of circle at 6x   - + Example of circle at 5x    - + Example of circle at 4x    - + Example of circle at 3x    - + Example of circle at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/clipboard/index.html b/icon/clipboard/index.html index 89ac75027..eb1ecab1d 100644 --- a/icon/clipboard/index.html +++ b/icon/clipboard/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of clipboard at 6x   - + Example of clipboard at 5x    - + Example of clipboard at 4x    - + Example of clipboard at 3x    - + Example of clipboard at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/clock-o/index.html b/icon/clock-o/index.html index 092b67607..4dd1ef4e3 100644 --- a/icon/clock-o/index.html +++ b/icon/clock-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of clock-o at 6x   - + Example of clock-o at 5x    - + Example of clock-o at 4x    - + Example of clock-o at 3x    - + Example of clock-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/clone/index.html b/icon/clone/index.html index 20a845f2f..c2f11f624 100644 --- a/icon/clone/index.html +++ b/icon/clone/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of clone at 6x   - + Example of clone at 5x    - + Example of clone at 4x    - + Example of clone at 3x    - + Example of clone at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cloud-download/index.html b/icon/cloud-download/index.html index f618ae058..9eeb94cb1 100644 --- a/icon/cloud-download/index.html +++ b/icon/cloud-download/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cloud-download at 6x   - + Example of cloud-download at 5x    - + Example of cloud-download at 4x    - + Example of cloud-download at 3x    - + Example of cloud-download at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cloud-upload/index.html b/icon/cloud-upload/index.html index bda0ada52..550a835fe 100644 --- a/icon/cloud-upload/index.html +++ b/icon/cloud-upload/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cloud-upload at 6x   - + Example of cloud-upload at 5x    - + Example of cloud-upload at 4x    - + Example of cloud-upload at 3x    - + Example of cloud-upload at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cloud/index.html b/icon/cloud/index.html index dc5ec2acc..2b3b321c7 100644 --- a/icon/cloud/index.html +++ b/icon/cloud/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cloud at 6x   - + Example of cloud at 5x    - + Example of cloud at 4x    - + Example of cloud at 3x    - + Example of cloud at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/code-fork/index.html b/icon/code-fork/index.html index a383242cb..a67f7a312 100644 --- a/icon/code-fork/index.html +++ b/icon/code-fork/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of code-fork at 6x   - + Example of code-fork at 5x    - + Example of code-fork at 4x    - + Example of code-fork at 3x    - + Example of code-fork at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/code/index.html b/icon/code/index.html index 17981053e..d65af38f6 100644 --- a/icon/code/index.html +++ b/icon/code/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of code at 6x   - + Example of code at 5x    - + Example of code at 4x    - + Example of code at 3x    - + Example of code at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/codepen/index.html b/icon/codepen/index.html index edef16783..3cb51db01 100644 --- a/icon/codepen/index.html +++ b/icon/codepen/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of codepen at 6x   - + Example of codepen at 5x    - + Example of codepen at 4x    - + Example of codepen at 3x    - + Example of codepen at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/codiepie/index.html b/icon/codiepie/index.html index 3b358c668..0424498c2 100644 --- a/icon/codiepie/index.html +++ b/icon/codiepie/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of codiepie at 6x   - + Example of codiepie at 5x    - + Example of codiepie at 4x    - + Example of codiepie at 3x    - + Example of codiepie at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/coffee/index.html b/icon/coffee/index.html index 6f9a3b555..b61c9161b 100644 --- a/icon/coffee/index.html +++ b/icon/coffee/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of coffee at 6x   - + Example of coffee at 5x    - + Example of coffee at 4x    - + Example of coffee at 3x    - + Example of coffee at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cog/index.html b/icon/cog/index.html index 2173f63df..50718c70d 100644 --- a/icon/cog/index.html +++ b/icon/cog/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cog at 6x   - + Example of cog at 5x    - + Example of cog at 4x    - + Example of cog at 3x    - + Example of cog at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cogs/index.html b/icon/cogs/index.html index 99b66a9dd..406fc7d46 100644 --- a/icon/cogs/index.html +++ b/icon/cogs/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cogs at 6x   - + Example of cogs at 5x    - + Example of cogs at 4x    - + Example of cogs at 3x    - + Example of cogs at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/columns/index.html b/icon/columns/index.html index dfbb5f397..2449b5cb9 100644 --- a/icon/columns/index.html +++ b/icon/columns/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of columns at 6x   - + Example of columns at 5x    - + Example of columns at 4x    - + Example of columns at 3x    - + Example of columns at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/comment-o/index.html b/icon/comment-o/index.html index b036c047e..463d65f59 100644 --- a/icon/comment-o/index.html +++ b/icon/comment-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of comment-o at 6x   - + Example of comment-o at 5x    - + Example of comment-o at 4x    - + Example of comment-o at 3x    - + Example of comment-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/comment/index.html b/icon/comment/index.html index e89b03791..2349eb8bd 100644 --- a/icon/comment/index.html +++ b/icon/comment/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of comment at 6x   - + Example of comment at 5x    - + Example of comment at 4x    - + Example of comment at 3x    - + Example of comment at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/commenting-o/index.html b/icon/commenting-o/index.html index bb3ed2628..22abcf457 100644 --- a/icon/commenting-o/index.html +++ b/icon/commenting-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of commenting-o at 6x   - + Example of commenting-o at 5x    - + Example of commenting-o at 4x    - + Example of commenting-o at 3x    - + Example of commenting-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/commenting/index.html b/icon/commenting/index.html index 8d9eba55d..74eb5f5ed 100644 --- a/icon/commenting/index.html +++ b/icon/commenting/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of commenting at 6x   - + Example of commenting at 5x    - + Example of commenting at 4x    - + Example of commenting at 3x    - + Example of commenting at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/comments-o/index.html b/icon/comments-o/index.html index f4295364b..8bb434d04 100644 --- a/icon/comments-o/index.html +++ b/icon/comments-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of comments-o at 6x   - + Example of comments-o at 5x    - + Example of comments-o at 4x    - + Example of comments-o at 3x    - + Example of comments-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/comments/index.html b/icon/comments/index.html index c4b0c1a62..cd898182b 100644 --- a/icon/comments/index.html +++ b/icon/comments/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of comments at 6x   - + Example of comments at 5x    - + Example of comments at 4x    - + Example of comments at 3x    - + Example of comments at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/compass/index.html b/icon/compass/index.html index 9fc04c1bd..0c1a9891e 100644 --- a/icon/compass/index.html +++ b/icon/compass/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of compass at 6x   - + Example of compass at 5x    - + Example of compass at 4x    - + Example of compass at 3x    - + Example of compass at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/compress/index.html b/icon/compress/index.html index 6ae5a0995..ee580af28 100644 --- a/icon/compress/index.html +++ b/icon/compress/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of compress at 6x   - + Example of compress at 5x    - + Example of compress at 4x    - + Example of compress at 3x    - + Example of compress at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/connectdevelop/index.html b/icon/connectdevelop/index.html index 2f551d78b..196220c74 100644 --- a/icon/connectdevelop/index.html +++ b/icon/connectdevelop/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of connectdevelop at 6x   - + Example of connectdevelop at 5x    - + Example of connectdevelop at 4x    - + Example of connectdevelop at 3x    - + Example of connectdevelop at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/contao/index.html b/icon/contao/index.html index 7163c131a..def3608fa 100644 --- a/icon/contao/index.html +++ b/icon/contao/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of contao at 6x   - + Example of contao at 5x    - + Example of contao at 4x    - + Example of contao at 3x    - + Example of contao at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/copyright/index.html b/icon/copyright/index.html index b14b869d0..5a84854fa 100644 --- a/icon/copyright/index.html +++ b/icon/copyright/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of copyright at 6x   - + Example of copyright at 5x    - + Example of copyright at 4x    - + Example of copyright at 3x    - + Example of copyright at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/creative-commons/index.html b/icon/creative-commons/index.html index b92b8d4e2..7bf62b13a 100644 --- a/icon/creative-commons/index.html +++ b/icon/creative-commons/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of creative-commons at 6x   - + Example of creative-commons at 5x    - + Example of creative-commons at 4x    - + Example of creative-commons at 3x    - + Example of creative-commons at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/credit-card-alt/index.html b/icon/credit-card-alt/index.html index 702926778..2a144d799 100644 --- a/icon/credit-card-alt/index.html +++ b/icon/credit-card-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of credit-card-alt at 6x   - + Example of credit-card-alt at 5x    - + Example of credit-card-alt at 4x    - + Example of credit-card-alt at 3x    - + Example of credit-card-alt at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/credit-card/index.html b/icon/credit-card/index.html index 3604ae895..3312b1b3b 100644 --- a/icon/credit-card/index.html +++ b/icon/credit-card/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of credit-card at 6x   - + Example of credit-card at 5x    - + Example of credit-card at 4x    - + Example of credit-card at 3x    - + Example of credit-card at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/crop/index.html b/icon/crop/index.html index 25ffb7c96..a6ed1b84b 100644 --- a/icon/crop/index.html +++ b/icon/crop/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of crop at 6x   - + Example of crop at 5x    - + Example of crop at 4x    - + Example of crop at 3x    - + Example of crop at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/crosshairs/index.html b/icon/crosshairs/index.html index af628ee46..e368927dc 100644 --- a/icon/crosshairs/index.html +++ b/icon/crosshairs/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of crosshairs at 6x   - + Example of crosshairs at 5x    - + Example of crosshairs at 4x    - + Example of crosshairs at 3x    - + Example of crosshairs at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/css3/index.html b/icon/css3/index.html index 7b8ba469c..56f98ff74 100644 --- a/icon/css3/index.html +++ b/icon/css3/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of css3 at 6x   - + Example of css3 at 5x    - + Example of css3 at 4x    - + Example of css3 at 3x    - + Example of css3 at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cube/index.html b/icon/cube/index.html index 894d1dd5a..d00343efb 100644 --- a/icon/cube/index.html +++ b/icon/cube/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cube at 6x   - + Example of cube at 5x    - + Example of cube at 4x    - + Example of cube at 3x    - + Example of cube at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cubes/index.html b/icon/cubes/index.html index 783d91605..94e446f6d 100644 --- a/icon/cubes/index.html +++ b/icon/cubes/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cubes at 6x   - + Example of cubes at 5x    - + Example of cubes at 4x    - + Example of cubes at 3x    - + Example of cubes at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/cutlery/index.html b/icon/cutlery/index.html index 45de51c37..28ba30ec7 100644 --- a/icon/cutlery/index.html +++ b/icon/cutlery/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of cutlery at 6x   - + Example of cutlery at 5x    - + Example of cutlery at 4x    - + Example of cutlery at 3x    - + Example of cutlery at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/dashcube/index.html b/icon/dashcube/index.html index 1e21b1338..7e655c376 100644 --- a/icon/dashcube/index.html +++ b/icon/dashcube/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of dashcube at 6x   - + Example of dashcube at 5x    - + Example of dashcube at 4x    - + Example of dashcube at 3x    - + Example of dashcube at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/database/index.html b/icon/database/index.html index 72d4cd83c..25b270f8e 100644 --- a/icon/database/index.html +++ b/icon/database/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of database at 6x   - + Example of database at 5x    - + Example of database at 4x    - + Example of database at 3x    - + Example of database at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/deaf/index.html b/icon/deaf/index.html index 2a8ec2a2e..375a12b4e 100644 --- a/icon/deaf/index.html +++ b/icon/deaf/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of deaf at 6x   - + Example of deaf at 5x    - + Example of deaf at 4x    - + Example of deaf at 3x    - + Example of deaf at 2x   @@ -267,7 +271,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/delicious/index.html b/icon/delicious/index.html index bd564a703..f706657ea 100644 --- a/icon/delicious/index.html +++ b/icon/delicious/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of delicious at 6x   - + Example of delicious at 5x    - + Example of delicious at 4x    - + Example of delicious at 3x    - + Example of delicious at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/desktop/index.html b/icon/desktop/index.html index f594a9a8b..7b5149db5 100644 --- a/icon/desktop/index.html +++ b/icon/desktop/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of desktop at 6x   - + Example of desktop at 5x    - + Example of desktop at 4x    - + Example of desktop at 3x    - + Example of desktop at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/deviantart/index.html b/icon/deviantart/index.html index 57b4f806e..a0db2f85f 100644 --- a/icon/deviantart/index.html +++ b/icon/deviantart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of deviantart at 6x   - + Example of deviantart at 5x    - + Example of deviantart at 4x    - + Example of deviantart at 3x    - + Example of deviantart at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/diamond/index.html b/icon/diamond/index.html index 4eea5a45b..cd1d00d08 100644 --- a/icon/diamond/index.html +++ b/icon/diamond/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of diamond at 6x   - + Example of diamond at 5x    - + Example of diamond at 4x    - + Example of diamond at 3x    - + Example of diamond at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/digg/index.html b/icon/digg/index.html index 1b91b6702..3081ca77f 100644 --- a/icon/digg/index.html +++ b/icon/digg/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of digg at 6x   - + Example of digg at 5x    - + Example of digg at 4x    - + Example of digg at 3x    - + Example of digg at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/dot-circle-o/index.html b/icon/dot-circle-o/index.html index e04da3f0f..2a675c457 100644 --- a/icon/dot-circle-o/index.html +++ b/icon/dot-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of dot-circle-o at 6x   - + Example of dot-circle-o at 5x    - + Example of dot-circle-o at 4x    - + Example of dot-circle-o at 3x    - + Example of dot-circle-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/download/index.html b/icon/download/index.html index 3349ab427..c154ef0cf 100644 --- a/icon/download/index.html +++ b/icon/download/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of download at 6x   - + Example of download at 5x    - + Example of download at 4x    - + Example of download at 3x    - + Example of download at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/dribbble/index.html b/icon/dribbble/index.html index f223c3be9..1ebb796c2 100644 --- a/icon/dribbble/index.html +++ b/icon/dribbble/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of dribbble at 6x   - + Example of dribbble at 5x    - + Example of dribbble at 4x    - + Example of dribbble at 3x    - + Example of dribbble at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/dropbox/index.html b/icon/dropbox/index.html index 60e5df07c..edf19bf73 100644 --- a/icon/dropbox/index.html +++ b/icon/dropbox/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of dropbox at 6x   - + Example of dropbox at 5x    - + Example of dropbox at 4x    - + Example of dropbox at 3x    - + Example of dropbox at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/drupal/index.html b/icon/drupal/index.html index e26d65c79..5d0c24ca0 100644 --- a/icon/drupal/index.html +++ b/icon/drupal/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of drupal at 6x   - + Example of drupal at 5x    - + Example of drupal at 4x    - + Example of drupal at 3x    - + Example of drupal at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/edge/index.html b/icon/edge/index.html index a735d1ddb..fc0f93471 100644 --- a/icon/edge/index.html +++ b/icon/edge/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of edge at 6x   - + Example of edge at 5x    - + Example of edge at 4x    - + Example of edge at 3x    - + Example of edge at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eject/index.html b/icon/eject/index.html index 28c5b9479..f99cb0f10 100644 --- a/icon/eject/index.html +++ b/icon/eject/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eject at 6x   - + Example of eject at 5x    - + Example of eject at 4x    - + Example of eject at 3x    - + Example of eject at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ellipsis-h/index.html b/icon/ellipsis-h/index.html index 91536f2f0..fc5097f5b 100644 --- a/icon/ellipsis-h/index.html +++ b/icon/ellipsis-h/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ellipsis-h at 6x   - + Example of ellipsis-h at 5x    - + Example of ellipsis-h at 4x    - + Example of ellipsis-h at 3x    - + Example of ellipsis-h at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ellipsis-v/index.html b/icon/ellipsis-v/index.html index 0c27ba0a8..ad03cd307 100644 --- a/icon/ellipsis-v/index.html +++ b/icon/ellipsis-v/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ellipsis-v at 6x   - + Example of ellipsis-v at 5x    - + Example of ellipsis-v at 4x    - + Example of ellipsis-v at 3x    - + Example of ellipsis-v at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/empire/index.html b/icon/empire/index.html index f4acec865..29b1cb459 100644 --- a/icon/empire/index.html +++ b/icon/empire/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of empire at 6x   - + Example of empire at 5x    - + Example of empire at 4x    - + Example of empire at 3x    - + Example of empire at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/envelope-o/index.html b/icon/envelope-o/index.html index 45c8d9425..973d57268 100644 --- a/icon/envelope-o/index.html +++ b/icon/envelope-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of envelope-o at 6x   - + Example of envelope-o at 5x    - + Example of envelope-o at 4x    - + Example of envelope-o at 3x    - + Example of envelope-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/envelope-square/index.html b/icon/envelope-square/index.html index 8822c4557..1a2aa419c 100644 --- a/icon/envelope-square/index.html +++ b/icon/envelope-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of envelope-square at 6x   - + Example of envelope-square at 5x    - + Example of envelope-square at 4x    - + Example of envelope-square at 3x    - + Example of envelope-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/envelope/index.html b/icon/envelope/index.html index 8d845612a..2a3cb933f 100644 --- a/icon/envelope/index.html +++ b/icon/envelope/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of envelope at 6x   - + Example of envelope at 5x    - + Example of envelope at 4x    - + Example of envelope at 3x    - + Example of envelope at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/envira/index.html b/icon/envira/index.html index 81b6c8052..7d2bc8338 100644 --- a/icon/envira/index.html +++ b/icon/envira/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of envira at 6x   - + Example of envira at 5x    - + Example of envira at 4x    - + Example of envira at 3x    - + Example of envira at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eraser/index.html b/icon/eraser/index.html index 0b1621839..1f5a78604 100644 --- a/icon/eraser/index.html +++ b/icon/eraser/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eraser at 6x   - + Example of eraser at 5x    - + Example of eraser at 4x    - + Example of eraser at 3x    - + Example of eraser at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eur/index.html b/icon/eur/index.html index b6ae7877c..95bffd04f 100644 --- a/icon/eur/index.html +++ b/icon/eur/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eur at 6x   - + Example of eur at 5x    - + Example of eur at 4x    - + Example of eur at 3x    - + Example of eur at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/exchange/index.html b/icon/exchange/index.html index 9ebb3a233..62e95a9c1 100644 --- a/icon/exchange/index.html +++ b/icon/exchange/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of exchange at 6x   - + Example of exchange at 5x    - + Example of exchange at 4x    - + Example of exchange at 3x    - + Example of exchange at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/exclamation-circle/index.html b/icon/exclamation-circle/index.html index d1fae6a1b..f421846a1 100644 --- a/icon/exclamation-circle/index.html +++ b/icon/exclamation-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of exclamation-circle at 6x   - + Example of exclamation-circle at 5x    - + Example of exclamation-circle at 4x    - + Example of exclamation-circle at 3x    - + Example of exclamation-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/exclamation-triangle/index.html b/icon/exclamation-triangle/index.html index e08f329b2..b8b6b8b1d 100644 --- a/icon/exclamation-triangle/index.html +++ b/icon/exclamation-triangle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of exclamation-triangle at 6x   - + Example of exclamation-triangle at 5x    - + Example of exclamation-triangle at 4x    - + Example of exclamation-triangle at 3x    - + Example of exclamation-triangle at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/exclamation/index.html b/icon/exclamation/index.html index 5af5490be..3f0840dca 100644 --- a/icon/exclamation/index.html +++ b/icon/exclamation/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of exclamation at 6x   - + Example of exclamation at 5x    - + Example of exclamation at 4x    - + Example of exclamation at 3x    - + Example of exclamation at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/expand/index.html b/icon/expand/index.html index c965de471..886294220 100644 --- a/icon/expand/index.html +++ b/icon/expand/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of expand at 6x   - + Example of expand at 5x    - + Example of expand at 4x    - + Example of expand at 3x    - + Example of expand at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/expeditedssl/index.html b/icon/expeditedssl/index.html index 0fcb81266..c6c5fccf9 100644 --- a/icon/expeditedssl/index.html +++ b/icon/expeditedssl/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of expeditedssl at 6x   - + Example of expeditedssl at 5x    - + Example of expeditedssl at 4x    - + Example of expeditedssl at 3x    - + Example of expeditedssl at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/external-link-square/index.html b/icon/external-link-square/index.html index b74055d49..c17573ab2 100644 --- a/icon/external-link-square/index.html +++ b/icon/external-link-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of external-link-square at 6x   - + Example of external-link-square at 5x    - + Example of external-link-square at 4x    - + Example of external-link-square at 3x    - + Example of external-link-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/external-link/index.html b/icon/external-link/index.html index e88a728db..a9e5a2028 100644 --- a/icon/external-link/index.html +++ b/icon/external-link/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of external-link at 6x   - + Example of external-link at 5x    - + Example of external-link at 4x    - + Example of external-link at 3x    - + Example of external-link at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eye-slash/index.html b/icon/eye-slash/index.html index bcce1de38..a4cbc56c7 100644 --- a/icon/eye-slash/index.html +++ b/icon/eye-slash/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eye-slash at 6x   - + Example of eye-slash at 5x    - + Example of eye-slash at 4x    - + Example of eye-slash at 3x    - + Example of eye-slash at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eye/index.html b/icon/eye/index.html index 484ddc59e..4300eb88a 100644 --- a/icon/eye/index.html +++ b/icon/eye/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eye at 6x   - + Example of eye at 5x    - + Example of eye at 4x    - + Example of eye at 3x    - + Example of eye at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/eyedropper/index.html b/icon/eyedropper/index.html index 4c8b7055e..1aed63269 100644 --- a/icon/eyedropper/index.html +++ b/icon/eyedropper/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of eyedropper at 6x   - + Example of eyedropper at 5x    - + Example of eyedropper at 4x    - + Example of eyedropper at 3x    - + Example of eyedropper at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/facebook-official/index.html b/icon/facebook-official/index.html index d159de4f4..426d7d658 100644 --- a/icon/facebook-official/index.html +++ b/icon/facebook-official/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of facebook-official at 6x   - + Example of facebook-official at 5x    - + Example of facebook-official at 4x    - + Example of facebook-official at 3x    - + Example of facebook-official at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/facebook-square/index.html b/icon/facebook-square/index.html index 717591760..1c9855efa 100644 --- a/icon/facebook-square/index.html +++ b/icon/facebook-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of facebook-square at 6x   - + Example of facebook-square at 5x    - + Example of facebook-square at 4x    - + Example of facebook-square at 3x    - + Example of facebook-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/facebook/index.html b/icon/facebook/index.html index 49d747c60..b735e0873 100644 --- a/icon/facebook/index.html +++ b/icon/facebook/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of facebook at 6x   - + Example of facebook at 5x    - + Example of facebook at 4x    - + Example of facebook at 3x    - + Example of facebook at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fast-backward/index.html b/icon/fast-backward/index.html index 69e95e955..237552ebb 100644 --- a/icon/fast-backward/index.html +++ b/icon/fast-backward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fast-backward at 6x   - + Example of fast-backward at 5x    - + Example of fast-backward at 4x    - + Example of fast-backward at 3x    - + Example of fast-backward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fast-forward/index.html b/icon/fast-forward/index.html index cd6d44273..7de31cc95 100644 --- a/icon/fast-forward/index.html +++ b/icon/fast-forward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fast-forward at 6x   - + Example of fast-forward at 5x    - + Example of fast-forward at 4x    - + Example of fast-forward at 3x    - + Example of fast-forward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fax/index.html b/icon/fax/index.html index fb6445042..8986cc91e 100644 --- a/icon/fax/index.html +++ b/icon/fax/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fax at 6x   - + Example of fax at 5x    - + Example of fax at 4x    - + Example of fax at 3x    - + Example of fax at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/female/index.html b/icon/female/index.html index 7fb236881..a91713f04 100644 --- a/icon/female/index.html +++ b/icon/female/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of female at 6x   - + Example of female at 5x    - + Example of female at 4x    - + Example of female at 3x    - + Example of female at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fighter-jet/index.html b/icon/fighter-jet/index.html index d46a86192..f9fc4dd0c 100644 --- a/icon/fighter-jet/index.html +++ b/icon/fighter-jet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fighter-jet at 6x   - + Example of fighter-jet at 5x    - + Example of fighter-jet at 4x    - + Example of fighter-jet at 3x    - + Example of fighter-jet at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-archive-o/index.html b/icon/file-archive-o/index.html index 970c0b225..f5c3a15d2 100644 --- a/icon/file-archive-o/index.html +++ b/icon/file-archive-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-archive-o at 6x   - + Example of file-archive-o at 5x    - + Example of file-archive-o at 4x    - + Example of file-archive-o at 3x    - + Example of file-archive-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-audio-o/index.html b/icon/file-audio-o/index.html index d3006bc39..a24deb75e 100644 --- a/icon/file-audio-o/index.html +++ b/icon/file-audio-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-audio-o at 6x   - + Example of file-audio-o at 5x    - + Example of file-audio-o at 4x    - + Example of file-audio-o at 3x    - + Example of file-audio-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-code-o/index.html b/icon/file-code-o/index.html index 3cc420139..b4558eec7 100644 --- a/icon/file-code-o/index.html +++ b/icon/file-code-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-code-o at 6x   - + Example of file-code-o at 5x    - + Example of file-code-o at 4x    - + Example of file-code-o at 3x    - + Example of file-code-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-excel-o/index.html b/icon/file-excel-o/index.html index d82a594df..086bd7979 100644 --- a/icon/file-excel-o/index.html +++ b/icon/file-excel-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-excel-o at 6x   - + Example of file-excel-o at 5x    - + Example of file-excel-o at 4x    - + Example of file-excel-o at 3x    - + Example of file-excel-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-image-o/index.html b/icon/file-image-o/index.html index 98997f9d0..87b7f85fb 100644 --- a/icon/file-image-o/index.html +++ b/icon/file-image-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-image-o at 6x   - + Example of file-image-o at 5x    - + Example of file-image-o at 4x    - + Example of file-image-o at 3x    - + Example of file-image-o at 2x   @@ -267,7 +271,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-o/index.html b/icon/file-o/index.html index 7eaa38db0..0e3eb372e 100644 --- a/icon/file-o/index.html +++ b/icon/file-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-o at 6x   - + Example of file-o at 5x    - + Example of file-o at 4x    - + Example of file-o at 3x    - + Example of file-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-pdf-o/index.html b/icon/file-pdf-o/index.html index 21d99ba61..e2bf31471 100644 --- a/icon/file-pdf-o/index.html +++ b/icon/file-pdf-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-pdf-o at 6x   - + Example of file-pdf-o at 5x    - + Example of file-pdf-o at 4x    - + Example of file-pdf-o at 3x    - + Example of file-pdf-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-powerpoint-o/index.html b/icon/file-powerpoint-o/index.html index 718b4a39a..2a2ce3f29 100644 --- a/icon/file-powerpoint-o/index.html +++ b/icon/file-powerpoint-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-powerpoint-o at 6x   - + Example of file-powerpoint-o at 5x    - + Example of file-powerpoint-o at 4x    - + Example of file-powerpoint-o at 3x    - + Example of file-powerpoint-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-text-o/index.html b/icon/file-text-o/index.html index c111829e6..99276b988 100644 --- a/icon/file-text-o/index.html +++ b/icon/file-text-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-text-o at 6x   - + Example of file-text-o at 5x    - + Example of file-text-o at 4x    - + Example of file-text-o at 3x    - + Example of file-text-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-text/index.html b/icon/file-text/index.html index 349855e2b..07e71a17d 100644 --- a/icon/file-text/index.html +++ b/icon/file-text/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-text at 6x   - + Example of file-text at 5x    - + Example of file-text at 4x    - + Example of file-text at 3x    - + Example of file-text at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-video-o/index.html b/icon/file-video-o/index.html index 5df6adb56..cb983f175 100644 --- a/icon/file-video-o/index.html +++ b/icon/file-video-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-video-o at 6x   - + Example of file-video-o at 5x    - + Example of file-video-o at 4x    - + Example of file-video-o at 3x    - + Example of file-video-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file-word-o/index.html b/icon/file-word-o/index.html index f13788cac..6db719b08 100644 --- a/icon/file-word-o/index.html +++ b/icon/file-word-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file-word-o at 6x   - + Example of file-word-o at 5x    - + Example of file-word-o at 4x    - + Example of file-word-o at 3x    - + Example of file-word-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/file/index.html b/icon/file/index.html index ee71a4552..f7ddffe68 100644 --- a/icon/file/index.html +++ b/icon/file/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of file at 6x   - + Example of file at 5x    - + Example of file at 4x    - + Example of file at 3x    - + Example of file at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/files-o/index.html b/icon/files-o/index.html index 01b3406e8..2348cc5ba 100644 --- a/icon/files-o/index.html +++ b/icon/files-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of files-o at 6x   - + Example of files-o at 5x    - + Example of files-o at 4x    - + Example of files-o at 3x    - + Example of files-o at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/film/index.html b/icon/film/index.html index d175d3b9e..4720eb9f4 100644 --- a/icon/film/index.html +++ b/icon/film/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of film at 6x   - + Example of film at 5x    - + Example of film at 4x    - + Example of film at 3x    - + Example of film at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/filter/index.html b/icon/filter/index.html index 55fb5ef94..55ef20291 100644 --- a/icon/filter/index.html +++ b/icon/filter/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of filter at 6x   - + Example of filter at 5x    - + Example of filter at 4x    - + Example of filter at 3x    - + Example of filter at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fire-extinguisher/index.html b/icon/fire-extinguisher/index.html index 3bc5d25c1..fab93f314 100644 --- a/icon/fire-extinguisher/index.html +++ b/icon/fire-extinguisher/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fire-extinguisher at 6x   - + Example of fire-extinguisher at 5x    - + Example of fire-extinguisher at 4x    - + Example of fire-extinguisher at 3x    - + Example of fire-extinguisher at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fire/index.html b/icon/fire/index.html index 9990fc4f6..8250fe140 100644 --- a/icon/fire/index.html +++ b/icon/fire/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fire at 6x   - + Example of fire at 5x    - + Example of fire at 4x    - + Example of fire at 3x    - + Example of fire at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/firefox/index.html b/icon/firefox/index.html index cd60de201..5a3272c4f 100644 --- a/icon/firefox/index.html +++ b/icon/firefox/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of firefox at 6x   - + Example of firefox at 5x    - + Example of firefox at 4x    - + Example of firefox at 3x    - + Example of firefox at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/flag-checkered/index.html b/icon/flag-checkered/index.html index ec977217e..f19650d6c 100644 --- a/icon/flag-checkered/index.html +++ b/icon/flag-checkered/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of flag-checkered at 6x   - + Example of flag-checkered at 5x    - + Example of flag-checkered at 4x    - + Example of flag-checkered at 3x    - + Example of flag-checkered at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/flag-o/index.html b/icon/flag-o/index.html index 91620d0fb..a08f5df34 100644 --- a/icon/flag-o/index.html +++ b/icon/flag-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of flag-o at 6x   - + Example of flag-o at 5x    - + Example of flag-o at 4x    - + Example of flag-o at 3x    - + Example of flag-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/flag/index.html b/icon/flag/index.html index 180511f69..7ebcc952a 100644 --- a/icon/flag/index.html +++ b/icon/flag/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of flag at 6x   - + Example of flag at 5x    - + Example of flag at 4x    - + Example of flag at 3x    - + Example of flag at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/flask/index.html b/icon/flask/index.html index 5d9a78f3a..ae0d9d9c1 100644 --- a/icon/flask/index.html +++ b/icon/flask/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of flask at 6x   - + Example of flask at 5x    - + Example of flask at 4x    - + Example of flask at 3x    - + Example of flask at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/flickr/index.html b/icon/flickr/index.html index f69dc29e5..1e284ff78 100644 --- a/icon/flickr/index.html +++ b/icon/flickr/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of flickr at 6x   - + Example of flickr at 5x    - + Example of flickr at 4x    - + Example of flickr at 3x    - + Example of flickr at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/floppy-o/index.html b/icon/floppy-o/index.html index be4bfe9f0..fc5674a90 100644 --- a/icon/floppy-o/index.html +++ b/icon/floppy-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of floppy-o at 6x   - + Example of floppy-o at 5x    - + Example of floppy-o at 4x    - + Example of floppy-o at 3x    - + Example of floppy-o at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/folder-o/index.html b/icon/folder-o/index.html index 8b64c4f41..139bfc10f 100644 --- a/icon/folder-o/index.html +++ b/icon/folder-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of folder-o at 6x   - + Example of folder-o at 5x    - + Example of folder-o at 4x    - + Example of folder-o at 3x    - + Example of folder-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/folder-open-o/index.html b/icon/folder-open-o/index.html index 0821b344f..67f8e6cb9 100644 --- a/icon/folder-open-o/index.html +++ b/icon/folder-open-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of folder-open-o at 6x   - + Example of folder-open-o at 5x    - + Example of folder-open-o at 4x    - + Example of folder-open-o at 3x    - + Example of folder-open-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/folder-open/index.html b/icon/folder-open/index.html index b2b5d6463..ad1039604 100644 --- a/icon/folder-open/index.html +++ b/icon/folder-open/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of folder-open at 6x   - + Example of folder-open at 5x    - + Example of folder-open at 4x    - + Example of folder-open at 3x    - + Example of folder-open at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/folder/index.html b/icon/folder/index.html index bae6f2872..d31c2b362 100644 --- a/icon/folder/index.html +++ b/icon/folder/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of folder at 6x   - + Example of folder at 5x    - + Example of folder at 4x    - + Example of folder at 3x    - + Example of folder at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/font/index.html b/icon/font/index.html index 8212ce6ba..112b43948 100644 --- a/icon/font/index.html +++ b/icon/font/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of font at 6x   - + Example of font at 5x    - + Example of font at 4x    - + Example of font at 3x    - + Example of font at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fonticons/index.html b/icon/fonticons/index.html index c997027ec..bdf3e34f1 100644 --- a/icon/fonticons/index.html +++ b/icon/fonticons/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fonticons at 6x   - + Example of fonticons at 5x    - + Example of fonticons at 4x    - + Example of fonticons at 3x    - + Example of fonticons at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/fort-awesome/index.html b/icon/fort-awesome/index.html index 13ca39187..02cda9645 100644 --- a/icon/fort-awesome/index.html +++ b/icon/fort-awesome/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of fort-awesome at 6x   - + Example of fort-awesome at 5x    - + Example of fort-awesome at 4x    - + Example of fort-awesome at 3x    - + Example of fort-awesome at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/forumbee/index.html b/icon/forumbee/index.html index 562b87894..2a999898b 100644 --- a/icon/forumbee/index.html +++ b/icon/forumbee/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of forumbee at 6x   - + Example of forumbee at 5x    - + Example of forumbee at 4x    - + Example of forumbee at 3x    - + Example of forumbee at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/forward/index.html b/icon/forward/index.html index 8b2601018..f0664c008 100644 --- a/icon/forward/index.html +++ b/icon/forward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of forward at 6x   - + Example of forward at 5x    - + Example of forward at 4x    - + Example of forward at 3x    - + Example of forward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/foursquare/index.html b/icon/foursquare/index.html index 8f824f8a8..204d2708f 100644 --- a/icon/foursquare/index.html +++ b/icon/foursquare/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of foursquare at 6x   - + Example of foursquare at 5x    - + Example of foursquare at 4x    - + Example of foursquare at 3x    - + Example of foursquare at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/frown-o/index.html b/icon/frown-o/index.html index 8d599edfe..6671fa646 100644 --- a/icon/frown-o/index.html +++ b/icon/frown-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of frown-o at 6x   - + Example of frown-o at 5x    - + Example of frown-o at 4x    - + Example of frown-o at 3x    - + Example of frown-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/futbol-o/index.html b/icon/futbol-o/index.html index 29f3c971e..1c3f2cc27 100644 --- a/icon/futbol-o/index.html +++ b/icon/futbol-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of futbol-o at 6x   - + Example of futbol-o at 5x    - + Example of futbol-o at 4x    - + Example of futbol-o at 3x    - + Example of futbol-o at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gamepad/index.html b/icon/gamepad/index.html index 643b03d1b..4e4f754bb 100644 --- a/icon/gamepad/index.html +++ b/icon/gamepad/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gamepad at 6x   - + Example of gamepad at 5x    - + Example of gamepad at 4x    - + Example of gamepad at 3x    - + Example of gamepad at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gavel/index.html b/icon/gavel/index.html index 5cd46e390..7f0b27d89 100644 --- a/icon/gavel/index.html +++ b/icon/gavel/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gavel at 6x   - + Example of gavel at 5x    - + Example of gavel at 4x    - + Example of gavel at 3x    - + Example of gavel at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gbp/index.html b/icon/gbp/index.html index 42449adaf..33884320a 100644 --- a/icon/gbp/index.html +++ b/icon/gbp/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gbp at 6x   - + Example of gbp at 5x    - + Example of gbp at 4x    - + Example of gbp at 3x    - + Example of gbp at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/genderless/index.html b/icon/genderless/index.html index de18d03d8..baad4e24b 100644 --- a/icon/genderless/index.html +++ b/icon/genderless/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of genderless at 6x   - + Example of genderless at 5x    - + Example of genderless at 4x    - + Example of genderless at 3x    - + Example of genderless at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/get-pocket/index.html b/icon/get-pocket/index.html index 766cc5e65..fe98ef1ba 100644 --- a/icon/get-pocket/index.html +++ b/icon/get-pocket/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of get-pocket at 6x   - + Example of get-pocket at 5x    - + Example of get-pocket at 4x    - + Example of get-pocket at 3x    - + Example of get-pocket at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gg-circle/index.html b/icon/gg-circle/index.html index 29ca40508..2b5698bbc 100644 --- a/icon/gg-circle/index.html +++ b/icon/gg-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gg-circle at 6x   - + Example of gg-circle at 5x    - + Example of gg-circle at 4x    - + Example of gg-circle at 3x    - + Example of gg-circle at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gg/index.html b/icon/gg/index.html index 6df5e3e21..f03c38e46 100644 --- a/icon/gg/index.html +++ b/icon/gg/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gg at 6x   - + Example of gg at 5x    - + Example of gg at 4x    - + Example of gg at 3x    - + Example of gg at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gift/index.html b/icon/gift/index.html index e81b0f860..0dfde35d4 100644 --- a/icon/gift/index.html +++ b/icon/gift/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gift at 6x   - + Example of gift at 5x    - + Example of gift at 4x    - + Example of gift at 3x    - + Example of gift at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/git-square/index.html b/icon/git-square/index.html index 9b5316b7b..a092c3acd 100644 --- a/icon/git-square/index.html +++ b/icon/git-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of git-square at 6x   - + Example of git-square at 5x    - + Example of git-square at 4x    - + Example of git-square at 3x    - + Example of git-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/git/index.html b/icon/git/index.html index a5f772c62..35803e216 100644 --- a/icon/git/index.html +++ b/icon/git/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of git at 6x   - + Example of git at 5x    - + Example of git at 4x    - + Example of git at 3x    - + Example of git at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/github-alt/index.html b/icon/github-alt/index.html index 8e2ff2d0a..f7ae11609 100644 --- a/icon/github-alt/index.html +++ b/icon/github-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of github-alt at 6x   - + Example of github-alt at 5x    - + Example of github-alt at 4x    - + Example of github-alt at 3x    - + Example of github-alt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/github-square/index.html b/icon/github-square/index.html index ff2b4602d..2e85a9843 100644 --- a/icon/github-square/index.html +++ b/icon/github-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of github-square at 6x   - + Example of github-square at 5x    - + Example of github-square at 4x    - + Example of github-square at 3x    - + Example of github-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/github/index.html b/icon/github/index.html index 91c9cc384..971bd4395 100644 --- a/icon/github/index.html +++ b/icon/github/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of github at 6x   - + Example of github at 5x    - + Example of github at 4x    - + Example of github at 3x    - + Example of github at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gitlab/index.html b/icon/gitlab/index.html index f1f2391e0..8f689af26 100644 --- a/icon/gitlab/index.html +++ b/icon/gitlab/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gitlab at 6x   - + Example of gitlab at 5x    - + Example of gitlab at 4x    - + Example of gitlab at 3x    - + Example of gitlab at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/glass/index.html b/icon/glass/index.html index 15060acee..afd28411b 100644 --- a/icon/glass/index.html +++ b/icon/glass/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of glass at 6x   - + Example of glass at 5x    - + Example of glass at 4x    - + Example of glass at 3x    - + Example of glass at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/glide-g/index.html b/icon/glide-g/index.html index 092105ec3..96480d418 100644 --- a/icon/glide-g/index.html +++ b/icon/glide-g/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of glide-g at 6x   - + Example of glide-g at 5x    - + Example of glide-g at 4x    - + Example of glide-g at 3x    - + Example of glide-g at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/glide/index.html b/icon/glide/index.html index 3538ad7ae..17eb7e77e 100644 --- a/icon/glide/index.html +++ b/icon/glide/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of glide at 6x   - + Example of glide at 5x    - + Example of glide at 4x    - + Example of glide at 3x    - + Example of glide at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/globe/index.html b/icon/globe/index.html index e1dcab7ce..5d1562fd6 100644 --- a/icon/globe/index.html +++ b/icon/globe/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of globe at 6x   - + Example of globe at 5x    - + Example of globe at 4x    - + Example of globe at 3x    - + Example of globe at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/google-plus-square/index.html b/icon/google-plus-square/index.html index 7f7becc3a..e9c424f06 100644 --- a/icon/google-plus-square/index.html +++ b/icon/google-plus-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of google-plus-square at 6x   - + Example of google-plus-square at 5x    - + Example of google-plus-square at 4x    - + Example of google-plus-square at 3x    - + Example of google-plus-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/google-plus/index.html b/icon/google-plus/index.html index 748fbf50f..993cd5822 100644 --- a/icon/google-plus/index.html +++ b/icon/google-plus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of google-plus at 6x   - + Example of google-plus at 5x    - + Example of google-plus at 4x    - + Example of google-plus at 3x    - + Example of google-plus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/google-wallet/index.html b/icon/google-wallet/index.html index 38e6594d3..6f4675c2d 100644 --- a/icon/google-wallet/index.html +++ b/icon/google-wallet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of google-wallet at 6x   - + Example of google-wallet at 5x    - + Example of google-wallet at 4x    - + Example of google-wallet at 3x    - + Example of google-wallet at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/google/index.html b/icon/google/index.html index fe6bd063d..6f3c8edea 100644 --- a/icon/google/index.html +++ b/icon/google/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of google at 6x   - + Example of google at 5x    - + Example of google at 4x    - + Example of google at 3x    - + Example of google at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/graduation-cap/index.html b/icon/graduation-cap/index.html index 9504897f7..856236882 100644 --- a/icon/graduation-cap/index.html +++ b/icon/graduation-cap/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of graduation-cap at 6x   - + Example of graduation-cap at 5x    - + Example of graduation-cap at 4x    - + Example of graduation-cap at 3x    - + Example of graduation-cap at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/gratipay/index.html b/icon/gratipay/index.html index ea02fa002..12d586937 100644 --- a/icon/gratipay/index.html +++ b/icon/gratipay/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of gratipay at 6x   - + Example of gratipay at 5x    - + Example of gratipay at 4x    - + Example of gratipay at 3x    - + Example of gratipay at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/h-square/index.html b/icon/h-square/index.html index 66a865b41..82d37afa9 100644 --- a/icon/h-square/index.html +++ b/icon/h-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of h-square at 6x   - + Example of h-square at 5x    - + Example of h-square at 4x    - + Example of h-square at 3x    - + Example of h-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hacker-news/index.html b/icon/hacker-news/index.html index 0819da009..7730edb01 100644 --- a/icon/hacker-news/index.html +++ b/icon/hacker-news/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hacker-news at 6x   - + Example of hacker-news at 5x    - + Example of hacker-news at 4x    - + Example of hacker-news at 3x    - + Example of hacker-news at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-lizard-o/index.html b/icon/hand-lizard-o/index.html index 7aa740eee..810a6e4e5 100644 --- a/icon/hand-lizard-o/index.html +++ b/icon/hand-lizard-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-lizard-o at 6x   - + Example of hand-lizard-o at 5x    - + Example of hand-lizard-o at 4x    - + Example of hand-lizard-o at 3x    - + Example of hand-lizard-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-o-down/index.html b/icon/hand-o-down/index.html index 9dc4e8aaf..162aa0fb0 100644 --- a/icon/hand-o-down/index.html +++ b/icon/hand-o-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-o-down at 6x   - + Example of hand-o-down at 5x    - + Example of hand-o-down at 4x    - + Example of hand-o-down at 3x    - + Example of hand-o-down at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-o-left/index.html b/icon/hand-o-left/index.html index 327862adb..acb54d09b 100644 --- a/icon/hand-o-left/index.html +++ b/icon/hand-o-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-o-left at 6x   - + Example of hand-o-left at 5x    - + Example of hand-o-left at 4x    - + Example of hand-o-left at 3x    - + Example of hand-o-left at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-o-right/index.html b/icon/hand-o-right/index.html index fcfecf184..a1bbf4ade 100644 --- a/icon/hand-o-right/index.html +++ b/icon/hand-o-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-o-right at 6x   - + Example of hand-o-right at 5x    - + Example of hand-o-right at 4x    - + Example of hand-o-right at 3x    - + Example of hand-o-right at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-o-up/index.html b/icon/hand-o-up/index.html index 5dff5d520..b2ce44c6c 100644 --- a/icon/hand-o-up/index.html +++ b/icon/hand-o-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-o-up at 6x   - + Example of hand-o-up at 5x    - + Example of hand-o-up at 4x    - + Example of hand-o-up at 3x    - + Example of hand-o-up at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-paper-o/index.html b/icon/hand-paper-o/index.html index 9fed78957..668ed6d37 100644 --- a/icon/hand-paper-o/index.html +++ b/icon/hand-paper-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-paper-o at 6x   - + Example of hand-paper-o at 5x    - + Example of hand-paper-o at 4x    - + Example of hand-paper-o at 3x    - + Example of hand-paper-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-peace-o/index.html b/icon/hand-peace-o/index.html index ebdd211a6..535925cb5 100644 --- a/icon/hand-peace-o/index.html +++ b/icon/hand-peace-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-peace-o at 6x   - + Example of hand-peace-o at 5x    - + Example of hand-peace-o at 4x    - + Example of hand-peace-o at 3x    - + Example of hand-peace-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-pointer-o/index.html b/icon/hand-pointer-o/index.html index e11f1dbc9..ad2438228 100644 --- a/icon/hand-pointer-o/index.html +++ b/icon/hand-pointer-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-pointer-o at 6x   - + Example of hand-pointer-o at 5x    - + Example of hand-pointer-o at 4x    - + Example of hand-pointer-o at 3x    - + Example of hand-pointer-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-rock-o/index.html b/icon/hand-rock-o/index.html index 8fbff997c..e3d9db22e 100644 --- a/icon/hand-rock-o/index.html +++ b/icon/hand-rock-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-rock-o at 6x   - + Example of hand-rock-o at 5x    - + Example of hand-rock-o at 4x    - + Example of hand-rock-o at 3x    - + Example of hand-rock-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-scissors-o/index.html b/icon/hand-scissors-o/index.html index 966837522..bee29633a 100644 --- a/icon/hand-scissors-o/index.html +++ b/icon/hand-scissors-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-scissors-o at 6x   - + Example of hand-scissors-o at 5x    - + Example of hand-scissors-o at 4x    - + Example of hand-scissors-o at 3x    - + Example of hand-scissors-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hand-spock-o/index.html b/icon/hand-spock-o/index.html index 3d09895f4..6b509c5e9 100644 --- a/icon/hand-spock-o/index.html +++ b/icon/hand-spock-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hand-spock-o at 6x   - + Example of hand-spock-o at 5x    - + Example of hand-spock-o at 4x    - + Example of hand-spock-o at 3x    - + Example of hand-spock-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hashtag/index.html b/icon/hashtag/index.html index cd3983617..896654d1a 100644 --- a/icon/hashtag/index.html +++ b/icon/hashtag/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hashtag at 6x   - + Example of hashtag at 5x    - + Example of hashtag at 4x    - + Example of hashtag at 3x    - + Example of hashtag at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hdd-o/index.html b/icon/hdd-o/index.html index cbf51fbc2..0e88d6ef7 100644 --- a/icon/hdd-o/index.html +++ b/icon/hdd-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hdd-o at 6x   - + Example of hdd-o at 5x    - + Example of hdd-o at 4x    - + Example of hdd-o at 3x    - + Example of hdd-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/header/index.html b/icon/header/index.html index 54c6ac413..bfb8f57c8 100644 --- a/icon/header/index.html +++ b/icon/header/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of header at 6x   - + Example of header at 5x    - + Example of header at 4x    - + Example of header at 3x    - + Example of header at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/headphones/index.html b/icon/headphones/index.html index ea3e357e7..b3f5075b6 100644 --- a/icon/headphones/index.html +++ b/icon/headphones/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of headphones at 6x   - + Example of headphones at 5x    - + Example of headphones at 4x    - + Example of headphones at 3x    - + Example of headphones at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/heart-o/index.html b/icon/heart-o/index.html index f01cc69d3..d092defd9 100644 --- a/icon/heart-o/index.html +++ b/icon/heart-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of heart-o at 6x   - + Example of heart-o at 5x    - + Example of heart-o at 4x    - + Example of heart-o at 3x    - + Example of heart-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/heart/index.html b/icon/heart/index.html index 903c53000..1050e2481 100644 --- a/icon/heart/index.html +++ b/icon/heart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of heart at 6x   - + Example of heart at 5x    - + Example of heart at 4x    - + Example of heart at 3x    - + Example of heart at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/heartbeat/index.html b/icon/heartbeat/index.html index 79e23bbac..5a0022707 100644 --- a/icon/heartbeat/index.html +++ b/icon/heartbeat/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of heartbeat at 6x   - + Example of heartbeat at 5x    - + Example of heartbeat at 4x    - + Example of heartbeat at 3x    - + Example of heartbeat at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/history/index.html b/icon/history/index.html index b99681de0..773713e28 100644 --- a/icon/history/index.html +++ b/icon/history/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of history at 6x   - + Example of history at 5x    - + Example of history at 4x    - + Example of history at 3x    - + Example of history at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/home/index.html b/icon/home/index.html index 60c719c4a..d4082282e 100644 --- a/icon/home/index.html +++ b/icon/home/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of home at 6x   - + Example of home at 5x    - + Example of home at 4x    - + Example of home at 3x    - + Example of home at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hospital-o/index.html b/icon/hospital-o/index.html index 300e0afb5..e8063c958 100644 --- a/icon/hospital-o/index.html +++ b/icon/hospital-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hospital-o at 6x   - + Example of hospital-o at 5x    - + Example of hospital-o at 4x    - + Example of hospital-o at 3x    - + Example of hospital-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hourglass-end/index.html b/icon/hourglass-end/index.html index 7f145be4e..2f2c4eca5 100644 --- a/icon/hourglass-end/index.html +++ b/icon/hourglass-end/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hourglass-end at 6x   - + Example of hourglass-end at 5x    - + Example of hourglass-end at 4x    - + Example of hourglass-end at 3x    - + Example of hourglass-end at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hourglass-half/index.html b/icon/hourglass-half/index.html index fabdd1260..bfdcafbd7 100644 --- a/icon/hourglass-half/index.html +++ b/icon/hourglass-half/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hourglass-half at 6x   - + Example of hourglass-half at 5x    - + Example of hourglass-half at 4x    - + Example of hourglass-half at 3x    - + Example of hourglass-half at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hourglass-o/index.html b/icon/hourglass-o/index.html index 04ce58530..b056d9d3e 100644 --- a/icon/hourglass-o/index.html +++ b/icon/hourglass-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hourglass-o at 6x   - + Example of hourglass-o at 5x    - + Example of hourglass-o at 4x    - + Example of hourglass-o at 3x    - + Example of hourglass-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hourglass-start/index.html b/icon/hourglass-start/index.html index d21595dee..a5e499243 100644 --- a/icon/hourglass-start/index.html +++ b/icon/hourglass-start/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hourglass-start at 6x   - + Example of hourglass-start at 5x    - + Example of hourglass-start at 4x    - + Example of hourglass-start at 3x    - + Example of hourglass-start at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/hourglass/index.html b/icon/hourglass/index.html index ffa16043c..e36621144 100644 --- a/icon/hourglass/index.html +++ b/icon/hourglass/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of hourglass at 6x   - + Example of hourglass at 5x    - + Example of hourglass at 4x    - + Example of hourglass at 3x    - + Example of hourglass at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/houzz/index.html b/icon/houzz/index.html index 611c5e0ee..14027cffe 100644 --- a/icon/houzz/index.html +++ b/icon/houzz/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of houzz at 6x   - + Example of houzz at 5x    - + Example of houzz at 4x    - + Example of houzz at 3x    - + Example of houzz at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/html5/index.html b/icon/html5/index.html index ebe73bb02..203f952e8 100644 --- a/icon/html5/index.html +++ b/icon/html5/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of html5 at 6x   - + Example of html5 at 5x    - + Example of html5 at 4x    - + Example of html5 at 3x    - + Example of html5 at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/i-cursor/index.html b/icon/i-cursor/index.html index 0cdec147a..bbdc15945 100644 --- a/icon/i-cursor/index.html +++ b/icon/i-cursor/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of i-cursor at 6x   - + Example of i-cursor at 5x    - + Example of i-cursor at 4x    - + Example of i-cursor at 3x    - + Example of i-cursor at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ils/index.html b/icon/ils/index.html index ea6584f9a..13577a3cd 100644 --- a/icon/ils/index.html +++ b/icon/ils/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ils at 6x   - + Example of ils at 5x    - + Example of ils at 4x    - + Example of ils at 3x    - + Example of ils at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/inbox/index.html b/icon/inbox/index.html index 22573cdc3..197e498ba 100644 --- a/icon/inbox/index.html +++ b/icon/inbox/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of inbox at 6x   - + Example of inbox at 5x    - + Example of inbox at 4x    - + Example of inbox at 3x    - + Example of inbox at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/indent/index.html b/icon/indent/index.html index 9256b3f2d..5991f7472 100644 --- a/icon/indent/index.html +++ b/icon/indent/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of indent at 6x   - + Example of indent at 5x    - + Example of indent at 4x    - + Example of indent at 3x    - + Example of indent at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/industry/index.html b/icon/industry/index.html index 1cac3fc91..56c1f4617 100644 --- a/icon/industry/index.html +++ b/icon/industry/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of industry at 6x   - + Example of industry at 5x    - + Example of industry at 4x    - + Example of industry at 3x    - + Example of industry at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/info-circle/index.html b/icon/info-circle/index.html index 68531724e..53476567a 100644 --- a/icon/info-circle/index.html +++ b/icon/info-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of info-circle at 6x   - + Example of info-circle at 5x    - + Example of info-circle at 4x    - + Example of info-circle at 3x    - + Example of info-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/info/index.html b/icon/info/index.html index 522218b3b..2e7428913 100644 --- a/icon/info/index.html +++ b/icon/info/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of info at 6x   - + Example of info at 5x    - + Example of info at 4x    - + Example of info at 3x    - + Example of info at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/inr/index.html b/icon/inr/index.html index 337132f82..2b9cbb7c0 100644 --- a/icon/inr/index.html +++ b/icon/inr/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of inr at 6x   - + Example of inr at 5x    - + Example of inr at 4x    - + Example of inr at 3x    - + Example of inr at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/instagram/index.html b/icon/instagram/index.html index a35c13162..0149ae98d 100644 --- a/icon/instagram/index.html +++ b/icon/instagram/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of instagram at 6x   - + Example of instagram at 5x    - + Example of instagram at 4x    - + Example of instagram at 3x    - + Example of instagram at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/internet-explorer/index.html b/icon/internet-explorer/index.html index 675315b4c..0ac9eafaf 100644 --- a/icon/internet-explorer/index.html +++ b/icon/internet-explorer/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of internet-explorer at 6x   - + Example of internet-explorer at 5x    - + Example of internet-explorer at 4x    - + Example of internet-explorer at 3x    - + Example of internet-explorer at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ioxhost/index.html b/icon/ioxhost/index.html index 7098cc725..0bf1851d3 100644 --- a/icon/ioxhost/index.html +++ b/icon/ioxhost/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ioxhost at 6x   - + Example of ioxhost at 5x    - + Example of ioxhost at 4x    - + Example of ioxhost at 3x    - + Example of ioxhost at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/italic/index.html b/icon/italic/index.html index db4d554ec..d7b485284 100644 --- a/icon/italic/index.html +++ b/icon/italic/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of italic at 6x   - + Example of italic at 5x    - + Example of italic at 4x    - + Example of italic at 3x    - + Example of italic at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/joomla/index.html b/icon/joomla/index.html index c02ef1b50..158e54111 100644 --- a/icon/joomla/index.html +++ b/icon/joomla/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of joomla at 6x   - + Example of joomla at 5x    - + Example of joomla at 4x    - + Example of joomla at 3x    - + Example of joomla at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/jpy/index.html b/icon/jpy/index.html index d4526ce99..3936d1188 100644 --- a/icon/jpy/index.html +++ b/icon/jpy/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of jpy at 6x   - + Example of jpy at 5x    - + Example of jpy at 4x    - + Example of jpy at 3x    - + Example of jpy at 2x   @@ -267,7 +271,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/jsfiddle/index.html b/icon/jsfiddle/index.html index 76246a17c..fcbc6f050 100644 --- a/icon/jsfiddle/index.html +++ b/icon/jsfiddle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of jsfiddle at 6x   - + Example of jsfiddle at 5x    - + Example of jsfiddle at 4x    - + Example of jsfiddle at 3x    - + Example of jsfiddle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/key/index.html b/icon/key/index.html index 13794f166..c47d8b9a2 100644 --- a/icon/key/index.html +++ b/icon/key/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of key at 6x   - + Example of key at 5x    - + Example of key at 4x    - + Example of key at 3x    - + Example of key at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/keyboard-o/index.html b/icon/keyboard-o/index.html index b59890115..83078fa80 100644 --- a/icon/keyboard-o/index.html +++ b/icon/keyboard-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of keyboard-o at 6x   - + Example of keyboard-o at 5x    - + Example of keyboard-o at 4x    - + Example of keyboard-o at 3x    - + Example of keyboard-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/krw/index.html b/icon/krw/index.html index ee32f35cd..689f0357c 100644 --- a/icon/krw/index.html +++ b/icon/krw/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of krw at 6x   - + Example of krw at 5x    - + Example of krw at 4x    - + Example of krw at 3x    - + Example of krw at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/language/index.html b/icon/language/index.html index e5871aec7..7e141b1d2 100644 --- a/icon/language/index.html +++ b/icon/language/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of language at 6x   - + Example of language at 5x    - + Example of language at 4x    - + Example of language at 3x    - + Example of language at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/laptop/index.html b/icon/laptop/index.html index d3bdacb54..dcbb6a256 100644 --- a/icon/laptop/index.html +++ b/icon/laptop/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of laptop at 6x   - + Example of laptop at 5x    - + Example of laptop at 4x    - + Example of laptop at 3x    - + Example of laptop at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/lastfm-square/index.html b/icon/lastfm-square/index.html index da681ef3c..ed6cfe8ba 100644 --- a/icon/lastfm-square/index.html +++ b/icon/lastfm-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of lastfm-square at 6x   - + Example of lastfm-square at 5x    - + Example of lastfm-square at 4x    - + Example of lastfm-square at 3x    - + Example of lastfm-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/lastfm/index.html b/icon/lastfm/index.html index 70f4f9cde..c146dce3c 100644 --- a/icon/lastfm/index.html +++ b/icon/lastfm/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of lastfm at 6x   - + Example of lastfm at 5x    - + Example of lastfm at 4x    - + Example of lastfm at 3x    - + Example of lastfm at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/leaf/index.html b/icon/leaf/index.html index 7d12fe4db..6efeb3f06 100644 --- a/icon/leaf/index.html +++ b/icon/leaf/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of leaf at 6x   - + Example of leaf at 5x    - + Example of leaf at 4x    - + Example of leaf at 3x    - + Example of leaf at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/leanpub/index.html b/icon/leanpub/index.html index 35debe803..63fe4683c 100644 --- a/icon/leanpub/index.html +++ b/icon/leanpub/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of leanpub at 6x   - + Example of leanpub at 5x    - + Example of leanpub at 4x    - + Example of leanpub at 3x    - + Example of leanpub at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/lemon-o/index.html b/icon/lemon-o/index.html index 9f7a69227..59060e179 100644 --- a/icon/lemon-o/index.html +++ b/icon/lemon-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of lemon-o at 6x   - + Example of lemon-o at 5x    - + Example of lemon-o at 4x    - + Example of lemon-o at 3x    - + Example of lemon-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/level-down/index.html b/icon/level-down/index.html index 3bfa974b9..8a6326110 100644 --- a/icon/level-down/index.html +++ b/icon/level-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of level-down at 6x   - + Example of level-down at 5x    - + Example of level-down at 4x    - + Example of level-down at 3x    - + Example of level-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/level-up/index.html b/icon/level-up/index.html index d6568e7fc..9523926b5 100644 --- a/icon/level-up/index.html +++ b/icon/level-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of level-up at 6x   - + Example of level-up at 5x    - + Example of level-up at 4x    - + Example of level-up at 3x    - + Example of level-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/life-ring/index.html b/icon/life-ring/index.html index 59babb007..9c474298c 100644 --- a/icon/life-ring/index.html +++ b/icon/life-ring/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of life-ring at 6x   - + Example of life-ring at 5x    - + Example of life-ring at 4x    - + Example of life-ring at 3x    - + Example of life-ring at 2x   @@ -269,7 +273,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/lightbulb-o/index.html b/icon/lightbulb-o/index.html index 9b5bfb706..af21231c7 100644 --- a/icon/lightbulb-o/index.html +++ b/icon/lightbulb-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of lightbulb-o at 6x   - + Example of lightbulb-o at 5x    - + Example of lightbulb-o at 4x    - + Example of lightbulb-o at 3x    - + Example of lightbulb-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/line-chart/index.html b/icon/line-chart/index.html index 54dfa96f8..35ae17207 100644 --- a/icon/line-chart/index.html +++ b/icon/line-chart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of line-chart at 6x   - + Example of line-chart at 5x    - + Example of line-chart at 4x    - + Example of line-chart at 3x    - + Example of line-chart at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/link/index.html b/icon/link/index.html index 383ddc5db..f796fbacd 100644 --- a/icon/link/index.html +++ b/icon/link/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of link at 6x   - + Example of link at 5x    - + Example of link at 4x    - + Example of link at 3x    - + Example of link at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/linkedin-square/index.html b/icon/linkedin-square/index.html index 34d2ec163..e15937e91 100644 --- a/icon/linkedin-square/index.html +++ b/icon/linkedin-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of linkedin-square at 6x   - + Example of linkedin-square at 5x    - + Example of linkedin-square at 4x    - + Example of linkedin-square at 3x    - + Example of linkedin-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/linkedin/index.html b/icon/linkedin/index.html index 6f762ae1c..07f72237f 100644 --- a/icon/linkedin/index.html +++ b/icon/linkedin/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of linkedin at 6x   - + Example of linkedin at 5x    - + Example of linkedin at 4x    - + Example of linkedin at 3x    - + Example of linkedin at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/linux/index.html b/icon/linux/index.html index fe3f872e0..8675b122c 100644 --- a/icon/linux/index.html +++ b/icon/linux/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of linux at 6x   - + Example of linux at 5x    - + Example of linux at 4x    - + Example of linux at 3x    - + Example of linux at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/list-alt/index.html b/icon/list-alt/index.html index e6ae0edfb..71153ed75 100644 --- a/icon/list-alt/index.html +++ b/icon/list-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of list-alt at 6x   - + Example of list-alt at 5x    - + Example of list-alt at 4x    - + Example of list-alt at 3x    - + Example of list-alt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/list-ol/index.html b/icon/list-ol/index.html index 5a7d4ff86..1524a8287 100644 --- a/icon/list-ol/index.html +++ b/icon/list-ol/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of list-ol at 6x   - + Example of list-ol at 5x    - + Example of list-ol at 4x    - + Example of list-ol at 3x    - + Example of list-ol at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/list-ul/index.html b/icon/list-ul/index.html index 6f8fbd3eb..ce80efa86 100644 --- a/icon/list-ul/index.html +++ b/icon/list-ul/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of list-ul at 6x   - + Example of list-ul at 5x    - + Example of list-ul at 4x    - + Example of list-ul at 3x    - + Example of list-ul at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/list/index.html b/icon/list/index.html index 88b87ef0b..3dee8dd57 100644 --- a/icon/list/index.html +++ b/icon/list/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of list at 6x   - + Example of list at 5x    - + Example of list at 4x    - + Example of list at 3x    - + Example of list at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/location-arrow/index.html b/icon/location-arrow/index.html index ac1fc3c58..d14b75cfd 100644 --- a/icon/location-arrow/index.html +++ b/icon/location-arrow/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of location-arrow at 6x   - + Example of location-arrow at 5x    - + Example of location-arrow at 4x    - + Example of location-arrow at 3x    - + Example of location-arrow at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/lock/index.html b/icon/lock/index.html index bab60d66c..e7a086dc5 100644 --- a/icon/lock/index.html +++ b/icon/lock/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of lock at 6x   - + Example of lock at 5x    - + Example of lock at 4x    - + Example of lock at 3x    - + Example of lock at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/long-arrow-down/index.html b/icon/long-arrow-down/index.html index f131b33ae..9941da480 100644 --- a/icon/long-arrow-down/index.html +++ b/icon/long-arrow-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of long-arrow-down at 6x   - + Example of long-arrow-down at 5x    - + Example of long-arrow-down at 4x    - + Example of long-arrow-down at 3x    - + Example of long-arrow-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/long-arrow-left/index.html b/icon/long-arrow-left/index.html index c091315a6..8a6def0e6 100644 --- a/icon/long-arrow-left/index.html +++ b/icon/long-arrow-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of long-arrow-left at 6x   - + Example of long-arrow-left at 5x    - + Example of long-arrow-left at 4x    - + Example of long-arrow-left at 3x    - + Example of long-arrow-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/long-arrow-right/index.html b/icon/long-arrow-right/index.html index 5ab8028c3..7e02205d1 100644 --- a/icon/long-arrow-right/index.html +++ b/icon/long-arrow-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of long-arrow-right at 6x   - + Example of long-arrow-right at 5x    - + Example of long-arrow-right at 4x    - + Example of long-arrow-right at 3x    - + Example of long-arrow-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/long-arrow-up/index.html b/icon/long-arrow-up/index.html index 49834aaab..4d71b015e 100644 --- a/icon/long-arrow-up/index.html +++ b/icon/long-arrow-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of long-arrow-up at 6x   - + Example of long-arrow-up at 5x    - + Example of long-arrow-up at 4x    - + Example of long-arrow-up at 3x    - + Example of long-arrow-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/low-vision/index.html b/icon/low-vision/index.html index 65537b095..8dc57c559 100644 --- a/icon/low-vision/index.html +++ b/icon/low-vision/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of low-vision at 6x   - + Example of low-vision at 5x    - + Example of low-vision at 4x    - + Example of low-vision at 3x    - + Example of low-vision at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/magic/index.html b/icon/magic/index.html index 75daf7f44..920175db7 100644 --- a/icon/magic/index.html +++ b/icon/magic/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of magic at 6x   - + Example of magic at 5x    - + Example of magic at 4x    - + Example of magic at 3x    - + Example of magic at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/magnet/index.html b/icon/magnet/index.html index 59d39bf44..da5dfd2d8 100644 --- a/icon/magnet/index.html +++ b/icon/magnet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of magnet at 6x   - + Example of magnet at 5x    - + Example of magnet at 4x    - + Example of magnet at 3x    - + Example of magnet at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/male/index.html b/icon/male/index.html index be8429d7e..7ec3f9ad9 100644 --- a/icon/male/index.html +++ b/icon/male/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of male at 6x   - + Example of male at 5x    - + Example of male at 4x    - + Example of male at 3x    - + Example of male at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/map-marker/index.html b/icon/map-marker/index.html index 96413a73d..d882c8afa 100644 --- a/icon/map-marker/index.html +++ b/icon/map-marker/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of map-marker at 6x   - + Example of map-marker at 5x    - + Example of map-marker at 4x    - + Example of map-marker at 3x    - + Example of map-marker at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/map-o/index.html b/icon/map-o/index.html index 93f221b48..a7835fccf 100644 --- a/icon/map-o/index.html +++ b/icon/map-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of map-o at 6x   - + Example of map-o at 5x    - + Example of map-o at 4x    - + Example of map-o at 3x    - + Example of map-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/map-pin/index.html b/icon/map-pin/index.html index bdfbd30dc..cfc2f6bbc 100644 --- a/icon/map-pin/index.html +++ b/icon/map-pin/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of map-pin at 6x   - + Example of map-pin at 5x    - + Example of map-pin at 4x    - + Example of map-pin at 3x    - + Example of map-pin at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/map-signs/index.html b/icon/map-signs/index.html index e7afc28d6..3d87fdafe 100644 --- a/icon/map-signs/index.html +++ b/icon/map-signs/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of map-signs at 6x   - + Example of map-signs at 5x    - + Example of map-signs at 4x    - + Example of map-signs at 3x    - + Example of map-signs at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/map/index.html b/icon/map/index.html index a52c8a25d..27ca24bd3 100644 --- a/icon/map/index.html +++ b/icon/map/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of map at 6x   - + Example of map at 5x    - + Example of map at 4x    - + Example of map at 3x    - + Example of map at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mars-double/index.html b/icon/mars-double/index.html index 53ce4e448..8c8f59a30 100644 --- a/icon/mars-double/index.html +++ b/icon/mars-double/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mars-double at 6x   - + Example of mars-double at 5x    - + Example of mars-double at 4x    - + Example of mars-double at 3x    - + Example of mars-double at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mars-stroke-h/index.html b/icon/mars-stroke-h/index.html index 4c35a2ee1..0a56bed38 100644 --- a/icon/mars-stroke-h/index.html +++ b/icon/mars-stroke-h/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mars-stroke-h at 6x   - + Example of mars-stroke-h at 5x    - + Example of mars-stroke-h at 4x    - + Example of mars-stroke-h at 3x    - + Example of mars-stroke-h at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mars-stroke-v/index.html b/icon/mars-stroke-v/index.html index 67c64b46b..652e0eca1 100644 --- a/icon/mars-stroke-v/index.html +++ b/icon/mars-stroke-v/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mars-stroke-v at 6x   - + Example of mars-stroke-v at 5x    - + Example of mars-stroke-v at 4x    - + Example of mars-stroke-v at 3x    - + Example of mars-stroke-v at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mars-stroke/index.html b/icon/mars-stroke/index.html index 30e6bdb4d..80642883a 100644 --- a/icon/mars-stroke/index.html +++ b/icon/mars-stroke/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mars-stroke at 6x   - + Example of mars-stroke at 5x    - + Example of mars-stroke at 4x    - + Example of mars-stroke at 3x    - + Example of mars-stroke at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mars/index.html b/icon/mars/index.html index 391a35b5b..25169b3bc 100644 --- a/icon/mars/index.html +++ b/icon/mars/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mars at 6x   - + Example of mars at 5x    - + Example of mars at 4x    - + Example of mars at 3x    - + Example of mars at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/maxcdn/index.html b/icon/maxcdn/index.html index 515da4702..502fda00c 100644 --- a/icon/maxcdn/index.html +++ b/icon/maxcdn/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of maxcdn at 6x   - + Example of maxcdn at 5x    - + Example of maxcdn at 4x    - + Example of maxcdn at 3x    - + Example of maxcdn at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/meanpath/index.html b/icon/meanpath/index.html index 11994732b..4b121e93b 100644 --- a/icon/meanpath/index.html +++ b/icon/meanpath/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of meanpath at 6x   - + Example of meanpath at 5x    - + Example of meanpath at 4x    - + Example of meanpath at 3x    - + Example of meanpath at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/medium/index.html b/icon/medium/index.html index cd4a1a636..723543174 100644 --- a/icon/medium/index.html +++ b/icon/medium/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of medium at 6x   - + Example of medium at 5x    - + Example of medium at 4x    - + Example of medium at 3x    - + Example of medium at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/medkit/index.html b/icon/medkit/index.html index 1bbbb3870..8183dc57f 100644 --- a/icon/medkit/index.html +++ b/icon/medkit/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of medkit at 6x   - + Example of medkit at 5x    - + Example of medkit at 4x    - + Example of medkit at 3x    - + Example of medkit at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/meh-o/index.html b/icon/meh-o/index.html index 270f8a085..4dd8f08bd 100644 --- a/icon/meh-o/index.html +++ b/icon/meh-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of meh-o at 6x   - + Example of meh-o at 5x    - + Example of meh-o at 4x    - + Example of meh-o at 3x    - + Example of meh-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mercury/index.html b/icon/mercury/index.html index 629c3d45d..d845e915d 100644 --- a/icon/mercury/index.html +++ b/icon/mercury/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mercury at 6x   - + Example of mercury at 5x    - + Example of mercury at 4x    - + Example of mercury at 3x    - + Example of mercury at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/microphone-slash/index.html b/icon/microphone-slash/index.html index 65d0f3edc..4af416636 100644 --- a/icon/microphone-slash/index.html +++ b/icon/microphone-slash/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of microphone-slash at 6x   - + Example of microphone-slash at 5x    - + Example of microphone-slash at 4x    - + Example of microphone-slash at 3x    - + Example of microphone-slash at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/microphone/index.html b/icon/microphone/index.html index 830b4167f..5b470f418 100644 --- a/icon/microphone/index.html +++ b/icon/microphone/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of microphone at 6x   - + Example of microphone at 5x    - + Example of microphone at 4x    - + Example of microphone at 3x    - + Example of microphone at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/minus-circle/index.html b/icon/minus-circle/index.html index 553e357f0..3fb9d5034 100644 --- a/icon/minus-circle/index.html +++ b/icon/minus-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of minus-circle at 6x   - + Example of minus-circle at 5x    - + Example of minus-circle at 4x    - + Example of minus-circle at 3x    - + Example of minus-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/minus-square-o/index.html b/icon/minus-square-o/index.html index b46f67142..64bf54b27 100644 --- a/icon/minus-square-o/index.html +++ b/icon/minus-square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of minus-square-o at 6x   - + Example of minus-square-o at 5x    - + Example of minus-square-o at 4x    - + Example of minus-square-o at 3x    - + Example of minus-square-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/minus-square/index.html b/icon/minus-square/index.html index fa08df5f0..19685d4e0 100644 --- a/icon/minus-square/index.html +++ b/icon/minus-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of minus-square at 6x   - + Example of minus-square at 5x    - + Example of minus-square at 4x    - + Example of minus-square at 3x    - + Example of minus-square at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/minus/index.html b/icon/minus/index.html index 5c5ebe624..bb3822f84 100644 --- a/icon/minus/index.html +++ b/icon/minus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of minus at 6x   - + Example of minus at 5x    - + Example of minus at 4x    - + Example of minus at 3x    - + Example of minus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mixcloud/index.html b/icon/mixcloud/index.html index c61199a13..27738738f 100644 --- a/icon/mixcloud/index.html +++ b/icon/mixcloud/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mixcloud at 6x   - + Example of mixcloud at 5x    - + Example of mixcloud at 4x    - + Example of mixcloud at 3x    - + Example of mixcloud at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mobile/index.html b/icon/mobile/index.html index f421ad466..2d97c1d6e 100644 --- a/icon/mobile/index.html +++ b/icon/mobile/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mobile at 6x   - + Example of mobile at 5x    - + Example of mobile at 4x    - + Example of mobile at 3x    - + Example of mobile at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/modx/index.html b/icon/modx/index.html index dd6c6efe9..1d46f4022 100644 --- a/icon/modx/index.html +++ b/icon/modx/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of modx at 6x   - + Example of modx at 5x    - + Example of modx at 4x    - + Example of modx at 3x    - + Example of modx at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/money/index.html b/icon/money/index.html index 5dae9fad3..7000e2f98 100644 --- a/icon/money/index.html +++ b/icon/money/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of money at 6x   - + Example of money at 5x    - + Example of money at 4x    - + Example of money at 3x    - + Example of money at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/moon-o/index.html b/icon/moon-o/index.html index 9c59ae020..d7f6a2249 100644 --- a/icon/moon-o/index.html +++ b/icon/moon-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of moon-o at 6x   - + Example of moon-o at 5x    - + Example of moon-o at 4x    - + Example of moon-o at 3x    - + Example of moon-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/motorcycle/index.html b/icon/motorcycle/index.html index c62748f2f..ec90aaa92 100644 --- a/icon/motorcycle/index.html +++ b/icon/motorcycle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of motorcycle at 6x   - + Example of motorcycle at 5x    - + Example of motorcycle at 4x    - + Example of motorcycle at 3x    - + Example of motorcycle at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/mouse-pointer/index.html b/icon/mouse-pointer/index.html index 5a3aa552a..afe94dafc 100644 --- a/icon/mouse-pointer/index.html +++ b/icon/mouse-pointer/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of mouse-pointer at 6x   - + Example of mouse-pointer at 5x    - + Example of mouse-pointer at 4x    - + Example of mouse-pointer at 3x    - + Example of mouse-pointer at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/music/index.html b/icon/music/index.html index e1210512d..be04f9ff9 100644 --- a/icon/music/index.html +++ b/icon/music/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of music at 6x   - + Example of music at 5x    - + Example of music at 4x    - + Example of music at 3x    - + Example of music at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/neuter/index.html b/icon/neuter/index.html index 3cd4e9c16..256de3554 100644 --- a/icon/neuter/index.html +++ b/icon/neuter/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of neuter at 6x   - + Example of neuter at 5x    - + Example of neuter at 4x    - + Example of neuter at 3x    - + Example of neuter at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/newspaper-o/index.html b/icon/newspaper-o/index.html index 2fe649f44..07ced1d50 100644 --- a/icon/newspaper-o/index.html +++ b/icon/newspaper-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of newspaper-o at 6x   - + Example of newspaper-o at 5x    - + Example of newspaper-o at 4x    - + Example of newspaper-o at 3x    - + Example of newspaper-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/object-group/index.html b/icon/object-group/index.html index de22f8033..42089a679 100644 --- a/icon/object-group/index.html +++ b/icon/object-group/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of object-group at 6x   - + Example of object-group at 5x    - + Example of object-group at 4x    - + Example of object-group at 3x    - + Example of object-group at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/object-ungroup/index.html b/icon/object-ungroup/index.html index 3d73b297a..ff12dda18 100644 --- a/icon/object-ungroup/index.html +++ b/icon/object-ungroup/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of object-ungroup at 6x   - + Example of object-ungroup at 5x    - + Example of object-ungroup at 4x    - + Example of object-ungroup at 3x    - + Example of object-ungroup at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/odnoklassniki-square/index.html b/icon/odnoklassniki-square/index.html index e06ec459b..46f52fa96 100644 --- a/icon/odnoklassniki-square/index.html +++ b/icon/odnoklassniki-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of odnoklassniki-square at 6x   - + Example of odnoklassniki-square at 5x    - + Example of odnoklassniki-square at 4x    - + Example of odnoklassniki-square at 3x    - + Example of odnoklassniki-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/odnoklassniki/index.html b/icon/odnoklassniki/index.html index 50d3958a6..30bc0a1a7 100644 --- a/icon/odnoklassniki/index.html +++ b/icon/odnoklassniki/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of odnoklassniki at 6x   - + Example of odnoklassniki at 5x    - + Example of odnoklassniki at 4x    - + Example of odnoklassniki at 3x    - + Example of odnoklassniki at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/opencart/index.html b/icon/opencart/index.html index e330d11fd..37e7bb39e 100644 --- a/icon/opencart/index.html +++ b/icon/opencart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of opencart at 6x   - + Example of opencart at 5x    - + Example of opencart at 4x    - + Example of opencart at 3x    - + Example of opencart at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/openid/index.html b/icon/openid/index.html index c874ccf6b..f48729024 100644 --- a/icon/openid/index.html +++ b/icon/openid/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of openid at 6x   - + Example of openid at 5x    - + Example of openid at 4x    - + Example of openid at 3x    - + Example of openid at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/opera/index.html b/icon/opera/index.html index b79af75aa..c268eb917 100644 --- a/icon/opera/index.html +++ b/icon/opera/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of opera at 6x   - + Example of opera at 5x    - + Example of opera at 4x    - + Example of opera at 3x    - + Example of opera at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/optin-monster/index.html b/icon/optin-monster/index.html index 736d4e61d..2096e5272 100644 --- a/icon/optin-monster/index.html +++ b/icon/optin-monster/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of optin-monster at 6x   - + Example of optin-monster at 5x    - + Example of optin-monster at 4x    - + Example of optin-monster at 3x    - + Example of optin-monster at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/outdent/index.html b/icon/outdent/index.html index 460862a46..a2d2d8c35 100644 --- a/icon/outdent/index.html +++ b/icon/outdent/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of outdent at 6x   - + Example of outdent at 5x    - + Example of outdent at 4x    - + Example of outdent at 3x    - + Example of outdent at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pagelines/index.html b/icon/pagelines/index.html index 91391d1bf..3f796502d 100644 --- a/icon/pagelines/index.html +++ b/icon/pagelines/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pagelines at 6x   - + Example of pagelines at 5x    - + Example of pagelines at 4x    - + Example of pagelines at 3x    - + Example of pagelines at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paint-brush/index.html b/icon/paint-brush/index.html index 5f063a318..0ffb3a558 100644 --- a/icon/paint-brush/index.html +++ b/icon/paint-brush/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paint-brush at 6x   - + Example of paint-brush at 5x    - + Example of paint-brush at 4x    - + Example of paint-brush at 3x    - + Example of paint-brush at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paper-plane-o/index.html b/icon/paper-plane-o/index.html index 5fca5fc0a..0a56f961a 100644 --- a/icon/paper-plane-o/index.html +++ b/icon/paper-plane-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paper-plane-o at 6x   - + Example of paper-plane-o at 5x    - + Example of paper-plane-o at 4x    - + Example of paper-plane-o at 3x    - + Example of paper-plane-o at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paper-plane/index.html b/icon/paper-plane/index.html index c716567c1..e5eb79ca2 100644 --- a/icon/paper-plane/index.html +++ b/icon/paper-plane/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paper-plane at 6x   - + Example of paper-plane at 5x    - + Example of paper-plane at 4x    - + Example of paper-plane at 3x    - + Example of paper-plane at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paperclip/index.html b/icon/paperclip/index.html index dc5256831..f12cb7fa6 100644 --- a/icon/paperclip/index.html +++ b/icon/paperclip/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paperclip at 6x   - + Example of paperclip at 5x    - + Example of paperclip at 4x    - + Example of paperclip at 3x    - + Example of paperclip at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paragraph/index.html b/icon/paragraph/index.html index 787f13b76..b5026e9dd 100644 --- a/icon/paragraph/index.html +++ b/icon/paragraph/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paragraph at 6x   - + Example of paragraph at 5x    - + Example of paragraph at 4x    - + Example of paragraph at 3x    - + Example of paragraph at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pause-circle-o/index.html b/icon/pause-circle-o/index.html index 0a00fc436..f1bc27015 100644 --- a/icon/pause-circle-o/index.html +++ b/icon/pause-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pause-circle-o at 6x   - + Example of pause-circle-o at 5x    - + Example of pause-circle-o at 4x    - + Example of pause-circle-o at 3x    - + Example of pause-circle-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pause-circle/index.html b/icon/pause-circle/index.html index 0c229cbb6..ce09d29fa 100644 --- a/icon/pause-circle/index.html +++ b/icon/pause-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pause-circle at 6x   - + Example of pause-circle at 5x    - + Example of pause-circle at 4x    - + Example of pause-circle at 3x    - + Example of pause-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pause/index.html b/icon/pause/index.html index 210227e20..748b456a7 100644 --- a/icon/pause/index.html +++ b/icon/pause/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pause at 6x   - + Example of pause at 5x    - + Example of pause at 4x    - + Example of pause at 3x    - + Example of pause at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paw/index.html b/icon/paw/index.html index 984b3f9b5..f1d34b781 100644 --- a/icon/paw/index.html +++ b/icon/paw/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paw at 6x   - + Example of paw at 5x    - + Example of paw at 4x    - + Example of paw at 3x    - + Example of paw at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/paypal/index.html b/icon/paypal/index.html index c529ff76e..3cb7f25c2 100644 --- a/icon/paypal/index.html +++ b/icon/paypal/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of paypal at 6x   - + Example of paypal at 5x    - + Example of paypal at 4x    - + Example of paypal at 3x    - + Example of paypal at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pencil-square-o/index.html b/icon/pencil-square-o/index.html index d3ef78bf3..8fd988860 100644 --- a/icon/pencil-square-o/index.html +++ b/icon/pencil-square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pencil-square-o at 6x   - + Example of pencil-square-o at 5x    - + Example of pencil-square-o at 4x    - + Example of pencil-square-o at 3x    - + Example of pencil-square-o at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pencil-square/index.html b/icon/pencil-square/index.html index 951f064a3..6f60028d6 100644 --- a/icon/pencil-square/index.html +++ b/icon/pencil-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pencil-square at 6x   - + Example of pencil-square at 5x    - + Example of pencil-square at 4x    - + Example of pencil-square at 3x    - + Example of pencil-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pencil/index.html b/icon/pencil/index.html index ce4eedb6d..733c7172a 100644 --- a/icon/pencil/index.html +++ b/icon/pencil/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pencil at 6x   - + Example of pencil at 5x    - + Example of pencil at 4x    - + Example of pencil at 3x    - + Example of pencil at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/percent/index.html b/icon/percent/index.html index 158a7a74f..ff46f581e 100644 --- a/icon/percent/index.html +++ b/icon/percent/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of percent at 6x   - + Example of percent at 5x    - + Example of percent at 4x    - + Example of percent at 3x    - + Example of percent at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/phone-square/index.html b/icon/phone-square/index.html index c12a43a79..79bf969be 100644 --- a/icon/phone-square/index.html +++ b/icon/phone-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of phone-square at 6x   - + Example of phone-square at 5x    - + Example of phone-square at 4x    - + Example of phone-square at 3x    - + Example of phone-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/phone/index.html b/icon/phone/index.html index 2ac500eba..9967406b8 100644 --- a/icon/phone/index.html +++ b/icon/phone/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of phone at 6x   - + Example of phone at 5x    - + Example of phone at 4x    - + Example of phone at 3x    - + Example of phone at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/picture-o/index.html b/icon/picture-o/index.html index 5d9e9dfd3..a7028fa06 100644 --- a/icon/picture-o/index.html +++ b/icon/picture-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of picture-o at 6x   - + Example of picture-o at 5x    - + Example of picture-o at 4x    - + Example of picture-o at 3x    - + Example of picture-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pie-chart/index.html b/icon/pie-chart/index.html index f77d5d967..1b199da88 100644 --- a/icon/pie-chart/index.html +++ b/icon/pie-chart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pie-chart at 6x   - + Example of pie-chart at 5x    - + Example of pie-chart at 4x    - + Example of pie-chart at 3x    - + Example of pie-chart at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pied-piper-alt/index.html b/icon/pied-piper-alt/index.html index 7c3cdf4cf..010fe3d89 100644 --- a/icon/pied-piper-alt/index.html +++ b/icon/pied-piper-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pied-piper-alt at 6x   - + Example of pied-piper-alt at 5x    - + Example of pied-piper-alt at 4x    - + Example of pied-piper-alt at 3x    - + Example of pied-piper-alt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pied-piper/index.html b/icon/pied-piper/index.html index 114aece7c..ccf5fbde1 100644 --- a/icon/pied-piper/index.html +++ b/icon/pied-piper/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pied-piper at 6x   - + Example of pied-piper at 5x    - + Example of pied-piper at 4x    - + Example of pied-piper at 3x    - + Example of pied-piper at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pinterest-p/index.html b/icon/pinterest-p/index.html index da3e342ec..5ff7d837c 100644 --- a/icon/pinterest-p/index.html +++ b/icon/pinterest-p/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pinterest-p at 6x   - + Example of pinterest-p at 5x    - + Example of pinterest-p at 4x    - + Example of pinterest-p at 3x    - + Example of pinterest-p at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pinterest-square/index.html b/icon/pinterest-square/index.html index 5940b93f0..93861463c 100644 --- a/icon/pinterest-square/index.html +++ b/icon/pinterest-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pinterest-square at 6x   - + Example of pinterest-square at 5x    - + Example of pinterest-square at 4x    - + Example of pinterest-square at 3x    - + Example of pinterest-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/pinterest/index.html b/icon/pinterest/index.html index 79bfba639..91679bd5f 100644 --- a/icon/pinterest/index.html +++ b/icon/pinterest/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of pinterest at 6x   - + Example of pinterest at 5x    - + Example of pinterest at 4x    - + Example of pinterest at 3x    - + Example of pinterest at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plane/index.html b/icon/plane/index.html index 1ca21a14e..7f3c66bbf 100644 --- a/icon/plane/index.html +++ b/icon/plane/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plane at 6x   - + Example of plane at 5x    - + Example of plane at 4x    - + Example of plane at 3x    - + Example of plane at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/play-circle-o/index.html b/icon/play-circle-o/index.html index 2e8e502de..71f9fed5a 100644 --- a/icon/play-circle-o/index.html +++ b/icon/play-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of play-circle-o at 6x   - + Example of play-circle-o at 5x    - + Example of play-circle-o at 4x    - + Example of play-circle-o at 3x    - + Example of play-circle-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/play-circle/index.html b/icon/play-circle/index.html index 53cbc8397..cd17847a0 100644 --- a/icon/play-circle/index.html +++ b/icon/play-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of play-circle at 6x   - + Example of play-circle at 5x    - + Example of play-circle at 4x    - + Example of play-circle at 3x    - + Example of play-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/play/index.html b/icon/play/index.html index 48a6c38d8..2c3221984 100644 --- a/icon/play/index.html +++ b/icon/play/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of play at 6x   - + Example of play at 5x    - + Example of play at 4x    - + Example of play at 3x    - + Example of play at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plug/index.html b/icon/plug/index.html index 86ae2fea3..4e94fb28f 100644 --- a/icon/plug/index.html +++ b/icon/plug/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plug at 6x   - + Example of plug at 5x    - + Example of plug at 4x    - + Example of plug at 3x    - + Example of plug at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plus-circle/index.html b/icon/plus-circle/index.html index 7167a265d..dc7422609 100644 --- a/icon/plus-circle/index.html +++ b/icon/plus-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plus-circle at 6x   - + Example of plus-circle at 5x    - + Example of plus-circle at 4x    - + Example of plus-circle at 3x    - + Example of plus-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plus-square-o/index.html b/icon/plus-square-o/index.html index 2f57e3932..8087f6dfc 100644 --- a/icon/plus-square-o/index.html +++ b/icon/plus-square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plus-square-o at 6x   - + Example of plus-square-o at 5x    - + Example of plus-square-o at 4x    - + Example of plus-square-o at 3x    - + Example of plus-square-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plus-square/index.html b/icon/plus-square/index.html index 6ee504acc..7d971d76c 100644 --- a/icon/plus-square/index.html +++ b/icon/plus-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plus-square at 6x   - + Example of plus-square at 5x    - + Example of plus-square at 4x    - + Example of plus-square at 3x    - + Example of plus-square at 2x   @@ -262,7 +266,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/plus/index.html b/icon/plus/index.html index 355a337fd..635c0c206 100644 --- a/icon/plus/index.html +++ b/icon/plus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of plus at 6x   - + Example of plus at 5x    - + Example of plus at 4x    - + Example of plus at 3x    - + Example of plus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/power-off/index.html b/icon/power-off/index.html index 6214933cf..906883a01 100644 --- a/icon/power-off/index.html +++ b/icon/power-off/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of power-off at 6x   - + Example of power-off at 5x    - + Example of power-off at 4x    - + Example of power-off at 3x    - + Example of power-off at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/print/index.html b/icon/print/index.html index 68a81e00e..e3bc09a2f 100644 --- a/icon/print/index.html +++ b/icon/print/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of print at 6x   - + Example of print at 5x    - + Example of print at 4x    - + Example of print at 3x    - + Example of print at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/product-hunt/index.html b/icon/product-hunt/index.html index add85f647..76bf02d01 100644 --- a/icon/product-hunt/index.html +++ b/icon/product-hunt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of product-hunt at 6x   - + Example of product-hunt at 5x    - + Example of product-hunt at 4x    - + Example of product-hunt at 3x    - + Example of product-hunt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/puzzle-piece/index.html b/icon/puzzle-piece/index.html index 2c4aff5e6..e1d1d173a 100644 --- a/icon/puzzle-piece/index.html +++ b/icon/puzzle-piece/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of puzzle-piece at 6x   - + Example of puzzle-piece at 5x    - + Example of puzzle-piece at 4x    - + Example of puzzle-piece at 3x    - + Example of puzzle-piece at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/qq/index.html b/icon/qq/index.html index fe2815f16..e76649929 100644 --- a/icon/qq/index.html +++ b/icon/qq/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of qq at 6x   - + Example of qq at 5x    - + Example of qq at 4x    - + Example of qq at 3x    - + Example of qq at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/qrcode/index.html b/icon/qrcode/index.html index 749d88d8f..fcabdcdb9 100644 --- a/icon/qrcode/index.html +++ b/icon/qrcode/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of qrcode at 6x   - + Example of qrcode at 5x    - + Example of qrcode at 4x    - + Example of qrcode at 3x    - + Example of qrcode at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/question-circle-o/index.html b/icon/question-circle-o/index.html index 7dfbf3e42..846e117ee 100644 --- a/icon/question-circle-o/index.html +++ b/icon/question-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of question-circle-o at 6x   - + Example of question-circle-o at 5x    - + Example of question-circle-o at 4x    - + Example of question-circle-o at 3x    - + Example of question-circle-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/question-circle/index.html b/icon/question-circle/index.html index 86fa6ba33..7b213fb58 100644 --- a/icon/question-circle/index.html +++ b/icon/question-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of question-circle at 6x   - + Example of question-circle at 5x    - + Example of question-circle at 4x    - + Example of question-circle at 3x    - + Example of question-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/question/index.html b/icon/question/index.html index 5ae82e4cd..bfa870359 100644 --- a/icon/question/index.html +++ b/icon/question/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of question at 6x   - + Example of question at 5x    - + Example of question at 4x    - + Example of question at 3x    - + Example of question at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/quote-left/index.html b/icon/quote-left/index.html index 5ce8d9fa4..fd842e214 100644 --- a/icon/quote-left/index.html +++ b/icon/quote-left/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of quote-left at 6x   - + Example of quote-left at 5x    - + Example of quote-left at 4x    - + Example of quote-left at 3x    - + Example of quote-left at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/quote-right/index.html b/icon/quote-right/index.html index a54c02f27..75105f7ae 100644 --- a/icon/quote-right/index.html +++ b/icon/quote-right/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of quote-right at 6x   - + Example of quote-right at 5x    - + Example of quote-right at 4x    - + Example of quote-right at 3x    - + Example of quote-right at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/random/index.html b/icon/random/index.html index c28a38e2f..895c44445 100644 --- a/icon/random/index.html +++ b/icon/random/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of random at 6x   - + Example of random at 5x    - + Example of random at 4x    - + Example of random at 3x    - + Example of random at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/rebel/index.html b/icon/rebel/index.html index 71f7b47d7..db7272f9c 100644 --- a/icon/rebel/index.html +++ b/icon/rebel/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of rebel at 6x   - + Example of rebel at 5x    - + Example of rebel at 4x    - + Example of rebel at 3x    - + Example of rebel at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/recycle/index.html b/icon/recycle/index.html index 6efc1516e..f760f141c 100644 --- a/icon/recycle/index.html +++ b/icon/recycle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of recycle at 6x   - + Example of recycle at 5x    - + Example of recycle at 4x    - + Example of recycle at 3x    - + Example of recycle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/reddit-alien/index.html b/icon/reddit-alien/index.html index a9b94104a..d88adea22 100644 --- a/icon/reddit-alien/index.html +++ b/icon/reddit-alien/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of reddit-alien at 6x   - + Example of reddit-alien at 5x    - + Example of reddit-alien at 4x    - + Example of reddit-alien at 3x    - + Example of reddit-alien at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/reddit-square/index.html b/icon/reddit-square/index.html index 21cc7f4ab..57f60e040 100644 --- a/icon/reddit-square/index.html +++ b/icon/reddit-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of reddit-square at 6x   - + Example of reddit-square at 5x    - + Example of reddit-square at 4x    - + Example of reddit-square at 3x    - + Example of reddit-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/reddit/index.html b/icon/reddit/index.html index 452bf524b..8c598c7f7 100644 --- a/icon/reddit/index.html +++ b/icon/reddit/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of reddit at 6x   - + Example of reddit at 5x    - + Example of reddit at 4x    - + Example of reddit at 3x    - + Example of reddit at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/refresh/index.html b/icon/refresh/index.html index b3c16d5ce..bde93a56b 100644 --- a/icon/refresh/index.html +++ b/icon/refresh/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of refresh at 6x   - + Example of refresh at 5x    - + Example of refresh at 4x    - + Example of refresh at 3x    - + Example of refresh at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/registered/index.html b/icon/registered/index.html index 4cffb1867..df4b1c464 100644 --- a/icon/registered/index.html +++ b/icon/registered/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of registered at 6x   - + Example of registered at 5x    - + Example of registered at 4x    - + Example of registered at 3x    - + Example of registered at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/renren/index.html b/icon/renren/index.html index 1b8ef593e..273668a49 100644 --- a/icon/renren/index.html +++ b/icon/renren/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of renren at 6x   - + Example of renren at 5x    - + Example of renren at 4x    - + Example of renren at 3x    - + Example of renren at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/repeat/index.html b/icon/repeat/index.html index 1de097dbc..73f939cb0 100644 --- a/icon/repeat/index.html +++ b/icon/repeat/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of repeat at 6x   - + Example of repeat at 5x    - + Example of repeat at 4x    - + Example of repeat at 3x    - + Example of repeat at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/reply-all/index.html b/icon/reply-all/index.html index d4c9c49f5..18f9f8cdc 100644 --- a/icon/reply-all/index.html +++ b/icon/reply-all/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of reply-all at 6x   - + Example of reply-all at 5x    - + Example of reply-all at 4x    - + Example of reply-all at 3x    - + Example of reply-all at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/reply/index.html b/icon/reply/index.html index c9539b776..fe0d7503e 100644 --- a/icon/reply/index.html +++ b/icon/reply/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of reply at 6x   - + Example of reply at 5x    - + Example of reply at 4x    - + Example of reply at 3x    - + Example of reply at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/retweet/index.html b/icon/retweet/index.html index 018dbc88b..b10e67db9 100644 --- a/icon/retweet/index.html +++ b/icon/retweet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of retweet at 6x   - + Example of retweet at 5x    - + Example of retweet at 4x    - + Example of retweet at 3x    - + Example of retweet at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/road/index.html b/icon/road/index.html index 295753154..ac91653f5 100644 --- a/icon/road/index.html +++ b/icon/road/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of road at 6x   - + Example of road at 5x    - + Example of road at 4x    - + Example of road at 3x    - + Example of road at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/rocket/index.html b/icon/rocket/index.html index b42d90af0..03ad678fb 100644 --- a/icon/rocket/index.html +++ b/icon/rocket/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of rocket at 6x   - + Example of rocket at 5x    - + Example of rocket at 4x    - + Example of rocket at 3x    - + Example of rocket at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/rss-square/index.html b/icon/rss-square/index.html index 7b1f53e34..53c968ae2 100644 --- a/icon/rss-square/index.html +++ b/icon/rss-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of rss-square at 6x   - + Example of rss-square at 5x    - + Example of rss-square at 4x    - + Example of rss-square at 3x    - + Example of rss-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/rss/index.html b/icon/rss/index.html index f06a358fe..4ef8d0d6c 100644 --- a/icon/rss/index.html +++ b/icon/rss/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of rss at 6x   - + Example of rss at 5x    - + Example of rss at 4x    - + Example of rss at 3x    - + Example of rss at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/rub/index.html b/icon/rub/index.html index 77276ea4f..56cfe5a11 100644 --- a/icon/rub/index.html +++ b/icon/rub/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of rub at 6x   - + Example of rub at 5x    - + Example of rub at 4x    - + Example of rub at 3x    - + Example of rub at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/safari/index.html b/icon/safari/index.html index 659a529c6..69e09266d 100644 --- a/icon/safari/index.html +++ b/icon/safari/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of safari at 6x   - + Example of safari at 5x    - + Example of safari at 4x    - + Example of safari at 3x    - + Example of safari at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/scissors/index.html b/icon/scissors/index.html index 6aeb3aa60..aafbbd7e0 100644 --- a/icon/scissors/index.html +++ b/icon/scissors/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of scissors at 6x   - + Example of scissors at 5x    - + Example of scissors at 4x    - + Example of scissors at 3x    - + Example of scissors at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/scribd/index.html b/icon/scribd/index.html index d74868422..c8a9baacd 100644 --- a/icon/scribd/index.html +++ b/icon/scribd/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of scribd at 6x   - + Example of scribd at 5x    - + Example of scribd at 4x    - + Example of scribd at 3x    - + Example of scribd at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/search-minus/index.html b/icon/search-minus/index.html index 0800dcb4d..e846fab2d 100644 --- a/icon/search-minus/index.html +++ b/icon/search-minus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of search-minus at 6x   - + Example of search-minus at 5x    - + Example of search-minus at 4x    - + Example of search-minus at 3x    - + Example of search-minus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/search-plus/index.html b/icon/search-plus/index.html index 267a43f22..f804d770c 100644 --- a/icon/search-plus/index.html +++ b/icon/search-plus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of search-plus at 6x   - + Example of search-plus at 5x    - + Example of search-plus at 4x    - + Example of search-plus at 3x    - + Example of search-plus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/search/index.html b/icon/search/index.html index f44de884b..b0f13b83b 100644 --- a/icon/search/index.html +++ b/icon/search/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of search at 6x   - + Example of search at 5x    - + Example of search at 4x    - + Example of search at 3x    - + Example of search at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sellsy/index.html b/icon/sellsy/index.html index 0714650b0..1ec19bd93 100644 --- a/icon/sellsy/index.html +++ b/icon/sellsy/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sellsy at 6x   - + Example of sellsy at 5x    - + Example of sellsy at 4x    - + Example of sellsy at 3x    - + Example of sellsy at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/server/index.html b/icon/server/index.html index 802eb73ed..9bb5dcbd6 100644 --- a/icon/server/index.html +++ b/icon/server/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of server at 6x   - + Example of server at 5x    - + Example of server at 4x    - + Example of server at 3x    - + Example of server at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/share-alt-square/index.html b/icon/share-alt-square/index.html index c7b5e9cae..b09f888a4 100644 --- a/icon/share-alt-square/index.html +++ b/icon/share-alt-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of share-alt-square at 6x   - + Example of share-alt-square at 5x    - + Example of share-alt-square at 4x    - + Example of share-alt-square at 3x    - + Example of share-alt-square at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/share-alt/index.html b/icon/share-alt/index.html index 428811932..8c45f3a4d 100644 --- a/icon/share-alt/index.html +++ b/icon/share-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of share-alt at 6x   - + Example of share-alt at 5x    - + Example of share-alt at 4x    - + Example of share-alt at 3x    - + Example of share-alt at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/share-square-o/index.html b/icon/share-square-o/index.html index d4ffa8d1d..e83ea3f5a 100644 --- a/icon/share-square-o/index.html +++ b/icon/share-square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of share-square-o at 6x   - + Example of share-square-o at 5x    - + Example of share-square-o at 4x    - + Example of share-square-o at 3x    - + Example of share-square-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/share-square/index.html b/icon/share-square/index.html index 39175ae58..edd0fc9e0 100644 --- a/icon/share-square/index.html +++ b/icon/share-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of share-square at 6x   - + Example of share-square at 5x    - + Example of share-square at 4x    - + Example of share-square at 3x    - + Example of share-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/share/index.html b/icon/share/index.html index 8a4e3f9ba..740226324 100644 --- a/icon/share/index.html +++ b/icon/share/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of share at 6x   - + Example of share at 5x    - + Example of share at 4x    - + Example of share at 3x    - + Example of share at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/shield/index.html b/icon/shield/index.html index 1975d0e6a..586b5fa2e 100644 --- a/icon/shield/index.html +++ b/icon/shield/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of shield at 6x   - + Example of shield at 5x    - + Example of shield at 4x    - + Example of shield at 3x    - + Example of shield at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ship/index.html b/icon/ship/index.html index 698e98b42..495e35d5c 100644 --- a/icon/ship/index.html +++ b/icon/ship/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ship at 6x   - + Example of ship at 5x    - + Example of ship at 4x    - + Example of ship at 3x    - + Example of ship at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/shirtsinbulk/index.html b/icon/shirtsinbulk/index.html index 3c99b0358..d8989cc4d 100644 --- a/icon/shirtsinbulk/index.html +++ b/icon/shirtsinbulk/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of shirtsinbulk at 6x   - + Example of shirtsinbulk at 5x    - + Example of shirtsinbulk at 4x    - + Example of shirtsinbulk at 3x    - + Example of shirtsinbulk at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/shopping-bag/index.html b/icon/shopping-bag/index.html index fbae7bf51..82a1fd8ea 100644 --- a/icon/shopping-bag/index.html +++ b/icon/shopping-bag/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of shopping-bag at 6x   - + Example of shopping-bag at 5x    - + Example of shopping-bag at 4x    - + Example of shopping-bag at 3x    - + Example of shopping-bag at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/shopping-basket/index.html b/icon/shopping-basket/index.html index 7729724d2..1b55511c8 100644 --- a/icon/shopping-basket/index.html +++ b/icon/shopping-basket/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of shopping-basket at 6x   - + Example of shopping-basket at 5x    - + Example of shopping-basket at 4x    - + Example of shopping-basket at 3x    - + Example of shopping-basket at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/shopping-cart/index.html b/icon/shopping-cart/index.html index f9eec443e..a38f6a52c 100644 --- a/icon/shopping-cart/index.html +++ b/icon/shopping-cart/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of shopping-cart at 6x   - + Example of shopping-cart at 5x    - + Example of shopping-cart at 4x    - + Example of shopping-cart at 3x    - + Example of shopping-cart at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sign-in/index.html b/icon/sign-in/index.html index 2526737d9..b62f0fe2f 100644 --- a/icon/sign-in/index.html +++ b/icon/sign-in/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sign-in at 6x   - + Example of sign-in at 5x    - + Example of sign-in at 4x    - + Example of sign-in at 3x    - + Example of sign-in at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sign-language/index.html b/icon/sign-language/index.html index 30ff2466b..aaf8abda6 100644 --- a/icon/sign-language/index.html +++ b/icon/sign-language/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sign-language at 6x   - + Example of sign-language at 5x    - + Example of sign-language at 4x    - + Example of sign-language at 3x    - + Example of sign-language at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sign-out/index.html b/icon/sign-out/index.html index 0ae8abb27..7525a7ae6 100644 --- a/icon/sign-out/index.html +++ b/icon/sign-out/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sign-out at 6x   - + Example of sign-out at 5x    - + Example of sign-out at 4x    - + Example of sign-out at 3x    - + Example of sign-out at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/signal/index.html b/icon/signal/index.html index 35458076a..a49607669 100644 --- a/icon/signal/index.html +++ b/icon/signal/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of signal at 6x   - + Example of signal at 5x    - + Example of signal at 4x    - + Example of signal at 3x    - + Example of signal at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/simplybuilt/index.html b/icon/simplybuilt/index.html index a651be765..318ac78fb 100644 --- a/icon/simplybuilt/index.html +++ b/icon/simplybuilt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of simplybuilt at 6x   - + Example of simplybuilt at 5x    - + Example of simplybuilt at 4x    - + Example of simplybuilt at 3x    - + Example of simplybuilt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sitemap/index.html b/icon/sitemap/index.html index d45dadc0c..6286812ad 100644 --- a/icon/sitemap/index.html +++ b/icon/sitemap/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sitemap at 6x   - + Example of sitemap at 5x    - + Example of sitemap at 4x    - + Example of sitemap at 3x    - + Example of sitemap at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/skyatlas/index.html b/icon/skyatlas/index.html index b780b7d06..d34fcd3c4 100644 --- a/icon/skyatlas/index.html +++ b/icon/skyatlas/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of skyatlas at 6x   - + Example of skyatlas at 5x    - + Example of skyatlas at 4x    - + Example of skyatlas at 3x    - + Example of skyatlas at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/skype/index.html b/icon/skype/index.html index 7f19b1b86..4b79aec94 100644 --- a/icon/skype/index.html +++ b/icon/skype/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of skype at 6x   - + Example of skype at 5x    - + Example of skype at 4x    - + Example of skype at 3x    - + Example of skype at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/slack/index.html b/icon/slack/index.html index 212eab748..afb317c75 100644 --- a/icon/slack/index.html +++ b/icon/slack/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of slack at 6x   - + Example of slack at 5x    - + Example of slack at 4x    - + Example of slack at 3x    - + Example of slack at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sliders/index.html b/icon/sliders/index.html index 7868ec4f3..17ad8cd2b 100644 --- a/icon/sliders/index.html +++ b/icon/sliders/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sliders at 6x   - + Example of sliders at 5x    - + Example of sliders at 4x    - + Example of sliders at 3x    - + Example of sliders at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/slideshare/index.html b/icon/slideshare/index.html index 57b998232..d77e1a1f7 100644 --- a/icon/slideshare/index.html +++ b/icon/slideshare/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of slideshare at 6x   - + Example of slideshare at 5x    - + Example of slideshare at 4x    - + Example of slideshare at 3x    - + Example of slideshare at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/smile-o/index.html b/icon/smile-o/index.html index 4201a9039..50e9836da 100644 --- a/icon/smile-o/index.html +++ b/icon/smile-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of smile-o at 6x   - + Example of smile-o at 5x    - + Example of smile-o at 4x    - + Example of smile-o at 3x    - + Example of smile-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/snapchat-ghost/index.html b/icon/snapchat-ghost/index.html index 09ff6e857..8279dc93d 100644 --- a/icon/snapchat-ghost/index.html +++ b/icon/snapchat-ghost/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of snapchat-ghost at 6x   - + Example of snapchat-ghost at 5x    - + Example of snapchat-ghost at 4x    - + Example of snapchat-ghost at 3x    - + Example of snapchat-ghost at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/snapchat-square/index.html b/icon/snapchat-square/index.html index d1ae7f36a..6a363c1af 100644 --- a/icon/snapchat-square/index.html +++ b/icon/snapchat-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of snapchat-square at 6x   - + Example of snapchat-square at 5x    - + Example of snapchat-square at 4x    - + Example of snapchat-square at 3x    - + Example of snapchat-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/snapchat/index.html b/icon/snapchat/index.html index 8612a0196..cc9ea9069 100644 --- a/icon/snapchat/index.html +++ b/icon/snapchat/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of snapchat at 6x   - + Example of snapchat at 5x    - + Example of snapchat at 4x    - + Example of snapchat at 3x    - + Example of snapchat at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-alpha-asc/index.html b/icon/sort-alpha-asc/index.html index a904a5cc3..820d5e7d3 100644 --- a/icon/sort-alpha-asc/index.html +++ b/icon/sort-alpha-asc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-alpha-asc at 6x   - + Example of sort-alpha-asc at 5x    - + Example of sort-alpha-asc at 4x    - + Example of sort-alpha-asc at 3x    - + Example of sort-alpha-asc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-alpha-desc/index.html b/icon/sort-alpha-desc/index.html index 82b804700..2a218e101 100644 --- a/icon/sort-alpha-desc/index.html +++ b/icon/sort-alpha-desc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-alpha-desc at 6x   - + Example of sort-alpha-desc at 5x    - + Example of sort-alpha-desc at 4x    - + Example of sort-alpha-desc at 3x    - + Example of sort-alpha-desc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-amount-asc/index.html b/icon/sort-amount-asc/index.html index cf438aabf..728e9f5a9 100644 --- a/icon/sort-amount-asc/index.html +++ b/icon/sort-amount-asc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-amount-asc at 6x   - + Example of sort-amount-asc at 5x    - + Example of sort-amount-asc at 4x    - + Example of sort-amount-asc at 3x    - + Example of sort-amount-asc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-amount-desc/index.html b/icon/sort-amount-desc/index.html index 23070f54a..6967f323c 100644 --- a/icon/sort-amount-desc/index.html +++ b/icon/sort-amount-desc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-amount-desc at 6x   - + Example of sort-amount-desc at 5x    - + Example of sort-amount-desc at 4x    - + Example of sort-amount-desc at 3x    - + Example of sort-amount-desc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-asc/index.html b/icon/sort-asc/index.html index 980e37bc2..613f67812 100644 --- a/icon/sort-asc/index.html +++ b/icon/sort-asc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-asc at 6x   - + Example of sort-asc at 5x    - + Example of sort-asc at 4x    - + Example of sort-asc at 3x    - + Example of sort-asc at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-desc/index.html b/icon/sort-desc/index.html index 9750ccd0e..0f4eaed38 100644 --- a/icon/sort-desc/index.html +++ b/icon/sort-desc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-desc at 6x   - + Example of sort-desc at 5x    - + Example of sort-desc at 4x    - + Example of sort-desc at 3x    - + Example of sort-desc at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-numeric-asc/index.html b/icon/sort-numeric-asc/index.html index 4eeb62c5b..9beea3e8d 100644 --- a/icon/sort-numeric-asc/index.html +++ b/icon/sort-numeric-asc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-numeric-asc at 6x   - + Example of sort-numeric-asc at 5x    - + Example of sort-numeric-asc at 4x    - + Example of sort-numeric-asc at 3x    - + Example of sort-numeric-asc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort-numeric-desc/index.html b/icon/sort-numeric-desc/index.html index cdb3c4757..57bd08f8e 100644 --- a/icon/sort-numeric-desc/index.html +++ b/icon/sort-numeric-desc/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort-numeric-desc at 6x   - + Example of sort-numeric-desc at 5x    - + Example of sort-numeric-desc at 4x    - + Example of sort-numeric-desc at 3x    - + Example of sort-numeric-desc at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sort/index.html b/icon/sort/index.html index e98a4f9fe..7a21d8e4b 100644 --- a/icon/sort/index.html +++ b/icon/sort/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sort at 6x   - + Example of sort at 5x    - + Example of sort at 4x    - + Example of sort at 3x    - + Example of sort at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/soundcloud/index.html b/icon/soundcloud/index.html index 2314ddf28..ab6e57814 100644 --- a/icon/soundcloud/index.html +++ b/icon/soundcloud/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of soundcloud at 6x   - + Example of soundcloud at 5x    - + Example of soundcloud at 4x    - + Example of soundcloud at 3x    - + Example of soundcloud at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/space-shuttle/index.html b/icon/space-shuttle/index.html index b14722090..c72b7ce65 100644 --- a/icon/space-shuttle/index.html +++ b/icon/space-shuttle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of space-shuttle at 6x   - + Example of space-shuttle at 5x    - + Example of space-shuttle at 4x    - + Example of space-shuttle at 3x    - + Example of space-shuttle at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/spinner/index.html b/icon/spinner/index.html index edc260ced..a8ab252c8 100644 --- a/icon/spinner/index.html +++ b/icon/spinner/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of spinner at 6x   - + Example of spinner at 5x    - + Example of spinner at 4x    - + Example of spinner at 3x    - + Example of spinner at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/spoon/index.html b/icon/spoon/index.html index 4001782a6..d743e8f67 100644 --- a/icon/spoon/index.html +++ b/icon/spoon/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of spoon at 6x   - + Example of spoon at 5x    - + Example of spoon at 4x    - + Example of spoon at 3x    - + Example of spoon at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/spotify/index.html b/icon/spotify/index.html index f601bec84..d06206aa5 100644 --- a/icon/spotify/index.html +++ b/icon/spotify/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of spotify at 6x   - + Example of spotify at 5x    - + Example of spotify at 4x    - + Example of spotify at 3x    - + Example of spotify at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/square-o/index.html b/icon/square-o/index.html index f46b212cc..dd011fc60 100644 --- a/icon/square-o/index.html +++ b/icon/square-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of square-o at 6x   - + Example of square-o at 5x    - + Example of square-o at 4x    - + Example of square-o at 3x    - + Example of square-o at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/square/index.html b/icon/square/index.html index 0f76ae0fe..c78829039 100644 --- a/icon/square/index.html +++ b/icon/square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of square at 6x   - + Example of square at 5x    - + Example of square at 4x    - + Example of square at 3x    - + Example of square at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stack-exchange/index.html b/icon/stack-exchange/index.html index 62d516fcb..7a3e732c2 100644 --- a/icon/stack-exchange/index.html +++ b/icon/stack-exchange/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stack-exchange at 6x   - + Example of stack-exchange at 5x    - + Example of stack-exchange at 4x    - + Example of stack-exchange at 3x    - + Example of stack-exchange at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stack-overflow/index.html b/icon/stack-overflow/index.html index 8b7a365ad..a42440ed4 100644 --- a/icon/stack-overflow/index.html +++ b/icon/stack-overflow/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stack-overflow at 6x   - + Example of stack-overflow at 5x    - + Example of stack-overflow at 4x    - + Example of stack-overflow at 3x    - + Example of stack-overflow at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/star-half-o/index.html b/icon/star-half-o/index.html index f2841691f..f5eb4b9a8 100644 --- a/icon/star-half-o/index.html +++ b/icon/star-half-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of star-half-o at 6x   - + Example of star-half-o at 5x    - + Example of star-half-o at 4x    - + Example of star-half-o at 3x    - + Example of star-half-o at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/star-half/index.html b/icon/star-half/index.html index 8d3d08cda..bac5a030f 100644 --- a/icon/star-half/index.html +++ b/icon/star-half/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of star-half at 6x   - + Example of star-half at 5x    - + Example of star-half at 4x    - + Example of star-half at 3x    - + Example of star-half at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/star-o/index.html b/icon/star-o/index.html index c0798abda..f74570006 100644 --- a/icon/star-o/index.html +++ b/icon/star-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of star-o at 6x   - + Example of star-o at 5x    - + Example of star-o at 4x    - + Example of star-o at 3x    - + Example of star-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/star/index.html b/icon/star/index.html index 8c750d2ac..df7917a54 100644 --- a/icon/star/index.html +++ b/icon/star/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of star at 6x   - + Example of star at 5x    - + Example of star at 4x    - + Example of star at 3x    - + Example of star at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/steam-square/index.html b/icon/steam-square/index.html index 869fee996..0a24ca64f 100644 --- a/icon/steam-square/index.html +++ b/icon/steam-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of steam-square at 6x   - + Example of steam-square at 5x    - + Example of steam-square at 4x    - + Example of steam-square at 3x    - + Example of steam-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/steam/index.html b/icon/steam/index.html index 2ddb7b905..04061fed2 100644 --- a/icon/steam/index.html +++ b/icon/steam/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of steam at 6x   - + Example of steam at 5x    - + Example of steam at 4x    - + Example of steam at 3x    - + Example of steam at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/step-backward/index.html b/icon/step-backward/index.html index bc87200bc..8dc291d38 100644 --- a/icon/step-backward/index.html +++ b/icon/step-backward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of step-backward at 6x   - + Example of step-backward at 5x    - + Example of step-backward at 4x    - + Example of step-backward at 3x    - + Example of step-backward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/step-forward/index.html b/icon/step-forward/index.html index 1e94673dc..cc9631385 100644 --- a/icon/step-forward/index.html +++ b/icon/step-forward/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of step-forward at 6x   - + Example of step-forward at 5x    - + Example of step-forward at 4x    - + Example of step-forward at 3x    - + Example of step-forward at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stethoscope/index.html b/icon/stethoscope/index.html index ef5427656..232b65e42 100644 --- a/icon/stethoscope/index.html +++ b/icon/stethoscope/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stethoscope at 6x   - + Example of stethoscope at 5x    - + Example of stethoscope at 4x    - + Example of stethoscope at 3x    - + Example of stethoscope at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sticky-note-o/index.html b/icon/sticky-note-o/index.html index 3fbff9df8..29f7a52a5 100644 --- a/icon/sticky-note-o/index.html +++ b/icon/sticky-note-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sticky-note-o at 6x   - + Example of sticky-note-o at 5x    - + Example of sticky-note-o at 4x    - + Example of sticky-note-o at 3x    - + Example of sticky-note-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sticky-note/index.html b/icon/sticky-note/index.html index ee04b34fa..c5741d1ae 100644 --- a/icon/sticky-note/index.html +++ b/icon/sticky-note/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sticky-note at 6x   - + Example of sticky-note at 5x    - + Example of sticky-note at 4x    - + Example of sticky-note at 3x    - + Example of sticky-note at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stop-circle-o/index.html b/icon/stop-circle-o/index.html index d0c5105ad..c46e1be52 100644 --- a/icon/stop-circle-o/index.html +++ b/icon/stop-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stop-circle-o at 6x   - + Example of stop-circle-o at 5x    - + Example of stop-circle-o at 4x    - + Example of stop-circle-o at 3x    - + Example of stop-circle-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stop-circle/index.html b/icon/stop-circle/index.html index 2774eb890..3a9ddef29 100644 --- a/icon/stop-circle/index.html +++ b/icon/stop-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stop-circle at 6x   - + Example of stop-circle at 5x    - + Example of stop-circle at 4x    - + Example of stop-circle at 3x    - + Example of stop-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stop/index.html b/icon/stop/index.html index 105e611e1..5979c1fff 100644 --- a/icon/stop/index.html +++ b/icon/stop/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stop at 6x   - + Example of stop at 5x    - + Example of stop at 4x    - + Example of stop at 3x    - + Example of stop at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/street-view/index.html b/icon/street-view/index.html index c849d3b2e..163d4fc56 100644 --- a/icon/street-view/index.html +++ b/icon/street-view/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of street-view at 6x   - + Example of street-view at 5x    - + Example of street-view at 4x    - + Example of street-view at 3x    - + Example of street-view at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/strikethrough/index.html b/icon/strikethrough/index.html index 80cec4602..dd994da96 100644 --- a/icon/strikethrough/index.html +++ b/icon/strikethrough/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of strikethrough at 6x   - + Example of strikethrough at 5x    - + Example of strikethrough at 4x    - + Example of strikethrough at 3x    - + Example of strikethrough at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stumbleupon-circle/index.html b/icon/stumbleupon-circle/index.html index 36655ad79..339e43e7c 100644 --- a/icon/stumbleupon-circle/index.html +++ b/icon/stumbleupon-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stumbleupon-circle at 6x   - + Example of stumbleupon-circle at 5x    - + Example of stumbleupon-circle at 4x    - + Example of stumbleupon-circle at 3x    - + Example of stumbleupon-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/stumbleupon/index.html b/icon/stumbleupon/index.html index 111f15f0a..275c95387 100644 --- a/icon/stumbleupon/index.html +++ b/icon/stumbleupon/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of stumbleupon at 6x   - + Example of stumbleupon at 5x    - + Example of stumbleupon at 4x    - + Example of stumbleupon at 3x    - + Example of stumbleupon at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/subscript/index.html b/icon/subscript/index.html index 1e3e61376..bc9f07ca5 100644 --- a/icon/subscript/index.html +++ b/icon/subscript/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of subscript at 6x   - + Example of subscript at 5x    - + Example of subscript at 4x    - + Example of subscript at 3x    - + Example of subscript at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/subway/index.html b/icon/subway/index.html index 070072e72..8b87f0352 100644 --- a/icon/subway/index.html +++ b/icon/subway/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of subway at 6x   - + Example of subway at 5x    - + Example of subway at 4x    - + Example of subway at 3x    - + Example of subway at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/suitcase/index.html b/icon/suitcase/index.html index 8504f8ad7..ef4071e7e 100644 --- a/icon/suitcase/index.html +++ b/icon/suitcase/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of suitcase at 6x   - + Example of suitcase at 5x    - + Example of suitcase at 4x    - + Example of suitcase at 3x    - + Example of suitcase at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/sun-o/index.html b/icon/sun-o/index.html index d8bf8f533..0fb462c3a 100644 --- a/icon/sun-o/index.html +++ b/icon/sun-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of sun-o at 6x   - + Example of sun-o at 5x    - + Example of sun-o at 4x    - + Example of sun-o at 3x    - + Example of sun-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/superscript/index.html b/icon/superscript/index.html index c81b4f8c1..e234045c1 100644 --- a/icon/superscript/index.html +++ b/icon/superscript/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of superscript at 6x   - + Example of superscript at 5x    - + Example of superscript at 4x    - + Example of superscript at 3x    - + Example of superscript at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/table/index.html b/icon/table/index.html index da3e1bf2c..9367b041e 100644 --- a/icon/table/index.html +++ b/icon/table/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of table at 6x   - + Example of table at 5x    - + Example of table at 4x    - + Example of table at 3x    - + Example of table at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tablet/index.html b/icon/tablet/index.html index 8b6b29fea..1a892cf81 100644 --- a/icon/tablet/index.html +++ b/icon/tablet/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tablet at 6x   - + Example of tablet at 5x    - + Example of tablet at 4x    - + Example of tablet at 3x    - + Example of tablet at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tachometer/index.html b/icon/tachometer/index.html index 65fb650e2..bdbeb9737 100644 --- a/icon/tachometer/index.html +++ b/icon/tachometer/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tachometer at 6x   - + Example of tachometer at 5x    - + Example of tachometer at 4x    - + Example of tachometer at 3x    - + Example of tachometer at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tag/index.html b/icon/tag/index.html index ae1c0290d..c9cb55a0b 100644 --- a/icon/tag/index.html +++ b/icon/tag/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tag at 6x   - + Example of tag at 5x    - + Example of tag at 4x    - + Example of tag at 3x    - + Example of tag at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tags/index.html b/icon/tags/index.html index c5412a17a..6be75fc20 100644 --- a/icon/tags/index.html +++ b/icon/tags/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tags at 6x   - + Example of tags at 5x    - + Example of tags at 4x    - + Example of tags at 3x    - + Example of tags at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tasks/index.html b/icon/tasks/index.html index aab224e0f..ec88f4e93 100644 --- a/icon/tasks/index.html +++ b/icon/tasks/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tasks at 6x   - + Example of tasks at 5x    - + Example of tasks at 4x    - + Example of tasks at 3x    - + Example of tasks at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/taxi/index.html b/icon/taxi/index.html index 2793e0c88..ecd89aae6 100644 --- a/icon/taxi/index.html +++ b/icon/taxi/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of taxi at 6x   - + Example of taxi at 5x    - + Example of taxi at 4x    - + Example of taxi at 3x    - + Example of taxi at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/television/index.html b/icon/television/index.html index 2ed9dce1d..e27617c24 100644 --- a/icon/television/index.html +++ b/icon/television/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of television at 6x   - + Example of television at 5x    - + Example of television at 4x    - + Example of television at 3x    - + Example of television at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tencent-weibo/index.html b/icon/tencent-weibo/index.html index f6ca632ee..3bed3d811 100644 --- a/icon/tencent-weibo/index.html +++ b/icon/tencent-weibo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tencent-weibo at 6x   - + Example of tencent-weibo at 5x    - + Example of tencent-weibo at 4x    - + Example of tencent-weibo at 3x    - + Example of tencent-weibo at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/terminal/index.html b/icon/terminal/index.html index 407bfca79..e088e7c6a 100644 --- a/icon/terminal/index.html +++ b/icon/terminal/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of terminal at 6x   - + Example of terminal at 5x    - + Example of terminal at 4x    - + Example of terminal at 3x    - + Example of terminal at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/text-height/index.html b/icon/text-height/index.html index bc1a7f9d0..ba79496d2 100644 --- a/icon/text-height/index.html +++ b/icon/text-height/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of text-height at 6x   - + Example of text-height at 5x    - + Example of text-height at 4x    - + Example of text-height at 3x    - + Example of text-height at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/text-width/index.html b/icon/text-width/index.html index caf087193..1dac0d378 100644 --- a/icon/text-width/index.html +++ b/icon/text-width/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of text-width at 6x   - + Example of text-width at 5x    - + Example of text-width at 4x    - + Example of text-width at 3x    - + Example of text-width at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/th-large/index.html b/icon/th-large/index.html index fd120b813..9b9e0536c 100644 --- a/icon/th-large/index.html +++ b/icon/th-large/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of th-large at 6x   - + Example of th-large at 5x    - + Example of th-large at 4x    - + Example of th-large at 3x    - + Example of th-large at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/th-list/index.html b/icon/th-list/index.html index b572c71f5..456e67e14 100644 --- a/icon/th-list/index.html +++ b/icon/th-list/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of th-list at 6x   - + Example of th-list at 5x    - + Example of th-list at 4x    - + Example of th-list at 3x    - + Example of th-list at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/th/index.html b/icon/th/index.html index 5d8000c64..f309eccea 100644 --- a/icon/th/index.html +++ b/icon/th/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of th at 6x   - + Example of th at 5x    - + Example of th at 4x    - + Example of th at 3x    - + Example of th at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/thumb-tack/index.html b/icon/thumb-tack/index.html index 2350daad1..12417cbd2 100644 --- a/icon/thumb-tack/index.html +++ b/icon/thumb-tack/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of thumb-tack at 6x   - + Example of thumb-tack at 5x    - + Example of thumb-tack at 4x    - + Example of thumb-tack at 3x    - + Example of thumb-tack at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/thumbs-down/index.html b/icon/thumbs-down/index.html index c85ae4962..05dc8fa46 100644 --- a/icon/thumbs-down/index.html +++ b/icon/thumbs-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of thumbs-down at 6x   - + Example of thumbs-down at 5x    - + Example of thumbs-down at 4x    - + Example of thumbs-down at 3x    - + Example of thumbs-down at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/thumbs-o-down/index.html b/icon/thumbs-o-down/index.html index ca9c3014b..f3a4d23ae 100644 --- a/icon/thumbs-o-down/index.html +++ b/icon/thumbs-o-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of thumbs-o-down at 6x   - + Example of thumbs-o-down at 5x    - + Example of thumbs-o-down at 4x    - + Example of thumbs-o-down at 3x    - + Example of thumbs-o-down at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/thumbs-o-up/index.html b/icon/thumbs-o-up/index.html index 62dfc8b1a..b341f4445 100644 --- a/icon/thumbs-o-up/index.html +++ b/icon/thumbs-o-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of thumbs-o-up at 6x   - + Example of thumbs-o-up at 5x    - + Example of thumbs-o-up at 4x    - + Example of thumbs-o-up at 3x    - + Example of thumbs-o-up at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/thumbs-up/index.html b/icon/thumbs-up/index.html index 8d0e5d8f6..f104df1e2 100644 --- a/icon/thumbs-up/index.html +++ b/icon/thumbs-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of thumbs-up at 6x   - + Example of thumbs-up at 5x    - + Example of thumbs-up at 4x    - + Example of thumbs-up at 3x    - + Example of thumbs-up at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/ticket/index.html b/icon/ticket/index.html index bee10a57b..e58549bc6 100644 --- a/icon/ticket/index.html +++ b/icon/ticket/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of ticket at 6x   - + Example of ticket at 5x    - + Example of ticket at 4x    - + Example of ticket at 3x    - + Example of ticket at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/times-circle-o/index.html b/icon/times-circle-o/index.html index fc7edfc3b..5a23a8205 100644 --- a/icon/times-circle-o/index.html +++ b/icon/times-circle-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of times-circle-o at 6x   - + Example of times-circle-o at 5x    - + Example of times-circle-o at 4x    - + Example of times-circle-o at 3x    - + Example of times-circle-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/times-circle/index.html b/icon/times-circle/index.html index 5a1104d08..f2b34b3b0 100644 --- a/icon/times-circle/index.html +++ b/icon/times-circle/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of times-circle at 6x   - + Example of times-circle at 5x    - + Example of times-circle at 4x    - + Example of times-circle at 3x    - + Example of times-circle at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/times/index.html b/icon/times/index.html index 7f10ef885..049235a9a 100644 --- a/icon/times/index.html +++ b/icon/times/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of times at 6x   - + Example of times at 5x    - + Example of times at 4x    - + Example of times at 3x    - + Example of times at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tint/index.html b/icon/tint/index.html index cfe1b753b..c5a5e1d63 100644 --- a/icon/tint/index.html +++ b/icon/tint/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tint at 6x   - + Example of tint at 5x    - + Example of tint at 4x    - + Example of tint at 3x    - + Example of tint at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/toggle-off/index.html b/icon/toggle-off/index.html index ede446d0f..64a718dca 100644 --- a/icon/toggle-off/index.html +++ b/icon/toggle-off/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of toggle-off at 6x   - + Example of toggle-off at 5x    - + Example of toggle-off at 4x    - + Example of toggle-off at 3x    - + Example of toggle-off at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/toggle-on/index.html b/icon/toggle-on/index.html index be974c812..56f8d1e38 100644 --- a/icon/toggle-on/index.html +++ b/icon/toggle-on/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of toggle-on at 6x   - + Example of toggle-on at 5x    - + Example of toggle-on at 4x    - + Example of toggle-on at 3x    - + Example of toggle-on at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/trademark/index.html b/icon/trademark/index.html index 5762c49d6..966394892 100644 --- a/icon/trademark/index.html +++ b/icon/trademark/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of trademark at 6x   - + Example of trademark at 5x    - + Example of trademark at 4x    - + Example of trademark at 3x    - + Example of trademark at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/train/index.html b/icon/train/index.html index 5cffdfef6..668c027bc 100644 --- a/icon/train/index.html +++ b/icon/train/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of train at 6x   - + Example of train at 5x    - + Example of train at 4x    - + Example of train at 3x    - + Example of train at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/transgender-alt/index.html b/icon/transgender-alt/index.html index ba478e61f..719d06824 100644 --- a/icon/transgender-alt/index.html +++ b/icon/transgender-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of transgender-alt at 6x   - + Example of transgender-alt at 5x    - + Example of transgender-alt at 4x    - + Example of transgender-alt at 3x    - + Example of transgender-alt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/transgender/index.html b/icon/transgender/index.html index 27dbc1b41..a45a1ae55 100644 --- a/icon/transgender/index.html +++ b/icon/transgender/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of transgender at 6x   - + Example of transgender at 5x    - + Example of transgender at 4x    - + Example of transgender at 3x    - + Example of transgender at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/trash-o/index.html b/icon/trash-o/index.html index 87c05c15e..4f9b67d2a 100644 --- a/icon/trash-o/index.html +++ b/icon/trash-o/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of trash-o at 6x   - + Example of trash-o at 5x    - + Example of trash-o at 4x    - + Example of trash-o at 3x    - + Example of trash-o at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/trash/index.html b/icon/trash/index.html index e3e1f8432..35abbdc8c 100644 --- a/icon/trash/index.html +++ b/icon/trash/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of trash at 6x   - + Example of trash at 5x    - + Example of trash at 4x    - + Example of trash at 3x    - + Example of trash at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tree/index.html b/icon/tree/index.html index f988f64c8..bf270f9ba 100644 --- a/icon/tree/index.html +++ b/icon/tree/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tree at 6x   - + Example of tree at 5x    - + Example of tree at 4x    - + Example of tree at 3x    - + Example of tree at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/trello/index.html b/icon/trello/index.html index 722d3c619..6dbf11729 100644 --- a/icon/trello/index.html +++ b/icon/trello/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of trello at 6x   - + Example of trello at 5x    - + Example of trello at 4x    - + Example of trello at 3x    - + Example of trello at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tripadvisor/index.html b/icon/tripadvisor/index.html index e599f599b..cbf0d35f4 100644 --- a/icon/tripadvisor/index.html +++ b/icon/tripadvisor/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tripadvisor at 6x   - + Example of tripadvisor at 5x    - + Example of tripadvisor at 4x    - + Example of tripadvisor at 3x    - + Example of tripadvisor at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/trophy/index.html b/icon/trophy/index.html index 069d75e3e..1dc07d34d 100644 --- a/icon/trophy/index.html +++ b/icon/trophy/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of trophy at 6x   - + Example of trophy at 5x    - + Example of trophy at 4x    - + Example of trophy at 3x    - + Example of trophy at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/truck/index.html b/icon/truck/index.html index a51c050f2..e6eb08445 100644 --- a/icon/truck/index.html +++ b/icon/truck/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of truck at 6x   - + Example of truck at 5x    - + Example of truck at 4x    - + Example of truck at 3x    - + Example of truck at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/try/index.html b/icon/try/index.html index 14e6dbbef..f1488b204 100644 --- a/icon/try/index.html +++ b/icon/try/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of try at 6x   - + Example of try at 5x    - + Example of try at 4x    - + Example of try at 3x    - + Example of try at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tty/index.html b/icon/tty/index.html index 90cb9e4be..d72112547 100644 --- a/icon/tty/index.html +++ b/icon/tty/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tty at 6x   - + Example of tty at 5x    - + Example of tty at 4x    - + Example of tty at 3x    - + Example of tty at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tumblr-square/index.html b/icon/tumblr-square/index.html index a61555bbb..a4f9314a9 100644 --- a/icon/tumblr-square/index.html +++ b/icon/tumblr-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tumblr-square at 6x   - + Example of tumblr-square at 5x    - + Example of tumblr-square at 4x    - + Example of tumblr-square at 3x    - + Example of tumblr-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/tumblr/index.html b/icon/tumblr/index.html index 845fdc30e..7733eb4aa 100644 --- a/icon/tumblr/index.html +++ b/icon/tumblr/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of tumblr at 6x   - + Example of tumblr at 5x    - + Example of tumblr at 4x    - + Example of tumblr at 3x    - + Example of tumblr at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/twitch/index.html b/icon/twitch/index.html index 71239f778..839554379 100644 --- a/icon/twitch/index.html +++ b/icon/twitch/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of twitch at 6x   - + Example of twitch at 5x    - + Example of twitch at 4x    - + Example of twitch at 3x    - + Example of twitch at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/twitter-square/index.html b/icon/twitter-square/index.html index ba22f013a..4adbd946c 100644 --- a/icon/twitter-square/index.html +++ b/icon/twitter-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of twitter-square at 6x   - + Example of twitter-square at 5x    - + Example of twitter-square at 4x    - + Example of twitter-square at 3x    - + Example of twitter-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/twitter/index.html b/icon/twitter/index.html index 53dee1e32..d58a15f9b 100644 --- a/icon/twitter/index.html +++ b/icon/twitter/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of twitter at 6x   - + Example of twitter at 5x    - + Example of twitter at 4x    - + Example of twitter at 3x    - + Example of twitter at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/umbrella/index.html b/icon/umbrella/index.html index 9f0ac2a9d..fb6c5e369 100644 --- a/icon/umbrella/index.html +++ b/icon/umbrella/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of umbrella at 6x   - + Example of umbrella at 5x    - + Example of umbrella at 4x    - + Example of umbrella at 3x    - + Example of umbrella at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/underline/index.html b/icon/underline/index.html index ed31a1e7e..593e26d2c 100644 --- a/icon/underline/index.html +++ b/icon/underline/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of underline at 6x   - + Example of underline at 5x    - + Example of underline at 4x    - + Example of underline at 3x    - + Example of underline at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/undo/index.html b/icon/undo/index.html index a218ced1f..02a79db75 100644 --- a/icon/undo/index.html +++ b/icon/undo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of undo at 6x   - + Example of undo at 5x    - + Example of undo at 4x    - + Example of undo at 3x    - + Example of undo at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/universal-access/index.html b/icon/universal-access/index.html index e3818d246..3a7f6648d 100644 --- a/icon/universal-access/index.html +++ b/icon/universal-access/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of universal-access at 6x   - + Example of universal-access at 5x    - + Example of universal-access at 4x    - + Example of universal-access at 3x    - + Example of universal-access at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/university/index.html b/icon/university/index.html index 22786a5fd..e622f2ef0 100644 --- a/icon/university/index.html +++ b/icon/university/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of university at 6x   - + Example of university at 5x    - + Example of university at 4x    - + Example of university at 3x    - + Example of university at 2x   @@ -265,7 +269,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/unlock-alt/index.html b/icon/unlock-alt/index.html index 0f92d80a1..a20fe1a2a 100644 --- a/icon/unlock-alt/index.html +++ b/icon/unlock-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of unlock-alt at 6x   - + Example of unlock-alt at 5x    - + Example of unlock-alt at 4x    - + Example of unlock-alt at 3x    - + Example of unlock-alt at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/unlock/index.html b/icon/unlock/index.html index 646803245..d36d5fd02 100644 --- a/icon/unlock/index.html +++ b/icon/unlock/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of unlock at 6x   - + Example of unlock at 5x    - + Example of unlock at 4x    - + Example of unlock at 3x    - + Example of unlock at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/upload/index.html b/icon/upload/index.html index f76f129c2..6c16bd96d 100644 --- a/icon/upload/index.html +++ b/icon/upload/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of upload at 6x   - + Example of upload at 5x    - + Example of upload at 4x    - + Example of upload at 3x    - + Example of upload at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/usb/index.html b/icon/usb/index.html index c8b53edeb..6d2e4b34f 100644 --- a/icon/usb/index.html +++ b/icon/usb/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of usb at 6x   - + Example of usb at 5x    - + Example of usb at 4x    - + Example of usb at 3x    - + Example of usb at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/usd/index.html b/icon/usd/index.html index c11e7e15f..700f6e2da 100644 --- a/icon/usd/index.html +++ b/icon/usd/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of usd at 6x   - + Example of usd at 5x    - + Example of usd at 4x    - + Example of usd at 3x    - + Example of usd at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/user-md/index.html b/icon/user-md/index.html index 531fdca4b..e208238f4 100644 --- a/icon/user-md/index.html +++ b/icon/user-md/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of user-md at 6x   - + Example of user-md at 5x    - + Example of user-md at 4x    - + Example of user-md at 3x    - + Example of user-md at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/user-plus/index.html b/icon/user-plus/index.html index cccea8946..c1f7b77a7 100644 --- a/icon/user-plus/index.html +++ b/icon/user-plus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of user-plus at 6x   - + Example of user-plus at 5x    - + Example of user-plus at 4x    - + Example of user-plus at 3x    - + Example of user-plus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/user-secret/index.html b/icon/user-secret/index.html index f9c9e84d1..2bfe87177 100644 --- a/icon/user-secret/index.html +++ b/icon/user-secret/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of user-secret at 6x   - + Example of user-secret at 5x    - + Example of user-secret at 4x    - + Example of user-secret at 3x    - + Example of user-secret at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/user-times/index.html b/icon/user-times/index.html index c99c61e46..9f14af974 100644 --- a/icon/user-times/index.html +++ b/icon/user-times/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of user-times at 6x   - + Example of user-times at 5x    - + Example of user-times at 4x    - + Example of user-times at 3x    - + Example of user-times at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/user/index.html b/icon/user/index.html index 13ff88d87..d8fe799d9 100644 --- a/icon/user/index.html +++ b/icon/user/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of user at 6x   - + Example of user at 5x    - + Example of user at 4x    - + Example of user at 3x    - + Example of user at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/users/index.html b/icon/users/index.html index 150388649..505221028 100644 --- a/icon/users/index.html +++ b/icon/users/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of users at 6x   - + Example of users at 5x    - + Example of users at 4x    - + Example of users at 3x    - + Example of users at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/venus-double/index.html b/icon/venus-double/index.html index 195e8d901..d1a3c677b 100644 --- a/icon/venus-double/index.html +++ b/icon/venus-double/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of venus-double at 6x   - + Example of venus-double at 5x    - + Example of venus-double at 4x    - + Example of venus-double at 3x    - + Example of venus-double at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/venus-mars/index.html b/icon/venus-mars/index.html index dd891a840..44a0a3fa2 100644 --- a/icon/venus-mars/index.html +++ b/icon/venus-mars/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of venus-mars at 6x   - + Example of venus-mars at 5x    - + Example of venus-mars at 4x    - + Example of venus-mars at 3x    - + Example of venus-mars at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/venus/index.html b/icon/venus/index.html index 3c7fe9698..9f392ea4f 100644 --- a/icon/venus/index.html +++ b/icon/venus/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of venus at 6x   - + Example of venus at 5x    - + Example of venus at 4x    - + Example of venus at 3x    - + Example of venus at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/viacoin/index.html b/icon/viacoin/index.html index 2c8ddc056..53f46edcc 100644 --- a/icon/viacoin/index.html +++ b/icon/viacoin/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of viacoin at 6x   - + Example of viacoin at 5x    - + Example of viacoin at 4x    - + Example of viacoin at 3x    - + Example of viacoin at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/viadeo-square/index.html b/icon/viadeo-square/index.html index 6b213799f..a1a63ca4b 100644 --- a/icon/viadeo-square/index.html +++ b/icon/viadeo-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of viadeo-square at 6x   - + Example of viadeo-square at 5x    - + Example of viadeo-square at 4x    - + Example of viadeo-square at 3x    - + Example of viadeo-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/viadeo/index.html b/icon/viadeo/index.html index b49ec1177..250e521cf 100644 --- a/icon/viadeo/index.html +++ b/icon/viadeo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of viadeo at 6x   - + Example of viadeo at 5x    - + Example of viadeo at 4x    - + Example of viadeo at 3x    - + Example of viadeo at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/video-camera/index.html b/icon/video-camera/index.html index ff772effa..dc4fd5458 100644 --- a/icon/video-camera/index.html +++ b/icon/video-camera/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of video-camera at 6x   - + Example of video-camera at 5x    - + Example of video-camera at 4x    - + Example of video-camera at 3x    - + Example of video-camera at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/vimeo-square/index.html b/icon/vimeo-square/index.html index 96bf1c7e7..cefcb9dd3 100644 --- a/icon/vimeo-square/index.html +++ b/icon/vimeo-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of vimeo-square at 6x   - + Example of vimeo-square at 5x    - + Example of vimeo-square at 4x    - + Example of vimeo-square at 3x    - + Example of vimeo-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/vimeo/index.html b/icon/vimeo/index.html index aece536ca..7cfffe537 100644 --- a/icon/vimeo/index.html +++ b/icon/vimeo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of vimeo at 6x   - + Example of vimeo at 5x    - + Example of vimeo at 4x    - + Example of vimeo at 3x    - + Example of vimeo at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/vine/index.html b/icon/vine/index.html index de0cc6cdc..17c54083c 100644 --- a/icon/vine/index.html +++ b/icon/vine/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of vine at 6x   - + Example of vine at 5x    - + Example of vine at 4x    - + Example of vine at 3x    - + Example of vine at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/vk/index.html b/icon/vk/index.html index ccbc1e9ec..e98004492 100644 --- a/icon/vk/index.html +++ b/icon/vk/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of vk at 6x   - + Example of vk at 5x    - + Example of vk at 4x    - + Example of vk at 3x    - + Example of vk at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/volume-control-phone/index.html b/icon/volume-control-phone/index.html index b18683986..ab3a892b0 100644 --- a/icon/volume-control-phone/index.html +++ b/icon/volume-control-phone/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of volume-control-phone at 6x   - + Example of volume-control-phone at 5x    - + Example of volume-control-phone at 4x    - + Example of volume-control-phone at 3x    - + Example of volume-control-phone at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/volume-down/index.html b/icon/volume-down/index.html index 68b16cad7..574568d90 100644 --- a/icon/volume-down/index.html +++ b/icon/volume-down/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of volume-down at 6x   - + Example of volume-down at 5x    - + Example of volume-down at 4x    - + Example of volume-down at 3x    - + Example of volume-down at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/volume-off/index.html b/icon/volume-off/index.html index 5e900e766..314124fd7 100644 --- a/icon/volume-off/index.html +++ b/icon/volume-off/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of volume-off at 6x   - + Example of volume-off at 5x    - + Example of volume-off at 4x    - + Example of volume-off at 3x    - + Example of volume-off at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/volume-up/index.html b/icon/volume-up/index.html index 0e830b806..ad29a8648 100644 --- a/icon/volume-up/index.html +++ b/icon/volume-up/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of volume-up at 6x   - + Example of volume-up at 5x    - + Example of volume-up at 4x    - + Example of volume-up at 3x    - + Example of volume-up at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/weibo/index.html b/icon/weibo/index.html index cdfe06e17..ff450e6fa 100644 --- a/icon/weibo/index.html +++ b/icon/weibo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of weibo at 6x   - + Example of weibo at 5x    - + Example of weibo at 4x    - + Example of weibo at 3x    - + Example of weibo at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/weixin/index.html b/icon/weixin/index.html index 921c03d3d..a04121952 100644 --- a/icon/weixin/index.html +++ b/icon/weixin/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of weixin at 6x   - + Example of weixin at 5x    - + Example of weixin at 4x    - + Example of weixin at 3x    - + Example of weixin at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/whatsapp/index.html b/icon/whatsapp/index.html index 1b941b723..59383be95 100644 --- a/icon/whatsapp/index.html +++ b/icon/whatsapp/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of whatsapp at 6x   - + Example of whatsapp at 5x    - + Example of whatsapp at 4x    - + Example of whatsapp at 3x    - + Example of whatsapp at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wheelchair-alt/index.html b/icon/wheelchair-alt/index.html index a3c796657..51b074388 100644 --- a/icon/wheelchair-alt/index.html +++ b/icon/wheelchair-alt/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wheelchair-alt at 6x   - + Example of wheelchair-alt at 5x    - + Example of wheelchair-alt at 4x    - + Example of wheelchair-alt at 3x    - + Example of wheelchair-alt at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wheelchair/index.html b/icon/wheelchair/index.html index 91219467a..8e38ced42 100644 --- a/icon/wheelchair/index.html +++ b/icon/wheelchair/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wheelchair at 6x   - + Example of wheelchair at 5x    - + Example of wheelchair at 4x    - + Example of wheelchair at 3x    - + Example of wheelchair at 2x   @@ -264,7 +268,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wifi/index.html b/icon/wifi/index.html index 52ed23ba4..1ae4ea1d7 100644 --- a/icon/wifi/index.html +++ b/icon/wifi/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wifi at 6x   - + Example of wifi at 5x    - + Example of wifi at 4x    - + Example of wifi at 3x    - + Example of wifi at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wikipedia-w/index.html b/icon/wikipedia-w/index.html index e5dfc339f..6bd0c30b4 100644 --- a/icon/wikipedia-w/index.html +++ b/icon/wikipedia-w/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wikipedia-w at 6x   - + Example of wikipedia-w at 5x    - + Example of wikipedia-w at 4x    - + Example of wikipedia-w at 3x    - + Example of wikipedia-w at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/windows/index.html b/icon/windows/index.html index 9c7f58015..cf002d55a 100644 --- a/icon/windows/index.html +++ b/icon/windows/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of windows at 6x   - + Example of windows at 5x    - + Example of windows at 4x    - + Example of windows at 3x    - + Example of windows at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wordpress/index.html b/icon/wordpress/index.html index c2aad2199..d6d2aee5d 100644 --- a/icon/wordpress/index.html +++ b/icon/wordpress/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wordpress at 6x   - + Example of wordpress at 5x    - + Example of wordpress at 4x    - + Example of wordpress at 3x    - + Example of wordpress at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wpbeginner/index.html b/icon/wpbeginner/index.html index b632f0d12..d903d7e82 100644 --- a/icon/wpbeginner/index.html +++ b/icon/wpbeginner/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wpbeginner at 6x   - + Example of wpbeginner at 5x    - + Example of wpbeginner at 4x    - + Example of wpbeginner at 3x    - + Example of wpbeginner at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wpforms/index.html b/icon/wpforms/index.html index 4e283d24b..56b4768a3 100644 --- a/icon/wpforms/index.html +++ b/icon/wpforms/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wpforms at 6x   - + Example of wpforms at 5x    - + Example of wpforms at 4x    - + Example of wpforms at 3x    - + Example of wpforms at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/wrench/index.html b/icon/wrench/index.html index 8c5baf65a..68889f70c 100644 --- a/icon/wrench/index.html +++ b/icon/wrench/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of wrench at 6x   - + Example of wrench at 5x    - + Example of wrench at 4x    - + Example of wrench at 3x    - + Example of wrench at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/xing-square/index.html b/icon/xing-square/index.html index c40d2e05f..99d8ad176 100644 --- a/icon/xing-square/index.html +++ b/icon/xing-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of xing-square at 6x   - + Example of xing-square at 5x    - + Example of xing-square at 4x    - + Example of xing-square at 3x    - + Example of xing-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/xing/index.html b/icon/xing/index.html index 0cbe485f4..01a8edb6b 100644 --- a/icon/xing/index.html +++ b/icon/xing/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of xing at 6x   - + Example of xing at 5x    - + Example of xing at 4x    - + Example of xing at 3x    - + Example of xing at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/y-combinator/index.html b/icon/y-combinator/index.html index 67acb85fb..9d241932a 100644 --- a/icon/y-combinator/index.html +++ b/icon/y-combinator/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of y-combinator at 6x   - + Example of y-combinator at 5x    - + Example of y-combinator at 4x    - + Example of y-combinator at 3x    - + Example of y-combinator at 2x   @@ -263,7 +267,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/yahoo/index.html b/icon/yahoo/index.html index c6889578c..1f9febb22 100644 --- a/icon/yahoo/index.html +++ b/icon/yahoo/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of yahoo at 6x   - + Example of yahoo at 5x    - + Example of yahoo at 4x    - + Example of yahoo at 3x    - + Example of yahoo at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/yelp/index.html b/icon/yelp/index.html index bef7605c7..d51c9e5eb 100644 --- a/icon/yelp/index.html +++ b/icon/yelp/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of yelp at 6x   - + Example of yelp at 5x    - + Example of yelp at 4x    - + Example of yelp at 3x    - + Example of yelp at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/youtube-play/index.html b/icon/youtube-play/index.html index 059eb165a..0cb6d7364 100644 --- a/icon/youtube-play/index.html +++ b/icon/youtube-play/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of youtube-play at 6x   - + Example of youtube-play at 5x    - + Example of youtube-play at 4x    - + Example of youtube-play at 3x    - + Example of youtube-play at 2x   @@ -260,7 +264,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/youtube-square/index.html b/icon/youtube-square/index.html index 5f0cdece5..1e0a798d0 100644 --- a/icon/youtube-square/index.html +++ b/icon/youtube-square/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of youtube-square at 6x   - + Example of youtube-square at 5x    - + Example of youtube-square at 4x    - + Example of youtube-square at 3x    - + Example of youtube-square at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icon/youtube/index.html b/icon/youtube/index.html index cf20f04a5..09a2fa6b9 100644 --- a/icon/youtube/index.html +++ b/icon/youtube/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -169,21 +173,21 @@
    - + Example of youtube at 6x   - + Example of youtube at 5x    - + Example of youtube at 4x    - + Example of youtube at 3x    - + Example of youtube at 2x   @@ -258,7 +262,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/icons/index.html b/icons/index.html index fc83f4730..dde8ff83c 100644 --- a/icons/index.html +++ b/icons/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + +
    @@ -172,7 +176,7 @@

      The Icons

    -

    The complete set of 628 icons in Font Awesome 4.6.0

    +

    The complete set of 628 icons in Font Awesome 4.6.1

    @@ -223,7 +227,7 @@

    You asked, Font Awesome delivers with 23 shiny new icons in version 4.6. Want to request new icons? Here's how. - + Need vectors or want to use on the desktop? Check the cheatsheet.

    @@ -2286,7 +2290,7 @@ an error. To work around this, you'll need to modify the social icon class names
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/index.html b/index.html index a6c03b1d8..826767602 100644 --- a/index.html +++ b/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -180,7 +184,7 @@
    - Version 4.6.0   ·   + Version 4.6.1   ·   GitHub Project   ·   @@ -398,7 +402,7 @@

      Fort Awesome

    or
    - No thanks, just download
    Font Awesome
    @@ -431,7 +435,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/license/index.html b/license/index.html index 8ee6b72ee..67130a25f 100644 --- a/license/index.html +++ b/license/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -308,7 +312,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/test/index.html b/test/index.html index 4f2b4450c..2116868fc 100644 --- a/test/index.html +++ b/test/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -1196,7 +1200,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/thanks/index.html b/thanks/index.html index f7d811e74..ea75197fa 100644 --- a/thanks/index.html +++ b/thanks/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -212,7 +216,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy
    diff --git a/whats-new/index.html b/whats-new/index.html index ebc953569..7f2203f00 100644 --- a/whats-new/index.html +++ b/whats-new/index.html @@ -161,6 +161,10 @@
  • Community
  • License
  • + + @@ -354,7 +358,7 @@
    - Font Awesome 4.6.0 + Font Awesome 4.6.1 ·
    Created by Dave Gandy