all repos — hastysite @ 6e1ed2eec9c3d544be62391be3369412fd4f7991

A high-performance static site generator.

Upgraded min and HastyScribe, added support for Font Awesome 5.
h3rald h3rald@h3rald.com
Sun, 11 Mar 2018 13:54:28 +0100
commit

6e1ed2eec9c3d544be62391be3369412fd4f7991

parent

254eaf7478fcc7a0cddc60e10af2b3d162575212

M HastySite_UserGuide.htmHastySite_UserGuide.htm

@@ -4524,11 +4524,11 @@

<p>You can download one of the following pre-built HastySite binaries:</p> <div class="unstyled"><ul> -<li><span class="apple"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.0.1/hastysite_v1.0.1_macosx_x64.zip">hastysite v1.0.1 for macOS (x64)</a></li> -<li><span class="windows"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.0.1/hastysite_v1.0.1_windows_x64.zip">hastysite v1.0.1 for Windows (x64)</a></li> -<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.0.1/hastysite_v1.0.1_linux_x64.zip">hastysite v1.0.1 for Linux (x64)</a></li> -<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.0.1/hastysite_v1.0.1_linux_x86.zip">hastysite v1.0.1 for Linux (x86)</a></li> -<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.0.1/hastysite_v1.0.1_linux_arm.zip">hastysite v1.0.1 for Linux (arm)</a></li> +<li><span class="apple"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.1.0/hastysite_v1.1.0_macosx_x64.zip">hastysite v1.1.0 for macOS (x64)</a></li> +<li><span class="windows"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.1.0/hastysite_v1.1.0_windows_x64.zip">hastysite v1.1.0 for Windows (x64)</a></li> +<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.1.0/hastysite_v1.1.0_linux_x64.zip">hastysite v1.1.0 for Linux (x64)</a></li> +<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.1.0/hastysite_v1.1.0_linux_x86.zip">hastysite v1.1.0 for Linux (x86)</a></li> +<li><span class="linux"></span><a href="https://github.com/h3rald/hastysite/releases/download/v1.1.0/hastysite_v1.1.0_linux_arm.zip">hastysite v1.1.0 for Linux (arm)</a></li> </ul> </div>

@@ -5217,7 +5217,7 @@

<p>The contents of the site are also available in a standalone HTML document, <a href="https://h3rald.com/hastysite/HastySitee_UserGuide.htm">here</a>.</p> </div> <div id="footer"> - <p><span class="copy"></span> Fabio Cevasco &ndash; November 19, 2017</p> + <p><span class="copy"></span> Fabio Cevasco &ndash; February 11, 2018</p> <p><span>Powered by</span> <a href="https://h3rald.com/hastyscribe"><span class="hastyscribe"></span></a></p> </div> </div>
M hastysite.nimhastysite.nim

@@ -61,7 +61,8 @@ const FONT_SSP_R = "./site/assets/fonts/SourceSansPro-Regular.woff".slurp

const FONT_SSP_B = "./site/assets/fonts/SourceSansPro-Bold.woff".slurp const FONT_SSP_BI = "./site/assets/fonts/SourceSansPro-BoldIt.woff".slurp const FONT_SSP_I = "./site/assets/fonts/SourceSansPro-It.woff".slurp -const FONT_FA = "./site/assets/fonts/fontawesome-webfont.woff".slurp +const FONT_FAS = "./site/assets/fonts/fa-solid-900.woff".slurp +const FONT_FAB = "./site/assets/fonts/fa-brands-400.woff".slurp const STYLE_FONTS = "./site/assets/styles/fonts.css".slurp const STYLE_HASTYSITE = "./site/assets/styles/hastysite.css".slurp const STYLE_HASTYSCRIBE = "./site/assets/styles/hastyscribe.css".slurp

@@ -262,7 +263,8 @@ writeFile(dir/"assets/fonts/SourceSansPro-Regular.woff", FONT_SSP_R)

writeFile(dir/"assets/fonts/SourceSansPro-Bold.woff", FONT_SSP_B) writeFile(dir/"assets/fonts/SourceSansPro-It.woff", FONT_SSP_I) writeFile(dir/"assets/fonts/SourceSansPro-BoldIt.woff", FONT_SSP_BI) - writeFile(dir/"assets/fonts/fontawesome-webfont.woff", FONT_FA) + writeFile(dir/"assets/fonts/fa-solid-900.woff", FONT_FAS) + writeFile(dir/"assets/fonts/fa-brands-400.woff", FONT_FAB) writeFile(dir/"assets/styles/fonts.css", STYLE_FONTS) writeFile(dir/"assets/styles/hastyscribe.css", STYLE_HASTYSCRIBE) writeFile(dir/"assets/styles/hastysite.css", STYLE_HASTYSITE)

@@ -406,7 +408,7 @@

when isMainModule: import - parseopt2 + parseopt if logging.getHandlers().len == 0: newNiftyLogger().addHandler()

@@ -414,7 +416,7 @@ setLogFilter(lvlNotice)

