├── .browserslistrc ├── .gitignore ├── README.md ├── app ├── js │ ├── script.js │ └── script2.js └── scss │ ├── _global.scss │ ├── _homepage.scss │ ├── _variables.scss │ └── style.scss ├── gulpfile.js ├── img └── jr-korpa-stwHyPWNtbI-unsplash.jpg ├── index.html ├── package-lock.json ├── package.json └── plugins └── fontawesome ├── scss ├── _animated.scss ├── _bordered-pulled.scss ├── _core.scss ├── _fixed-width.scss ├── _icons.scss ├── _larger.scss ├── _list.scss ├── _mixins.scss ├── _rotated-flipped.scss ├── _screen-reader.scss ├── _shims.scss ├── _stacked.scss ├── _variables.scss ├── brands.scss ├── fontawesome.scss ├── regular.scss ├── solid.scss └── v4-shims.scss └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 /.browserslistrc: -------------------------------------------------------------------------------- 1 | # Browsers that we support 2 | 3 | last 1 version 4 | > 1% 5 | IE 10 # sorry -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Gulp 4 for Beginners 2 | 3 | ![Gulp 4 for Beginners](https://user-images.githubusercontent.com/37986728/74626528-8c67d700-5115-11ea-9a84-7467ffda7b90.png) 4 | 5 | Hey there! 6 | 7 | This is the source code for the [Gulp 4 for Beginners](https://coder-coder.com/gulp-course/) course. You can use this as a simple boilerplate for front-end projects. 8 | 9 | Once you fork/download the repo, just make sure to run `npm install` to get all the packages necessary. 10 | 11 | Feel free to fork and share this repo! 12 | -------------------------------------------------------------------------------- /app/js/script.js: -------------------------------------------------------------------------------- 1 | const testLocal = "Here's a local script file!"; 2 | console.log(testLocal); 3 | 4 | const camelCase = require('camelcase'); 5 | const testVar = "testing camelcase in js"; 6 | console.log(camelCase(testVar)); -------------------------------------------------------------------------------- /app/js/script2.js: -------------------------------------------------------------------------------- 1 | console.log("Here's another script file!"); -------------------------------------------------------------------------------- /app/scss/_global.scss: -------------------------------------------------------------------------------- 1 | html { 2 | box-sizing: border-box; 3 | font-size: 100%; 4 | } 5 | 6 | *, *:before, *:after { 7 | box-sizing: inherit; 8 | } 9 | 10 | body { 11 | background-color: $darkGray; 12 | background-image: url('/img/jr-korpa-stwHyPWNtbI-unsplash.jpg'); 13 | background-size: cover; 14 | background-repeat: no-repeat; 15 | font-family: Arial, Helvetica, sans-serif; 16 | margin: 20px; 17 | } 18 | 19 | h1, h2, h3 { 20 | margin-top: 0px; 21 | } 22 | 23 | h1 { 24 | font-size: 4rem; 25 | 26 | @media (min-width: 64em){ 27 | font-size: 5rem; 28 | } 29 | } 30 | 31 | h2 { 32 | font-size: 3rem; 33 | 34 | @media (min-width: 64em){ 35 | font-size: 4rem; 36 | } 37 | } 38 | 39 | h3 { 40 | font-size: 2.5rem; 41 | 42 | @media (min-width: 64em){ 43 | font-size: 3rem; 44 | } 45 | } 46 | 47 | .white { 48 | color: $white; 49 | } 50 | 51 | .dkGray { 52 | color: $darkGray; 53 | } 54 | -------------------------------------------------------------------------------- /app/scss/_homepage.scss: -------------------------------------------------------------------------------- 1 | .content { 2 | display: grid; 3 | grid-template-columns: 1fr; 4 | grid-gap: 20px; 5 | margin: 40px 0; 6 | 7 | @media (min-width: 64em){ 8 | grid-template-columns: repeat(2, 1fr); 9 | } 10 | 11 | &__block { 12 | background-color: $white; 13 | color: $darkGray; 14 | padding: 20px; 15 | border-radius: 10px; 16 | transition: all 200ms ease-in-out; 17 | 18 | &:hover { 19 | transform: translateY(-20px); 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /app/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $white: #ffffff; 2 | $lightGray: #cecece; 3 | $medGray: #606060; 4 | $darkGray: #303030; 5 | $black: #000000; 6 | 7 | // Font Awesome 8 | //$fa-font-path: "../../plugins/fontawesome/webfonts"; 9 | $fa-font-path: "../../node_modules/@fortawesome/fontawesome-free/webfonts"; -------------------------------------------------------------------------------- /app/scss/style.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "global"; 3 | @import "homepage"; 4 | 5 | // Font Awesome 6 | //@import "../../plugins/fontawesome/scss/fontawesome.scss"; 7 | //@import "../../plugins/fontawesome/scss/solid.scss"; 8 | 9 | @import "fontawesome-free/scss/fontawesome.scss"; 10 | @import "fontawesome-free/scss/solid.scss"; -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const { src, dest, watch, series, parallel } = require('gulp'); 2 | 3 | const sass = require('gulp-sass'); 4 | const postcss = require('gulp-postcss'); 5 | const autoprefixer = require('autoprefixer'); 6 | const combinemq = require('postcss-combine-media-query'); 7 | const cssnano = require('cssnano'); 8 | 9 | const concat = require('gulp-concat'); 10 | const uglify = require('gulp-uglify'); 11 | const babel = require('gulp-babel'); 12 | const browserify = require('browserify'); 13 | const source = require('vinyl-source-stream'); 14 | const buffer = require('vinyl-buffer'); 15 | 16 | const del = require('del'); 17 | const imagemin = require('gulp-imagemin'); 18 | const replace = require('gulp-replace'); 19 | const browsersync = require('browser-sync').create(); 20 | 21 | function scssDevTask(){ 22 | return src('app/scss/style.scss', { sourcemaps: true }) 23 | .pipe(sass({ 24 | includePaths: 'node_modules/@fortawesome' 25 | })) 26 | .pipe(postcss([autoprefixer()])) 27 | .pipe(dest('dist', { sourcemaps: '.' })); 28 | } 29 | 30 | function scssProdTask(){ 31 | return src('app/scss/style.scss', { sourcemaps: true }) 32 | .pipe(sass({ 33 | includePaths: 'node_modules/@fortawesome' 34 | })) 35 | .pipe(postcss([autoprefixer(), combinemq(), cssnano()])) 36 | .pipe(dest('dist', { sourcemaps: '.' })); 37 | } 38 | 39 | function concatJsTask(){ 40 | return src('app/js/*.js') 41 | .pipe(concat('scripts.js')) 42 | .pipe(dest('app/js')); 43 | } 44 | 45 | function browserifyTask(){ 46 | return browserify('app/js/scripts.js') 47 | .bundle() 48 | .pipe(source('scripts.js')) 49 | .pipe(buffer()) 50 | .pipe(dest('app/js')); 51 | } 52 | 53 | function jsDevTask(){ 54 | return src(['app/js/scripts.js'], { sourcemaps: true }) 55 | .pipe(babel({ presets: ['@babel/preset-env']})) 56 | .pipe(dest('dist', { sourcemaps: '.' })); 57 | } 58 | 59 | function jsProdTask(){ 60 | return src(['app/js/scripts.js'], { sourcemaps: true }) 61 | .pipe(babel({ presets: ['@babel/preset-env']})) 62 | .pipe(uglify()) 63 | .pipe(dest('dist', { sourcemaps: '.' })); 64 | } 65 | 66 | function cleanTask(){ 67 | return del('app/js/scripts.js'); 68 | } 69 | 70 | function imageminTask(){ 71 | return src('img/*') 72 | .pipe(imagemin([ 73 | imagemin.gifsicle({interlaced: true}), 74 | imagemin.mozjpeg({quality: 75, progressive: true}), 75 | imagemin.optipng({optimizationLevel: 5}), 76 | imagemin.svgo({ 77 | plugins: [ 78 | {removeViewBox: true}, 79 | {cleanupIDs: false} 80 | ] 81 | }) 82 | ], 83 | { verbose: true } 84 | )) 85 | .pipe(dest('img')); 86 | } 87 | 88 | function cacheBustTask(){ 89 | let cbNumber = new Date().getTime(); 90 | return src('index.html') 91 | .pipe(replace(/cb=\d+/g, 'cb=' + cbNumber)) 92 | .pipe(dest('.')); 93 | } 94 | 95 | function browserSyncServe(cb){ 96 | browsersync.init({ 97 | server: { 98 | baseDir: '.' 99 | } 100 | }); 101 | cb(); 102 | } 103 | 104 | function browserSyncReload(cb){ 105 | browsersync.reload(); 106 | cb(); 107 | } 108 | 109 | function watchTask(){ 110 | watch('index.html', browserSyncReload); 111 | watch([ 112 | 'app/scss/**/*.scss', 113 | 'app/js/**/*.js', 114 | '!app/js/scripts.js' 115 | ], 116 | series( 117 | scssDevTask, 118 | concatJsTask, 119 | browserifyTask, 120 | jsDevTask, 121 | cleanTask, 122 | cacheBustTask, 123 | browserSyncReload 124 | ) 125 | ); 126 | watch('img/*', series(imageminTask, browserSyncReload)); 127 | } 128 | 129 | exports.default = series( 130 | scssDevTask, 131 | concatJsTask, 132 | browserifyTask, 133 | jsDevTask, 134 | cleanTask, 135 | imageminTask, 136 | cacheBustTask, 137 | browserSyncServe, 138 | watchTask 139 | ); 140 | 141 | exports.prod = series( 142 | scssProdTask, 143 | concatJsTask, 144 | browserifyTask, 145 | jsProdTask, 146 | cleanTask, 147 | imageminTask, 148 | cacheBustTask 149 | ); -------------------------------------------------------------------------------- /img/jr-korpa-stwHyPWNtbI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/img/jr-korpa-stwHyPWNtbI-unsplash.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gulp Workflow Project 8 | 9 | 10 | 11 | 12 |

Gulp Workflow Project

13 | 14 |
15 |
16 |

What we're doing in Gulp

17 |

18 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam similique praesentium excepturi est id quibusdam obcaecati voluptate reiciendis, corporis autem, veniam nostrum deleniti eligendi! Aperiam tempora tenetur eius maxime. Dolore. 19 |

20 |
21 | 22 |
23 |

Another thing we're doing in Gulp

24 |

25 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam similique praesentium excepturi est id quibusdam obcaecati voluptate reiciendis, corporis autem, veniam nostrum deleniti eligendi! Aperiam tempora tenetur eius maxime. Dolore. 26 |

27 |

28 | Lorem ipsum dolor sit amet consectetur, adipisicing elit. Necessitatibus ut reprehenderit alias aperiam odit nobis ex laboriosam sit et. Sed similique rerum accusantium, harum impedit neque porro! Fugiat, aperiam pariatur? 29 |

30 |
31 |
32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gulp-course-test", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@babel/core": "^7.8.3", 14 | "@babel/preset-env": "^7.8.3", 15 | "@fortawesome/fontawesome-free": "^5.12.0", 16 | "autoprefixer": "^9.7.4", 17 | "browser-sync": "^2.26.7", 18 | "browserify": "^16.5.0", 19 | "camelcase": "^5.3.1", 20 | "cssnano": "^4.1.10", 21 | "del": "^5.1.0", 22 | "gulp": "^4.0.2", 23 | "gulp-babel": "^8.0.0", 24 | "gulp-concat": "^2.6.1", 25 | "gulp-imagemin": "^7.1.0", 26 | "gulp-postcss": "^8.0.0", 27 | "gulp-replace": "^1.0.0", 28 | "gulp-sass": "^4.0.2", 29 | "gulp-uglify": "^3.0.2", 30 | "postcss-combine-media-query": "^1.0.0", 31 | "vinyl-buffer": "^1.0.1", 32 | "vinyl-source-stream": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | border: solid .08em $fa-border-color; 6 | border-radius: .1em; 7 | padding: .2em .25em .15em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix}, 14 | .fas, 15 | .far, 16 | .fal, 17 | .fab { 18 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 19 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 20 | } 21 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fad, 9 | .fab { 10 | -moz-osx-font-smoothing: grayscale; 11 | -webkit-font-smoothing: antialiased; 12 | display: inline-block; 13 | font-style: normal; 14 | font-variant: normal; 15 | text-rendering: auto; 16 | line-height: 1; 17 | } 18 | 19 | %fa-icon { 20 | @include fa-icon; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | // makes the font 33% larger relative to the icon container 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -.0667em; 9 | } 10 | 11 | .#{$fa-css-prefix}-xs { 12 | font-size: .75em; 13 | } 14 | 15 | .#{$fa-css-prefix}-sm { 16 | font-size: .875em; 17 | } 18 | 19 | @for $i from 1 through 10 { 20 | .#{$fa-css-prefix}-#{$i}x { 21 | font-size: $i * 1em; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon { 5 | -webkit-font-smoothing: antialiased; 6 | -moz-osx-font-smoothing: grayscale; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | font-weight: normal; 11 | line-height: 1; 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | transform: rotate($degrees); 17 | } 18 | 19 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 20 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 21 | transform: scale($horiz, $vert); 22 | } 23 | 24 | 25 | // Only display content to screen readers. A la Bootstrap 4. 26 | // 27 | // See: http://a11yproject.com/posts/how-to-hide-content/ 28 | 29 | @mixin sr-only { 30 | border: 0; 31 | clip: rect(0, 0, 0, 0); 32 | height: 1px; 33 | margin: -1px; 34 | overflow: hidden; 35 | padding: 0; 36 | position: absolute; 37 | width: 1px; 38 | } 39 | 40 | // Use in conjunction with .sr-only to only display content when it's focused. 41 | // 42 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 43 | // 44 | // Credit: HTML5 Boilerplate 45 | 46 | @mixin sr-only-focusable { 47 | &:active, 48 | &:focus { 49 | clip: auto; 50 | height: auto; 51 | margin: 0; 52 | overflow: visible; 53 | position: static; 54 | width: auto; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | .#{$fa-css-prefix}-flip-both, .#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); } 11 | 12 | // Hook for IE8-9 13 | // ------------------------- 14 | 15 | :root { 16 | .#{$fa-css-prefix}-rotate-90, 17 | .#{$fa-css-prefix}-rotate-180, 18 | .#{$fa-css-prefix}-rotate-270, 19 | .#{$fa-css-prefix}-flip-horizontal, 20 | .#{$fa-css-prefix}-flip-vertical, 21 | .#{$fa-css-prefix}-flip-both { 22 | filter: none; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_shims.scss: -------------------------------------------------------------------------------- 1 | .#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass-martini); } 2 | 3 | .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup { 4 | font-family: 'Font Awesome 5 Brands'; 5 | font-weight: 400; 6 | } 7 | 8 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o { 9 | font-family: 'Font Awesome 5 Free'; 10 | font-weight: 400; 11 | } 12 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star); } 13 | 14 | .#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: fa-content($fa-var-times); } 15 | 16 | .#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: fa-content($fa-var-times); } 17 | 18 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: fa-content($fa-var-cog); } 19 | 20 | .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o { 21 | font-family: 'Font Awesome 5 Free'; 22 | font-weight: 400; 23 | } 24 | .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-alt); } 25 | 26 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o { 27 | font-family: 'Font Awesome 5 Free'; 28 | font-weight: 400; 29 | } 30 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file); } 31 | 32 | .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o { 33 | font-family: 'Font Awesome 5 Free'; 34 | font-weight: 400; 35 | } 36 | .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock); } 37 | 38 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down { 39 | font-family: 'Font Awesome 5 Free'; 40 | font-weight: 400; 41 | } 42 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-alt-circle-down); } 43 | 44 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up { 45 | font-family: 'Font Awesome 5 Free'; 46 | font-weight: 400; 47 | } 48 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-alt-circle-up); } 49 | 50 | .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o { 51 | font-family: 'Font Awesome 5 Free'; 52 | font-weight: 400; 53 | } 54 | .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle); } 55 | 56 | .#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-redo); } 57 | 58 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: fa-content($fa-var-redo); } 59 | 60 | .#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-sync); } 61 | 62 | .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt { 63 | font-family: 'Font Awesome 5 Free'; 64 | font-weight: 400; 65 | } 66 | 67 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: fa-content($fa-var-outdent); } 68 | 69 | .#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video); } 70 | 71 | .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o { 72 | font-family: 'Font Awesome 5 Free'; 73 | font-weight: 400; 74 | } 75 | .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-image); } 76 | 77 | .#{$fa-css-prefix}.#{$fa-css-prefix}-photo { 78 | font-family: 'Font Awesome 5 Free'; 79 | font-weight: 400; 80 | } 81 | .#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: fa-content($fa-var-image); } 82 | 83 | .#{$fa-css-prefix}.#{$fa-css-prefix}-image { 84 | font-family: 'Font Awesome 5 Free'; 85 | font-weight: 400; 86 | } 87 | .#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); } 88 | 89 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil-alt); } 90 | 91 | .#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker-alt); } 92 | 93 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o { 94 | font-family: 'Font Awesome 5 Free'; 95 | font-weight: 400; 96 | } 97 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-edit); } 98 | 99 | .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o { 100 | font-family: 'Font Awesome 5 Free'; 101 | font-weight: 400; 102 | } 103 | .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square); } 104 | 105 | .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o { 106 | font-family: 'Font Awesome 5 Free'; 107 | font-weight: 400; 108 | } 109 | .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square); } 110 | 111 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows-alt); } 112 | 113 | .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o { 114 | font-family: 'Font Awesome 5 Free'; 115 | font-weight: 400; 116 | } 117 | .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle); } 118 | 119 | .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o { 120 | font-family: 'Font Awesome 5 Free'; 121 | font-weight: 400; 122 | } 123 | .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle); } 124 | 125 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); } 126 | 127 | .#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand-alt); } 128 | 129 | .#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress-alt); } 130 | 131 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eye { 132 | font-family: 'Font Awesome 5 Free'; 133 | font-weight: 400; 134 | } 135 | 136 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash { 137 | font-family: 'Font Awesome 5 Free'; 138 | font-weight: 400; 139 | } 140 | 141 | .#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: fa-content($fa-var-exclamation-triangle); } 142 | 143 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar-alt); } 144 | 145 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-alt-v); } 146 | 147 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-alt-h); } 148 | 149 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart { 150 | font-family: 'Font Awesome 5 Free'; 151 | font-weight: 400; 152 | } 153 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); } 154 | 155 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o { 156 | font-family: 'Font Awesome 5 Free'; 157 | font-weight: 400; 158 | } 159 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); } 160 | 161 | .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square { 162 | font-family: 'Font Awesome 5 Brands'; 163 | font-weight: 400; 164 | } 165 | 166 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square { 167 | font-family: 'Font Awesome 5 Brands'; 168 | font-weight: 400; 169 | } 170 | 171 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: fa-content($fa-var-cogs); } 172 | 173 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up { 174 | font-family: 'Font Awesome 5 Free'; 175 | font-weight: 400; 176 | } 177 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-up); } 178 | 179 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down { 180 | font-family: 'Font Awesome 5 Free'; 181 | font-weight: 400; 182 | } 183 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-down); } 184 | 185 | .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o { 186 | font-family: 'Font Awesome 5 Free'; 187 | font-weight: 400; 188 | } 189 | .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart); } 190 | 191 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out-alt); } 192 | 193 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square { 194 | font-family: 'Font Awesome 5 Brands'; 195 | font-weight: 400; 196 | } 197 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin); } 198 | 199 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumbtack); } 200 | 201 | .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link-alt); } 202 | 203 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in-alt); } 204 | 205 | .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square { 206 | font-family: 'Font Awesome 5 Brands'; 207 | font-weight: 400; 208 | } 209 | 210 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o { 211 | font-family: 'Font Awesome 5 Free'; 212 | font-weight: 400; 213 | } 214 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon); } 215 | 216 | .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o { 217 | font-family: 'Font Awesome 5 Free'; 218 | font-weight: 400; 219 | } 220 | .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square); } 221 | 222 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o { 223 | font-family: 'Font Awesome 5 Free'; 224 | font-weight: 400; 225 | } 226 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark); } 227 | 228 | .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter { 229 | font-family: 'Font Awesome 5 Brands'; 230 | font-weight: 400; 231 | } 232 | 233 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook { 234 | font-family: 'Font Awesome 5 Brands'; 235 | font-weight: 400; 236 | } 237 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook-f); } 238 | 239 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f { 240 | font-family: 'Font Awesome 5 Brands'; 241 | font-weight: 400; 242 | } 243 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); } 244 | 245 | .#{$fa-css-prefix}.#{$fa-css-prefix}-github { 246 | font-family: 'Font Awesome 5 Brands'; 247 | font-weight: 400; 248 | } 249 | 250 | .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card { 251 | font-family: 'Font Awesome 5 Free'; 252 | font-weight: 400; 253 | } 254 | 255 | .#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: fa-content($fa-var-rss); } 256 | 257 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o { 258 | font-family: 'Font Awesome 5 Free'; 259 | font-weight: 400; 260 | } 261 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd); } 262 | 263 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right { 264 | font-family: 'Font Awesome 5 Free'; 265 | font-weight: 400; 266 | } 267 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-point-right); } 268 | 269 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left { 270 | font-family: 'Font Awesome 5 Free'; 271 | font-weight: 400; 272 | } 273 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-point-left); } 274 | 275 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up { 276 | font-family: 'Font Awesome 5 Free'; 277 | font-weight: 400; 278 | } 279 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-point-up); } 280 | 281 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down { 282 | font-family: 'Font Awesome 5 Free'; 283 | font-weight: 400; 284 | } 285 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-point-down); } 286 | 287 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); } 288 | 289 | .#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: fa-content($fa-var-users); } 290 | 291 | .#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: fa-content($fa-var-link); } 292 | 293 | .#{$fa-css-prefix}.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-cut); } 294 | 295 | .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o { 296 | font-family: 'Font Awesome 5 Free'; 297 | font-weight: 400; 298 | } 299 | .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-copy); } 300 | 301 | .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o { 302 | font-family: 'Font Awesome 5 Free'; 303 | font-weight: 400; 304 | } 305 | .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-save); } 306 | 307 | .#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: fa-content($fa-var-bars); } 308 | 309 | .#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: fa-content($fa-var-bars); } 310 | 311 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest { 312 | font-family: 'Font Awesome 5 Brands'; 313 | font-weight: 400; 314 | } 315 | 316 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square { 317 | font-family: 'Font Awesome 5 Brands'; 318 | font-weight: 400; 319 | } 320 | 321 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square { 322 | font-family: 'Font Awesome 5 Brands'; 323 | font-weight: 400; 324 | } 325 | 326 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus { 327 | font-family: 'Font Awesome 5 Brands'; 328 | font-weight: 400; 329 | } 330 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus-g); } 331 | 332 | .#{$fa-css-prefix}.#{$fa-css-prefix}-money { 333 | font-family: 'Font Awesome 5 Free'; 334 | font-weight: 400; 335 | } 336 | .#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); } 337 | 338 | .#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: fa-content($fa-var-sort); } 339 | 340 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-down); } 341 | 342 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-up); } 343 | 344 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin { 345 | font-family: 'Font Awesome 5 Brands'; 346 | font-weight: 400; 347 | } 348 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin-in); } 349 | 350 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: fa-content($fa-var-undo); } 351 | 352 | .#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); } 353 | 354 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer-alt); } 355 | 356 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-tachometer-alt); } 357 | 358 | .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o { 359 | font-family: 'Font Awesome 5 Free'; 360 | font-weight: 400; 361 | } 362 | .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment); } 363 | 364 | .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o { 365 | font-family: 'Font Awesome 5 Free'; 366 | font-weight: 400; 367 | } 368 | .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: fa-content($fa-var-comments); } 369 | 370 | .#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: fa-content($fa-var-bolt); } 371 | 372 | .#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard { 373 | font-family: 'Font Awesome 5 Free'; 374 | font-weight: 400; 375 | } 376 | 377 | .#{$fa-css-prefix}.#{$fa-css-prefix}-paste { 378 | font-family: 'Font Awesome 5 Free'; 379 | font-weight: 400; 380 | } 381 | .#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); } 382 | 383 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o { 384 | font-family: 'Font Awesome 5 Free'; 385 | font-weight: 400; 386 | } 387 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb); } 388 | 389 | .#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange-alt); } 390 | 391 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download-alt); } 392 | 393 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload-alt); } 394 | 395 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o { 396 | font-family: 'Font Awesome 5 Free'; 397 | font-weight: 400; 398 | } 399 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell); } 400 | 401 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-utensils); } 402 | 403 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o { 404 | font-family: 'Font Awesome 5 Free'; 405 | font-weight: 400; 406 | } 407 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-alt); } 408 | 409 | .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o { 410 | font-family: 'Font Awesome 5 Free'; 411 | font-weight: 400; 412 | } 413 | .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building); } 414 | 415 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o { 416 | font-family: 'Font Awesome 5 Free'; 417 | font-weight: 400; 418 | } 419 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital); } 420 | 421 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet-alt); } 422 | 423 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile-alt); } 424 | 425 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: fa-content($fa-var-mobile-alt); } 426 | 427 | .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o { 428 | font-family: 'Font Awesome 5 Free'; 429 | font-weight: 400; 430 | } 431 | .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle); } 432 | 433 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: fa-content($fa-var-reply); } 434 | 435 | .#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt { 436 | font-family: 'Font Awesome 5 Brands'; 437 | font-weight: 400; 438 | } 439 | 440 | .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o { 441 | font-family: 'Font Awesome 5 Free'; 442 | font-weight: 400; 443 | } 444 | .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder); } 445 | 446 | .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o { 447 | font-family: 'Font Awesome 5 Free'; 448 | font-weight: 400; 449 | } 450 | .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open); } 451 | 452 | .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o { 453 | font-family: 'Font Awesome 5 Free'; 454 | font-weight: 400; 455 | } 456 | .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile); } 457 | 458 | .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o { 459 | font-family: 'Font Awesome 5 Free'; 460 | font-weight: 400; 461 | } 462 | .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown); } 463 | 464 | .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o { 465 | font-family: 'Font Awesome 5 Free'; 466 | font-weight: 400; 467 | } 468 | .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh); } 469 | 470 | .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o { 471 | font-family: 'Font Awesome 5 Free'; 472 | font-weight: 400; 473 | } 474 | .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard); } 475 | 476 | .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o { 477 | font-family: 'Font Awesome 5 Free'; 478 | font-weight: 400; 479 | } 480 | .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag); } 481 | 482 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: fa-content($fa-var-reply-all); } 483 | 484 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o { 485 | font-family: 'Font Awesome 5 Free'; 486 | font-weight: 400; 487 | } 488 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half); } 489 | 490 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty { 491 | font-family: 'Font Awesome 5 Free'; 492 | font-weight: 400; 493 | } 494 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: fa-content($fa-var-star-half); } 495 | 496 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full { 497 | font-family: 'Font Awesome 5 Free'; 498 | font-weight: 400; 499 | } 500 | .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: fa-content($fa-var-star-half); } 501 | 502 | .#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-branch); } 503 | 504 | .#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-unlink); } 505 | 506 | .#{$fa-css-prefix}.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield-alt); } 507 | 508 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o { 509 | font-family: 'Font Awesome 5 Free'; 510 | font-weight: 400; 511 | } 512 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar); } 513 | 514 | .#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn { 515 | font-family: 'Font Awesome 5 Brands'; 516 | font-weight: 400; 517 | } 518 | 519 | .#{$fa-css-prefix}.#{$fa-css-prefix}-html5 { 520 | font-family: 'Font Awesome 5 Brands'; 521 | font-weight: 400; 522 | } 523 | 524 | .#{$fa-css-prefix}.#{$fa-css-prefix}-css3 { 525 | font-family: 'Font Awesome 5 Brands'; 526 | font-weight: 400; 527 | } 528 | 529 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket-alt); } 530 | 531 | .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o { 532 | font-family: 'Font Awesome 5 Free'; 533 | font-weight: 400; 534 | } 535 | .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square); } 536 | 537 | .#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up-alt); } 538 | 539 | .#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down-alt); } 540 | 541 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pen-square); } 542 | 543 | .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square-alt); } 544 | 545 | .#{$fa-css-prefix}.#{$fa-css-prefix}-compass { 546 | font-family: 'Font Awesome 5 Free'; 547 | font-weight: 400; 548 | } 549 | 550 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down { 551 | font-family: 'Font Awesome 5 Free'; 552 | font-weight: 400; 553 | } 554 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-down); } 555 | 556 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down { 557 | font-family: 'Font Awesome 5 Free'; 558 | font-weight: 400; 559 | } 560 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: fa-content($fa-var-caret-square-down); } 561 | 562 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up { 563 | font-family: 'Font Awesome 5 Free'; 564 | font-weight: 400; 565 | } 566 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-up); } 567 | 568 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up { 569 | font-family: 'Font Awesome 5 Free'; 570 | font-weight: 400; 571 | } 572 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: fa-content($fa-var-caret-square-up); } 573 | 574 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right { 575 | font-family: 'Font Awesome 5 Free'; 576 | font-weight: 400; 577 | } 578 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-right); } 579 | 580 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right { 581 | font-family: 'Font Awesome 5 Free'; 582 | font-weight: 400; 583 | } 584 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: fa-content($fa-var-caret-square-right); } 585 | 586 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-euro-sign); } 587 | 588 | .#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: fa-content($fa-var-euro-sign); } 589 | 590 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-pound-sign); } 591 | 592 | .#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-dollar-sign); } 593 | 594 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: fa-content($fa-var-dollar-sign); } 595 | 596 | .#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-rupee-sign); } 597 | 598 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: fa-content($fa-var-rupee-sign); } 599 | 600 | .#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-yen-sign); } 601 | 602 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: fa-content($fa-var-yen-sign); } 603 | 604 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: fa-content($fa-var-yen-sign); } 605 | 606 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: fa-content($fa-var-yen-sign); } 607 | 608 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-ruble-sign); } 609 | 610 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: fa-content($fa-var-ruble-sign); } 611 | 612 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: fa-content($fa-var-ruble-sign); } 613 | 614 | .#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-won-sign); } 615 | 616 | .#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: fa-content($fa-var-won-sign); } 617 | 618 | .#{$fa-css-prefix}.#{$fa-css-prefix}-btc { 619 | font-family: 'Font Awesome 5 Brands'; 620 | font-weight: 400; 621 | } 622 | 623 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin { 624 | font-family: 'Font Awesome 5 Brands'; 625 | font-weight: 400; 626 | } 627 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-btc); } 628 | 629 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-alt); } 630 | 631 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); } 632 | 633 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-down-alt); } 634 | 635 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); } 636 | 637 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-down-alt); } 638 | 639 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); } 640 | 641 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-down-alt); } 642 | 643 | .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square { 644 | font-family: 'Font Awesome 5 Brands'; 645 | font-weight: 400; 646 | } 647 | 648 | .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube { 649 | font-family: 'Font Awesome 5 Brands'; 650 | font-weight: 400; 651 | } 652 | 653 | .#{$fa-css-prefix}.#{$fa-css-prefix}-xing { 654 | font-family: 'Font Awesome 5 Brands'; 655 | font-weight: 400; 656 | } 657 | 658 | .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square { 659 | font-family: 'Font Awesome 5 Brands'; 660 | font-weight: 400; 661 | } 662 | 663 | .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play { 664 | font-family: 'Font Awesome 5 Brands'; 665 | font-weight: 400; 666 | } 667 | .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube); } 668 | 669 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox { 670 | font-family: 'Font Awesome 5 Brands'; 671 | font-weight: 400; 672 | } 673 | 674 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow { 675 | font-family: 'Font Awesome 5 Brands'; 676 | font-weight: 400; 677 | } 678 | 679 | .#{$fa-css-prefix}.#{$fa-css-prefix}-instagram { 680 | font-family: 'Font Awesome 5 Brands'; 681 | font-weight: 400; 682 | } 683 | 684 | .#{$fa-css-prefix}.#{$fa-css-prefix}-flickr { 685 | font-family: 'Font Awesome 5 Brands'; 686 | font-weight: 400; 687 | } 688 | 689 | .#{$fa-css-prefix}.#{$fa-css-prefix}-adn { 690 | font-family: 'Font Awesome 5 Brands'; 691 | font-weight: 400; 692 | } 693 | 694 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket { 695 | font-family: 'Font Awesome 5 Brands'; 696 | font-weight: 400; 697 | } 698 | 699 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square { 700 | font-family: 'Font Awesome 5 Brands'; 701 | font-weight: 400; 702 | } 703 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket); } 704 | 705 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr { 706 | font-family: 'Font Awesome 5 Brands'; 707 | font-weight: 400; 708 | } 709 | 710 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square { 711 | font-family: 'Font Awesome 5 Brands'; 712 | font-weight: 400; 713 | } 714 | 715 | .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-alt-down); } 716 | 717 | .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-alt-up); } 718 | 719 | .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-alt-left); } 720 | 721 | .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-alt-right); } 722 | 723 | .#{$fa-css-prefix}.#{$fa-css-prefix}-apple { 724 | font-family: 'Font Awesome 5 Brands'; 725 | font-weight: 400; 726 | } 727 | 728 | .#{$fa-css-prefix}.#{$fa-css-prefix}-windows { 729 | font-family: 'Font Awesome 5 Brands'; 730 | font-weight: 400; 731 | } 732 | 733 | .#{$fa-css-prefix}.#{$fa-css-prefix}-android { 734 | font-family: 'Font Awesome 5 Brands'; 735 | font-weight: 400; 736 | } 737 | 738 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linux { 739 | font-family: 'Font Awesome 5 Brands'; 740 | font-weight: 400; 741 | } 742 | 743 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble { 744 | font-family: 'Font Awesome 5 Brands'; 745 | font-weight: 400; 746 | } 747 | 748 | .#{$fa-css-prefix}.#{$fa-css-prefix}-skype { 749 | font-family: 'Font Awesome 5 Brands'; 750 | font-weight: 400; 751 | } 752 | 753 | .#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare { 754 | font-family: 'Font Awesome 5 Brands'; 755 | font-weight: 400; 756 | } 757 | 758 | .#{$fa-css-prefix}.#{$fa-css-prefix}-trello { 759 | font-family: 'Font Awesome 5 Brands'; 760 | font-weight: 400; 761 | } 762 | 763 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay { 764 | font-family: 'Font Awesome 5 Brands'; 765 | font-weight: 400; 766 | } 767 | 768 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip { 769 | font-family: 'Font Awesome 5 Brands'; 770 | font-weight: 400; 771 | } 772 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: fa-content($fa-var-gratipay); } 773 | 774 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o { 775 | font-family: 'Font Awesome 5 Free'; 776 | font-weight: 400; 777 | } 778 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun); } 779 | 780 | .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o { 781 | font-family: 'Font Awesome 5 Free'; 782 | font-weight: 400; 783 | } 784 | .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon); } 785 | 786 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vk { 787 | font-family: 'Font Awesome 5 Brands'; 788 | font-weight: 400; 789 | } 790 | 791 | .#{$fa-css-prefix}.#{$fa-css-prefix}-weibo { 792 | font-family: 'Font Awesome 5 Brands'; 793 | font-weight: 400; 794 | } 795 | 796 | .#{$fa-css-prefix}.#{$fa-css-prefix}-renren { 797 | font-family: 'Font Awesome 5 Brands'; 798 | font-weight: 400; 799 | } 800 | 801 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines { 802 | font-family: 'Font Awesome 5 Brands'; 803 | font-weight: 400; 804 | } 805 | 806 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange { 807 | font-family: 'Font Awesome 5 Brands'; 808 | font-weight: 400; 809 | } 810 | 811 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right { 812 | font-family: 'Font Awesome 5 Free'; 813 | font-weight: 400; 814 | } 815 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-alt-circle-right); } 816 | 817 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left { 818 | font-family: 'Font Awesome 5 Free'; 819 | font-weight: 400; 820 | } 821 | .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-alt-circle-left); } 822 | 823 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left { 824 | font-family: 'Font Awesome 5 Free'; 825 | font-weight: 400; 826 | } 827 | .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-left); } 828 | 829 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left { 830 | font-family: 'Font Awesome 5 Free'; 831 | font-weight: 400; 832 | } 833 | .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: fa-content($fa-var-caret-square-left); } 834 | 835 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o { 836 | font-family: 'Font Awesome 5 Free'; 837 | font-weight: 400; 838 | } 839 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle); } 840 | 841 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square { 842 | font-family: 'Font Awesome 5 Brands'; 843 | font-weight: 400; 844 | } 845 | 846 | .#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-lira-sign); } 847 | 848 | .#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: fa-content($fa-var-lira-sign); } 849 | 850 | .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o { 851 | font-family: 'Font Awesome 5 Free'; 852 | font-weight: 400; 853 | } 854 | .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square); } 855 | 856 | .#{$fa-css-prefix}.#{$fa-css-prefix}-slack { 857 | font-family: 'Font Awesome 5 Brands'; 858 | font-weight: 400; 859 | } 860 | 861 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress { 862 | font-family: 'Font Awesome 5 Brands'; 863 | font-weight: 400; 864 | } 865 | 866 | .#{$fa-css-prefix}.#{$fa-css-prefix}-openid { 867 | font-family: 'Font Awesome 5 Brands'; 868 | font-weight: 400; 869 | } 870 | 871 | .#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-university); } 872 | 873 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-university); } 874 | 875 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); } 876 | 877 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo { 878 | font-family: 'Font Awesome 5 Brands'; 879 | font-weight: 400; 880 | } 881 | 882 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google { 883 | font-family: 'Font Awesome 5 Brands'; 884 | font-weight: 400; 885 | } 886 | 887 | .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit { 888 | font-family: 'Font Awesome 5 Brands'; 889 | font-weight: 400; 890 | } 891 | 892 | .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square { 893 | font-family: 'Font Awesome 5 Brands'; 894 | font-weight: 400; 895 | } 896 | 897 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle { 898 | font-family: 'Font Awesome 5 Brands'; 899 | font-weight: 400; 900 | } 901 | 902 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon { 903 | font-family: 'Font Awesome 5 Brands'; 904 | font-weight: 400; 905 | } 906 | 907 | .#{$fa-css-prefix}.#{$fa-css-prefix}-delicious { 908 | font-family: 'Font Awesome 5 Brands'; 909 | font-weight: 400; 910 | } 911 | 912 | .#{$fa-css-prefix}.#{$fa-css-prefix}-digg { 913 | font-family: 'Font Awesome 5 Brands'; 914 | font-weight: 400; 915 | } 916 | 917 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp { 918 | font-family: 'Font Awesome 5 Brands'; 919 | font-weight: 400; 920 | } 921 | 922 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt { 923 | font-family: 'Font Awesome 5 Brands'; 924 | font-weight: 400; 925 | } 926 | 927 | .#{$fa-css-prefix}.#{$fa-css-prefix}-drupal { 928 | font-family: 'Font Awesome 5 Brands'; 929 | font-weight: 400; 930 | } 931 | 932 | .#{$fa-css-prefix}.#{$fa-css-prefix}-joomla { 933 | font-family: 'Font Awesome 5 Brands'; 934 | font-weight: 400; 935 | } 936 | 937 | .#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); } 938 | 939 | .#{$fa-css-prefix}.#{$fa-css-prefix}-behance { 940 | font-family: 'Font Awesome 5 Brands'; 941 | font-weight: 400; 942 | } 943 | 944 | .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square { 945 | font-family: 'Font Awesome 5 Brands'; 946 | font-weight: 400; 947 | } 948 | 949 | .#{$fa-css-prefix}.#{$fa-css-prefix}-steam { 950 | font-family: 'Font Awesome 5 Brands'; 951 | font-weight: 400; 952 | } 953 | 954 | .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square { 955 | font-family: 'Font Awesome 5 Brands'; 956 | font-weight: 400; 957 | } 958 | 959 | .#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); } 960 | 961 | .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o { 962 | font-family: 'Font Awesome 5 Free'; 963 | font-weight: 400; 964 | } 965 | .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); } 966 | 967 | .#{$fa-css-prefix}.#{$fa-css-prefix}-spotify { 968 | font-family: 'Font Awesome 5 Brands'; 969 | font-weight: 400; 970 | } 971 | 972 | .#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart { 973 | font-family: 'Font Awesome 5 Brands'; 974 | font-weight: 400; 975 | } 976 | 977 | .#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud { 978 | font-family: 'Font Awesome 5 Brands'; 979 | font-weight: 400; 980 | } 981 | 982 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o { 983 | font-family: 'Font Awesome 5 Free'; 984 | font-weight: 400; 985 | } 986 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf); } 987 | 988 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o { 989 | font-family: 'Font Awesome 5 Free'; 990 | font-weight: 400; 991 | } 992 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word); } 993 | 994 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o { 995 | font-family: 'Font Awesome 5 Free'; 996 | font-weight: 400; 997 | } 998 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel); } 999 | 1000 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o { 1001 | font-family: 'Font Awesome 5 Free'; 1002 | font-weight: 400; 1003 | } 1004 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint); } 1005 | 1006 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o { 1007 | font-family: 'Font Awesome 5 Free'; 1008 | font-weight: 400; 1009 | } 1010 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image); } 1011 | 1012 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o { 1013 | font-family: 'Font Awesome 5 Free'; 1014 | font-weight: 400; 1015 | } 1016 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: fa-content($fa-var-file-image); } 1017 | 1018 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o { 1019 | font-family: 'Font Awesome 5 Free'; 1020 | font-weight: 400; 1021 | } 1022 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: fa-content($fa-var-file-image); } 1023 | 1024 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o { 1025 | font-family: 'Font Awesome 5 Free'; 1026 | font-weight: 400; 1027 | } 1028 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive); } 1029 | 1030 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o { 1031 | font-family: 'Font Awesome 5 Free'; 1032 | font-weight: 400; 1033 | } 1034 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: fa-content($fa-var-file-archive); } 1035 | 1036 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o { 1037 | font-family: 'Font Awesome 5 Free'; 1038 | font-weight: 400; 1039 | } 1040 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio); } 1041 | 1042 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o { 1043 | font-family: 'Font Awesome 5 Free'; 1044 | font-weight: 400; 1045 | } 1046 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: fa-content($fa-var-file-audio); } 1047 | 1048 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o { 1049 | font-family: 'Font Awesome 5 Free'; 1050 | font-weight: 400; 1051 | } 1052 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video); } 1053 | 1054 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o { 1055 | font-family: 'Font Awesome 5 Free'; 1056 | font-weight: 400; 1057 | } 1058 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: fa-content($fa-var-file-video); } 1059 | 1060 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o { 1061 | font-family: 'Font Awesome 5 Free'; 1062 | font-weight: 400; 1063 | } 1064 | .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code); } 1065 | 1066 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vine { 1067 | font-family: 'Font Awesome 5 Brands'; 1068 | font-weight: 400; 1069 | } 1070 | 1071 | .#{$fa-css-prefix}.#{$fa-css-prefix}-codepen { 1072 | font-family: 'Font Awesome 5 Brands'; 1073 | font-weight: 400; 1074 | } 1075 | 1076 | .#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle { 1077 | font-family: 'Font Awesome 5 Brands'; 1078 | font-weight: 400; 1079 | } 1080 | 1081 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring { 1082 | font-family: 'Font Awesome 5 Free'; 1083 | font-weight: 400; 1084 | } 1085 | 1086 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy { 1087 | font-family: 'Font Awesome 5 Free'; 1088 | font-weight: 400; 1089 | } 1090 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); } 1091 | 1092 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy { 1093 | font-family: 'Font Awesome 5 Free'; 1094 | font-weight: 400; 1095 | } 1096 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); } 1097 | 1098 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver { 1099 | font-family: 'Font Awesome 5 Free'; 1100 | font-weight: 400; 1101 | } 1102 | .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); } 1103 | 1104 | .#{$fa-css-prefix}.#{$fa-css-prefix}-support { 1105 | font-family: 'Font Awesome 5 Free'; 1106 | font-weight: 400; 1107 | } 1108 | .#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: fa-content($fa-var-life-ring); } 1109 | 1110 | .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: fa-content($fa-var-circle-notch); } 1111 | 1112 | .#{$fa-css-prefix}.#{$fa-css-prefix}-rebel { 1113 | font-family: 'Font Awesome 5 Brands'; 1114 | font-weight: 400; 1115 | } 1116 | 1117 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ra { 1118 | font-family: 'Font Awesome 5 Brands'; 1119 | font-weight: 400; 1120 | } 1121 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: fa-content($fa-var-rebel); } 1122 | 1123 | .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance { 1124 | font-family: 'Font Awesome 5 Brands'; 1125 | font-weight: 400; 1126 | } 1127 | .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: fa-content($fa-var-rebel); } 1128 | 1129 | .#{$fa-css-prefix}.#{$fa-css-prefix}-empire { 1130 | font-family: 'Font Awesome 5 Brands'; 1131 | font-weight: 400; 1132 | } 1133 | 1134 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ge { 1135 | font-family: 'Font Awesome 5 Brands'; 1136 | font-weight: 400; 1137 | } 1138 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: fa-content($fa-var-empire); } 1139 | 1140 | .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square { 1141 | font-family: 'Font Awesome 5 Brands'; 1142 | font-weight: 400; 1143 | } 1144 | 1145 | .#{$fa-css-prefix}.#{$fa-css-prefix}-git { 1146 | font-family: 'Font Awesome 5 Brands'; 1147 | font-weight: 400; 1148 | } 1149 | 1150 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news { 1151 | font-family: 'Font Awesome 5 Brands'; 1152 | font-weight: 400; 1153 | } 1154 | 1155 | .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square { 1156 | font-family: 'Font Awesome 5 Brands'; 1157 | font-weight: 400; 1158 | } 1159 | .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: fa-content($fa-var-hacker-news); } 1160 | 1161 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square { 1162 | font-family: 'Font Awesome 5 Brands'; 1163 | font-weight: 400; 1164 | } 1165 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: fa-content($fa-var-hacker-news); } 1166 | 1167 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo { 1168 | font-family: 'Font Awesome 5 Brands'; 1169 | font-weight: 400; 1170 | } 1171 | 1172 | .#{$fa-css-prefix}.#{$fa-css-prefix}-qq { 1173 | font-family: 'Font Awesome 5 Brands'; 1174 | font-weight: 400; 1175 | } 1176 | 1177 | .#{$fa-css-prefix}.#{$fa-css-prefix}-weixin { 1178 | font-family: 'Font Awesome 5 Brands'; 1179 | font-weight: 400; 1180 | } 1181 | 1182 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat { 1183 | font-family: 'Font Awesome 5 Brands'; 1184 | font-weight: 400; 1185 | } 1186 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: fa-content($fa-var-weixin); } 1187 | 1188 | .#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: fa-content($fa-var-paper-plane); } 1189 | 1190 | .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o { 1191 | font-family: 'Font Awesome 5 Free'; 1192 | font-weight: 400; 1193 | } 1194 | .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane); } 1195 | 1196 | .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o { 1197 | font-family: 'Font Awesome 5 Free'; 1198 | font-weight: 400; 1199 | } 1200 | .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: fa-content($fa-var-paper-plane); } 1201 | 1202 | .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin { 1203 | font-family: 'Font Awesome 5 Free'; 1204 | font-weight: 400; 1205 | } 1206 | .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: fa-content($fa-var-circle); } 1207 | 1208 | .#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-heading); } 1209 | 1210 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders-h); } 1211 | 1212 | .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o { 1213 | font-family: 'Font Awesome 5 Free'; 1214 | font-weight: 400; 1215 | } 1216 | .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol); } 1217 | 1218 | .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o { 1219 | font-family: 'Font Awesome 5 Free'; 1220 | font-weight: 400; 1221 | } 1222 | .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: fa-content($fa-var-futbol); } 1223 | 1224 | .#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare { 1225 | font-family: 'Font Awesome 5 Brands'; 1226 | font-weight: 400; 1227 | } 1228 | 1229 | .#{$fa-css-prefix}.#{$fa-css-prefix}-twitch { 1230 | font-family: 'Font Awesome 5 Brands'; 1231 | font-weight: 400; 1232 | } 1233 | 1234 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yelp { 1235 | font-family: 'Font Awesome 5 Brands'; 1236 | font-weight: 400; 1237 | } 1238 | 1239 | .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o { 1240 | font-family: 'Font Awesome 5 Free'; 1241 | font-weight: 400; 1242 | } 1243 | .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper); } 1244 | 1245 | .#{$fa-css-prefix}.#{$fa-css-prefix}-paypal { 1246 | font-family: 'Font Awesome 5 Brands'; 1247 | font-weight: 400; 1248 | } 1249 | 1250 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet { 1251 | font-family: 'Font Awesome 5 Brands'; 1252 | font-weight: 400; 1253 | } 1254 | 1255 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa { 1256 | font-family: 'Font Awesome 5 Brands'; 1257 | font-weight: 400; 1258 | } 1259 | 1260 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard { 1261 | font-family: 'Font Awesome 5 Brands'; 1262 | font-weight: 400; 1263 | } 1264 | 1265 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover { 1266 | font-family: 'Font Awesome 5 Brands'; 1267 | font-weight: 400; 1268 | } 1269 | 1270 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex { 1271 | font-family: 'Font Awesome 5 Brands'; 1272 | font-weight: 400; 1273 | } 1274 | 1275 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal { 1276 | font-family: 'Font Awesome 5 Brands'; 1277 | font-weight: 400; 1278 | } 1279 | 1280 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe { 1281 | font-family: 'Font Awesome 5 Brands'; 1282 | font-weight: 400; 1283 | } 1284 | 1285 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o { 1286 | font-family: 'Font Awesome 5 Free'; 1287 | font-weight: 400; 1288 | } 1289 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash); } 1290 | 1291 | .#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash-alt); } 1292 | 1293 | .#{$fa-css-prefix}.#{$fa-css-prefix}-copyright { 1294 | font-family: 'Font Awesome 5 Free'; 1295 | font-weight: 400; 1296 | } 1297 | 1298 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eye-dropper); } 1299 | 1300 | .#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-chart-area); } 1301 | 1302 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-chart-pie); } 1303 | 1304 | .#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-chart-line); } 1305 | 1306 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm { 1307 | font-family: 'Font Awesome 5 Brands'; 1308 | font-weight: 400; 1309 | } 1310 | 1311 | .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square { 1312 | font-family: 'Font Awesome 5 Brands'; 1313 | font-weight: 400; 1314 | } 1315 | 1316 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost { 1317 | font-family: 'Font Awesome 5 Brands'; 1318 | font-weight: 400; 1319 | } 1320 | 1321 | .#{$fa-css-prefix}.#{$fa-css-prefix}-angellist { 1322 | font-family: 'Font Awesome 5 Brands'; 1323 | font-weight: 400; 1324 | } 1325 | 1326 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc { 1327 | font-family: 'Font Awesome 5 Free'; 1328 | font-weight: 400; 1329 | } 1330 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: fa-content($fa-var-closed-captioning); } 1331 | 1332 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: fa-content($fa-var-shekel-sign); } 1333 | 1334 | .#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: fa-content($fa-var-shekel-sign); } 1335 | 1336 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: fa-content($fa-var-shekel-sign); } 1337 | 1338 | .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath { 1339 | font-family: 'Font Awesome 5 Brands'; 1340 | font-weight: 400; 1341 | } 1342 | .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); } 1343 | 1344 | .#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads { 1345 | font-family: 'Font Awesome 5 Brands'; 1346 | font-weight: 400; 1347 | } 1348 | 1349 | .#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop { 1350 | font-family: 'Font Awesome 5 Brands'; 1351 | font-weight: 400; 1352 | } 1353 | 1354 | .#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube { 1355 | font-family: 'Font Awesome 5 Brands'; 1356 | font-weight: 400; 1357 | } 1358 | 1359 | .#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee { 1360 | font-family: 'Font Awesome 5 Brands'; 1361 | font-weight: 400; 1362 | } 1363 | 1364 | .#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub { 1365 | font-family: 'Font Awesome 5 Brands'; 1366 | font-weight: 400; 1367 | } 1368 | 1369 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy { 1370 | font-family: 'Font Awesome 5 Brands'; 1371 | font-weight: 400; 1372 | } 1373 | 1374 | .#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk { 1375 | font-family: 'Font Awesome 5 Brands'; 1376 | font-weight: 400; 1377 | } 1378 | 1379 | .#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt { 1380 | font-family: 'Font Awesome 5 Brands'; 1381 | font-weight: 400; 1382 | } 1383 | 1384 | .#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas { 1385 | font-family: 'Font Awesome 5 Brands'; 1386 | font-weight: 400; 1387 | } 1388 | 1389 | .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond { 1390 | font-family: 'Font Awesome 5 Free'; 1391 | font-weight: 400; 1392 | } 1393 | .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-gem); } 1394 | 1395 | .#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: fa-content($fa-var-transgender); } 1396 | 1397 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official { 1398 | font-family: 'Font Awesome 5 Brands'; 1399 | font-weight: 400; 1400 | } 1401 | .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook); } 1402 | 1403 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p { 1404 | font-family: 'Font Awesome 5 Brands'; 1405 | font-weight: 400; 1406 | } 1407 | 1408 | .#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp { 1409 | font-family: 'Font Awesome 5 Brands'; 1410 | font-weight: 400; 1411 | } 1412 | 1413 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-bed); } 1414 | 1415 | .#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin { 1416 | font-family: 'Font Awesome 5 Brands'; 1417 | font-weight: 400; 1418 | } 1419 | 1420 | .#{$fa-css-prefix}.#{$fa-css-prefix}-medium { 1421 | font-family: 'Font Awesome 5 Brands'; 1422 | font-weight: 400; 1423 | } 1424 | 1425 | .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator { 1426 | font-family: 'Font Awesome 5 Brands'; 1427 | font-weight: 400; 1428 | } 1429 | 1430 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yc { 1431 | font-family: 'Font Awesome 5 Brands'; 1432 | font-weight: 400; 1433 | } 1434 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: fa-content($fa-var-y-combinator); } 1435 | 1436 | .#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster { 1437 | font-family: 'Font Awesome 5 Brands'; 1438 | font-weight: 400; 1439 | } 1440 | 1441 | .#{$fa-css-prefix}.#{$fa-css-prefix}-opencart { 1442 | font-family: 'Font Awesome 5 Brands'; 1443 | font-weight: 400; 1444 | } 1445 | 1446 | .#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl { 1447 | font-family: 'Font Awesome 5 Brands'; 1448 | font-weight: 400; 1449 | } 1450 | 1451 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: fa-content($fa-var-battery-full); } 1452 | 1453 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: fa-content($fa-var-battery-full); } 1454 | 1455 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: fa-content($fa-var-battery-three-quarters); } 1456 | 1457 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: fa-content($fa-var-battery-half); } 1458 | 1459 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: fa-content($fa-var-battery-quarter); } 1460 | 1461 | .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: fa-content($fa-var-battery-empty); } 1462 | 1463 | .#{$fa-css-prefix}.#{$fa-css-prefix}-object-group { 1464 | font-family: 'Font Awesome 5 Free'; 1465 | font-weight: 400; 1466 | } 1467 | 1468 | .#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup { 1469 | font-family: 'Font Awesome 5 Free'; 1470 | font-weight: 400; 1471 | } 1472 | 1473 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o { 1474 | font-family: 'Font Awesome 5 Free'; 1475 | font-weight: 400; 1476 | } 1477 | .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note); } 1478 | 1479 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb { 1480 | font-family: 'Font Awesome 5 Brands'; 1481 | font-weight: 400; 1482 | } 1483 | 1484 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club { 1485 | font-family: 'Font Awesome 5 Brands'; 1486 | font-weight: 400; 1487 | } 1488 | 1489 | .#{$fa-css-prefix}.#{$fa-css-prefix}-clone { 1490 | font-family: 'Font Awesome 5 Free'; 1491 | font-weight: 400; 1492 | } 1493 | 1494 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o { 1495 | font-family: 'Font Awesome 5 Free'; 1496 | font-weight: 400; 1497 | } 1498 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); } 1499 | 1500 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: fa-content($fa-var-hourglass-start); } 1501 | 1502 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: fa-content($fa-var-hourglass-half); } 1503 | 1504 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: fa-content($fa-var-hourglass-end); } 1505 | 1506 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o { 1507 | font-family: 'Font Awesome 5 Free'; 1508 | font-weight: 400; 1509 | } 1510 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock); } 1511 | 1512 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o { 1513 | font-family: 'Font Awesome 5 Free'; 1514 | font-weight: 400; 1515 | } 1516 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: fa-content($fa-var-hand-rock); } 1517 | 1518 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o { 1519 | font-family: 'Font Awesome 5 Free'; 1520 | font-weight: 400; 1521 | } 1522 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper); } 1523 | 1524 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o { 1525 | font-family: 'Font Awesome 5 Free'; 1526 | font-weight: 400; 1527 | } 1528 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: fa-content($fa-var-hand-paper); } 1529 | 1530 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o { 1531 | font-family: 'Font Awesome 5 Free'; 1532 | font-weight: 400; 1533 | } 1534 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors); } 1535 | 1536 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o { 1537 | font-family: 'Font Awesome 5 Free'; 1538 | font-weight: 400; 1539 | } 1540 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard); } 1541 | 1542 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o { 1543 | font-family: 'Font Awesome 5 Free'; 1544 | font-weight: 400; 1545 | } 1546 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock); } 1547 | 1548 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o { 1549 | font-family: 'Font Awesome 5 Free'; 1550 | font-weight: 400; 1551 | } 1552 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer); } 1553 | 1554 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o { 1555 | font-family: 'Font Awesome 5 Free'; 1556 | font-weight: 400; 1557 | } 1558 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace); } 1559 | 1560 | .#{$fa-css-prefix}.#{$fa-css-prefix}-registered { 1561 | font-family: 'Font Awesome 5 Free'; 1562 | font-weight: 400; 1563 | } 1564 | 1565 | .#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons { 1566 | font-family: 'Font Awesome 5 Brands'; 1567 | font-weight: 400; 1568 | } 1569 | 1570 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gg { 1571 | font-family: 'Font Awesome 5 Brands'; 1572 | font-weight: 400; 1573 | } 1574 | 1575 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle { 1576 | font-family: 'Font Awesome 5 Brands'; 1577 | font-weight: 400; 1578 | } 1579 | 1580 | .#{$fa-css-prefix}.#{$fa-css-prefix}-tripadvisor { 1581 | font-family: 'Font Awesome 5 Brands'; 1582 | font-weight: 400; 1583 | } 1584 | 1585 | .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki { 1586 | font-family: 'Font Awesome 5 Brands'; 1587 | font-weight: 400; 1588 | } 1589 | 1590 | .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square { 1591 | font-family: 'Font Awesome 5 Brands'; 1592 | font-weight: 400; 1593 | } 1594 | 1595 | .#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket { 1596 | font-family: 'Font Awesome 5 Brands'; 1597 | font-weight: 400; 1598 | } 1599 | 1600 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w { 1601 | font-family: 'Font Awesome 5 Brands'; 1602 | font-weight: 400; 1603 | } 1604 | 1605 | .#{$fa-css-prefix}.#{$fa-css-prefix}-safari { 1606 | font-family: 'Font Awesome 5 Brands'; 1607 | font-weight: 400; 1608 | } 1609 | 1610 | .#{$fa-css-prefix}.#{$fa-css-prefix}-chrome { 1611 | font-family: 'Font Awesome 5 Brands'; 1612 | font-weight: 400; 1613 | } 1614 | 1615 | .#{$fa-css-prefix}.#{$fa-css-prefix}-firefox { 1616 | font-family: 'Font Awesome 5 Brands'; 1617 | font-weight: 400; 1618 | } 1619 | 1620 | .#{$fa-css-prefix}.#{$fa-css-prefix}-opera { 1621 | font-family: 'Font Awesome 5 Brands'; 1622 | font-weight: 400; 1623 | } 1624 | 1625 | .#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer { 1626 | font-family: 'Font Awesome 5 Brands'; 1627 | font-weight: 400; 1628 | } 1629 | 1630 | .#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-tv); } 1631 | 1632 | .#{$fa-css-prefix}.#{$fa-css-prefix}-contao { 1633 | font-family: 'Font Awesome 5 Brands'; 1634 | font-weight: 400; 1635 | } 1636 | 1637 | .#{$fa-css-prefix}.#{$fa-css-prefix}-500px { 1638 | font-family: 'Font Awesome 5 Brands'; 1639 | font-weight: 400; 1640 | } 1641 | 1642 | .#{$fa-css-prefix}.#{$fa-css-prefix}-amazon { 1643 | font-family: 'Font Awesome 5 Brands'; 1644 | font-weight: 400; 1645 | } 1646 | 1647 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o { 1648 | font-family: 'Font Awesome 5 Free'; 1649 | font-weight: 400; 1650 | } 1651 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus); } 1652 | 1653 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o { 1654 | font-family: 'Font Awesome 5 Free'; 1655 | font-weight: 400; 1656 | } 1657 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus); } 1658 | 1659 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o { 1660 | font-family: 'Font Awesome 5 Free'; 1661 | font-weight: 400; 1662 | } 1663 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times); } 1664 | 1665 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o { 1666 | font-family: 'Font Awesome 5 Free'; 1667 | font-weight: 400; 1668 | } 1669 | .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check); } 1670 | 1671 | .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o { 1672 | font-family: 'Font Awesome 5 Free'; 1673 | font-weight: 400; 1674 | } 1675 | .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); } 1676 | 1677 | .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); } 1678 | 1679 | .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o { 1680 | font-family: 'Font Awesome 5 Free'; 1681 | font-weight: 400; 1682 | } 1683 | .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-comment-dots); } 1684 | 1685 | .#{$fa-css-prefix}.#{$fa-css-prefix}-houzz { 1686 | font-family: 'Font Awesome 5 Brands'; 1687 | font-weight: 400; 1688 | } 1689 | 1690 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo { 1691 | font-family: 'Font Awesome 5 Brands'; 1692 | font-weight: 400; 1693 | } 1694 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo-v); } 1695 | 1696 | .#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie { 1697 | font-family: 'Font Awesome 5 Brands'; 1698 | font-weight: 400; 1699 | } 1700 | 1701 | .#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons { 1702 | font-family: 'Font Awesome 5 Brands'; 1703 | font-weight: 400; 1704 | } 1705 | 1706 | .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien { 1707 | font-family: 'Font Awesome 5 Brands'; 1708 | font-weight: 400; 1709 | } 1710 | 1711 | .#{$fa-css-prefix}.#{$fa-css-prefix}-edge { 1712 | font-family: 'Font Awesome 5 Brands'; 1713 | font-weight: 400; 1714 | } 1715 | 1716 | .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card); } 1717 | 1718 | .#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie { 1719 | font-family: 'Font Awesome 5 Brands'; 1720 | font-weight: 400; 1721 | } 1722 | 1723 | .#{$fa-css-prefix}.#{$fa-css-prefix}-modx { 1724 | font-family: 'Font Awesome 5 Brands'; 1725 | font-weight: 400; 1726 | } 1727 | 1728 | .#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome { 1729 | font-family: 'Font Awesome 5 Brands'; 1730 | font-weight: 400; 1731 | } 1732 | 1733 | .#{$fa-css-prefix}.#{$fa-css-prefix}-usb { 1734 | font-family: 'Font Awesome 5 Brands'; 1735 | font-weight: 400; 1736 | } 1737 | 1738 | .#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt { 1739 | font-family: 'Font Awesome 5 Brands'; 1740 | font-weight: 400; 1741 | } 1742 | 1743 | .#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud { 1744 | font-family: 'Font Awesome 5 Brands'; 1745 | font-weight: 400; 1746 | } 1747 | 1748 | .#{$fa-css-prefix}.#{$fa-css-prefix}-scribd { 1749 | font-family: 'Font Awesome 5 Brands'; 1750 | font-weight: 400; 1751 | } 1752 | 1753 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o { 1754 | font-family: 'Font Awesome 5 Free'; 1755 | font-weight: 400; 1756 | } 1757 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle); } 1758 | 1759 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o { 1760 | font-family: 'Font Awesome 5 Free'; 1761 | font-weight: 400; 1762 | } 1763 | .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle); } 1764 | 1765 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth { 1766 | font-family: 'Font Awesome 5 Brands'; 1767 | font-weight: 400; 1768 | } 1769 | 1770 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b { 1771 | font-family: 'Font Awesome 5 Brands'; 1772 | font-weight: 400; 1773 | } 1774 | 1775 | .#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab { 1776 | font-family: 'Font Awesome 5 Brands'; 1777 | font-weight: 400; 1778 | } 1779 | 1780 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner { 1781 | font-family: 'Font Awesome 5 Brands'; 1782 | font-weight: 400; 1783 | } 1784 | 1785 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms { 1786 | font-family: 'Font Awesome 5 Brands'; 1787 | font-weight: 400; 1788 | } 1789 | 1790 | .#{$fa-css-prefix}.#{$fa-css-prefix}-envira { 1791 | font-family: 'Font Awesome 5 Brands'; 1792 | font-weight: 400; 1793 | } 1794 | 1795 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt { 1796 | font-family: 'Font Awesome 5 Brands'; 1797 | font-weight: 400; 1798 | } 1799 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-accessible-icon); } 1800 | 1801 | .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o { 1802 | font-family: 'Font Awesome 5 Free'; 1803 | font-weight: 400; 1804 | } 1805 | .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle); } 1806 | 1807 | .#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-phone-volume); } 1808 | 1809 | .#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); } 1810 | 1811 | .#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: fa-content($fa-var-deaf); } 1812 | 1813 | .#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: fa-content($fa-var-deaf); } 1814 | 1815 | .#{$fa-css-prefix}.#{$fa-css-prefix}-glide { 1816 | font-family: 'Font Awesome 5 Brands'; 1817 | font-weight: 400; 1818 | } 1819 | 1820 | .#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g { 1821 | font-family: 'Font Awesome 5 Brands'; 1822 | font-weight: 400; 1823 | } 1824 | 1825 | .#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: fa-content($fa-var-sign-language); } 1826 | 1827 | .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo { 1828 | font-family: 'Font Awesome 5 Brands'; 1829 | font-weight: 400; 1830 | } 1831 | 1832 | .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square { 1833 | font-family: 'Font Awesome 5 Brands'; 1834 | font-weight: 400; 1835 | } 1836 | 1837 | .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat { 1838 | font-family: 'Font Awesome 5 Brands'; 1839 | font-weight: 400; 1840 | } 1841 | 1842 | .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost { 1843 | font-family: 'Font Awesome 5 Brands'; 1844 | font-weight: 400; 1845 | } 1846 | 1847 | .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square { 1848 | font-family: 'Font Awesome 5 Brands'; 1849 | font-weight: 400; 1850 | } 1851 | 1852 | .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper { 1853 | font-family: 'Font Awesome 5 Brands'; 1854 | font-weight: 400; 1855 | } 1856 | 1857 | .#{$fa-css-prefix}.#{$fa-css-prefix}-first-order { 1858 | font-family: 'Font Awesome 5 Brands'; 1859 | font-weight: 400; 1860 | } 1861 | 1862 | .#{$fa-css-prefix}.#{$fa-css-prefix}-yoast { 1863 | font-family: 'Font Awesome 5 Brands'; 1864 | font-weight: 400; 1865 | } 1866 | 1867 | .#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle { 1868 | font-family: 'Font Awesome 5 Brands'; 1869 | font-weight: 400; 1870 | } 1871 | 1872 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official { 1873 | font-family: 'Font Awesome 5 Brands'; 1874 | font-weight: 400; 1875 | } 1876 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus); } 1877 | 1878 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle { 1879 | font-family: 'Font Awesome 5 Brands'; 1880 | font-weight: 400; 1881 | } 1882 | .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: fa-content($fa-var-google-plus); } 1883 | 1884 | .#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome { 1885 | font-family: 'Font Awesome 5 Brands'; 1886 | font-weight: 400; 1887 | } 1888 | 1889 | .#{$fa-css-prefix}.#{$fa-css-prefix}-fa { 1890 | font-family: 'Font Awesome 5 Brands'; 1891 | font-weight: 400; 1892 | } 1893 | .#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: fa-content($fa-var-font-awesome); } 1894 | 1895 | .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o { 1896 | font-family: 'Font Awesome 5 Free'; 1897 | font-weight: 400; 1898 | } 1899 | .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake); } 1900 | 1901 | .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o { 1902 | font-family: 'Font Awesome 5 Free'; 1903 | font-weight: 400; 1904 | } 1905 | .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open); } 1906 | 1907 | .#{$fa-css-prefix}.#{$fa-css-prefix}-linode { 1908 | font-family: 'Font Awesome 5 Brands'; 1909 | font-weight: 400; 1910 | } 1911 | 1912 | .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o { 1913 | font-family: 'Font Awesome 5 Free'; 1914 | font-weight: 400; 1915 | } 1916 | .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book); } 1917 | 1918 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: fa-content($fa-var-address-card); } 1919 | 1920 | .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o { 1921 | font-family: 'Font Awesome 5 Free'; 1922 | font-weight: 400; 1923 | } 1924 | .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card); } 1925 | 1926 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o { 1927 | font-family: 'Font Awesome 5 Free'; 1928 | font-weight: 400; 1929 | } 1930 | .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: fa-content($fa-var-address-card); } 1931 | 1932 | .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o { 1933 | font-family: 'Font Awesome 5 Free'; 1934 | font-weight: 400; 1935 | } 1936 | .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle); } 1937 | 1938 | .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o { 1939 | font-family: 'Font Awesome 5 Free'; 1940 | font-weight: 400; 1941 | } 1942 | .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user); } 1943 | 1944 | .#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge { 1945 | font-family: 'Font Awesome 5 Free'; 1946 | font-weight: 400; 1947 | } 1948 | 1949 | .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: fa-content($fa-var-id-card); } 1950 | 1951 | .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o { 1952 | font-family: 'Font Awesome 5 Free'; 1953 | font-weight: 400; 1954 | } 1955 | .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card); } 1956 | 1957 | .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o { 1958 | font-family: 'Font Awesome 5 Free'; 1959 | font-weight: 400; 1960 | } 1961 | .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: fa-content($fa-var-id-card); } 1962 | 1963 | .#{$fa-css-prefix}.#{$fa-css-prefix}-quora { 1964 | font-family: 'Font Awesome 5 Brands'; 1965 | font-weight: 400; 1966 | } 1967 | 1968 | .#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp { 1969 | font-family: 'Font Awesome 5 Brands'; 1970 | font-weight: 400; 1971 | } 1972 | 1973 | .#{$fa-css-prefix}.#{$fa-css-prefix}-telegram { 1974 | font-family: 'Font Awesome 5 Brands'; 1975 | font-weight: 400; 1976 | } 1977 | 1978 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: fa-content($fa-var-thermometer-full); } 1979 | 1980 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer-full); } 1981 | 1982 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: fa-content($fa-var-thermometer-three-quarters); } 1983 | 1984 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: fa-content($fa-var-thermometer-half); } 1985 | 1986 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: fa-content($fa-var-thermometer-quarter); } 1987 | 1988 | .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: fa-content($fa-var-thermometer-empty); } 1989 | 1990 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: fa-content($fa-var-bath); } 1991 | 1992 | .#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: fa-content($fa-var-bath); } 1993 | 1994 | .#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize { 1995 | font-family: 'Font Awesome 5 Free'; 1996 | font-weight: 400; 1997 | } 1998 | 1999 | .#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore { 2000 | font-family: 'Font Awesome 5 Free'; 2001 | font-weight: 400; 2002 | } 2003 | 2004 | .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: fa-content($fa-var-window-close); } 2005 | 2006 | .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o { 2007 | font-family: 'Font Awesome 5 Free'; 2008 | font-weight: 400; 2009 | } 2010 | .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close); } 2011 | 2012 | .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o { 2013 | font-family: 'Font Awesome 5 Free'; 2014 | font-weight: 400; 2015 | } 2016 | .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: fa-content($fa-var-window-close); } 2017 | 2018 | .#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp { 2019 | font-family: 'Font Awesome 5 Brands'; 2020 | font-weight: 400; 2021 | } 2022 | 2023 | .#{$fa-css-prefix}.#{$fa-css-prefix}-grav { 2024 | font-family: 'Font Awesome 5 Brands'; 2025 | font-weight: 400; 2026 | } 2027 | 2028 | .#{$fa-css-prefix}.#{$fa-css-prefix}-etsy { 2029 | font-family: 'Font Awesome 5 Brands'; 2030 | font-weight: 400; 2031 | } 2032 | 2033 | .#{$fa-css-prefix}.#{$fa-css-prefix}-imdb { 2034 | font-family: 'Font Awesome 5 Brands'; 2035 | font-weight: 400; 2036 | } 2037 | 2038 | .#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry { 2039 | font-family: 'Font Awesome 5 Brands'; 2040 | font-weight: 400; 2041 | } 2042 | 2043 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast { 2044 | font-family: 'Font Awesome 5 Brands'; 2045 | font-weight: 400; 2046 | } 2047 | .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-sellcast); } 2048 | 2049 | .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o { 2050 | font-family: 'Font Awesome 5 Free'; 2051 | font-weight: 400; 2052 | } 2053 | .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake); } 2054 | 2055 | .#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers { 2056 | font-family: 'Font Awesome 5 Brands'; 2057 | font-weight: 400; 2058 | } 2059 | 2060 | .#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer { 2061 | font-family: 'Font Awesome 5 Brands'; 2062 | font-weight: 400; 2063 | } 2064 | 2065 | .#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); } 2066 | 2067 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | display: inline-block; 6 | height: 2em; 7 | line-height: 2em; 8 | position: relative; 9 | vertical-align: middle; 10 | width: ($fa-fw-width*2); 11 | } 12 | 13 | .#{$fa-css-prefix}-stack-1x, 14 | .#{$fa-css-prefix}-stack-2x { 15 | left: 0; 16 | position: absolute; 17 | text-align: center; 18 | width: 100%; 19 | } 20 | 21 | .#{$fa-css-prefix}-stack-1x { 22 | line-height: inherit; 23 | } 24 | 25 | .#{$fa-css-prefix}-stack-2x { 26 | font-size: 2em; 27 | } 28 | 29 | .#{$fa-css-prefix}-inverse { 30 | color: $fa-inverse; 31 | } 32 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | $fa-font-path: "../webfonts" !default; 5 | $fa-font-size-base: 16px !default; 6 | $fa-font-display: auto !default; 7 | $fa-css-prefix: fa !default; 8 | $fa-version: "5.12.0" !default; 9 | $fa-border-color: #eee !default; 10 | $fa-inverse: #fff !default; 11 | $fa-li-width: 2em !default; 12 | $fa-fw-width: (20em / 16); 13 | $fa-primary-opacity: 1 !default; 14 | $fa-secondary-opacity: .4 !default; 15 | 16 | // Convenience function used to set content property 17 | @function fa-content($fa-var) { 18 | @return unquote("\"#{ $fa-var }\""); 19 | } 20 | 21 | $fa-var-500px: \f26e; 22 | $fa-var-accessible-icon: \f368; 23 | $fa-var-accusoft: \f369; 24 | $fa-var-acquisitions-incorporated: \f6af; 25 | $fa-var-ad: \f641; 26 | $fa-var-address-book: \f2b9; 27 | $fa-var-address-card: \f2bb; 28 | $fa-var-adjust: \f042; 29 | $fa-var-adn: \f170; 30 | $fa-var-adobe: \f778; 31 | $fa-var-adversal: \f36a; 32 | $fa-var-affiliatetheme: \f36b; 33 | $fa-var-air-freshener: \f5d0; 34 | $fa-var-airbnb: \f834; 35 | $fa-var-algolia: \f36c; 36 | $fa-var-align-center: \f037; 37 | $fa-var-align-justify: \f039; 38 | $fa-var-align-left: \f036; 39 | $fa-var-align-right: \f038; 40 | $fa-var-alipay: \f642; 41 | $fa-var-allergies: \f461; 42 | $fa-var-amazon: \f270; 43 | $fa-var-amazon-pay: \f42c; 44 | $fa-var-ambulance: \f0f9; 45 | $fa-var-american-sign-language-interpreting: \f2a3; 46 | $fa-var-amilia: \f36d; 47 | $fa-var-anchor: \f13d; 48 | $fa-var-android: \f17b; 49 | $fa-var-angellist: \f209; 50 | $fa-var-angle-double-down: \f103; 51 | $fa-var-angle-double-left: \f100; 52 | $fa-var-angle-double-right: \f101; 53 | $fa-var-angle-double-up: \f102; 54 | $fa-var-angle-down: \f107; 55 | $fa-var-angle-left: \f104; 56 | $fa-var-angle-right: \f105; 57 | $fa-var-angle-up: \f106; 58 | $fa-var-angry: \f556; 59 | $fa-var-angrycreative: \f36e; 60 | $fa-var-angular: \f420; 61 | $fa-var-ankh: \f644; 62 | $fa-var-app-store: \f36f; 63 | $fa-var-app-store-ios: \f370; 64 | $fa-var-apper: \f371; 65 | $fa-var-apple: \f179; 66 | $fa-var-apple-alt: \f5d1; 67 | $fa-var-apple-pay: \f415; 68 | $fa-var-archive: \f187; 69 | $fa-var-archway: \f557; 70 | $fa-var-arrow-alt-circle-down: \f358; 71 | $fa-var-arrow-alt-circle-left: \f359; 72 | $fa-var-arrow-alt-circle-right: \f35a; 73 | $fa-var-arrow-alt-circle-up: \f35b; 74 | $fa-var-arrow-circle-down: \f0ab; 75 | $fa-var-arrow-circle-left: \f0a8; 76 | $fa-var-arrow-circle-right: \f0a9; 77 | $fa-var-arrow-circle-up: \f0aa; 78 | $fa-var-arrow-down: \f063; 79 | $fa-var-arrow-left: \f060; 80 | $fa-var-arrow-right: \f061; 81 | $fa-var-arrow-up: \f062; 82 | $fa-var-arrows-alt: \f0b2; 83 | $fa-var-arrows-alt-h: \f337; 84 | $fa-var-arrows-alt-v: \f338; 85 | $fa-var-artstation: \f77a; 86 | $fa-var-assistive-listening-systems: \f2a2; 87 | $fa-var-asterisk: \f069; 88 | $fa-var-asymmetrik: \f372; 89 | $fa-var-at: \f1fa; 90 | $fa-var-atlas: \f558; 91 | $fa-var-atlassian: \f77b; 92 | $fa-var-atom: \f5d2; 93 | $fa-var-audible: \f373; 94 | $fa-var-audio-description: \f29e; 95 | $fa-var-autoprefixer: \f41c; 96 | $fa-var-avianex: \f374; 97 | $fa-var-aviato: \f421; 98 | $fa-var-award: \f559; 99 | $fa-var-aws: \f375; 100 | $fa-var-baby: \f77c; 101 | $fa-var-baby-carriage: \f77d; 102 | $fa-var-backspace: \f55a; 103 | $fa-var-backward: \f04a; 104 | $fa-var-bacon: \f7e5; 105 | $fa-var-bahai: \f666; 106 | $fa-var-balance-scale: \f24e; 107 | $fa-var-balance-scale-left: \f515; 108 | $fa-var-balance-scale-right: \f516; 109 | $fa-var-ban: \f05e; 110 | $fa-var-band-aid: \f462; 111 | $fa-var-bandcamp: \f2d5; 112 | $fa-var-barcode: \f02a; 113 | $fa-var-bars: \f0c9; 114 | $fa-var-baseball-ball: \f433; 115 | $fa-var-basketball-ball: \f434; 116 | $fa-var-bath: \f2cd; 117 | $fa-var-battery-empty: \f244; 118 | $fa-var-battery-full: \f240; 119 | $fa-var-battery-half: \f242; 120 | $fa-var-battery-quarter: \f243; 121 | $fa-var-battery-three-quarters: \f241; 122 | $fa-var-battle-net: \f835; 123 | $fa-var-bed: \f236; 124 | $fa-var-beer: \f0fc; 125 | $fa-var-behance: \f1b4; 126 | $fa-var-behance-square: \f1b5; 127 | $fa-var-bell: \f0f3; 128 | $fa-var-bell-slash: \f1f6; 129 | $fa-var-bezier-curve: \f55b; 130 | $fa-var-bible: \f647; 131 | $fa-var-bicycle: \f206; 132 | $fa-var-biking: \f84a; 133 | $fa-var-bimobject: \f378; 134 | $fa-var-binoculars: \f1e5; 135 | $fa-var-biohazard: \f780; 136 | $fa-var-birthday-cake: \f1fd; 137 | $fa-var-bitbucket: \f171; 138 | $fa-var-bitcoin: \f379; 139 | $fa-var-bity: \f37a; 140 | $fa-var-black-tie: \f27e; 141 | $fa-var-blackberry: \f37b; 142 | $fa-var-blender: \f517; 143 | $fa-var-blender-phone: \f6b6; 144 | $fa-var-blind: \f29d; 145 | $fa-var-blog: \f781; 146 | $fa-var-blogger: \f37c; 147 | $fa-var-blogger-b: \f37d; 148 | $fa-var-bluetooth: \f293; 149 | $fa-var-bluetooth-b: \f294; 150 | $fa-var-bold: \f032; 151 | $fa-var-bolt: \f0e7; 152 | $fa-var-bomb: \f1e2; 153 | $fa-var-bone: \f5d7; 154 | $fa-var-bong: \f55c; 155 | $fa-var-book: \f02d; 156 | $fa-var-book-dead: \f6b7; 157 | $fa-var-book-medical: \f7e6; 158 | $fa-var-book-open: \f518; 159 | $fa-var-book-reader: \f5da; 160 | $fa-var-bookmark: \f02e; 161 | $fa-var-bootstrap: \f836; 162 | $fa-var-border-all: \f84c; 163 | $fa-var-border-none: \f850; 164 | $fa-var-border-style: \f853; 165 | $fa-var-bowling-ball: \f436; 166 | $fa-var-box: \f466; 167 | $fa-var-box-open: \f49e; 168 | $fa-var-boxes: \f468; 169 | $fa-var-braille: \f2a1; 170 | $fa-var-brain: \f5dc; 171 | $fa-var-bread-slice: \f7ec; 172 | $fa-var-briefcase: \f0b1; 173 | $fa-var-briefcase-medical: \f469; 174 | $fa-var-broadcast-tower: \f519; 175 | $fa-var-broom: \f51a; 176 | $fa-var-brush: \f55d; 177 | $fa-var-btc: \f15a; 178 | $fa-var-buffer: \f837; 179 | $fa-var-bug: \f188; 180 | $fa-var-building: \f1ad; 181 | $fa-var-bullhorn: \f0a1; 182 | $fa-var-bullseye: \f140; 183 | $fa-var-burn: \f46a; 184 | $fa-var-buromobelexperte: \f37f; 185 | $fa-var-bus: \f207; 186 | $fa-var-bus-alt: \f55e; 187 | $fa-var-business-time: \f64a; 188 | $fa-var-buy-n-large: \f8a6; 189 | $fa-var-buysellads: \f20d; 190 | $fa-var-calculator: \f1ec; 191 | $fa-var-calendar: \f133; 192 | $fa-var-calendar-alt: \f073; 193 | $fa-var-calendar-check: \f274; 194 | $fa-var-calendar-day: \f783; 195 | $fa-var-calendar-minus: \f272; 196 | $fa-var-calendar-plus: \f271; 197 | $fa-var-calendar-times: \f273; 198 | $fa-var-calendar-week: \f784; 199 | $fa-var-camera: \f030; 200 | $fa-var-camera-retro: \f083; 201 | $fa-var-campground: \f6bb; 202 | $fa-var-canadian-maple-leaf: \f785; 203 | $fa-var-candy-cane: \f786; 204 | $fa-var-cannabis: \f55f; 205 | $fa-var-capsules: \f46b; 206 | $fa-var-car: \f1b9; 207 | $fa-var-car-alt: \f5de; 208 | $fa-var-car-battery: \f5df; 209 | $fa-var-car-crash: \f5e1; 210 | $fa-var-car-side: \f5e4; 211 | $fa-var-caravan: \f8ff; 212 | $fa-var-caret-down: \f0d7; 213 | $fa-var-caret-left: \f0d9; 214 | $fa-var-caret-right: \f0da; 215 | $fa-var-caret-square-down: \f150; 216 | $fa-var-caret-square-left: \f191; 217 | $fa-var-caret-square-right: \f152; 218 | $fa-var-caret-square-up: \f151; 219 | $fa-var-caret-up: \f0d8; 220 | $fa-var-carrot: \f787; 221 | $fa-var-cart-arrow-down: \f218; 222 | $fa-var-cart-plus: \f217; 223 | $fa-var-cash-register: \f788; 224 | $fa-var-cat: \f6be; 225 | $fa-var-cc-amazon-pay: \f42d; 226 | $fa-var-cc-amex: \f1f3; 227 | $fa-var-cc-apple-pay: \f416; 228 | $fa-var-cc-diners-club: \f24c; 229 | $fa-var-cc-discover: \f1f2; 230 | $fa-var-cc-jcb: \f24b; 231 | $fa-var-cc-mastercard: \f1f1; 232 | $fa-var-cc-paypal: \f1f4; 233 | $fa-var-cc-stripe: \f1f5; 234 | $fa-var-cc-visa: \f1f0; 235 | $fa-var-centercode: \f380; 236 | $fa-var-centos: \f789; 237 | $fa-var-certificate: \f0a3; 238 | $fa-var-chair: \f6c0; 239 | $fa-var-chalkboard: \f51b; 240 | $fa-var-chalkboard-teacher: \f51c; 241 | $fa-var-charging-station: \f5e7; 242 | $fa-var-chart-area: \f1fe; 243 | $fa-var-chart-bar: \f080; 244 | $fa-var-chart-line: \f201; 245 | $fa-var-chart-pie: \f200; 246 | $fa-var-check: \f00c; 247 | $fa-var-check-circle: \f058; 248 | $fa-var-check-double: \f560; 249 | $fa-var-check-square: \f14a; 250 | $fa-var-cheese: \f7ef; 251 | $fa-var-chess: \f439; 252 | $fa-var-chess-bishop: \f43a; 253 | $fa-var-chess-board: \f43c; 254 | $fa-var-chess-king: \f43f; 255 | $fa-var-chess-knight: \f441; 256 | $fa-var-chess-pawn: \f443; 257 | $fa-var-chess-queen: \f445; 258 | $fa-var-chess-rook: \f447; 259 | $fa-var-chevron-circle-down: \f13a; 260 | $fa-var-chevron-circle-left: \f137; 261 | $fa-var-chevron-circle-right: \f138; 262 | $fa-var-chevron-circle-up: \f139; 263 | $fa-var-chevron-down: \f078; 264 | $fa-var-chevron-left: \f053; 265 | $fa-var-chevron-right: \f054; 266 | $fa-var-chevron-up: \f077; 267 | $fa-var-child: \f1ae; 268 | $fa-var-chrome: \f268; 269 | $fa-var-chromecast: \f838; 270 | $fa-var-church: \f51d; 271 | $fa-var-circle: \f111; 272 | $fa-var-circle-notch: \f1ce; 273 | $fa-var-city: \f64f; 274 | $fa-var-clinic-medical: \f7f2; 275 | $fa-var-clipboard: \f328; 276 | $fa-var-clipboard-check: \f46c; 277 | $fa-var-clipboard-list: \f46d; 278 | $fa-var-clock: \f017; 279 | $fa-var-clone: \f24d; 280 | $fa-var-closed-captioning: \f20a; 281 | $fa-var-cloud: \f0c2; 282 | $fa-var-cloud-download-alt: \f381; 283 | $fa-var-cloud-meatball: \f73b; 284 | $fa-var-cloud-moon: \f6c3; 285 | $fa-var-cloud-moon-rain: \f73c; 286 | $fa-var-cloud-rain: \f73d; 287 | $fa-var-cloud-showers-heavy: \f740; 288 | $fa-var-cloud-sun: \f6c4; 289 | $fa-var-cloud-sun-rain: \f743; 290 | $fa-var-cloud-upload-alt: \f382; 291 | $fa-var-cloudscale: \f383; 292 | $fa-var-cloudsmith: \f384; 293 | $fa-var-cloudversify: \f385; 294 | $fa-var-cocktail: \f561; 295 | $fa-var-code: \f121; 296 | $fa-var-code-branch: \f126; 297 | $fa-var-codepen: \f1cb; 298 | $fa-var-codiepie: \f284; 299 | $fa-var-coffee: \f0f4; 300 | $fa-var-cog: \f013; 301 | $fa-var-cogs: \f085; 302 | $fa-var-coins: \f51e; 303 | $fa-var-columns: \f0db; 304 | $fa-var-comment: \f075; 305 | $fa-var-comment-alt: \f27a; 306 | $fa-var-comment-dollar: \f651; 307 | $fa-var-comment-dots: \f4ad; 308 | $fa-var-comment-medical: \f7f5; 309 | $fa-var-comment-slash: \f4b3; 310 | $fa-var-comments: \f086; 311 | $fa-var-comments-dollar: \f653; 312 | $fa-var-compact-disc: \f51f; 313 | $fa-var-compass: \f14e; 314 | $fa-var-compress: \f066; 315 | $fa-var-compress-alt: \f422; 316 | $fa-var-compress-arrows-alt: \f78c; 317 | $fa-var-concierge-bell: \f562; 318 | $fa-var-confluence: \f78d; 319 | $fa-var-connectdevelop: \f20e; 320 | $fa-var-contao: \f26d; 321 | $fa-var-cookie: \f563; 322 | $fa-var-cookie-bite: \f564; 323 | $fa-var-copy: \f0c5; 324 | $fa-var-copyright: \f1f9; 325 | $fa-var-cotton-bureau: \f89e; 326 | $fa-var-couch: \f4b8; 327 | $fa-var-cpanel: \f388; 328 | $fa-var-creative-commons: \f25e; 329 | $fa-var-creative-commons-by: \f4e7; 330 | $fa-var-creative-commons-nc: \f4e8; 331 | $fa-var-creative-commons-nc-eu: \f4e9; 332 | $fa-var-creative-commons-nc-jp: \f4ea; 333 | $fa-var-creative-commons-nd: \f4eb; 334 | $fa-var-creative-commons-pd: \f4ec; 335 | $fa-var-creative-commons-pd-alt: \f4ed; 336 | $fa-var-creative-commons-remix: \f4ee; 337 | $fa-var-creative-commons-sa: \f4ef; 338 | $fa-var-creative-commons-sampling: \f4f0; 339 | $fa-var-creative-commons-sampling-plus: \f4f1; 340 | $fa-var-creative-commons-share: \f4f2; 341 | $fa-var-creative-commons-zero: \f4f3; 342 | $fa-var-credit-card: \f09d; 343 | $fa-var-critical-role: \f6c9; 344 | $fa-var-crop: \f125; 345 | $fa-var-crop-alt: \f565; 346 | $fa-var-cross: \f654; 347 | $fa-var-crosshairs: \f05b; 348 | $fa-var-crow: \f520; 349 | $fa-var-crown: \f521; 350 | $fa-var-crutch: \f7f7; 351 | $fa-var-css3: \f13c; 352 | $fa-var-css3-alt: \f38b; 353 | $fa-var-cube: \f1b2; 354 | $fa-var-cubes: \f1b3; 355 | $fa-var-cut: \f0c4; 356 | $fa-var-cuttlefish: \f38c; 357 | $fa-var-d-and-d: \f38d; 358 | $fa-var-d-and-d-beyond: \f6ca; 359 | $fa-var-dashcube: \f210; 360 | $fa-var-database: \f1c0; 361 | $fa-var-deaf: \f2a4; 362 | $fa-var-delicious: \f1a5; 363 | $fa-var-democrat: \f747; 364 | $fa-var-deploydog: \f38e; 365 | $fa-var-deskpro: \f38f; 366 | $fa-var-desktop: \f108; 367 | $fa-var-dev: \f6cc; 368 | $fa-var-deviantart: \f1bd; 369 | $fa-var-dharmachakra: \f655; 370 | $fa-var-dhl: \f790; 371 | $fa-var-diagnoses: \f470; 372 | $fa-var-diaspora: \f791; 373 | $fa-var-dice: \f522; 374 | $fa-var-dice-d20: \f6cf; 375 | $fa-var-dice-d6: \f6d1; 376 | $fa-var-dice-five: \f523; 377 | $fa-var-dice-four: \f524; 378 | $fa-var-dice-one: \f525; 379 | $fa-var-dice-six: \f526; 380 | $fa-var-dice-three: \f527; 381 | $fa-var-dice-two: \f528; 382 | $fa-var-digg: \f1a6; 383 | $fa-var-digital-ocean: \f391; 384 | $fa-var-digital-tachograph: \f566; 385 | $fa-var-directions: \f5eb; 386 | $fa-var-discord: \f392; 387 | $fa-var-discourse: \f393; 388 | $fa-var-divide: \f529; 389 | $fa-var-dizzy: \f567; 390 | $fa-var-dna: \f471; 391 | $fa-var-dochub: \f394; 392 | $fa-var-docker: \f395; 393 | $fa-var-dog: \f6d3; 394 | $fa-var-dollar-sign: \f155; 395 | $fa-var-dolly: \f472; 396 | $fa-var-dolly-flatbed: \f474; 397 | $fa-var-donate: \f4b9; 398 | $fa-var-door-closed: \f52a; 399 | $fa-var-door-open: \f52b; 400 | $fa-var-dot-circle: \f192; 401 | $fa-var-dove: \f4ba; 402 | $fa-var-download: \f019; 403 | $fa-var-draft2digital: \f396; 404 | $fa-var-drafting-compass: \f568; 405 | $fa-var-dragon: \f6d5; 406 | $fa-var-draw-polygon: \f5ee; 407 | $fa-var-dribbble: \f17d; 408 | $fa-var-dribbble-square: \f397; 409 | $fa-var-dropbox: \f16b; 410 | $fa-var-drum: \f569; 411 | $fa-var-drum-steelpan: \f56a; 412 | $fa-var-drumstick-bite: \f6d7; 413 | $fa-var-drupal: \f1a9; 414 | $fa-var-dumbbell: \f44b; 415 | $fa-var-dumpster: \f793; 416 | $fa-var-dumpster-fire: \f794; 417 | $fa-var-dungeon: \f6d9; 418 | $fa-var-dyalog: \f399; 419 | $fa-var-earlybirds: \f39a; 420 | $fa-var-ebay: \f4f4; 421 | $fa-var-edge: \f282; 422 | $fa-var-edit: \f044; 423 | $fa-var-egg: \f7fb; 424 | $fa-var-eject: \f052; 425 | $fa-var-elementor: \f430; 426 | $fa-var-ellipsis-h: \f141; 427 | $fa-var-ellipsis-v: \f142; 428 | $fa-var-ello: \f5f1; 429 | $fa-var-ember: \f423; 430 | $fa-var-empire: \f1d1; 431 | $fa-var-envelope: \f0e0; 432 | $fa-var-envelope-open: \f2b6; 433 | $fa-var-envelope-open-text: \f658; 434 | $fa-var-envelope-square: \f199; 435 | $fa-var-envira: \f299; 436 | $fa-var-equals: \f52c; 437 | $fa-var-eraser: \f12d; 438 | $fa-var-erlang: \f39d; 439 | $fa-var-ethereum: \f42e; 440 | $fa-var-ethernet: \f796; 441 | $fa-var-etsy: \f2d7; 442 | $fa-var-euro-sign: \f153; 443 | $fa-var-evernote: \f839; 444 | $fa-var-exchange-alt: \f362; 445 | $fa-var-exclamation: \f12a; 446 | $fa-var-exclamation-circle: \f06a; 447 | $fa-var-exclamation-triangle: \f071; 448 | $fa-var-expand: \f065; 449 | $fa-var-expand-alt: \f424; 450 | $fa-var-expand-arrows-alt: \f31e; 451 | $fa-var-expeditedssl: \f23e; 452 | $fa-var-external-link-alt: \f35d; 453 | $fa-var-external-link-square-alt: \f360; 454 | $fa-var-eye: \f06e; 455 | $fa-var-eye-dropper: \f1fb; 456 | $fa-var-eye-slash: \f070; 457 | $fa-var-facebook: \f09a; 458 | $fa-var-facebook-f: \f39e; 459 | $fa-var-facebook-messenger: \f39f; 460 | $fa-var-facebook-square: \f082; 461 | $fa-var-fan: \f863; 462 | $fa-var-fantasy-flight-games: \f6dc; 463 | $fa-var-fast-backward: \f049; 464 | $fa-var-fast-forward: \f050; 465 | $fa-var-fax: \f1ac; 466 | $fa-var-feather: \f52d; 467 | $fa-var-feather-alt: \f56b; 468 | $fa-var-fedex: \f797; 469 | $fa-var-fedora: \f798; 470 | $fa-var-female: \f182; 471 | $fa-var-fighter-jet: \f0fb; 472 | $fa-var-figma: \f799; 473 | $fa-var-file: \f15b; 474 | $fa-var-file-alt: \f15c; 475 | $fa-var-file-archive: \f1c6; 476 | $fa-var-file-audio: \f1c7; 477 | $fa-var-file-code: \f1c9; 478 | $fa-var-file-contract: \f56c; 479 | $fa-var-file-csv: \f6dd; 480 | $fa-var-file-download: \f56d; 481 | $fa-var-file-excel: \f1c3; 482 | $fa-var-file-export: \f56e; 483 | $fa-var-file-image: \f1c5; 484 | $fa-var-file-import: \f56f; 485 | $fa-var-file-invoice: \f570; 486 | $fa-var-file-invoice-dollar: \f571; 487 | $fa-var-file-medical: \f477; 488 | $fa-var-file-medical-alt: \f478; 489 | $fa-var-file-pdf: \f1c1; 490 | $fa-var-file-powerpoint: \f1c4; 491 | $fa-var-file-prescription: \f572; 492 | $fa-var-file-signature: \f573; 493 | $fa-var-file-upload: \f574; 494 | $fa-var-file-video: \f1c8; 495 | $fa-var-file-word: \f1c2; 496 | $fa-var-fill: \f575; 497 | $fa-var-fill-drip: \f576; 498 | $fa-var-film: \f008; 499 | $fa-var-filter: \f0b0; 500 | $fa-var-fingerprint: \f577; 501 | $fa-var-fire: \f06d; 502 | $fa-var-fire-alt: \f7e4; 503 | $fa-var-fire-extinguisher: \f134; 504 | $fa-var-firefox: \f269; 505 | $fa-var-firefox-browser: \f907; 506 | $fa-var-first-aid: \f479; 507 | $fa-var-first-order: \f2b0; 508 | $fa-var-first-order-alt: \f50a; 509 | $fa-var-firstdraft: \f3a1; 510 | $fa-var-fish: \f578; 511 | $fa-var-fist-raised: \f6de; 512 | $fa-var-flag: \f024; 513 | $fa-var-flag-checkered: \f11e; 514 | $fa-var-flag-usa: \f74d; 515 | $fa-var-flask: \f0c3; 516 | $fa-var-flickr: \f16e; 517 | $fa-var-flipboard: \f44d; 518 | $fa-var-flushed: \f579; 519 | $fa-var-fly: \f417; 520 | $fa-var-folder: \f07b; 521 | $fa-var-folder-minus: \f65d; 522 | $fa-var-folder-open: \f07c; 523 | $fa-var-folder-plus: \f65e; 524 | $fa-var-font: \f031; 525 | $fa-var-font-awesome: \f2b4; 526 | $fa-var-font-awesome-alt: \f35c; 527 | $fa-var-font-awesome-flag: \f425; 528 | $fa-var-font-awesome-logo-full: \f4e6; 529 | $fa-var-fonticons: \f280; 530 | $fa-var-fonticons-fi: \f3a2; 531 | $fa-var-football-ball: \f44e; 532 | $fa-var-fort-awesome: \f286; 533 | $fa-var-fort-awesome-alt: \f3a3; 534 | $fa-var-forumbee: \f211; 535 | $fa-var-forward: \f04e; 536 | $fa-var-foursquare: \f180; 537 | $fa-var-free-code-camp: \f2c5; 538 | $fa-var-freebsd: \f3a4; 539 | $fa-var-frog: \f52e; 540 | $fa-var-frown: \f119; 541 | $fa-var-frown-open: \f57a; 542 | $fa-var-fulcrum: \f50b; 543 | $fa-var-funnel-dollar: \f662; 544 | $fa-var-futbol: \f1e3; 545 | $fa-var-galactic-republic: \f50c; 546 | $fa-var-galactic-senate: \f50d; 547 | $fa-var-gamepad: \f11b; 548 | $fa-var-gas-pump: \f52f; 549 | $fa-var-gavel: \f0e3; 550 | $fa-var-gem: \f3a5; 551 | $fa-var-genderless: \f22d; 552 | $fa-var-get-pocket: \f265; 553 | $fa-var-gg: \f260; 554 | $fa-var-gg-circle: \f261; 555 | $fa-var-ghost: \f6e2; 556 | $fa-var-gift: \f06b; 557 | $fa-var-gifts: \f79c; 558 | $fa-var-git: \f1d3; 559 | $fa-var-git-alt: \f841; 560 | $fa-var-git-square: \f1d2; 561 | $fa-var-github: \f09b; 562 | $fa-var-github-alt: \f113; 563 | $fa-var-github-square: \f092; 564 | $fa-var-gitkraken: \f3a6; 565 | $fa-var-gitlab: \f296; 566 | $fa-var-gitter: \f426; 567 | $fa-var-glass-cheers: \f79f; 568 | $fa-var-glass-martini: \f000; 569 | $fa-var-glass-martini-alt: \f57b; 570 | $fa-var-glass-whiskey: \f7a0; 571 | $fa-var-glasses: \f530; 572 | $fa-var-glide: \f2a5; 573 | $fa-var-glide-g: \f2a6; 574 | $fa-var-globe: \f0ac; 575 | $fa-var-globe-africa: \f57c; 576 | $fa-var-globe-americas: \f57d; 577 | $fa-var-globe-asia: \f57e; 578 | $fa-var-globe-europe: \f7a2; 579 | $fa-var-gofore: \f3a7; 580 | $fa-var-golf-ball: \f450; 581 | $fa-var-goodreads: \f3a8; 582 | $fa-var-goodreads-g: \f3a9; 583 | $fa-var-google: \f1a0; 584 | $fa-var-google-drive: \f3aa; 585 | $fa-var-google-play: \f3ab; 586 | $fa-var-google-plus: \f2b3; 587 | $fa-var-google-plus-g: \f0d5; 588 | $fa-var-google-plus-square: \f0d4; 589 | $fa-var-google-wallet: \f1ee; 590 | $fa-var-gopuram: \f664; 591 | $fa-var-graduation-cap: \f19d; 592 | $fa-var-gratipay: \f184; 593 | $fa-var-grav: \f2d6; 594 | $fa-var-greater-than: \f531; 595 | $fa-var-greater-than-equal: \f532; 596 | $fa-var-grimace: \f57f; 597 | $fa-var-grin: \f580; 598 | $fa-var-grin-alt: \f581; 599 | $fa-var-grin-beam: \f582; 600 | $fa-var-grin-beam-sweat: \f583; 601 | $fa-var-grin-hearts: \f584; 602 | $fa-var-grin-squint: \f585; 603 | $fa-var-grin-squint-tears: \f586; 604 | $fa-var-grin-stars: \f587; 605 | $fa-var-grin-tears: \f588; 606 | $fa-var-grin-tongue: \f589; 607 | $fa-var-grin-tongue-squint: \f58a; 608 | $fa-var-grin-tongue-wink: \f58b; 609 | $fa-var-grin-wink: \f58c; 610 | $fa-var-grip-horizontal: \f58d; 611 | $fa-var-grip-lines: \f7a4; 612 | $fa-var-grip-lines-vertical: \f7a5; 613 | $fa-var-grip-vertical: \f58e; 614 | $fa-var-gripfire: \f3ac; 615 | $fa-var-grunt: \f3ad; 616 | $fa-var-guitar: \f7a6; 617 | $fa-var-gulp: \f3ae; 618 | $fa-var-h-square: \f0fd; 619 | $fa-var-hacker-news: \f1d4; 620 | $fa-var-hacker-news-square: \f3af; 621 | $fa-var-hackerrank: \f5f7; 622 | $fa-var-hamburger: \f805; 623 | $fa-var-hammer: \f6e3; 624 | $fa-var-hamsa: \f665; 625 | $fa-var-hand-holding: \f4bd; 626 | $fa-var-hand-holding-heart: \f4be; 627 | $fa-var-hand-holding-usd: \f4c0; 628 | $fa-var-hand-lizard: \f258; 629 | $fa-var-hand-middle-finger: \f806; 630 | $fa-var-hand-paper: \f256; 631 | $fa-var-hand-peace: \f25b; 632 | $fa-var-hand-point-down: \f0a7; 633 | $fa-var-hand-point-left: \f0a5; 634 | $fa-var-hand-point-right: \f0a4; 635 | $fa-var-hand-point-up: \f0a6; 636 | $fa-var-hand-pointer: \f25a; 637 | $fa-var-hand-rock: \f255; 638 | $fa-var-hand-scissors: \f257; 639 | $fa-var-hand-spock: \f259; 640 | $fa-var-hands: \f4c2; 641 | $fa-var-hands-helping: \f4c4; 642 | $fa-var-handshake: \f2b5; 643 | $fa-var-hanukiah: \f6e6; 644 | $fa-var-hard-hat: \f807; 645 | $fa-var-hashtag: \f292; 646 | $fa-var-hat-cowboy: \f8c0; 647 | $fa-var-hat-cowboy-side: \f8c1; 648 | $fa-var-hat-wizard: \f6e8; 649 | $fa-var-hdd: \f0a0; 650 | $fa-var-heading: \f1dc; 651 | $fa-var-headphones: \f025; 652 | $fa-var-headphones-alt: \f58f; 653 | $fa-var-headset: \f590; 654 | $fa-var-heart: \f004; 655 | $fa-var-heart-broken: \f7a9; 656 | $fa-var-heartbeat: \f21e; 657 | $fa-var-helicopter: \f533; 658 | $fa-var-highlighter: \f591; 659 | $fa-var-hiking: \f6ec; 660 | $fa-var-hippo: \f6ed; 661 | $fa-var-hips: \f452; 662 | $fa-var-hire-a-helper: \f3b0; 663 | $fa-var-history: \f1da; 664 | $fa-var-hockey-puck: \f453; 665 | $fa-var-holly-berry: \f7aa; 666 | $fa-var-home: \f015; 667 | $fa-var-hooli: \f427; 668 | $fa-var-hornbill: \f592; 669 | $fa-var-horse: \f6f0; 670 | $fa-var-horse-head: \f7ab; 671 | $fa-var-hospital: \f0f8; 672 | $fa-var-hospital-alt: \f47d; 673 | $fa-var-hospital-symbol: \f47e; 674 | $fa-var-hot-tub: \f593; 675 | $fa-var-hotdog: \f80f; 676 | $fa-var-hotel: \f594; 677 | $fa-var-hotjar: \f3b1; 678 | $fa-var-hourglass: \f254; 679 | $fa-var-hourglass-end: \f253; 680 | $fa-var-hourglass-half: \f252; 681 | $fa-var-hourglass-start: \f251; 682 | $fa-var-house-damage: \f6f1; 683 | $fa-var-houzz: \f27c; 684 | $fa-var-hryvnia: \f6f2; 685 | $fa-var-html5: \f13b; 686 | $fa-var-hubspot: \f3b2; 687 | $fa-var-i-cursor: \f246; 688 | $fa-var-ice-cream: \f810; 689 | $fa-var-icicles: \f7ad; 690 | $fa-var-icons: \f86d; 691 | $fa-var-id-badge: \f2c1; 692 | $fa-var-id-card: \f2c2; 693 | $fa-var-id-card-alt: \f47f; 694 | $fa-var-ideal: \f913; 695 | $fa-var-igloo: \f7ae; 696 | $fa-var-image: \f03e; 697 | $fa-var-images: \f302; 698 | $fa-var-imdb: \f2d8; 699 | $fa-var-inbox: \f01c; 700 | $fa-var-indent: \f03c; 701 | $fa-var-industry: \f275; 702 | $fa-var-infinity: \f534; 703 | $fa-var-info: \f129; 704 | $fa-var-info-circle: \f05a; 705 | $fa-var-instagram: \f16d; 706 | $fa-var-intercom: \f7af; 707 | $fa-var-internet-explorer: \f26b; 708 | $fa-var-invision: \f7b0; 709 | $fa-var-ioxhost: \f208; 710 | $fa-var-italic: \f033; 711 | $fa-var-itch-io: \f83a; 712 | $fa-var-itunes: \f3b4; 713 | $fa-var-itunes-note: \f3b5; 714 | $fa-var-java: \f4e4; 715 | $fa-var-jedi: \f669; 716 | $fa-var-jedi-order: \f50e; 717 | $fa-var-jenkins: \f3b6; 718 | $fa-var-jira: \f7b1; 719 | $fa-var-joget: \f3b7; 720 | $fa-var-joint: \f595; 721 | $fa-var-joomla: \f1aa; 722 | $fa-var-journal-whills: \f66a; 723 | $fa-var-js: \f3b8; 724 | $fa-var-js-square: \f3b9; 725 | $fa-var-jsfiddle: \f1cc; 726 | $fa-var-kaaba: \f66b; 727 | $fa-var-kaggle: \f5fa; 728 | $fa-var-key: \f084; 729 | $fa-var-keybase: \f4f5; 730 | $fa-var-keyboard: \f11c; 731 | $fa-var-keycdn: \f3ba; 732 | $fa-var-khanda: \f66d; 733 | $fa-var-kickstarter: \f3bb; 734 | $fa-var-kickstarter-k: \f3bc; 735 | $fa-var-kiss: \f596; 736 | $fa-var-kiss-beam: \f597; 737 | $fa-var-kiss-wink-heart: \f598; 738 | $fa-var-kiwi-bird: \f535; 739 | $fa-var-korvue: \f42f; 740 | $fa-var-landmark: \f66f; 741 | $fa-var-language: \f1ab; 742 | $fa-var-laptop: \f109; 743 | $fa-var-laptop-code: \f5fc; 744 | $fa-var-laptop-medical: \f812; 745 | $fa-var-laravel: \f3bd; 746 | $fa-var-lastfm: \f202; 747 | $fa-var-lastfm-square: \f203; 748 | $fa-var-laugh: \f599; 749 | $fa-var-laugh-beam: \f59a; 750 | $fa-var-laugh-squint: \f59b; 751 | $fa-var-laugh-wink: \f59c; 752 | $fa-var-layer-group: \f5fd; 753 | $fa-var-leaf: \f06c; 754 | $fa-var-leanpub: \f212; 755 | $fa-var-lemon: \f094; 756 | $fa-var-less: \f41d; 757 | $fa-var-less-than: \f536; 758 | $fa-var-less-than-equal: \f537; 759 | $fa-var-level-down-alt: \f3be; 760 | $fa-var-level-up-alt: \f3bf; 761 | $fa-var-life-ring: \f1cd; 762 | $fa-var-lightbulb: \f0eb; 763 | $fa-var-line: \f3c0; 764 | $fa-var-link: \f0c1; 765 | $fa-var-linkedin: \f08c; 766 | $fa-var-linkedin-in: \f0e1; 767 | $fa-var-linode: \f2b8; 768 | $fa-var-linux: \f17c; 769 | $fa-var-lira-sign: \f195; 770 | $fa-var-list: \f03a; 771 | $fa-var-list-alt: \f022; 772 | $fa-var-list-ol: \f0cb; 773 | $fa-var-list-ul: \f0ca; 774 | $fa-var-location-arrow: \f124; 775 | $fa-var-lock: \f023; 776 | $fa-var-lock-open: \f3c1; 777 | $fa-var-long-arrow-alt-down: \f309; 778 | $fa-var-long-arrow-alt-left: \f30a; 779 | $fa-var-long-arrow-alt-right: \f30b; 780 | $fa-var-long-arrow-alt-up: \f30c; 781 | $fa-var-low-vision: \f2a8; 782 | $fa-var-luggage-cart: \f59d; 783 | $fa-var-lyft: \f3c3; 784 | $fa-var-magento: \f3c4; 785 | $fa-var-magic: \f0d0; 786 | $fa-var-magnet: \f076; 787 | $fa-var-mail-bulk: \f674; 788 | $fa-var-mailchimp: \f59e; 789 | $fa-var-male: \f183; 790 | $fa-var-mandalorian: \f50f; 791 | $fa-var-map: \f279; 792 | $fa-var-map-marked: \f59f; 793 | $fa-var-map-marked-alt: \f5a0; 794 | $fa-var-map-marker: \f041; 795 | $fa-var-map-marker-alt: \f3c5; 796 | $fa-var-map-pin: \f276; 797 | $fa-var-map-signs: \f277; 798 | $fa-var-markdown: \f60f; 799 | $fa-var-marker: \f5a1; 800 | $fa-var-mars: \f222; 801 | $fa-var-mars-double: \f227; 802 | $fa-var-mars-stroke: \f229; 803 | $fa-var-mars-stroke-h: \f22b; 804 | $fa-var-mars-stroke-v: \f22a; 805 | $fa-var-mask: \f6fa; 806 | $fa-var-mastodon: \f4f6; 807 | $fa-var-maxcdn: \f136; 808 | $fa-var-mdb: \f8ca; 809 | $fa-var-medal: \f5a2; 810 | $fa-var-medapps: \f3c6; 811 | $fa-var-medium: \f23a; 812 | $fa-var-medium-m: \f3c7; 813 | $fa-var-medkit: \f0fa; 814 | $fa-var-medrt: \f3c8; 815 | $fa-var-meetup: \f2e0; 816 | $fa-var-megaport: \f5a3; 817 | $fa-var-meh: \f11a; 818 | $fa-var-meh-blank: \f5a4; 819 | $fa-var-meh-rolling-eyes: \f5a5; 820 | $fa-var-memory: \f538; 821 | $fa-var-mendeley: \f7b3; 822 | $fa-var-menorah: \f676; 823 | $fa-var-mercury: \f223; 824 | $fa-var-meteor: \f753; 825 | $fa-var-microblog: \f91a; 826 | $fa-var-microchip: \f2db; 827 | $fa-var-microphone: \f130; 828 | $fa-var-microphone-alt: \f3c9; 829 | $fa-var-microphone-alt-slash: \f539; 830 | $fa-var-microphone-slash: \f131; 831 | $fa-var-microscope: \f610; 832 | $fa-var-microsoft: \f3ca; 833 | $fa-var-minus: \f068; 834 | $fa-var-minus-circle: \f056; 835 | $fa-var-minus-square: \f146; 836 | $fa-var-mitten: \f7b5; 837 | $fa-var-mix: \f3cb; 838 | $fa-var-mixcloud: \f289; 839 | $fa-var-mizuni: \f3cc; 840 | $fa-var-mobile: \f10b; 841 | $fa-var-mobile-alt: \f3cd; 842 | $fa-var-modx: \f285; 843 | $fa-var-monero: \f3d0; 844 | $fa-var-money-bill: \f0d6; 845 | $fa-var-money-bill-alt: \f3d1; 846 | $fa-var-money-bill-wave: \f53a; 847 | $fa-var-money-bill-wave-alt: \f53b; 848 | $fa-var-money-check: \f53c; 849 | $fa-var-money-check-alt: \f53d; 850 | $fa-var-monument: \f5a6; 851 | $fa-var-moon: \f186; 852 | $fa-var-mortar-pestle: \f5a7; 853 | $fa-var-mosque: \f678; 854 | $fa-var-motorcycle: \f21c; 855 | $fa-var-mountain: \f6fc; 856 | $fa-var-mouse: \f8cc; 857 | $fa-var-mouse-pointer: \f245; 858 | $fa-var-mug-hot: \f7b6; 859 | $fa-var-music: \f001; 860 | $fa-var-napster: \f3d2; 861 | $fa-var-neos: \f612; 862 | $fa-var-network-wired: \f6ff; 863 | $fa-var-neuter: \f22c; 864 | $fa-var-newspaper: \f1ea; 865 | $fa-var-nimblr: \f5a8; 866 | $fa-var-node: \f419; 867 | $fa-var-node-js: \f3d3; 868 | $fa-var-not-equal: \f53e; 869 | $fa-var-notes-medical: \f481; 870 | $fa-var-npm: \f3d4; 871 | $fa-var-ns8: \f3d5; 872 | $fa-var-nutritionix: \f3d6; 873 | $fa-var-object-group: \f247; 874 | $fa-var-object-ungroup: \f248; 875 | $fa-var-odnoklassniki: \f263; 876 | $fa-var-odnoklassniki-square: \f264; 877 | $fa-var-oil-can: \f613; 878 | $fa-var-old-republic: \f510; 879 | $fa-var-om: \f679; 880 | $fa-var-opencart: \f23d; 881 | $fa-var-openid: \f19b; 882 | $fa-var-opera: \f26a; 883 | $fa-var-optin-monster: \f23c; 884 | $fa-var-orcid: \f8d2; 885 | $fa-var-osi: \f41a; 886 | $fa-var-otter: \f700; 887 | $fa-var-outdent: \f03b; 888 | $fa-var-page4: \f3d7; 889 | $fa-var-pagelines: \f18c; 890 | $fa-var-pager: \f815; 891 | $fa-var-paint-brush: \f1fc; 892 | $fa-var-paint-roller: \f5aa; 893 | $fa-var-palette: \f53f; 894 | $fa-var-palfed: \f3d8; 895 | $fa-var-pallet: \f482; 896 | $fa-var-paper-plane: \f1d8; 897 | $fa-var-paperclip: \f0c6; 898 | $fa-var-parachute-box: \f4cd; 899 | $fa-var-paragraph: \f1dd; 900 | $fa-var-parking: \f540; 901 | $fa-var-passport: \f5ab; 902 | $fa-var-pastafarianism: \f67b; 903 | $fa-var-paste: \f0ea; 904 | $fa-var-patreon: \f3d9; 905 | $fa-var-pause: \f04c; 906 | $fa-var-pause-circle: \f28b; 907 | $fa-var-paw: \f1b0; 908 | $fa-var-paypal: \f1ed; 909 | $fa-var-peace: \f67c; 910 | $fa-var-pen: \f304; 911 | $fa-var-pen-alt: \f305; 912 | $fa-var-pen-fancy: \f5ac; 913 | $fa-var-pen-nib: \f5ad; 914 | $fa-var-pen-square: \f14b; 915 | $fa-var-pencil-alt: \f303; 916 | $fa-var-pencil-ruler: \f5ae; 917 | $fa-var-penny-arcade: \f704; 918 | $fa-var-people-carry: \f4ce; 919 | $fa-var-pepper-hot: \f816; 920 | $fa-var-percent: \f295; 921 | $fa-var-percentage: \f541; 922 | $fa-var-periscope: \f3da; 923 | $fa-var-person-booth: \f756; 924 | $fa-var-phabricator: \f3db; 925 | $fa-var-phoenix-framework: \f3dc; 926 | $fa-var-phoenix-squadron: \f511; 927 | $fa-var-phone: \f095; 928 | $fa-var-phone-alt: \f879; 929 | $fa-var-phone-slash: \f3dd; 930 | $fa-var-phone-square: \f098; 931 | $fa-var-phone-square-alt: \f87b; 932 | $fa-var-phone-volume: \f2a0; 933 | $fa-var-photo-video: \f87c; 934 | $fa-var-php: \f457; 935 | $fa-var-pied-piper: \f2ae; 936 | $fa-var-pied-piper-alt: \f1a8; 937 | $fa-var-pied-piper-hat: \f4e5; 938 | $fa-var-pied-piper-pp: \f1a7; 939 | $fa-var-pied-piper-square: \f91e; 940 | $fa-var-piggy-bank: \f4d3; 941 | $fa-var-pills: \f484; 942 | $fa-var-pinterest: \f0d2; 943 | $fa-var-pinterest-p: \f231; 944 | $fa-var-pinterest-square: \f0d3; 945 | $fa-var-pizza-slice: \f818; 946 | $fa-var-place-of-worship: \f67f; 947 | $fa-var-plane: \f072; 948 | $fa-var-plane-arrival: \f5af; 949 | $fa-var-plane-departure: \f5b0; 950 | $fa-var-play: \f04b; 951 | $fa-var-play-circle: \f144; 952 | $fa-var-playstation: \f3df; 953 | $fa-var-plug: \f1e6; 954 | $fa-var-plus: \f067; 955 | $fa-var-plus-circle: \f055; 956 | $fa-var-plus-square: \f0fe; 957 | $fa-var-podcast: \f2ce; 958 | $fa-var-poll: \f681; 959 | $fa-var-poll-h: \f682; 960 | $fa-var-poo: \f2fe; 961 | $fa-var-poo-storm: \f75a; 962 | $fa-var-poop: \f619; 963 | $fa-var-portrait: \f3e0; 964 | $fa-var-pound-sign: \f154; 965 | $fa-var-power-off: \f011; 966 | $fa-var-pray: \f683; 967 | $fa-var-praying-hands: \f684; 968 | $fa-var-prescription: \f5b1; 969 | $fa-var-prescription-bottle: \f485; 970 | $fa-var-prescription-bottle-alt: \f486; 971 | $fa-var-print: \f02f; 972 | $fa-var-procedures: \f487; 973 | $fa-var-product-hunt: \f288; 974 | $fa-var-project-diagram: \f542; 975 | $fa-var-pushed: \f3e1; 976 | $fa-var-puzzle-piece: \f12e; 977 | $fa-var-python: \f3e2; 978 | $fa-var-qq: \f1d6; 979 | $fa-var-qrcode: \f029; 980 | $fa-var-question: \f128; 981 | $fa-var-question-circle: \f059; 982 | $fa-var-quidditch: \f458; 983 | $fa-var-quinscape: \f459; 984 | $fa-var-quora: \f2c4; 985 | $fa-var-quote-left: \f10d; 986 | $fa-var-quote-right: \f10e; 987 | $fa-var-quran: \f687; 988 | $fa-var-r-project: \f4f7; 989 | $fa-var-radiation: \f7b9; 990 | $fa-var-radiation-alt: \f7ba; 991 | $fa-var-rainbow: \f75b; 992 | $fa-var-random: \f074; 993 | $fa-var-raspberry-pi: \f7bb; 994 | $fa-var-ravelry: \f2d9; 995 | $fa-var-react: \f41b; 996 | $fa-var-reacteurope: \f75d; 997 | $fa-var-readme: \f4d5; 998 | $fa-var-rebel: \f1d0; 999 | $fa-var-receipt: \f543; 1000 | $fa-var-record-vinyl: \f8d9; 1001 | $fa-var-recycle: \f1b8; 1002 | $fa-var-red-river: \f3e3; 1003 | $fa-var-reddit: \f1a1; 1004 | $fa-var-reddit-alien: \f281; 1005 | $fa-var-reddit-square: \f1a2; 1006 | $fa-var-redhat: \f7bc; 1007 | $fa-var-redo: \f01e; 1008 | $fa-var-redo-alt: \f2f9; 1009 | $fa-var-registered: \f25d; 1010 | $fa-var-remove-format: \f87d; 1011 | $fa-var-renren: \f18b; 1012 | $fa-var-reply: \f3e5; 1013 | $fa-var-reply-all: \f122; 1014 | $fa-var-replyd: \f3e6; 1015 | $fa-var-republican: \f75e; 1016 | $fa-var-researchgate: \f4f8; 1017 | $fa-var-resolving: \f3e7; 1018 | $fa-var-restroom: \f7bd; 1019 | $fa-var-retweet: \f079; 1020 | $fa-var-rev: \f5b2; 1021 | $fa-var-ribbon: \f4d6; 1022 | $fa-var-ring: \f70b; 1023 | $fa-var-road: \f018; 1024 | $fa-var-robot: \f544; 1025 | $fa-var-rocket: \f135; 1026 | $fa-var-rocketchat: \f3e8; 1027 | $fa-var-rockrms: \f3e9; 1028 | $fa-var-route: \f4d7; 1029 | $fa-var-rss: \f09e; 1030 | $fa-var-rss-square: \f143; 1031 | $fa-var-ruble-sign: \f158; 1032 | $fa-var-ruler: \f545; 1033 | $fa-var-ruler-combined: \f546; 1034 | $fa-var-ruler-horizontal: \f547; 1035 | $fa-var-ruler-vertical: \f548; 1036 | $fa-var-running: \f70c; 1037 | $fa-var-rupee-sign: \f156; 1038 | $fa-var-sad-cry: \f5b3; 1039 | $fa-var-sad-tear: \f5b4; 1040 | $fa-var-safari: \f267; 1041 | $fa-var-salesforce: \f83b; 1042 | $fa-var-sass: \f41e; 1043 | $fa-var-satellite: \f7bf; 1044 | $fa-var-satellite-dish: \f7c0; 1045 | $fa-var-save: \f0c7; 1046 | $fa-var-schlix: \f3ea; 1047 | $fa-var-school: \f549; 1048 | $fa-var-screwdriver: \f54a; 1049 | $fa-var-scribd: \f28a; 1050 | $fa-var-scroll: \f70e; 1051 | $fa-var-sd-card: \f7c2; 1052 | $fa-var-search: \f002; 1053 | $fa-var-search-dollar: \f688; 1054 | $fa-var-search-location: \f689; 1055 | $fa-var-search-minus: \f010; 1056 | $fa-var-search-plus: \f00e; 1057 | $fa-var-searchengin: \f3eb; 1058 | $fa-var-seedling: \f4d8; 1059 | $fa-var-sellcast: \f2da; 1060 | $fa-var-sellsy: \f213; 1061 | $fa-var-server: \f233; 1062 | $fa-var-servicestack: \f3ec; 1063 | $fa-var-shapes: \f61f; 1064 | $fa-var-share: \f064; 1065 | $fa-var-share-alt: \f1e0; 1066 | $fa-var-share-alt-square: \f1e1; 1067 | $fa-var-share-square: \f14d; 1068 | $fa-var-shekel-sign: \f20b; 1069 | $fa-var-shield-alt: \f3ed; 1070 | $fa-var-ship: \f21a; 1071 | $fa-var-shipping-fast: \f48b; 1072 | $fa-var-shirtsinbulk: \f214; 1073 | $fa-var-shoe-prints: \f54b; 1074 | $fa-var-shopping-bag: \f290; 1075 | $fa-var-shopping-basket: \f291; 1076 | $fa-var-shopping-cart: \f07a; 1077 | $fa-var-shopware: \f5b5; 1078 | $fa-var-shower: \f2cc; 1079 | $fa-var-shuttle-van: \f5b6; 1080 | $fa-var-sign: \f4d9; 1081 | $fa-var-sign-in-alt: \f2f6; 1082 | $fa-var-sign-language: \f2a7; 1083 | $fa-var-sign-out-alt: \f2f5; 1084 | $fa-var-signal: \f012; 1085 | $fa-var-signature: \f5b7; 1086 | $fa-var-sim-card: \f7c4; 1087 | $fa-var-simplybuilt: \f215; 1088 | $fa-var-sistrix: \f3ee; 1089 | $fa-var-sitemap: \f0e8; 1090 | $fa-var-sith: \f512; 1091 | $fa-var-skating: \f7c5; 1092 | $fa-var-sketch: \f7c6; 1093 | $fa-var-skiing: \f7c9; 1094 | $fa-var-skiing-nordic: \f7ca; 1095 | $fa-var-skull: \f54c; 1096 | $fa-var-skull-crossbones: \f714; 1097 | $fa-var-skyatlas: \f216; 1098 | $fa-var-skype: \f17e; 1099 | $fa-var-slack: \f198; 1100 | $fa-var-slack-hash: \f3ef; 1101 | $fa-var-slash: \f715; 1102 | $fa-var-sleigh: \f7cc; 1103 | $fa-var-sliders-h: \f1de; 1104 | $fa-var-slideshare: \f1e7; 1105 | $fa-var-smile: \f118; 1106 | $fa-var-smile-beam: \f5b8; 1107 | $fa-var-smile-wink: \f4da; 1108 | $fa-var-smog: \f75f; 1109 | $fa-var-smoking: \f48d; 1110 | $fa-var-smoking-ban: \f54d; 1111 | $fa-var-sms: \f7cd; 1112 | $fa-var-snapchat: \f2ab; 1113 | $fa-var-snapchat-ghost: \f2ac; 1114 | $fa-var-snapchat-square: \f2ad; 1115 | $fa-var-snowboarding: \f7ce; 1116 | $fa-var-snowflake: \f2dc; 1117 | $fa-var-snowman: \f7d0; 1118 | $fa-var-snowplow: \f7d2; 1119 | $fa-var-socks: \f696; 1120 | $fa-var-solar-panel: \f5ba; 1121 | $fa-var-sort: \f0dc; 1122 | $fa-var-sort-alpha-down: \f15d; 1123 | $fa-var-sort-alpha-down-alt: \f881; 1124 | $fa-var-sort-alpha-up: \f15e; 1125 | $fa-var-sort-alpha-up-alt: \f882; 1126 | $fa-var-sort-amount-down: \f160; 1127 | $fa-var-sort-amount-down-alt: \f884; 1128 | $fa-var-sort-amount-up: \f161; 1129 | $fa-var-sort-amount-up-alt: \f885; 1130 | $fa-var-sort-down: \f0dd; 1131 | $fa-var-sort-numeric-down: \f162; 1132 | $fa-var-sort-numeric-down-alt: \f886; 1133 | $fa-var-sort-numeric-up: \f163; 1134 | $fa-var-sort-numeric-up-alt: \f887; 1135 | $fa-var-sort-up: \f0de; 1136 | $fa-var-soundcloud: \f1be; 1137 | $fa-var-sourcetree: \f7d3; 1138 | $fa-var-spa: \f5bb; 1139 | $fa-var-space-shuttle: \f197; 1140 | $fa-var-speakap: \f3f3; 1141 | $fa-var-speaker-deck: \f83c; 1142 | $fa-var-spell-check: \f891; 1143 | $fa-var-spider: \f717; 1144 | $fa-var-spinner: \f110; 1145 | $fa-var-splotch: \f5bc; 1146 | $fa-var-spotify: \f1bc; 1147 | $fa-var-spray-can: \f5bd; 1148 | $fa-var-square: \f0c8; 1149 | $fa-var-square-full: \f45c; 1150 | $fa-var-square-root-alt: \f698; 1151 | $fa-var-squarespace: \f5be; 1152 | $fa-var-stack-exchange: \f18d; 1153 | $fa-var-stack-overflow: \f16c; 1154 | $fa-var-stackpath: \f842; 1155 | $fa-var-stamp: \f5bf; 1156 | $fa-var-star: \f005; 1157 | $fa-var-star-and-crescent: \f699; 1158 | $fa-var-star-half: \f089; 1159 | $fa-var-star-half-alt: \f5c0; 1160 | $fa-var-star-of-david: \f69a; 1161 | $fa-var-star-of-life: \f621; 1162 | $fa-var-staylinked: \f3f5; 1163 | $fa-var-steam: \f1b6; 1164 | $fa-var-steam-square: \f1b7; 1165 | $fa-var-steam-symbol: \f3f6; 1166 | $fa-var-step-backward: \f048; 1167 | $fa-var-step-forward: \f051; 1168 | $fa-var-stethoscope: \f0f1; 1169 | $fa-var-sticker-mule: \f3f7; 1170 | $fa-var-sticky-note: \f249; 1171 | $fa-var-stop: \f04d; 1172 | $fa-var-stop-circle: \f28d; 1173 | $fa-var-stopwatch: \f2f2; 1174 | $fa-var-store: \f54e; 1175 | $fa-var-store-alt: \f54f; 1176 | $fa-var-strava: \f428; 1177 | $fa-var-stream: \f550; 1178 | $fa-var-street-view: \f21d; 1179 | $fa-var-strikethrough: \f0cc; 1180 | $fa-var-stripe: \f429; 1181 | $fa-var-stripe-s: \f42a; 1182 | $fa-var-stroopwafel: \f551; 1183 | $fa-var-studiovinari: \f3f8; 1184 | $fa-var-stumbleupon: \f1a4; 1185 | $fa-var-stumbleupon-circle: \f1a3; 1186 | $fa-var-subscript: \f12c; 1187 | $fa-var-subway: \f239; 1188 | $fa-var-suitcase: \f0f2; 1189 | $fa-var-suitcase-rolling: \f5c1; 1190 | $fa-var-sun: \f185; 1191 | $fa-var-superpowers: \f2dd; 1192 | $fa-var-superscript: \f12b; 1193 | $fa-var-supple: \f3f9; 1194 | $fa-var-surprise: \f5c2; 1195 | $fa-var-suse: \f7d6; 1196 | $fa-var-swatchbook: \f5c3; 1197 | $fa-var-swift: \f8e1; 1198 | $fa-var-swimmer: \f5c4; 1199 | $fa-var-swimming-pool: \f5c5; 1200 | $fa-var-symfony: \f83d; 1201 | $fa-var-synagogue: \f69b; 1202 | $fa-var-sync: \f021; 1203 | $fa-var-sync-alt: \f2f1; 1204 | $fa-var-syringe: \f48e; 1205 | $fa-var-table: \f0ce; 1206 | $fa-var-table-tennis: \f45d; 1207 | $fa-var-tablet: \f10a; 1208 | $fa-var-tablet-alt: \f3fa; 1209 | $fa-var-tablets: \f490; 1210 | $fa-var-tachometer-alt: \f3fd; 1211 | $fa-var-tag: \f02b; 1212 | $fa-var-tags: \f02c; 1213 | $fa-var-tape: \f4db; 1214 | $fa-var-tasks: \f0ae; 1215 | $fa-var-taxi: \f1ba; 1216 | $fa-var-teamspeak: \f4f9; 1217 | $fa-var-teeth: \f62e; 1218 | $fa-var-teeth-open: \f62f; 1219 | $fa-var-telegram: \f2c6; 1220 | $fa-var-telegram-plane: \f3fe; 1221 | $fa-var-temperature-high: \f769; 1222 | $fa-var-temperature-low: \f76b; 1223 | $fa-var-tencent-weibo: \f1d5; 1224 | $fa-var-tenge: \f7d7; 1225 | $fa-var-terminal: \f120; 1226 | $fa-var-text-height: \f034; 1227 | $fa-var-text-width: \f035; 1228 | $fa-var-th: \f00a; 1229 | $fa-var-th-large: \f009; 1230 | $fa-var-th-list: \f00b; 1231 | $fa-var-the-red-yeti: \f69d; 1232 | $fa-var-theater-masks: \f630; 1233 | $fa-var-themeco: \f5c6; 1234 | $fa-var-themeisle: \f2b2; 1235 | $fa-var-thermometer: \f491; 1236 | $fa-var-thermometer-empty: \f2cb; 1237 | $fa-var-thermometer-full: \f2c7; 1238 | $fa-var-thermometer-half: \f2c9; 1239 | $fa-var-thermometer-quarter: \f2ca; 1240 | $fa-var-thermometer-three-quarters: \f2c8; 1241 | $fa-var-think-peaks: \f731; 1242 | $fa-var-thumbs-down: \f165; 1243 | $fa-var-thumbs-up: \f164; 1244 | $fa-var-thumbtack: \f08d; 1245 | $fa-var-ticket-alt: \f3ff; 1246 | $fa-var-times: \f00d; 1247 | $fa-var-times-circle: \f057; 1248 | $fa-var-tint: \f043; 1249 | $fa-var-tint-slash: \f5c7; 1250 | $fa-var-tired: \f5c8; 1251 | $fa-var-toggle-off: \f204; 1252 | $fa-var-toggle-on: \f205; 1253 | $fa-var-toilet: \f7d8; 1254 | $fa-var-toilet-paper: \f71e; 1255 | $fa-var-toolbox: \f552; 1256 | $fa-var-tools: \f7d9; 1257 | $fa-var-tooth: \f5c9; 1258 | $fa-var-torah: \f6a0; 1259 | $fa-var-torii-gate: \f6a1; 1260 | $fa-var-tractor: \f722; 1261 | $fa-var-trade-federation: \f513; 1262 | $fa-var-trademark: \f25c; 1263 | $fa-var-traffic-light: \f637; 1264 | $fa-var-trailer: \f941; 1265 | $fa-var-train: \f238; 1266 | $fa-var-tram: \f7da; 1267 | $fa-var-transgender: \f224; 1268 | $fa-var-transgender-alt: \f225; 1269 | $fa-var-trash: \f1f8; 1270 | $fa-var-trash-alt: \f2ed; 1271 | $fa-var-trash-restore: \f829; 1272 | $fa-var-trash-restore-alt: \f82a; 1273 | $fa-var-tree: \f1bb; 1274 | $fa-var-trello: \f181; 1275 | $fa-var-tripadvisor: \f262; 1276 | $fa-var-trophy: \f091; 1277 | $fa-var-truck: \f0d1; 1278 | $fa-var-truck-loading: \f4de; 1279 | $fa-var-truck-monster: \f63b; 1280 | $fa-var-truck-moving: \f4df; 1281 | $fa-var-truck-pickup: \f63c; 1282 | $fa-var-tshirt: \f553; 1283 | $fa-var-tty: \f1e4; 1284 | $fa-var-tumblr: \f173; 1285 | $fa-var-tumblr-square: \f174; 1286 | $fa-var-tv: \f26c; 1287 | $fa-var-twitch: \f1e8; 1288 | $fa-var-twitter: \f099; 1289 | $fa-var-twitter-square: \f081; 1290 | $fa-var-typo3: \f42b; 1291 | $fa-var-uber: \f402; 1292 | $fa-var-ubuntu: \f7df; 1293 | $fa-var-uikit: \f403; 1294 | $fa-var-umbraco: \f8e8; 1295 | $fa-var-umbrella: \f0e9; 1296 | $fa-var-umbrella-beach: \f5ca; 1297 | $fa-var-underline: \f0cd; 1298 | $fa-var-undo: \f0e2; 1299 | $fa-var-undo-alt: \f2ea; 1300 | $fa-var-uniregistry: \f404; 1301 | $fa-var-unity: \f949; 1302 | $fa-var-universal-access: \f29a; 1303 | $fa-var-university: \f19c; 1304 | $fa-var-unlink: \f127; 1305 | $fa-var-unlock: \f09c; 1306 | $fa-var-unlock-alt: \f13e; 1307 | $fa-var-untappd: \f405; 1308 | $fa-var-upload: \f093; 1309 | $fa-var-ups: \f7e0; 1310 | $fa-var-usb: \f287; 1311 | $fa-var-user: \f007; 1312 | $fa-var-user-alt: \f406; 1313 | $fa-var-user-alt-slash: \f4fa; 1314 | $fa-var-user-astronaut: \f4fb; 1315 | $fa-var-user-check: \f4fc; 1316 | $fa-var-user-circle: \f2bd; 1317 | $fa-var-user-clock: \f4fd; 1318 | $fa-var-user-cog: \f4fe; 1319 | $fa-var-user-edit: \f4ff; 1320 | $fa-var-user-friends: \f500; 1321 | $fa-var-user-graduate: \f501; 1322 | $fa-var-user-injured: \f728; 1323 | $fa-var-user-lock: \f502; 1324 | $fa-var-user-md: \f0f0; 1325 | $fa-var-user-minus: \f503; 1326 | $fa-var-user-ninja: \f504; 1327 | $fa-var-user-nurse: \f82f; 1328 | $fa-var-user-plus: \f234; 1329 | $fa-var-user-secret: \f21b; 1330 | $fa-var-user-shield: \f505; 1331 | $fa-var-user-slash: \f506; 1332 | $fa-var-user-tag: \f507; 1333 | $fa-var-user-tie: \f508; 1334 | $fa-var-user-times: \f235; 1335 | $fa-var-users: \f0c0; 1336 | $fa-var-users-cog: \f509; 1337 | $fa-var-usps: \f7e1; 1338 | $fa-var-ussunnah: \f407; 1339 | $fa-var-utensil-spoon: \f2e5; 1340 | $fa-var-utensils: \f2e7; 1341 | $fa-var-vaadin: \f408; 1342 | $fa-var-vector-square: \f5cb; 1343 | $fa-var-venus: \f221; 1344 | $fa-var-venus-double: \f226; 1345 | $fa-var-venus-mars: \f228; 1346 | $fa-var-viacoin: \f237; 1347 | $fa-var-viadeo: \f2a9; 1348 | $fa-var-viadeo-square: \f2aa; 1349 | $fa-var-vial: \f492; 1350 | $fa-var-vials: \f493; 1351 | $fa-var-viber: \f409; 1352 | $fa-var-video: \f03d; 1353 | $fa-var-video-slash: \f4e2; 1354 | $fa-var-vihara: \f6a7; 1355 | $fa-var-vimeo: \f40a; 1356 | $fa-var-vimeo-square: \f194; 1357 | $fa-var-vimeo-v: \f27d; 1358 | $fa-var-vine: \f1ca; 1359 | $fa-var-vk: \f189; 1360 | $fa-var-vnv: \f40b; 1361 | $fa-var-voicemail: \f897; 1362 | $fa-var-volleyball-ball: \f45f; 1363 | $fa-var-volume-down: \f027; 1364 | $fa-var-volume-mute: \f6a9; 1365 | $fa-var-volume-off: \f026; 1366 | $fa-var-volume-up: \f028; 1367 | $fa-var-vote-yea: \f772; 1368 | $fa-var-vr-cardboard: \f729; 1369 | $fa-var-vuejs: \f41f; 1370 | $fa-var-walking: \f554; 1371 | $fa-var-wallet: \f555; 1372 | $fa-var-warehouse: \f494; 1373 | $fa-var-water: \f773; 1374 | $fa-var-wave-square: \f83e; 1375 | $fa-var-waze: \f83f; 1376 | $fa-var-weebly: \f5cc; 1377 | $fa-var-weibo: \f18a; 1378 | $fa-var-weight: \f496; 1379 | $fa-var-weight-hanging: \f5cd; 1380 | $fa-var-weixin: \f1d7; 1381 | $fa-var-whatsapp: \f232; 1382 | $fa-var-whatsapp-square: \f40c; 1383 | $fa-var-wheelchair: \f193; 1384 | $fa-var-whmcs: \f40d; 1385 | $fa-var-wifi: \f1eb; 1386 | $fa-var-wikipedia-w: \f266; 1387 | $fa-var-wind: \f72e; 1388 | $fa-var-window-close: \f410; 1389 | $fa-var-window-maximize: \f2d0; 1390 | $fa-var-window-minimize: \f2d1; 1391 | $fa-var-window-restore: \f2d2; 1392 | $fa-var-windows: \f17a; 1393 | $fa-var-wine-bottle: \f72f; 1394 | $fa-var-wine-glass: \f4e3; 1395 | $fa-var-wine-glass-alt: \f5ce; 1396 | $fa-var-wix: \f5cf; 1397 | $fa-var-wizards-of-the-coast: \f730; 1398 | $fa-var-wolf-pack-battalion: \f514; 1399 | $fa-var-won-sign: \f159; 1400 | $fa-var-wordpress: \f19a; 1401 | $fa-var-wordpress-simple: \f411; 1402 | $fa-var-wpbeginner: \f297; 1403 | $fa-var-wpexplorer: \f2de; 1404 | $fa-var-wpforms: \f298; 1405 | $fa-var-wpressr: \f3e4; 1406 | $fa-var-wrench: \f0ad; 1407 | $fa-var-x-ray: \f497; 1408 | $fa-var-xbox: \f412; 1409 | $fa-var-xing: \f168; 1410 | $fa-var-xing-square: \f169; 1411 | $fa-var-y-combinator: \f23b; 1412 | $fa-var-yahoo: \f19e; 1413 | $fa-var-yammer: \f840; 1414 | $fa-var-yandex: \f413; 1415 | $fa-var-yandex-international: \f414; 1416 | $fa-var-yarn: \f7e3; 1417 | $fa-var-yelp: \f1e9; 1418 | $fa-var-yen-sign: \f157; 1419 | $fa-var-yin-yang: \f6ad; 1420 | $fa-var-yoast: \f2b1; 1421 | $fa-var-youtube: \f167; 1422 | $fa-var-youtube-square: \f431; 1423 | $fa-var-zhihu: \f63f; 1424 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/brands.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Brands'; 9 | font-style: normal; 10 | font-weight: normal; 11 | font-display: $fa-font-display; 12 | src: url('#{$fa-font-path}/fa-brands-400.eot'); 13 | src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), 14 | url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), 15 | url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), 16 | url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), 17 | url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); 18 | } 19 | 20 | .fab { 21 | font-family: 'Font Awesome 5 Brands'; 22 | } 23 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/fontawesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'mixins'; 7 | @import 'core'; 8 | @import 'larger'; 9 | @import 'fixed-width'; 10 | @import 'list'; 11 | @import 'bordered-pulled'; 12 | @import 'animated'; 13 | @import 'rotated-flipped'; 14 | @import 'stacked'; 15 | @import 'icons'; 16 | @import 'screen-reader'; 17 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/regular.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Free'; 9 | font-style: normal; 10 | font-weight: 400; 11 | font-display: $fa-font-display; 12 | src: url('#{$fa-font-path}/fa-regular-400.eot'); 13 | src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'), 14 | url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'), 15 | url('#{$fa-font-path}/fa-regular-400.woff') format('woff'), 16 | url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'), 17 | url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg'); 18 | } 19 | 20 | .far { 21 | font-family: 'Font Awesome 5 Free'; 22 | font-weight: 400; 23 | } 24 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/solid.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Free'; 9 | font-style: normal; 10 | font-weight: 900; 11 | font-display: $fa-font-display; 12 | src: url('#{$fa-font-path}/fa-solid-900.eot'); 13 | src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), 14 | url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), 15 | url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), 16 | url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), 17 | url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); 18 | } 19 | 20 | .fa, 21 | .fas { 22 | font-family: 'Font Awesome 5 Free'; 23 | font-weight: 900; 24 | } 25 | -------------------------------------------------------------------------------- /plugins/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /plugins/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/gulp-for-beginners/5a1f7189778cea6a2fd7048e7e54800420e105a5/plugins/fontawesome/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------