proc usage(scripts: bool, hs: HastySite): string = var text = """ $1 v$2 - a tiny static site generator - (c) 2016-2017 Fabio Cevasco + (c) 2016-2018 Fabio Cevasco Usage: hastysite command
M hastysite.nimblehastysite.nimble

@@ -1,10 +1,10 @@

[Package] name = "hastysite" -version = "1.0.1" +version = "1.1.0" author = "Fabio Cevasco" description = "A small but powerful static site generator" license = "MIT" bin = "hastysite" [Deps] -requires: "nim >= 0.17.0" +requires: "nim >= 0.18.0"
M site/assets/styles/fonts.csssite/assets/styles/fonts.css

@@ -1,6 +1,13 @@

@font-face { - font-family: "FontAwesome"; - src: url("../fonts/fontawesome-webfont.woff") format("woff"); + font-family: "Font Awesome 5 Free"; + src: url("../fonts/fa-solid-900.woff") format("woff"); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +@font-face { + font-family: "Font Awesome 5 Brands"; + src: url("../fonts/fa-solid-400.woff") format("woff"); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
M site/assets/styles/hastyscribe.csssite/assets/styles/hastyscribe.css

@@ -340,285 +340,320 @@ border-spacing: 0;

} /* Fonts */ /* Colors */ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; +/*! + * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } -.fa-music:before { - content: "\f001"; +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -0.0667em; } -.fa-search:before { - content: "\f002"; +.fa-xs { + font-size: .75em; } -.fa-envelope-o:before { - content: "\f003"; +.fa-sm { + font-size: .875em; } -.fa-heart:before { - content: "\f004"; +.fa-1x { + font-size: 1em; } -.fa-star:before { - content: "\f005"; +.fa-2x { + font-size: 2em; } -.fa-star-o:before { - content: "\f006"; +.fa-3x { + font-size: 3em; } -.fa-user:before { - content: "\f007"; +.fa-4x { + font-size: 4em; } -.fa-film:before { - content: "\f008"; +.fa-5x { + font-size: 5em; } -.fa-th-large:before { - content: "\f009"; +.fa-6x { + font-size: 6em; } -.fa-th:before { - content: "\f00a"; +.fa-7x { + font-size: 7em; } -.fa-th-list:before { - content: "\f00b"; +.fa-8x { + font-size: 8em; } -.fa-check:before { - content: "\f00c"; +.fa-9x { + font-size: 9em; } -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; +.fa-10x { + font-size: 10em; } -.fa-search-plus:before { - content: "\f00e"; +.fa-fw { + text-align: center; + width: 1.25em; } -.fa-search-minus:before { - content: "\f010"; +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } -.fa-power-off:before { - content: "\f011"; +.fa-ul > li { + position: relative; } -.fa-signal:before { - content: "\f012"; +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } -.fa-gear:before, -.fa-cog:before { - content: "\f013"; +.fa-border { + border-radius: .1em; + border: solid 0.08em #eee; + padding: .2em .25em .15em; } -.fa-trash-o:before { - content: "\f014"; +.fa-pull-left { + float: left; } -.fa-home:before { - content: "\f015"; +.fa-pull-right { + float: right; } -.fa-file-o:before { - content: "\f016"; +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } -.fa-clock-o:before { - content: "\f017"; +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } -.fa-road:before { - content: "\f018"; +.fa-spin { + animation: fa-spin 2s infinite linear; } -.fa-download:before { - content: "\f019"; +.fa-pulse { + animation: fa-spin 1s infinite steps(8); } -.fa-arrow-circle-o-down:before { - content: "\f01a"; +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } } -.fa-arrow-circle-o-up:before { - content: "\f01b"; +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + transform: rotate(90deg); } -.fa-inbox:before { - content: "\f01c"; +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + transform: rotate(180deg); } -.fa-play-circle-o:before { - content: "\f01d"; +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + transform: rotate(270deg); } -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + transform: scale(-1, 1); } -.fa-refresh:before { - content: "\f021"; +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + transform: scale(1, -1); } -.fa-list-alt:before { - content: "\f022"; +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + transform: scale(-1, -1); } -.fa-lock:before { - content: "\f023"; +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; } -.fa-flag:before { - content: "\f024"; +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; } -.fa-headphones:before { - content: "\f025"; +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } -.fa-volume-off:before { - content: "\f026"; +.fa-stack-1x { + line-height: inherit; } -.fa-volume-down:before { - content: "\f027"; +.fa-stack-2x { + font-size: 2em; } -.fa-volume-up:before { - content: "\f028"; +.fa-inverse { + color: #fff; } -.fa-qrcode:before { - content: "\f029"; +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } -.fa-barcode:before { - content: "\f02a"; +.fa-accessible-icon:before { + content: "\f368"; } -.fa-tag:before { - content: "\f02b"; +.fa-accusoft:before { + content: "\f369"; } -.fa-tags:before { - content: "\f02c"; +.fa-address-book:before { + content: "\f2b9"; } -.fa-book:before { - content: "\f02d"; +.fa-address-card:before { + content: "\f2bb"; } -.fa-bookmark:before { - content: "\f02e"; +.fa-adjust:before { + content: "\f042"; } -.fa-print:before { - content: "\f02f"; +.fa-adn:before { + content: "\f170"; } -.fa-camera:before { - content: "\f030"; +.fa-adversal:before { + content: "\f36a"; } -.fa-font:before { - content: "\f031"; +.fa-affiliatetheme:before { + content: "\f36b"; } -.fa-bold:before { - content: "\f032"; +.fa-algolia:before { + content: "\f36c"; } -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; +.fa-align-center:before { + content: "\f037"; } -.fa-text-width:before { - content: "\f035"; +.fa-align-justify:before { + content: "\f039"; } .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-amazon:before { + content: "\f270"; } -.fa-list:before { - content: "\f03a"; +.fa-amazon-pay:before { + content: "\f42c"; } -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; +.fa-ambulance:before { + content: "\f0f9"; } -.fa-indent:before { - content: "\f03c"; +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } -.fa-video-camera:before { - content: "\f03d"; +.fa-amilia:before { + content: "\f36d"; } -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; +.fa-anchor:before { + content: "\f13d"; } -.fa-pencil:before { - content: "\f040"; +.fa-android:before { + content: "\f17b"; } -.fa-map-marker:before { - content: "\f041"; +.fa-angellist:before { + content: "\f209"; } -.fa-adjust:before { - content: "\f042"; +.fa-angle-double-down:before { + content: "\f103"; } -.fa-tint:before { - content: "\f043"; +.fa-angle-double-left:before { + content: "\f100"; } -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; +.fa-angle-double-right:before { + content: "\f101"; } -.fa-share-square-o:before { - content: "\f045"; +.fa-angle-double-up:before { + content: "\f102"; } -.fa-check-square-o:before { - content: "\f046"; +.fa-angle-down:before { + content: "\f107"; } -.fa-arrows:before { - content: "\f047"; +.fa-angle-left:before { + content: "\f104"; } -.fa-step-backward:before { - content: "\f048"; +.fa-angle-right:before { + content: "\f105"; } -.fa-fast-backward:before { - content: "\f049"; +.fa-angle-up:before { + content: "\f106"; } -.fa-backward:before { - content: "\f04a"; +.fa-angrycreative:before { + content: "\f36e"; } -.fa-play:before { - content: "\f04b"; +.fa-angular:before { + content: "\f420"; } -.fa-pause:before { - content: "\f04c"; +.fa-app-store:before { + content: "\f36f"; } -.fa-stop:before { - content: "\f04d"; +.fa-app-store-ios:before { + content: "\f370"; } -.fa-forward:before { - content: "\f04e"; +.fa-apper:before { + content: "\f371"; } -.fa-fast-forward:before { - content: "\f050"; +.fa-apple:before { + content: "\f179"; } -.fa-step-forward:before { - content: "\f051"; +.fa-apple-pay:before { + content: "\f415"; } -.fa-eject:before { - content: "\f052"; +.fa-archive:before { + content: "\f187"; } -.fa-chevron-left:before { - content: "\f053"; +.fa-arrow-alt-circle-down:before { + content: "\f358"; } -.fa-chevron-right:before { - content: "\f054"; +.fa-arrow-alt-circle-left:before { + content: "\f359"; } -.fa-plus-circle:before { - content: "\f055"; +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } -.fa-minus-circle:before { - content: "\f056"; +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } -.fa-times-circle:before { - content: "\f057"; +.fa-arrow-circle-down:before { + content: "\f0ab"; } -.fa-check-circle:before { - content: "\f058"; +.fa-arrow-circle-left:before { + content: "\f0a8"; } -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; +.fa-arrow-circle-right:before { + content: "\f0a9"; } -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; +.fa-arrow-circle-up:before { + content: "\f0aa"; } -.fa-ban:before { - content: "\f05e"; +.fa-arrow-down:before { + content: "\f063"; } .fa-arrow-left:before { content: "\f060";

@@ -629,614 +664,596 @@ }

.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-arrows-alt:before { + content: "\f0b2"; } -.fa-compress:before { - content: "\f066"; +.fa-arrows-alt-h:before { + content: "\f337"; } -.fa-plus:before { - content: "\f067"; +.fa-arrows-alt-v:before { + content: "\f338"; } -.fa-minus:before { - content: "\f068"; +.fa-assistive-listening-systems:before { + content: "\f2a2"; } .fa-asterisk:before { content: "\f069"; } -.fa-exclamation-circle:before { - content: "\f06a"; +.fa-asymmetrik:before { + content: "\f372"; } -.fa-gift:before { - content: "\f06b"; +.fa-at:before { + content: "\f1fa"; } -.fa-leaf:before { - content: "\f06c"; +.fa-audible:before { + content: "\f373"; } -.fa-fire:before { - content: "\f06d"; +.fa-audio-description:before { + content: "\f29e"; } -.fa-eye:before { - content: "\f06e"; +.fa-autoprefixer:before { + content: "\f41c"; } -.fa-eye-slash:before { - content: "\f070"; +.fa-avianex:before { + content: "\f374"; } -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; +.fa-aviato:before { + content: "\f421"; } -.fa-plane:before { - content: "\f072"; +.fa-aws:before { + content: "\f375"; } -.fa-calendar:before { - content: "\f073"; +.fa-backward:before { + content: "\f04a"; } -.fa-random:before { - content: "\f074"; +.fa-balance-scale:before { + content: "\f24e"; } -.fa-comment:before { - content: "\f075"; +.fa-ban:before { + content: "\f05e"; } -.fa-magnet:before { - content: "\f076"; +.fa-band-aid:before { + content: "\f462"; } -.fa-chevron-up:before { - content: "\f077"; +.fa-bandcamp:before { + content: "\f2d5"; } -.fa-chevron-down:before { - content: "\f078"; +.fa-barcode:before { + content: "\f02a"; } -.fa-retweet:before { - content: "\f079"; +.fa-bars:before { + content: "\f0c9"; } -.fa-shopping-cart:before { - content: "\f07a"; +.fa-baseball-ball:before { + content: "\f433"; } -.fa-folder:before { - content: "\f07b"; +.fa-basketball-ball:before { + content: "\f434"; } -.fa-folder-open:before { - content: "\f07c"; +.fa-bath:before { + content: "\f2cd"; } -.fa-arrows-v:before { - content: "\f07d"; +.fa-battery-empty:before { + content: "\f244"; } -.fa-arrows-h:before { - content: "\f07e"; +.fa-battery-full:before { + content: "\f240"; } -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; +.fa-battery-half:before { + content: "\f242"; } -.fa-twitter-square:before { - content: "\f081"; +.fa-battery-quarter:before { + content: "\f243"; } -.fa-facebook-square:before { - content: "\f082"; +.fa-battery-three-quarters:before { + content: "\f241"; } -.fa-camera-retro:before { - content: "\f083"; +.fa-bed:before { + content: "\f236"; } -.fa-key:before { - content: "\f084"; +.fa-beer:before { + content: "\f0fc"; } -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; +.fa-behance:before { + content: "\f1b4"; } -.fa-comments:before { - content: "\f086"; +.fa-behance-square:before { + content: "\f1b5"; } -.fa-thumbs-o-up:before { - content: "\f087"; +.fa-bell:before { + content: "\f0f3"; } -.fa-thumbs-o-down:before { - content: "\f088"; +.fa-bell-slash:before { + content: "\f1f6"; } -.fa-star-half:before { - content: "\f089"; +.fa-bicycle:before { + content: "\f206"; } -.fa-heart-o:before { - content: "\f08a"; +.fa-bimobject:before { + content: "\f378"; } -.fa-sign-out:before { - content: "\f08b"; +.fa-binoculars:before { + content: "\f1e5"; } -.fa-linkedin-square:before { - content: "\f08c"; +.fa-birthday-cake:before { + content: "\f1fd"; } -.fa-thumb-tack:before { - content: "\f08d"; +.fa-bitbucket:before { + content: "\f171"; } -.fa-external-link:before { - content: "\f08e"; +.fa-bitcoin:before { + content: "\f379"; } -.fa-sign-in:before { - content: "\f090"; +.fa-bity:before { + content: "\f37a"; } -.fa-trophy:before { - content: "\f091"; +.fa-black-tie:before { + content: "\f27e"; } -.fa-github-square:before { - content: "\f092"; +.fa-blackberry:before { + content: "\f37b"; } -.fa-upload:before { - content: "\f093"; +.fa-blind:before { + content: "\f29d"; } -.fa-lemon-o:before { - content: "\f094"; +.fa-blogger:before { + content: "\f37c"; } -.fa-phone:before { - content: "\f095"; +.fa-blogger-b:before { + content: "\f37d"; } -.fa-square-o:before { - content: "\f096"; +.fa-bluetooth:before { + content: "\f293"; } -.fa-bookmark-o:before { - content: "\f097"; +.fa-bluetooth-b:before { + content: "\f294"; } -.fa-phone-square:before { - content: "\f098"; +.fa-bold:before { + content: "\f032"; } -.fa-twitter:before { - content: "\f099"; +.fa-bolt:before { + content: "\f0e7"; } -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; +.fa-bomb:before { + content: "\f1e2"; } -.fa-github:before { - content: "\f09b"; +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-bowling-ball:before { + content: "\f436"; +} +.fa-box:before { + content: "\f466"; +} +.fa-boxes:before { + content: "\f468"; } -.fa-unlock:before { - content: "\f09c"; +.fa-braille:before { + content: "\f2a1"; } -.fa-credit-card:before { - content: "\f09d"; +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-btc:before { + content: "\f15a"; } -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; +.fa-bug:before { + content: "\f188"; } -.fa-hdd-o:before { - content: "\f0a0"; +.fa-building:before { + content: "\f1ad"; } .fa-bullhorn:before { content: "\f0a1"; } -.fa-bell:before { - content: "\f0f3"; +.fa-bullseye:before { + content: "\f140"; } -.fa-certificate:before { - content: "\f0a3"; +.fa-buromobelexperte:before { + content: "\f37f"; } -.fa-hand-o-right:before { - content: "\f0a4"; +.fa-bus:before { + content: "\f207"; } -.fa-hand-o-left:before { - content: "\f0a5"; +.fa-buysellads:before { + content: "\f20d"; } -.fa-hand-o-up:before { - content: "\f0a6"; +.fa-calculator:before { + content: "\f1ec"; } -.fa-hand-o-down:before { - content: "\f0a7"; +.fa-calendar:before { + content: "\f133"; } -.fa-arrow-circle-left:before { - content: "\f0a8"; +.fa-calendar-alt:before { + content: "\f073"; } -.fa-arrow-circle-right:before { - content: "\f0a9"; +.fa-calendar-check:before { + content: "\f274"; } -.fa-arrow-circle-up:before { - content: "\f0aa"; +.fa-calendar-minus:before { + content: "\f272"; } -.fa-arrow-circle-down:before { - content: "\f0ab"; +.fa-calendar-plus:before { + content: "\f271"; } -.fa-globe:before { - content: "\f0ac"; +.fa-calendar-times:before { + content: "\f273"; } -.fa-wrench:before { - content: "\f0ad"; +.fa-camera:before { + content: "\f030"; } -.fa-tasks:before { - content: "\f0ae"; +.fa-camera-retro:before { + content: "\f083"; } -.fa-filter:before { - content: "\f0b0"; +.fa-car:before { + content: "\f1b9"; } -.fa-briefcase:before { - content: "\f0b1"; +.fa-caret-down:before { + content: "\f0d7"; } -.fa-arrows-alt:before { - content: "\f0b2"; +.fa-caret-left:before { + content: "\f0d9"; } -.fa-group:before, -.fa-users:before { - content: "\f0c0"; +.fa-caret-right:before { + content: "\f0da"; } -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; +.fa-caret-square-down:before { + content: "\f150"; } -.fa-cloud:before { - content: "\f0c2"; +.fa-caret-square-left:before { + content: "\f191"; } -.fa-flask:before { - content: "\f0c3"; +.fa-caret-square-right:before { + content: "\f152"; } -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; +.fa-caret-square-up:before { + content: "\f151"; } -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; +.fa-caret-up:before { + content: "\f0d8"; } -.fa-paperclip:before { - content: "\f0c6"; +.fa-cart-arrow-down:before { + content: "\f218"; } -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; +.fa-cart-plus:before { + content: "\f217"; } -.fa-square:before { - content: "\f0c8"; +.fa-cc-amazon-pay:before { + content: "\f42d"; } -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; +.fa-cc-amex:before { + content: "\f1f3"; } -.fa-list-ul:before { - content: "\f0ca"; +.fa-cc-apple-pay:before { + content: "\f416"; } -.fa-list-ol:before { - content: "\f0cb"; +.fa-cc-diners-club:before { + content: "\f24c"; } -.fa-strikethrough:before { - content: "\f0cc"; +.fa-cc-discover:before { + content: "\f1f2"; } -.fa-underline:before { - content: "\f0cd"; +.fa-cc-jcb:before { + content: "\f24b"; } -.fa-table:before { - content: "\f0ce"; +.fa-cc-mastercard:before { + content: "\f1f1"; } -.fa-magic:before { - content: "\f0d0"; +.fa-cc-paypal:before { + content: "\f1f4"; } -.fa-truck:before { - content: "\f0d1"; +.fa-cc-stripe:before { + content: "\f1f5"; } -.fa-pinterest:before { - content: "\f0d2"; +.fa-cc-visa:before { + content: "\f1f0"; } -.fa-pinterest-square:before { - content: "\f0d3"; +.fa-centercode:before { + content: "\f380"; } -.fa-google-plus-square:before { - content: "\f0d4"; +.fa-certificate:before { + content: "\f0a3"; } -.fa-google-plus:before { - content: "\f0d5"; +.fa-chart-area:before { + content: "\f1fe"; } -.fa-money:before { - content: "\f0d6"; +.fa-chart-bar:before { + content: "\f080"; } -.fa-caret-down:before { - content: "\f0d7"; +.fa-chart-line:before { + content: "\f201"; } -.fa-caret-up:before { - content: "\f0d8"; +.fa-chart-pie:before { + content: "\f200"; } -.fa-caret-left:before { - content: "\f0d9"; +.fa-check:before { + content: "\f00c"; } -.fa-caret-right:before { - content: "\f0da"; +.fa-check-circle:before { + content: "\f058"; } -.fa-columns:before { - content: "\f0db"; +.fa-check-square:before { + content: "\f14a"; } -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; +.fa-chess:before { + content: "\f439"; } -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; +.fa-chess-bishop:before { + content: "\f43a"; } -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; +.fa-chess-board:before { + content: "\f43c"; } -.fa-envelope:before { - content: "\f0e0"; +.fa-chess-king:before { + content: "\f43f"; } -.fa-linkedin:before { - content: "\f0e1"; +.fa-chess-knight:before { + content: "\f441"; } -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; +.fa-chess-pawn:before { + content: "\f443"; } -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; +.fa-chess-queen:before { + content: "\f445"; } -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; +.fa-chess-rook:before { + content: "\f447"; } -.fa-comment-o:before { - content: "\f0e5"; +.fa-chevron-circle-down:before { + content: "\f13a"; } -.fa-comments-o:before { - content: "\f0e6"; +.fa-chevron-circle-left:before { + content: "\f137"; } -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; +.fa-chevron-circle-right:before { + content: "\f138"; } -.fa-sitemap:before { - content: "\f0e8"; +.fa-chevron-circle-up:before { + content: "\f139"; } -.fa-umbrella:before { - content: "\f0e9"; +.fa-chevron-down:before { + content: "\f078"; } -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; +.fa-chevron-left:before { + content: "\f053"; } -.fa-lightbulb-o:before { - content: "\f0eb"; +.fa-chevron-right:before { + content: "\f054"; } -.fa-exchange:before { - content: "\f0ec"; +.fa-chevron-up:before { + content: "\f077"; } -.fa-cloud-download:before { - content: "\f0ed"; +.fa-child:before { + content: "\f1ae"; } -.fa-cloud-upload:before { - content: "\f0ee"; +.fa-chrome:before { + content: "\f268"; } -.fa-user-md:before { - content: "\f0f0"; +.fa-circle:before { + content: "\f111"; } -.fa-stethoscope:before { - content: "\f0f1"; +.fa-circle-notch:before { + content: "\f1ce"; } -.fa-suitcase:before { - content: "\f0f2"; +.fa-clipboard:before { + content: "\f328"; } -.fa-bell-o:before { - content: "\f0a2"; +.fa-clipboard-check:before { + content: "\f46c"; } -.fa-coffee:before { - content: "\f0f4"; +.fa-clipboard-list:before { + content: "\f46d"; } -.fa-cutlery:before { - content: "\f0f5"; +.fa-clock:before { + content: "\f017"; } -.fa-file-text-o:before { - content: "\f0f6"; +.fa-clone:before { + content: "\f24d"; } -.fa-building-o:before { - content: "\f0f7"; +.fa-closed-captioning:before { + content: "\f20a"; } -.fa-hospital-o:before { - content: "\f0f8"; +.fa-cloud:before { + content: "\f0c2"; } -.fa-ambulance:before { - content: "\f0f9"; +.fa-cloud-download-alt:before { + content: "\f381"; } -.fa-medkit:before { - content: "\f0fa"; +.fa-cloud-upload-alt:before { + content: "\f382"; } -.fa-fighter-jet:before { - content: "\f0fb"; +.fa-cloudscale:before { + content: "\f383"; } -.fa-beer:before { - content: "\f0fc"; +.fa-cloudsmith:before { + content: "\f384"; } -.fa-h-square:before { - content: "\f0fd"; +.fa-cloudversify:before { + content: "\f385"; } -.fa-plus-square:before { - content: "\f0fe"; +.fa-code:before { + content: "\f121"; } -.fa-angle-double-left:before { - content: "\f100"; +.fa-code-branch:before { + content: "\f126"; } -.fa-angle-double-right:before { - content: "\f101"; +.fa-codepen:before { + content: "\f1cb"; } -.fa-angle-double-up:before { - content: "\f102"; +.fa-codiepie:before { + content: "\f284"; } -.fa-angle-double-down:before { - content: "\f103"; +.fa-coffee:before { + content: "\f0f4"; } -.fa-angle-left:before { - content: "\f104"; +.fa-cog:before { + content: "\f013"; } -.fa-angle-right:before { - content: "\f105"; +.fa-cogs:before { + content: "\f085"; } -.fa-angle-up:before { - content: "\f106"; +.fa-columns:before { + content: "\f0db"; } -.fa-angle-down:before { - content: "\f107"; +.fa-comment:before { + content: "\f075"; } -.fa-desktop:before { - content: "\f108"; +.fa-comment-alt:before { + content: "\f27a"; } -.fa-laptop:before { - content: "\f109"; +.fa-comments:before { + content: "\f086"; } -.fa-tablet:before { - content: "\f10a"; +.fa-compass:before { + content: "\f14e"; } -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; +.fa-compress:before { + content: "\f066"; } -.fa-circle-o:before { - content: "\f10c"; +.fa-connectdevelop:before { + content: "\f20e"; } -.fa-quote-left:before { - content: "\f10d"; +.fa-contao:before { + content: "\f26d"; } -.fa-quote-right:before { - content: "\f10e"; +.fa-copy:before { + content: "\f0c5"; } -.fa-spinner:before { - content: "\f110"; +.fa-copyright:before { + content: "\f1f9"; } -.fa-circle:before { - content: "\f111"; +.fa-cpanel:before { + content: "\f388"; } -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; +.fa-creative-commons:before { + content: "\f25e"; } -.fa-github-alt:before { - content: "\f113"; +.fa-credit-card:before { + content: "\f09d"; } -.fa-folder-o:before { - content: "\f114"; +.fa-crop:before { + content: "\f125"; } -.fa-folder-open-o:before { - content: "\f115"; +.fa-crosshairs:before { + content: "\f05b"; } -.fa-smile-o:before { - content: "\f118"; +.fa-css3:before { + content: "\f13c"; } -.fa-frown-o:before { - content: "\f119"; +.fa-css3-alt:before { + content: "\f38b"; } -.fa-meh-o:before { - content: "\f11a"; +.fa-cube:before { + content: "\f1b2"; } -.fa-gamepad:before { - content: "\f11b"; +.fa-cubes:before { + content: "\f1b3"; } -.fa-keyboard-o:before { - content: "\f11c"; +.fa-cut:before { + content: "\f0c4"; } -.fa-flag-o:before { - content: "\f11d"; +.fa-cuttlefish:before { + content: "\f38c"; } -.fa-flag-checkered:before { - content: "\f11e"; +.fa-d-and-d:before { + content: "\f38d"; } -.fa-terminal:before { - content: "\f120"; +.fa-dashcube:before { + content: "\f210"; } -.fa-code:before { - content: "\f121"; +.fa-database:before { + content: "\f1c0"; } -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; +.fa-deaf:before { + content: "\f2a4"; } -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; +.fa-delicious:before { + content: "\f1a5"; } -.fa-location-arrow:before { - content: "\f124"; +.fa-deploydog:before { + content: "\f38e"; } -.fa-crop:before { - content: "\f125"; +.fa-deskpro:before { + content: "\f38f"; } -.fa-code-fork:before { - content: "\f126"; +.fa-desktop:before { + content: "\f108"; } -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; +.fa-deviantart:before { + content: "\f1bd"; } -.fa-question:before { - content: "\f128"; +.fa-digg:before { + content: "\f1a6"; } -.fa-info:before { - content: "\f129"; +.fa-digital-ocean:before { + content: "\f391"; } -.fa-exclamation:before { - content: "\f12a"; +.fa-discord:before { + content: "\f392"; } -.fa-superscript:before { - content: "\f12b"; +.fa-discourse:before { + content: "\f393"; } -.fa-subscript:before { - content: "\f12c"; +.fa-dna:before { + content: "\f471"; } -.fa-eraser:before { - content: "\f12d"; +.fa-dochub:before { + content: "\f394"; } -.fa-puzzle-piece:before { - content: "\f12e"; +.fa-docker:before { + content: "\f395"; } -.fa-microphone:before { - content: "\f130"; +.fa-dollar-sign:before { + content: "\f155"; } -.fa-microphone-slash:before { - content: "\f131"; +.fa-dolly:before { + content: "\f472"; } -.fa-shield:before { - content: "\f132"; +.fa-dolly-flatbed:before { + content: "\f474"; } -.fa-calendar-o:before { - content: "\f133"; +.fa-dot-circle:before { + content: "\f192"; } -.fa-fire-extinguisher:before { - content: "\f134"; +.fa-download:before { + content: "\f019"; } -.fa-rocket:before { - content: "\f135"; +.fa-draft2digital:before { + content: "\f396"; } -.fa-maxcdn:before { - content: "\f136"; +.fa-dribbble:before { + content: "\f17d"; } -.fa-chevron-circle-left:before { - content: "\f137"; +.fa-dribbble-square:before { + content: "\f397"; } -.fa-chevron-circle-right:before { - content: "\f138"; +.fa-dropbox:before { + content: "\f16b"; } -.fa-chevron-circle-up:before { - content: "\f139"; +.fa-drupal:before { + content: "\f1a9"; } -.fa-chevron-circle-down:before { - content: "\f13a"; +.fa-dyalog:before { + content: "\f399"; } -.fa-html5:before { - content: "\f13b"; +.fa-earlybirds:before { + content: "\f39a"; } -.fa-css3:before { - content: "\f13c"; +.fa-edge:before { + content: "\f282"; } -.fa-anchor:before { - content: "\f13d"; +.fa-edit:before { + content: "\f044"; } -.fa-unlock-alt:before { - content: "\f13e"; +.fa-eject:before { + content: "\f052"; } -.fa-bullseye:before { - content: "\f140"; +.fa-elementor:before { + content: "\f430"; } .fa-ellipsis-h:before { content: "\f141";

@@ -1244,781 +1261,791 @@ }

.fa-ellipsis-v:before { content: "\f142"; } -.fa-rss-square:before { - content: "\f143"; +.fa-ember:before { + content: "\f423"; +} +.fa-empire:before { + content: "\f1d1"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-envira:before { + content: "\f299"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-erlang:before { + content: "\f39d"; +} +.fa-ethereum:before { + content: "\f42e"; +} +.fa-etsy:before { + content: "\f2d7"; } -.fa-play-circle:before { - content: "\f144"; +.fa-euro-sign:before { + content: "\f153"; } -.fa-ticket:before { - content: "\f145"; +.fa-exchange-alt:before { + content: "\f362"; } -.fa-minus-square:before { - content: "\f146"; +.fa-exclamation:before { + content: "\f12a"; } -.fa-minus-square-o:before { - content: "\f147"; +.fa-exclamation-circle:before { + content: "\f06a"; } -.fa-level-up:before { - content: "\f148"; +.fa-exclamation-triangle:before { + content: "\f071"; } -.fa-level-down:before { - content: "\f149"; +.fa-expand:before { + content: "\f065"; } -.fa-check-square:before { - content: "\f14a"; +.fa-expand-arrows-alt:before { + content: "\f31e"; } -.fa-pencil-square:before { - content: "\f14b"; +.fa-expeditedssl:before { + content: "\f23e"; } -.fa-external-link-square:before { - content: "\f14c"; +.fa-external-link-alt:before { + content: "\f35d"; } -.fa-share-square:before { - content: "\f14d"; +.fa-external-link-square-alt:before { + content: "\f360"; } -.fa-compass:before { - content: "\f14e"; +.fa-eye:before { + content: "\f06e"; } -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; +.fa-eye-dropper:before { + content: "\f1fb"; } -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; +.fa-eye-slash:before { + content: "\f070"; } -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; +.fa-facebook:before { + content: "\f09a"; } -.fa-euro:before, -.fa-eur:before { - content: "\f153"; +.fa-facebook-f:before { + content: "\f39e"; } -.fa-gbp:before { - content: "\f154"; +.fa-facebook-messenger:before { + content: "\f39f"; } -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; +.fa-facebook-square:before { + content: "\f082"; } -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; +.fa-fast-backward:before { + content: "\f049"; } -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; +.fa-fast-forward:before { + content: "\f050"; } -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; +.fa-fax:before { + content: "\f1ac"; } -.fa-won:before, -.fa-krw:before { - content: "\f159"; +.fa-female:before { + content: "\f182"; } -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; +.fa-fighter-jet:before { + content: "\f0fb"; } .fa-file:before { content: "\f15b"; } -.fa-file-text:before { +.fa-file-alt:before { content: "\f15c"; } -.fa-sort-alpha-asc:before { - content: "\f15d"; +.fa-file-archive:before { + content: "\f1c6"; +} +.fa-file-audio:before { + content: "\f1c7"; +} +.fa-file-code:before { + content: "\f1c9"; } -.fa-sort-alpha-desc:before { - content: "\f15e"; +.fa-file-excel:before { + content: "\f1c3"; } -.fa-sort-amount-asc:before { - content: "\f160"; +.fa-file-image:before { + content: "\f1c5"; } -.fa-sort-amount-desc:before { - content: "\f161"; +.fa-file-pdf:before { + content: "\f1c1"; } -.fa-sort-numeric-asc:before { - content: "\f162"; +.fa-file-powerpoint:before { + content: "\f1c4"; } -.fa-sort-numeric-desc:before { - content: "\f163"; +.fa-file-video:before { + content: "\f1c8"; } -.fa-thumbs-up:before { - content: "\f164"; +.fa-file-word:before { + content: "\f1c2"; } -.fa-thumbs-down:before { - content: "\f165"; +.fa-film:before { + content: "\f008"; } -.fa-youtube-square:before { - content: "\f166"; +.fa-filter:before { + content: "\f0b0"; } -.fa-youtube:before { - content: "\f167"; +.fa-fire:before { + content: "\f06d"; } -.fa-xing:before { - content: "\f168"; +.fa-fire-extinguisher:before { + content: "\f134"; } -.fa-xing-square:before { - content: "\f169"; +.fa-firefox:before { + content: "\f269"; } -.fa-youtube-play:before { - content: "\f16a"; +.fa-first-aid:before { + content: "\f479"; } -.fa-dropbox:before { - content: "\f16b"; +.fa-first-order:before { + content: "\f2b0"; } -.fa-stack-overflow:before { - content: "\f16c"; +.fa-firstdraft:before { + content: "\f3a1"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-flag-checkered:before { + content: "\f11e"; } -.fa-instagram:before { - content: "\f16d"; +.fa-flask:before { + content: "\f0c3"; } .fa-flickr:before { content: "\f16e"; } -.fa-adn:before { - content: "\f170"; +.fa-flipboard:before { + content: "\f44d"; } -.fa-bitbucket:before { - content: "\f171"; +.fa-fly:before { + content: "\f417"; } -.fa-bitbucket-square:before { - content: "\f172"; +.fa-folder:before { + content: "\f07b"; } -.fa-tumblr:before { - content: "\f173"; +.fa-folder-open:before { + content: "\f07c"; } -.fa-tumblr-square:before { - content: "\f174"; +.fa-font:before { + content: "\f031"; } -.fa-long-arrow-down:before { - content: "\f175"; +.fa-font-awesome:before { + content: "\f2b4"; } -.fa-long-arrow-up:before { - content: "\f176"; +.fa-font-awesome-alt:before { + content: "\f35c"; } -.fa-long-arrow-left:before { - content: "\f177"; +.fa-font-awesome-flag:before { + content: "\f425"; } -.fa-long-arrow-right:before { - content: "\f178"; +.fa-fonticons:before { + content: "\f280"; } -.fa-apple:before { - content: "\f179"; +.fa-fonticons-fi:before { + content: "\f3a2"; } -.fa-windows:before { - content: "\f17a"; +.fa-football-ball:before { + content: "\f44e"; } -.fa-android:before { - content: "\f17b"; +.fa-fort-awesome:before { + content: "\f286"; } -.fa-linux:before { - content: "\f17c"; +.fa-fort-awesome-alt:before { + content: "\f3a3"; } -.fa-dribbble:before { - content: "\f17d"; +.fa-forumbee:before { + content: "\f211"; } -.fa-skype:before { - content: "\f17e"; +.fa-forward:before { + content: "\f04e"; } .fa-foursquare:before { content: "\f180"; } -.fa-trello:before { - content: "\f181"; +.fa-free-code-camp:before { + content: "\f2c5"; } -.fa-female:before { - content: "\f182"; +.fa-freebsd:before { + content: "\f3a4"; } -.fa-male:before { - content: "\f183"; +.fa-frown:before { + content: "\f119"; } -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; +.fa-futbol:before { + content: "\f1e3"; } -.fa-sun-o:before { - content: "\f185"; +.fa-gamepad:before { + content: "\f11b"; } -.fa-moon-o:before { - content: "\f186"; +.fa-gavel:before { + content: "\f0e3"; } -.fa-archive:before { - content: "\f187"; +.fa-gem:before { + content: "\f3a5"; } -.fa-bug:before { - content: "\f188"; +.fa-genderless:before { + content: "\f22d"; } -.fa-vk:before { - content: "\f189"; +.fa-get-pocket:before { + content: "\f265"; } -.fa-weibo:before { - content: "\f18a"; +.fa-gg:before { + content: "\f260"; } -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; +.fa-gg-circle:before { + content: "\f261"; } -.fa-stack-exchange:before { - content: "\f18d"; +.fa-gift:before { + content: "\f06b"; } -.fa-arrow-circle-o-right:before { - content: "\f18e"; +.fa-git:before { + content: "\f1d3"; } -.fa-arrow-circle-o-left:before { - content: "\f190"; +.fa-git-square:before { + content: "\f1d2"; } -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; +.fa-github:before { + content: "\f09b"; } -.fa-dot-circle-o:before { - content: "\f192"; +.fa-github-alt:before { + content: "\f113"; } -.fa-wheelchair:before { - content: "\f193"; +.fa-github-square:before { + content: "\f092"; } -.fa-vimeo-square:before { - content: "\f194"; +.fa-gitkraken:before { + content: "\f3a6"; } -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; +.fa-gitlab:before { + content: "\f296"; } -.fa-plus-square-o:before { - content: "\f196"; +.fa-gitter:before { + content: "\f426"; } -.fa-space-shuttle:before { - content: "\f197"; +.fa-glass-martini:before { + content: "\f000"; } -.fa-slack:before { - content: "\f198"; +.fa-glide:before { + content: "\f2a5"; } -.fa-envelope-square:before { - content: "\f199"; +.fa-glide-g:before { + content: "\f2a6"; } -.fa-wordpress:before { - content: "\f19a"; +.fa-globe:before { + content: "\f0ac"; } -.fa-openid:before { - content: "\f19b"; +.fa-gofore:before { + content: "\f3a7"; } -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; +.fa-golf-ball:before { + content: "\f450"; } -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; +.fa-goodreads:before { + content: "\f3a8"; } -.fa-yahoo:before { - content: "\f19e"; +.fa-goodreads-g:before { + content: "\f3a9"; } .fa-google:before { content: "\f1a0"; } -.fa-reddit:before { - content: "\f1a1"; +.fa-google-drive:before { + content: "\f3aa"; } -.fa-reddit-square:before { - content: "\f1a2"; +.fa-google-play:before { + content: "\f3ab"; } -.fa-stumbleupon-circle:before { - content: "\f1a3"; +.fa-google-plus:before { + content: "\f2b3"; } -.fa-stumbleupon:before { - content: "\f1a4"; +.fa-google-plus-g:before { + content: "\f0d5"; } -.fa-delicious:before { - content: "\f1a5"; +.fa-google-plus-square:before { + content: "\f0d4"; } -.fa-digg:before { - content: "\f1a6"; +.fa-google-wallet:before { + content: "\f1ee"; } -.fa-pied-piper-pp:before { - content: "\f1a7"; +.fa-graduation-cap:before { + content: "\f19d"; } -.fa-pied-piper-alt:before { - content: "\f1a8"; +.fa-gratipay:before { + content: "\f184"; } -.fa-drupal:before { - content: "\f1a9"; +.fa-grav:before { + content: "\f2d6"; } -.fa-joomla:before { - content: "\f1aa"; +.fa-gripfire:before { + content: "\f3ac"; } -.fa-language:before { - content: "\f1ab"; +.fa-grunt:before { + content: "\f3ad"; } -.fa-fax:before { - content: "\f1ac"; +.fa-gulp:before { + content: "\f3ae"; } -.fa-building:before { - content: "\f1ad"; +.fa-h-square:before { + content: "\f0fd"; } -.fa-child:before { - content: "\f1ae"; +.fa-hacker-news:before { + content: "\f1d4"; } -.fa-paw:before { - content: "\f1b0"; +.fa-hacker-news-square:before { + content: "\f3af"; } -.fa-spoon:before { - content: "\f1b1"; +.fa-hand-lizard:before { + content: "\f258"; } -.fa-cube:before { - content: "\f1b2"; +.fa-hand-paper:before { + content: "\f256"; } -.fa-cubes:before { - content: "\f1b3"; +.fa-hand-peace:before { + content: "\f25b"; } -.fa-behance:before { - content: "\f1b4"; +.fa-hand-point-down:before { + content: "\f0a7"; } -.fa-behance-square:before { - content: "\f1b5"; +.fa-hand-point-left:before { + content: "\f0a5"; } -.fa-steam:before { - content: "\f1b6"; +.fa-hand-point-right:before { + content: "\f0a4"; } -.fa-steam-square:before { - content: "\f1b7"; +.fa-hand-point-up:before { + content: "\f0a6"; } -.fa-recycle:before { - content: "\f1b8"; +.fa-hand-pointer:before { + content: "\f25a"; } -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; +.fa-hand-rock:before { + content: "\f255"; } -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; +.fa-hand-scissors:before { + content: "\f257"; } -.fa-tree:before { - content: "\f1bb"; +.fa-hand-spock:before { + content: "\f259"; } -.fa-spotify:before { - content: "\f1bc"; +.fa-handshake:before { + content: "\f2b5"; } -.fa-deviantart:before { - content: "\f1bd"; +.fa-hashtag:before { + content: "\f292"; } -.fa-soundcloud:before { - content: "\f1be"; +.fa-hdd:before { + content: "\f0a0"; } -.fa-database:before { - content: "\f1c0"; +.fa-heading:before { + content: "\f1dc"; } -.fa-file-pdf-o:before { - content: "\f1c1"; +.fa-headphones:before { + content: "\f025"; } -.fa-file-word-o:before { - content: "\f1c2"; +.fa-heart:before { + content: "\f004"; } -.fa-file-excel-o:before { - content: "\f1c3"; +.fa-heartbeat:before { + content: "\f21e"; } -.fa-file-powerpoint-o:before { - content: "\f1c4"; +.fa-hips:before { + content: "\f452"; } -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; +.fa-hire-a-helper:before { + content: "\f3b0"; } -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; +.fa-history:before { + content: "\f1da"; } -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; +.fa-hockey-puck:before { + content: "\f453"; } -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; +.fa-home:before { + content: "\f015"; } -.fa-file-code-o:before { - content: "\f1c9"; +.fa-hooli:before { + content: "\f427"; } -.fa-vine:before { - content: "\f1ca"; +.fa-hospital:before { + content: "\f0f8"; } -.fa-codepen:before { - content: "\f1cb"; +.fa-hospital-symbol:before { + content: "\f47e"; } -.fa-jsfiddle:before { - content: "\f1cc"; +.fa-hotjar:before { + content: "\f3b1"; } -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; +.fa-hourglass:before { + content: "\f254"; } -.fa-circle-o-notch:before { - content: "\f1ce"; +.fa-hourglass-end:before { + content: "\f253"; } -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; +.fa-hourglass-half:before { + content: "\f252"; } -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; +.fa-hourglass-start:before { + content: "\f251"; } -.fa-git-square:before { - content: "\f1d2"; +.fa-houzz:before { + content: "\f27c"; } -.fa-git:before { - content: "\f1d3"; +.fa-html5:before { + content: "\f13b"; } -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; +.fa-hubspot:before { + content: "\f3b2"; } -.fa-tencent-weibo:before { - content: "\f1d5"; +.fa-i-cursor:before { + content: "\f246"; } -.fa-qq:before { - content: "\f1d6"; +.fa-id-badge:before { + content: "\f2c1"; } -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; +.fa-id-card:before { + content: "\f2c2"; } -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; +.fa-image:before { + content: "\f03e"; } -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; +.fa-images:before { + content: "\f302"; } -.fa-history:before { - content: "\f1da"; +.fa-imdb:before { + content: "\f2d8"; } -.fa-circle-thin:before { - content: "\f1db"; +.fa-inbox:before { + content: "\f01c"; } -.fa-header:before { - content: "\f1dc"; +.fa-indent:before { + content: "\f03c"; } -.fa-paragraph:before { - content: "\f1dd"; +.fa-industry:before { + content: "\f275"; } -.fa-sliders:before { - content: "\f1de"; +.fa-info:before { + content: "\f129"; } -.fa-share-alt:before { - content: "\f1e0"; +.fa-info-circle:before { + content: "\f05a"; } -.fa-share-alt-square:before { - content: "\f1e1"; +.fa-instagram:before { + content: "\f16d"; } -.fa-bomb:before { - content: "\f1e2"; +.fa-internet-explorer:before { + content: "\f26b"; } -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; +.fa-ioxhost:before { + content: "\f208"; } -.fa-tty:before { - content: "\f1e4"; +.fa-italic:before { + content: "\f033"; } -.fa-binoculars:before { - content: "\f1e5"; +.fa-itunes:before { + content: "\f3b4"; } -.fa-plug:before { - content: "\f1e6"; +.fa-itunes-note:before { + content: "\f3b5"; } -.fa-slideshare:before { - content: "\f1e7"; +.fa-jenkins:before { + content: "\f3b6"; } -.fa-twitch:before { - content: "\f1e8"; +.fa-joget:before { + content: "\f3b7"; } -.fa-yelp:before { - content: "\f1e9"; +.fa-joomla:before { + content: "\f1aa"; } -.fa-newspaper-o:before { - content: "\f1ea"; +.fa-js:before { + content: "\f3b8"; } -.fa-wifi:before { - content: "\f1eb"; +.fa-js-square:before { + content: "\f3b9"; } -.fa-calculator:before { - content: "\f1ec"; +.fa-jsfiddle:before { + content: "\f1cc"; } -.fa-paypal:before { - content: "\f1ed"; +.fa-key:before { + content: "\f084"; } -.fa-google-wallet:before { - content: "\f1ee"; +.fa-keyboard:before { + content: "\f11c"; } -.fa-cc-visa:before { - content: "\f1f0"; +.fa-keycdn:before { + content: "\f3ba"; } -.fa-cc-mastercard:before { - content: "\f1f1"; +.fa-kickstarter:before { + content: "\f3bb"; } -.fa-cc-discover:before { - content: "\f1f2"; +.fa-kickstarter-k:before { + content: "\f3bc"; } -.fa-cc-amex:before { - content: "\f1f3"; +.fa-korvue:before { + content: "\f42f"; } -.fa-cc-paypal:before { - content: "\f1f4"; +.fa-language:before { + content: "\f1ab"; } -.fa-cc-stripe:before { - content: "\f1f5"; +.fa-laptop:before { + content: "\f109"; } -.fa-bell-slash:before { - content: "\f1f6"; +.fa-laravel:before { + content: "\f3bd"; } -.fa-bell-slash-o:before { - content: "\f1f7"; +.fa-lastfm:before { + content: "\f202"; } -.fa-trash:before { - content: "\f1f8"; +.fa-lastfm-square:before { + content: "\f203"; } -.fa-copyright:before { - content: "\f1f9"; +.fa-leaf:before { + content: "\f06c"; } -.fa-at:before { - content: "\f1fa"; +.fa-leanpub:before { + content: "\f212"; } -.fa-eyedropper:before { - content: "\f1fb"; +.fa-lemon:before { + content: "\f094"; } -.fa-paint-brush:before { - content: "\f1fc"; +.fa-less:before { + content: "\f41d"; } -.fa-birthday-cake:before { - content: "\f1fd"; +.fa-level-down-alt:before { + content: "\f3be"; } -.fa-area-chart:before { - content: "\f1fe"; +.fa-level-up-alt:before { + content: "\f3bf"; } -.fa-pie-chart:before { - content: "\f200"; +.fa-life-ring:before { + content: "\f1cd"; } -.fa-line-chart:before { - content: "\f201"; +.fa-lightbulb:before { + content: "\f0eb"; } -.fa-lastfm:before { - content: "\f202"; +.fa-line:before { + content: "\f3c0"; } -.fa-lastfm-square:before { - content: "\f203"; +.fa-link:before { + content: "\f0c1"; } -.fa-toggle-off:before { - content: "\f204"; +.fa-linkedin:before { + content: "\f08c"; } -.fa-toggle-on:before { - content: "\f205"; +.fa-linkedin-in:before { + content: "\f0e1"; } -.fa-bicycle:before { - content: "\f206"; +.fa-linode:before { + content: "\f2b8"; } -.fa-bus:before { - content: "\f207"; +.fa-linux:before { + content: "\f17c"; } -.fa-ioxhost:before { - content: "\f208"; +.fa-lira-sign:before { + content: "\f195"; } -.fa-angellist:before { - content: "\f209"; +.fa-list:before { + content: "\f03a"; } -.fa-cc:before { - content: "\f20a"; +.fa-list-alt:before { + content: "\f022"; } -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; +.fa-list-ol:before { + content: "\f0cb"; } -.fa-meanpath:before { - content: "\f20c"; +.fa-list-ul:before { + content: "\f0ca"; } -.fa-buysellads:before { - content: "\f20d"; +.fa-location-arrow:before { + content: "\f124"; } -.fa-connectdevelop:before { - content: "\f20e"; +.fa-lock:before { + content: "\f023"; } -.fa-dashcube:before { - content: "\f210"; +.fa-lock-open:before { + content: "\f3c1"; } -.fa-forumbee:before { - content: "\f211"; +.fa-long-arrow-alt-down:before { + content: "\f309"; } -.fa-leanpub:before { - content: "\f212"; +.fa-long-arrow-alt-left:before { + content: "\f30a"; } -.fa-sellsy:before { - content: "\f213"; +.fa-long-arrow-alt-right:before { + content: "\f30b"; } -.fa-shirtsinbulk:before { - content: "\f214"; +.fa-long-arrow-alt-up:before { + content: "\f30c"; } -.fa-simplybuilt:before { - content: "\f215"; +.fa-low-vision:before { + content: "\f2a8"; } -.fa-skyatlas:before { - content: "\f216"; +.fa-lyft:before { + content: "\f3c3"; } -.fa-cart-plus:before { - content: "\f217"; +.fa-magento:before { + content: "\f3c4"; } -.fa-cart-arrow-down:before { - content: "\f218"; +.fa-magic:before { + content: "\f0d0"; } -.fa-diamond:before { - content: "\f219"; +.fa-magnet:before { + content: "\f076"; } -.fa-ship:before { - content: "\f21a"; +.fa-male:before { + content: "\f183"; } -.fa-user-secret:before { - content: "\f21b"; +.fa-map:before { + content: "\f279"; } -.fa-motorcycle:before { - content: "\f21c"; +.fa-map-marker:before { + content: "\f041"; } -.fa-street-view:before { - content: "\f21d"; +.fa-map-marker-alt:before { + content: "\f3c5"; } -.fa-heartbeat:before { - content: "\f21e"; +.fa-map-pin:before { + content: "\f276"; } -.fa-venus:before { - content: "\f221"; +.fa-map-signs:before { + content: "\f277"; } .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-h:before { + content: "\f22b"; } .fa-mars-stroke-v:before { content: "\f22a"; } -.fa-mars-stroke-h:before { - content: "\f22b"; +.fa-maxcdn:before { + content: "\f136"; } -.fa-neuter:before { - content: "\f22c"; +.fa-medapps:before { + content: "\f3c6"; } -.fa-genderless:before { - content: "\f22d"; +.fa-medium:before { + content: "\f23a"; } -.fa-facebook-official:before { - content: "\f230"; +.fa-medium-m:before { + content: "\f3c7"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-medrt:before { + content: "\f3c8"; +} +.fa-meetup:before { + content: "\f2e0"; } -.fa-pinterest-p:before { - content: "\f231"; +.fa-meh:before { + content: "\f11a"; } -.fa-whatsapp:before { - content: "\f232"; +.fa-mercury:before { + content: "\f223"; } -.fa-server:before { - content: "\f233"; +.fa-microchip:before { + content: "\f2db"; } -.fa-user-plus:before { - content: "\f234"; +.fa-microphone:before { + content: "\f130"; } -.fa-user-times:before { - content: "\f235"; +.fa-microphone-slash:before { + content: "\f131"; } -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; +.fa-microsoft:before { + content: "\f3ca"; } -.fa-viacoin:before { - content: "\f237"; +.fa-minus:before { + content: "\f068"; } -.fa-train:before { - content: "\f238"; +.fa-minus-circle:before { + content: "\f056"; } -.fa-subway:before { - content: "\f239"; +.fa-minus-square:before { + content: "\f146"; } -.fa-medium:before { - content: "\f23a"; +.fa-mix:before { + content: "\f3cb"; } -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; +.fa-mixcloud:before { + content: "\f289"; } -.fa-optin-monster:before { - content: "\f23c"; +.fa-mizuni:before { + content: "\f3cc"; } -.fa-opencart:before { - content: "\f23d"; +.fa-mobile:before { + content: "\f10b"; } -.fa-expeditedssl:before { - content: "\f23e"; +.fa-mobile-alt:before { + content: "\f3cd"; } -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: "\f240"; +.fa-modx:before { + content: "\f285"; } -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; +.fa-monero:before { + content: "\f3d0"; } -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; +.fa-money-bill-alt:before { + content: "\f3d1"; } -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; +.fa-moon:before { + content: "\f186"; } -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; +.fa-motorcycle:before { + content: "\f21c"; } .fa-mouse-pointer:before { content: "\f245"; } -.fa-i-cursor:before { - content: "\f246"; +.fa-music:before { + content: "\f001"; +} +.fa-napster:before { + content: "\f3d2"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-newspaper:before { + content: "\f1ea"; +} +.fa-nintendo-switch:before { + content: "\f418"; +} +.fa-node:before { + content: "\f419"; +} +.fa-node-js:before { + content: "\f3d3"; +} +.fa-npm:before { + content: "\f3d4"; +} +.fa-ns8:before { + content: "\f3d5"; +} +.fa-nutritionix:before { + content: "\f3d6"; } .fa-object-group:before { content: "\f247";

@@ -2026,291 +2053,398 @@ }

.fa-object-ungroup:before { content: "\f248"; } -.fa-sticky-note:before { - content: "\f249"; +.fa-odnoklassniki:before { + content: "\f263"; } -.fa-sticky-note-o:before { - content: "\f24a"; +.fa-odnoklassniki-square:before { + content: "\f264"; } -.fa-cc-jcb:before { - content: "\f24b"; +.fa-opencart:before { + content: "\f23d"; } -.fa-cc-diners-club:before { - content: "\f24c"; +.fa-openid:before { + content: "\f19b"; } -.fa-clone:before { - content: "\f24d"; +.fa-opera:before { + content: "\f26a"; } -.fa-balance-scale:before { - content: "\f24e"; +.fa-optin-monster:before { + content: "\f23c"; } -.fa-hourglass-o:before { - content: "\f250"; +.fa-osi:before { + content: "\f41a"; } -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; +.fa-outdent:before { + content: "\f03b"; } -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; +.fa-page4:before { + content: "\f3d7"; } -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; +.fa-pagelines:before { + content: "\f18c"; } -.fa-hourglass:before { - content: "\f254"; +.fa-paint-brush:before { + content: "\f1fc"; } -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; +.fa-palfed:before { + content: "\f3d8"; } -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; +.fa-pallet:before { + content: "\f482"; +} +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-paragraph:before { + content: "\f1dd"; } -.fa-hand-scissors-o:before { - content: "\f257"; +.fa-paste:before { + content: "\f0ea"; } -.fa-hand-lizard-o:before { - content: "\f258"; +.fa-patreon:before { + content: "\f3d9"; } -.fa-hand-spock-o:before { - content: "\f259"; +.fa-pause:before { + content: "\f04c"; } -.fa-hand-pointer-o:before { - content: "\f25a"; +.fa-pause-circle:before { + content: "\f28b"; } -.fa-hand-peace-o:before { - content: "\f25b"; +.fa-paw:before { + content: "\f1b0"; } -.fa-trademark:before { - content: "\f25c"; +.fa-paypal:before { + content: "\f1ed"; } -.fa-registered:before { - content: "\f25d"; +.fa-pen-square:before { + content: "\f14b"; } -.fa-creative-commons:before { - content: "\f25e"; +.fa-pencil-alt:before { + content: "\f303"; } -.fa-gg:before { - content: "\f260"; +.fa-percent:before { + content: "\f295"; } -.fa-gg-circle:before { - content: "\f261"; +.fa-periscope:before { + content: "\f3da"; } -.fa-tripadvisor:before { - content: "\f262"; +.fa-phabricator:before { + content: "\f3db"; } -.fa-odnoklassniki:before { - content: "\f263"; +.fa-phoenix-framework:before { + content: "\f3dc"; } -.fa-odnoklassniki-square:before { - content: "\f264"; +.fa-phone:before { + content: "\f095"; } -.fa-get-pocket:before { - content: "\f265"; +.fa-phone-square:before { + content: "\f098"; } -.fa-wikipedia-w:before { - content: "\f266"; +.fa-phone-volume:before { + content: "\f2a0"; } -.fa-safari:before { - content: "\f267"; +.fa-php:before { + content: "\f457"; } -.fa-chrome:before { - content: "\f268"; +.fa-pied-piper:before { + content: "\f2ae"; } -.fa-firefox:before { - content: "\f269"; +.fa-pied-piper-alt:before { + content: "\f1a8"; } -.fa-opera:before { - content: "\f26a"; +.fa-pied-piper-pp:before { + content: "\f1a7"; } -.fa-internet-explorer:before { - content: "\f26b"; +.fa-pills:before { + content: "\f484"; } -.fa-tv:before, -.fa-television:before { - content: "\f26c"; +.fa-pinterest:before { + content: "\f0d2"; } -.fa-contao:before { - content: "\f26d"; +.fa-pinterest-p:before { + content: "\f231"; } -.fa-500px:before { - content: "\f26e"; +.fa-pinterest-square:before { + content: "\f0d3"; } -.fa-amazon:before { - content: "\f270"; +.fa-plane:before { + content: "\f072"; } -.fa-calendar-plus-o:before { - content: "\f271"; +.fa-play:before { + content: "\f04b"; } -.fa-calendar-minus-o:before { - content: "\f272"; +.fa-play-circle:before { + content: "\f144"; } -.fa-calendar-times-o:before { - content: "\f273"; +.fa-playstation:before { + content: "\f3df"; } -.fa-calendar-check-o:before { - content: "\f274"; +.fa-plug:before { + content: "\f1e6"; } -.fa-industry:before { - content: "\f275"; +.fa-plus:before { + content: "\f067"; } -.fa-map-pin:before { - content: "\f276"; +.fa-plus-circle:before { + content: "\f055"; } -.fa-map-signs:before { - content: "\f277"; +.fa-plus-square:before { + content: "\f0fe"; } -.fa-map-o:before { - content: "\f278"; +.fa-podcast:before { + content: "\f2ce"; } -.fa-map:before { - content: "\f279"; +.fa-pound-sign:before { + content: "\f154"; } -.fa-commenting:before { - content: "\f27a"; +.fa-power-off:before { + content: "\f011"; } -.fa-commenting-o:before { - content: "\f27b"; +.fa-print:before { + content: "\f02f"; } -.fa-houzz:before { - content: "\f27c"; +.fa-product-hunt:before { + content: "\f288"; } -.fa-vimeo:before { - content: "\f27d"; +.fa-pushed:before { + content: "\f3e1"; } -.fa-black-tie:before { - content: "\f27e"; +.fa-puzzle-piece:before { + content: "\f12e"; } -.fa-fonticons:before { - content: "\f280"; +.fa-python:before { + content: "\f3e2"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-question:before { + content: "\f128"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-quidditch:before { + content: "\f458"; +} +.fa-quinscape:before { + content: "\f459"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-random:before { + content: "\f074"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-react:before { + content: "\f41b"; +} +.fa-rebel:before { + content: "\f1d0"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-red-river:before { + content: "\f3e3"; +} +.fa-reddit:before { + content: "\f1a1"; } .fa-reddit-alien:before { content: "\f281"; } -.fa-edge:before { - content: "\f282"; +.fa-reddit-square:before { + content: "\f1a2"; } -.fa-credit-card-alt:before { - content: "\f283"; +.fa-redo:before { + content: "\f01e"; } -.fa-codiepie:before { - content: "\f284"; +.fa-redo-alt:before { + content: "\f2f9"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-rendact:before { + content: "\f3e4"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-reply:before { + content: "\f3e5"; +} +.fa-reply-all:before { + content: "\f122"; +} +.fa-replyd:before { + content: "\f3e6"; +} +.fa-resolving:before { + content: "\f3e7"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-road:before { + content: "\f018"; } -.fa-modx:before { - content: "\f285"; +.fa-rocket:before { + content: "\f135"; } -.fa-fort-awesome:before { - content: "\f286"; +.fa-rocketchat:before { + content: "\f3e8"; } -.fa-usb:before { - content: "\f287"; +.fa-rockrms:before { + content: "\f3e9"; } -.fa-product-hunt:before { - content: "\f288"; +.fa-rss:before { + content: "\f09e"; } -.fa-mixcloud:before { - content: "\f289"; +.fa-rss-square:before { + content: "\f143"; } -.fa-scribd:before { - content: "\f28a"; +.fa-ruble-sign:before { + content: "\f158"; +} +.fa-rupee-sign:before { + content: "\f156"; +} +.fa-safari:before { + content: "\f267"; } -.fa-pause-circle:before { - content: "\f28b"; +.fa-sass:before { + content: "\f41e"; } -.fa-pause-circle-o:before { - content: "\f28c"; +.fa-save:before { + content: "\f0c7"; } -.fa-stop-circle:before { - content: "\f28d"; +.fa-schlix:before { + content: "\f3ea"; } -.fa-stop-circle-o:before { - content: "\f28e"; +.fa-scribd:before { + content: "\f28a"; } -.fa-shopping-bag:before { - content: "\f290"; +.fa-search:before { + content: "\f002"; } -.fa-shopping-basket:before { - content: "\f291"; +.fa-search-minus:before { + content: "\f010"; } -.fa-hashtag:before { - content: "\f292"; +.fa-search-plus:before { + content: "\f00e"; } -.fa-bluetooth:before { - content: "\f293"; +.fa-searchengin:before { + content: "\f3eb"; } -.fa-bluetooth-b:before { - content: "\f294"; +.fa-sellcast:before { + content: "\f2da"; } -.fa-percent:before { - content: "\f295"; +.fa-sellsy:before { + content: "\f213"; } -.fa-gitlab:before { - content: "\f296"; +.fa-server:before { + content: "\f233"; } -.fa-wpbeginner:before { - content: "\f297"; +.fa-servicestack:before { + content: "\f3ec"; } -.fa-wpforms:before { - content: "\f298"; +.fa-share:before { + content: "\f064"; } -.fa-envira:before { - content: "\f299"; +.fa-share-alt:before { + content: "\f1e0"; } -.fa-universal-access:before { - content: "\f29a"; +.fa-share-alt-square:before { + content: "\f1e1"; } -.fa-wheelchair-alt:before { - content: "\f29b"; +.fa-share-square:before { + content: "\f14d"; } -.fa-question-circle-o:before { - content: "\f29c"; +.fa-shekel-sign:before { + content: "\f20b"; } -.fa-blind:before { - content: "\f29d"; +.fa-shield-alt:before { + content: "\f3ed"; } -.fa-audio-description:before { - content: "\f29e"; +.fa-ship:before { + content: "\f21a"; } -.fa-volume-control-phone:before { - content: "\f2a0"; +.fa-shipping-fast:before { + content: "\f48b"; } -.fa-braille:before { - content: "\f2a1"; +.fa-shirtsinbulk:before { + content: "\f214"; } -.fa-assistive-listening-systems:before { - content: "\f2a2"; +.fa-shopping-bag:before { + content: "\f290"; } -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; +.fa-shopping-basket:before { + content: "\f291"; } -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; +.fa-shopping-cart:before { + content: "\f07a"; } -.fa-glide:before { - content: "\f2a5"; +.fa-shower:before { + content: "\f2cc"; } -.fa-glide-g:before { - content: "\f2a6"; +.fa-sign-in-alt:before { + content: "\f2f6"; } -.fa-signing:before, .fa-sign-language:before { content: "\f2a7"; } -.fa-low-vision:before { - content: "\f2a8"; +.fa-sign-out-alt:before { + content: "\f2f5"; } -.fa-viadeo:before { - content: "\f2a9"; +.fa-signal:before { + content: "\f012"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-sistrix:before { + content: "\f3ee"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-slack-hash:before { + content: "\f3ef"; +} +.fa-sliders-h:before { + content: "\f1de"; +} +.fa-slideshare:before { + content: "\f1e7"; } -.fa-viadeo-square:before { - content: "\f2aa"; +.fa-smile:before { + content: "\f118"; } .fa-snapchat:before { content: "\f2ab";

@@ -2321,112 +2455,485 @@ }

.fa-snapchat-square:before { content: "\f2ad"; } -.fa-pied-piper:before { - content: "\f2ae"; +.fa-snowflake:before { + content: "\f2dc"; } -.fa-first-order:before { - content: "\f2b0"; +.fa-sort:before { + content: "\f0dc"; } -.fa-yoast:before { - content: "\f2b1"; +.fa-sort-alpha-down:before { + content: "\f15d"; } -.fa-themeisle:before { - content: "\f2b2"; +.fa-sort-alpha-up:before { + content: "\f15e"; } -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; +.fa-sort-amount-down:before { + content: "\f160"; } -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; +.fa-sort-amount-up:before { + content: "\f161"; } -.fa-handshake-o:before { - content: "\f2b5"; +.fa-sort-down:before { + content: "\f0dd"; } -.fa-envelope-open:before { - content: "\f2b6"; +.fa-sort-numeric-down:before { + content: "\f162"; } -.fa-envelope-open-o:before { - content: "\f2b7"; +.fa-sort-numeric-up:before { + content: "\f163"; } -.fa-linode:before { - content: "\f2b8"; +.fa-sort-up:before { + content: "\f0de"; } -.fa-address-book:before { - content: "\f2b9"; +.fa-soundcloud:before { + content: "\f1be"; } -.fa-address-book-o:before { - content: "\f2ba"; +.fa-space-shuttle:before { + content: "\f197"; } -.fa-vcard:before, -.fa-address-card:before { - content: "\f2bb"; +.fa-speakap:before { + content: "\f3f3"; } -.fa-vcard-o:before, -.fa-address-card-o:before { - content: "\f2bc"; +.fa-spinner:before { + content: "\f110"; } -.fa-user-circle:before { - content: "\f2bd"; +.fa-spotify:before { + content: "\f1bc"; } -.fa-user-circle-o:before { - content: "\f2be"; +.fa-square:before { + content: "\f0c8"; } -.fa-user-o:before { - content: "\f2c0"; +.fa-square-full:before { + content: "\f45c"; } -.fa-id-badge:before { - content: "\f2c1"; +.fa-stack-exchange:before { + content: "\f18d"; } -.fa-drivers-license:before, -.fa-id-card:before { - content: "\f2c2"; +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-staylinked:before { + content: "\f3f5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-steam-symbol:before { + content: "\f3f6"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-sticker-mule:before { + content: "\f3f7"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-stop-circle:before { + content: "\f28d"; +} +.fa-stopwatch:before { + content: "\f2f2"; +} +.fa-strava:before { + content: "\f428"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-stripe:before { + content: "\f429"; +} +.fa-stripe-s:before { + content: "\f42a"; +} +.fa-studiovinari:before { + content: "\f3f8"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-sun:before { + content: "\f185"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-supple:before { + content: "\f3f9"; +} +.fa-sync:before { + content: "\f021"; +} +.fa-sync-alt:before { + content: "\f2f1"; +} +.fa-syringe:before { + content: "\f48e"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-table-tennis:before { + content: "\f45d"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-tablet-alt:before { + content: "\f3fa"; +} +.fa-tachometer-alt:before { + content: "\f3fd"; +} +.fa-tag:before { + content: "\f02b"; } -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: "\f2c3"; +.fa-tags:before { + content: "\f02c"; } -.fa-quora:before { - content: "\f2c4"; +.fa-tasks:before { + content: "\f0ae"; } -.fa-free-code-camp:before { - content: "\f2c5"; +.fa-taxi:before { + content: "\f1ba"; } .fa-telegram:before { content: "\f2c6"; } -.fa-thermometer-4:before, -.fa-thermometer:before, +.fa-telegram-plane:before { + content: "\f3fe"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-thermometer:before { + content: "\f491"; +} +.fa-thermometer-empty:before { + content: "\f2cb"; +} .fa-thermometer-full:before { content: "\f2c7"; } -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: "\f2c8"; -} -.fa-thermometer-2:before, .fa-thermometer-half:before { content: "\f2c9"; } -.fa-thermometer-1:before, .fa-thermometer-quarter:before { content: "\f2ca"; } -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: "\f2cb"; +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbtack:before { + content: "\f08d"; +} +.fa-ticket-alt:before { + content: "\f3ff"; +} +.fa-times:before { + content: "\f00d"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-train:before { + content: "\f238"; +} +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-trash-alt:before { + content: "\f2ed"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-tv:before { + content: "\f26c"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-typo3:before { + content: "\f42b"; +} +.fa-uber:before { + content: "\f402"; +} +.fa-uikit:before { + content: "\f403"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-undo:before { + content: "\f0e2"; +} +.fa-undo-alt:before { + content: "\f2ea"; +} +.fa-uniregistry:before { + content: "\f404"; +} +.fa-universal-access:before { + content: "\f29a"; +} +.fa-university:before { + content: "\f19c"; +} +.fa-unlink:before { + content: "\f127"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-untappd:before { + content: "\f405"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-usb:before { + content: "\f287"; +} +.fa-user:before { + content: "\f007"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-users:before { + content: "\f0c0"; +} +.fa-ussunnah:before { + content: "\f407"; +} +.fa-utensil-spoon:before { + content: "\f2e5"; +} +.fa-utensils:before { + content: "\f2e7"; +} +.fa-vaadin:before { + content: "\f408"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-viadeo:before { + content: "\f2a9"; +} +.fa-viadeo-square:before { + content: "\f2aa"; +} +.fa-viber:before { + content: "\f409"; +} +.fa-video:before { + content: "\f03d"; +} +.fa-vimeo:before { + content: "\f40a"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-vimeo-v:before { + content: "\f27d"; +} +.fa-vine:before { + content: "\f1ca"; } -.fa-shower:before { - content: "\f2cc"; +.fa-vk:before { + content: "\f189"; } -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: "\f2cd"; +.fa-vnv:before { + content: "\f40b"; } -.fa-podcast:before { - content: "\f2ce"; +.fa-volleyball-ball:before { + content: "\f45f"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-vuejs:before { + content: "\f41f"; +} +.fa-warehouse:before { + content: "\f494"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-weight:before { + content: "\f496"; +} +.fa-weixin:before { + content: "\f1d7"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-whatsapp-square:before { + content: "\f40c"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-whmcs:before { + content: "\f40d"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-window-close:before { + content: "\f410"; } .fa-window-maximize:before { content: "\f2d0";

@@ -2437,46 +2944,114 @@ }

.fa-window-restore:before { content: "\f2d2"; } -.fa-times-rectangle:before, -.fa-window-close:before { - content: "\f2d3"; +.fa-windows:before { + content: "\f17a"; +} +.fa-won-sign:before { + content: "\f159"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-wordpress-simple:before { + content: "\f411"; +} +.fa-wpbeginner:before { + content: "\f297"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-wpforms:before { + content: "\f298"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-xbox:before { + content: "\f412"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-yahoo:before { + content: "\f19e"; } -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: "\f2d4"; +.fa-yandex:before { + content: "\f413"; } -.fa-bandcamp:before { - content: "\f2d5"; +.fa-yandex-international:before { + content: "\f414"; +} +.fa-yelp:before { + content: "\f1e9"; } -.fa-grav:before { - content: "\f2d6"; +.fa-yen-sign:before { + content: "\f157"; } -.fa-etsy:before { - content: "\f2d7"; +.fa-yoast:before { + content: "\f2b1"; } -.fa-imdb:before { - content: "\f2d8"; +.fa-youtube:before { + content: "\f167"; } -.fa-ravelry:before { - content: "\f2d9"; +.fa-youtube-square:before { + content: "\f431"; } -.fa-eercast:before { - content: "\f2da"; +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } -.fa-microchip:before { - content: "\f2db"; +.sr-only-focusable:active, +.sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } -.fa-snowflake-o:before { - content: "\f2dc"; +/*! + * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + src: url('../fonts/fa-solid-900.eot'); + src: url('../fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'), url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.woff') format('woff'), url('../fonts/fa-solid-900.ttf') format('truetype'), url('../fonts/fa-solid-900.svg#fontawesome') format('svg'); } -.fa-superpowers:before { - content: "\f2dd"; +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } -.fa-wpexplorer:before { - content: "\f2de"; +/*! + * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + src: url('../fonts/fa-brands-400.eot'); + src: url('../fonts/fa-brands-400.eot?#iefix') format('embedded-opentype'), url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.woff') format('woff'), url('../fonts/fa-brands-400.ttf') format('truetype'), url('../fonts/fa-brands-400.svg#fontawesome') format('svg'); } -.fa-meetup:before { - content: "\f2e0"; +.fab { + font-family: 'Font Awesome 5 Brands'; } .mix-no-border-radius { -webkit-border-radius: 0px;

@@ -2681,7 +3256,13 @@ text-align: center;

} /* Inline */ [class^="fa-"] { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; +} +[class^="fas-"] { + font-family: "Font Awesome 5 Free"; +} +[class^="fab-"] { + font-family: "Font Awesome 5 Brands"; } code, span.code {

@@ -2848,140 +3429,140 @@ a[href^="https://"]:before,

a[href^="ftp://"]:before, a[href^="sftp://"]:before { content: "\f0ac" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free"; } a[href^="mailto:"]:before { content: "\f0e0" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free"; } a[href^="tel:"]:before { content: "\f095" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free"; } a[href^="skype://"]:before, a[href*="skype.com"]:before { content: "\f17e" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="twitter.com"]:before { content: "\f099" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="linkedin.com"]:before { content: "\f08c" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="foursquare.com"]:before { content: "\f180" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="facebook.com"]:before { content: "\f082" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="flickr.com"]:before { content: "\f16e" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="github.com"]:before { content: "\f09b" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="stackoverflow.com"]:before { content: "\f16c" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="tripadvisor.com"]:before { content: "\f262" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="trello.com"]:before { content: "\f181" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="wordpress.com"]:before { content: "\f19a" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="wordpress.org"]:before { content: "\f19a" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="amazon.com"]:before { content: "\f270" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="medium.com"]:before { content: "\f23a" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="youtube.com"]:before { content: "\f167" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="dropbox.com"]:before { content: "\f16b" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="instagram.com"]:before { content: "\f16d" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="google.com"]:before { content: "\f1a0" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free"; } a[href*="plus.google.com"]:before { content: "\f0d4" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="yahoo.com"]:before { content: "\f19e" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="tumblr.com"]:before { content: "\f174" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="vimeo.com"]:before { content: "\f194" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="bitbucket.com"]:before { content: "\f171" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="pinterest.com"]:before { content: "\f0d2" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="reddit.com"]:before { content: "\f1a1" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="digg.com"]:before { content: "\f1a6" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="news.ycombinator.com"]:before { content: "\f1d4" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="jsfiddle.com"]:before { content: "\f1cc" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="deviantart.com"]:before { content: "\f1bd" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href^="git@"]:before { content: "\f1d3" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } a[href*="wikipedia.com"]:before { content: "\f266" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Brands"; } #footer a:before { content: "";

@@ -2994,7 +3575,7 @@ float: right;

} a[href="#document-top"]:before { content: "\f102" "\202F"; - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free"; } #footer a:hover { text-decoration: none;

@@ -3032,7 +3613,7 @@ font-weight: bold;

color: #264c72; } .note p:first-child:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3072,7 +3653,7 @@ font-weight: bold;

color: #009926; } .tip p:first-child:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3112,7 +3693,7 @@ font-weight: bold;

color: #705400; } .warning p:first-child:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3152,7 +3733,7 @@ font-weight: bold;

color: #555; } .sidebar p:first-child:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3197,9 +3778,9 @@ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);

color: #eee; background-color: #222; border: 1px solid #ccc; - white-space: pre-wrap; padding: 0 3px; border: 2px solid #999; + white-space: pre-wrap; border-top: 10px solid #999; } .terminal a {

@@ -3220,7 +3801,7 @@ }

} .terminal p, .terminal p:first-child { - margin-top: 0; + margin-top: -40px; margin-bottom: 0; text-shadow: none; font-weight: normal;

@@ -3228,6 +3809,10 @@ font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace;

font-size: 85%; color: #eee; } +.terminal p:first-child, +.terminal p:first-child:first-child { + margin-top: 0px; +} .terminal p:before, .terminal p:first-child:before { font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace;

@@ -3250,9 +3835,9 @@ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);

color: #eee; background-color: #222; border: 1px solid #ccc; - white-space: pre-wrap; padding: 0 3px; border: 2px solid #999; + white-space: pre-wrap; border-top: 10px solid #999; } .terminal-su a {

@@ -3273,13 +3858,17 @@ }

} .terminal-su p, .terminal-su p:first-child { - margin-top: 0; + margin-top: -40px; margin-bottom: 0; text-shadow: none; font-weight: normal; font-family: "Source Code Pro", "Monaco", "DejaVu Sans Mono", "Courier New", monospace; font-size: 85%; color: #eee; +} +.terminal-su p:first-child, +.terminal-su p:first-child:first-child { + margin-top: 0px; } .terminal-su p:before, .terminal-su p:first-child:before {

@@ -3522,7 +4111,7 @@ font-weight: bold;

content: "comment"; } .red-circle:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3530,7 +4119,7 @@ color: #CC3300;

content: "\f111" " "; } .green-circle:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3538,7 +4127,7 @@ color: #00CC33;

content: "\f111" " "; } .yellow-circle:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3546,7 +4135,7 @@ color: #F5B800;

content: "\f111" " "; } .gray-circle:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3554,7 +4143,7 @@ color: #999;

content: "\f111" " "; } .star:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3562,7 +4151,7 @@ color: #F5B800;

content: "\f005" " "; } .heart:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3570,23 +4159,23 @@ color: #CC3300;

content: "\f004" " "; } .square:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%; color: #CC3300; - content: "\f096" " "; + content: "\f0c8" " "; } .check:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%; color: #00CC33; - content: "\f046" " "; + content: "\f14a" " "; } .lock:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3594,7 +4183,7 @@ color: #F5B800;

content: "\f023" " "; } .unlock:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3602,7 +4191,7 @@ color: #F5B800;

content: "\f09c" " "; } .bug:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3610,7 +4199,7 @@ color: #CC3300;

content: "\f188" " "; } .tag:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3618,7 +4207,7 @@ color: #F5B800;

content: "\f02b" " "; } .tags:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3626,15 +4215,15 @@ color: #F5B800;

content: "\f02c" " "; } .date:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%; color: #0F4BFF; - content: "\f073" " "; + content: "\f133" " "; } .time:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3642,7 +4231,7 @@ color: #0F4BFF;

content: "\f017" " "; } .attachment:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3650,7 +4239,7 @@ color: #333;

content: "\f0c6" " "; } .geo:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3658,7 +4247,7 @@ color: #CC3300;

content: "\f041" " "; } .danger:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3666,7 +4255,7 @@ color: #CC3300;

content: "\f071" " "; } .question:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3674,7 +4263,7 @@ color: #0F4BFF;

content: "\f059" " "; } .phone:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3682,7 +4271,7 @@ color: #333;

content: "\f095" " "; } .email:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3690,7 +4279,7 @@ color: #333;

content: "\f0e0" " "; } .fax:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3698,7 +4287,7 @@ color: #333;

content: "\f1ac" " "; } .print:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3706,7 +4295,7 @@ color: #333;

content: "\f02f" " "; } .usb:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3714,7 +4303,7 @@ color: #333;

content: "\f287" " "; } .website:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3722,7 +4311,7 @@ color: #333;

content: "\f0ac" " "; } .hastyscribe:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 180%;

@@ -3736,7 +4325,7 @@ margin-right: -2%;

vertical-align: middle; } .btc:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3744,7 +4333,7 @@ color: #333;

content: "\f15a" ""; } .eur:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3752,7 +4341,7 @@ color: #333;

content: "\f153" ""; } .usd:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3760,7 +4349,7 @@ color: #333;

content: "\f155" ""; } .gbp:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3768,7 +4357,7 @@ color: #333;

content: "\f154" ""; } .jpy:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3776,7 +4365,7 @@ color: #333;

content: "\f157" ""; } .inr:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3784,7 +4373,7 @@ color: #333;

content: "\f156" ""; } .krw:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3792,7 +4381,7 @@ color: #333;

content: "\f159" ""; } .rub:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3800,7 +4389,7 @@ color: #333;

content: "\f158" ""; } .try:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 90%;

@@ -3808,7 +4397,7 @@ color: #333;

content: "\f195" ""; } .copy:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3816,7 +4405,7 @@ color: #333;

content: "\f1f9" " "; } .reg:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3824,7 +4413,7 @@ color: #333;

content: "\f25d" " "; } .tm:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3832,7 +4421,7 @@ color: #333;

content: "\f25c" " "; } .red-flag:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3840,7 +4429,7 @@ color: #CC3300;

content: "\f024" " "; } .green-flag:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3848,7 +4437,7 @@ color: #00CC33;

content: "\f024" " "; } .yellow-flag:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3856,7 +4445,7 @@ color: #F5B800;

content: "\f024" " "; } .story:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3864,7 +4453,7 @@ color: #0F4BFF;

content: "\f075" " "; } .feature:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3872,7 +4461,7 @@ color: #00CC33;

content: "\f058" " "; } .project:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3880,7 +4469,7 @@ color: #705400;

content: "\f0b1" " "; } .user:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3888,7 +4477,7 @@ color: #0F4BFF;

content: "\f007" " "; } .add:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3896,7 +4485,7 @@ color: #00CC33;

content: "\f055" " "; } .remove:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3904,7 +4493,7 @@ color: #CC3300;

content: "\f056" " "; } .html5:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3912,7 +4501,7 @@ color: #CC3300;

content: "\f13b" " "; } .css3:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3920,7 +4509,7 @@ color: #0F4BFF;

content: "\f13c" " "; } .apple:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3928,7 +4517,7 @@ color: #aaa;

content: "\f179" " "; } .windows:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3936,7 +4525,7 @@ color: #0F4BFF;

content: "\f17a" " "; } .linux:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3944,7 +4533,7 @@ color: #000;

content: "\f17c" " "; } .android:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3952,7 +4541,7 @@ color: #A4C739;

content: "\f17b" " "; } .bluetooth:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3960,7 +4549,7 @@ color: #0F4BFF;

content: "\f293" " "; } .wifi:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3968,7 +4557,7 @@ color: #333;

content: "\f1eb" " "; } .signal:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3976,7 +4565,7 @@ color: #333;

content: "\f012" " "; } .idea:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3984,7 +4573,7 @@ color: #F5B800;

content: "\f0eb" " "; } .sticky:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -3992,7 +4581,7 @@ color: #F5B800;

content: "\f249" " "; } .link:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4000,7 +4589,7 @@ color: #0F4BFF;

content: "\f0c1" " "; } .chrome:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4008,7 +4597,7 @@ color: #F5B800;

content: "\f268" " "; } .firefox:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4016,7 +4605,7 @@ color: #FF6600;

content: "\f269" " "; } .ie:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4024,7 +4613,7 @@ color: #0F4BFF;

content: "\f26b" " "; } .edge:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4032,7 +4621,7 @@ color: #0F4BFF;

content: "\f282" " "; } .opera:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;

@@ -4040,7 +4629,7 @@ color: #CC3300;

content: "\f26a" " "; } .safari:before { - font-family: "FontAwesome"; + font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; font-style: normal; font-weight: normal; font-size: 100%;
M site/assets/styles/hastysite.csssite/assets/styles/hastysite.css

@@ -1,5 +1,5 @@

.fa { - font-family: 'FontAwesome'; + font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands'; } i.fa {
M site/contents/getting-started.mdsite/contents/getting-started.md

@@ -4,7 +4,7 @@ title: "Getting Started"

content-type: page ----- -{{version => 1.0.1}} +{{version => 1.1.0}} ## Download
M site/templates/_footer.mustachesite/templates/_footer.mustache

@@ -1,5 +1,5 @@

<footer> -<p>&copy; 2016&mdash;2017 <a href="https://h3rald.com">Fabio Cevasco</a></p> +<p>&copy; 2016&mdash;2018 <a href="https://h3rald.com">Fabio Cevasco</a></p> <p>Powered by <a href="https://hastysite.h3rald.com">HastySite</a></p> <p> <a href="http://creativecommons.org/licenses/by-sa/4.0/">
M site/templates/_header.mustachesite/templates/_header.mustache

@@ -10,7 +10,7 @@ </li>

<li class="luxbar-item"><a href="/news"><i class="fa fa-bullhorn"></i> News</a></li> <li class="luxbar-item"><a href="/getting-started"><i class="fa fa-star"></i> Getting Started</a></li> <li class="luxbar-item"><a href="/usage"><i class="fa fa-wrench"></i> Usage</a></li> - <li class="luxbar-item"><a href="/customization"><i class="fa fa-gears"></i> Customization</a></li> + <li class="luxbar-item"><a href="/customization"><i class="fa fa-cogs"></i> Customization</a></li> <li class="luxbar-item"><a href="/reference"><i class="fa fa-book"></i> Reference</a></li> <li class="luxbar-item"><a href="/about"><i class="fa fa-info-circle"></i> About</a></li> </ul>