├── .gitignore ├── .prettierrc ├── README.md ├── assets ├── file-icons │ ├── LICENSE.md │ ├── fonts │ │ └── file-icons.woff2 │ └── styles │ │ ├── fonts.css │ │ └── icons.css └── font-awesome │ ├── LICENSE.txt │ ├── css │ ├── all.css │ └── all.min.css │ └── 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 ├── components ├── battery.jsx ├── memory.jsx ├── volume.jsx └── wifi.jsx ├── desktop.jsx ├── helpers.jsx ├── index.jsx ├── package.json ├── right_bar.jsx ├── scripts ├── desktop.sh └── right_bar.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | .tern-port 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5", 3 | "tabWidth": 2, 4 | "semi": true, 5 | "singleQuote": true 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Yabai status bar widget for uebersicht 2 | 3 | ## Screenshot 4 | ### Left bar 5 | ![Left bar](https://i.imgur.com/rAz39o0.png) 6 | 7 | ### Right bar 8 | ![Right bar](https://i.imgur.com/XF9k5T9.png) 9 | 10 | ## Installation 11 | Clone this repo into Uebersicht widget folder (default `~/Library/Application\ Support/Übersicht/widgets/`) and install dependencies 12 | 13 | ``` 14 | yarn install 15 | ``` 16 | -------------------------------------------------------------------------------- /assets/file-icons/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2016 Daniel Brooker 2 | Copyright (c) 2016-2019 John Gardner 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /assets/file-icons/fonts/file-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/file-icons/fonts/file-icons.woff2 -------------------------------------------------------------------------------- /assets/file-icons/styles/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: file-icons; 3 | src: url("../fonts/devopicons.woff2"); 4 | font-weight: normal; 5 | font-style: normal; 6 | } 7 | -------------------------------------------------------------------------------- /assets/file-icons/styles/icons.css: -------------------------------------------------------------------------------- 1 | /*============================================================================* 2 | Custom file icons 3 | See https://github.com/file-icons/source/charmap.md 4 | /*============================================================================*/ 5 | .fi { 6 | font-family: file-icons; font-size: 15px; 7 | font-weight: normal; 8 | font-style: normal; 9 | text-align: center; 10 | width: 16px; 11 | line-height: 1; 12 | position: relative; 13 | display: inline-block; 14 | text-shadow: 0 0 0; 15 | -webkit-font-smoothing: antialiased; 16 | } 17 | 18 | ._1c-icon:before { 19 | content: "\a5ea"; 20 | top: 3px; 21 | font-size: 16px; 22 | } 23 | ._1c-alt-icon:before { 24 | content: "\ea28"; 25 | top: 3px; 26 | font-size: 16px; 27 | } 28 | .abap-icon:before { 29 | content: "\e92b"; 30 | top: 2px; 31 | } 32 | .abif-icon:before { 33 | content: "\ea4e"; 34 | top: 3px; 35 | font-size: 16px; 36 | } 37 | .access-icon:before { 38 | content: "\e9ea"; 39 | top: 2px; 40 | } 41 | .acre-icon:before { 42 | content: "\237a"; 43 | top: 3px; 44 | font-size: 16px; 45 | } 46 | .ada-icon:before { 47 | content: "\e90b"; 48 | top: 3px; 49 | font-size: 17px; 50 | } 51 | .ae-icon:before { 52 | content: "\e9f3"; 53 | top: 2px; 54 | } 55 | .affinity-icon:before { 56 | content: "\eabb"; 57 | top: 2px; 58 | } 59 | .ahk-icon:before { 60 | content: "\e932"; 61 | top: 2px; 62 | } 63 | .ai-icon:before { 64 | content: "\e6b4"; 65 | top: 2px; 66 | } 67 | .alex-icon:before { 68 | content: "\29cb"; 69 | top: 4px; 70 | font-size: 16px; 71 | } 72 | .alloy-icon:before { 73 | content: "\e935"; 74 | top: 2px; 75 | } 76 | .alpine-icon:before { 77 | content: "\e9ff"; 78 | top: 2px; 79 | font-size: 16px; 80 | } 81 | .ampl-icon:before { 82 | content: "\e94e"; 83 | top: 3px; 84 | font-size: 16px; 85 | left: 1px; 86 | } 87 | .amx-icon:before { 88 | content: "\e99b"; 89 | top: 3px; 90 | font-size: 16px; 91 | } 92 | .angelscript-icon:before { 93 | content: "\ea5b"; 94 | top: 4px; 95 | font-size: 18px; 96 | left: -2px; 97 | transform: scale(1.3); 98 | } 99 | .animestudio-icon:before { 100 | content: "\eaed"; 101 | top: 2px; 102 | } 103 | .ansible-icon:before { 104 | content: "\24b6"; 105 | top: 2px; 106 | } 107 | .ant-icon:before { 108 | content: "\e93e"; 109 | top: 4px; 110 | font-size: 18px; 111 | transform: scale(1.1); 112 | } 113 | .antlr-icon:before { 114 | content: "\e92c"; 115 | top: 3px; 116 | } 117 | .antwar-icon:before { 118 | content: "\2591"; 119 | top: 3px; 120 | font-size: 16px; 121 | } 122 | .anyscript-icon:before { 123 | content: "\eacf"; 124 | top: 4px; 125 | font-size: 17px; 126 | } 127 | .api-icon:before { 128 | content: "\e92d"; 129 | top: 2px; 130 | } 131 | .apl-icon:before { 132 | content: "\234b"; 133 | top: 2px; 134 | } 135 | .apple-icon:before { 136 | content: "\e925"; 137 | top: 1px; 138 | } 139 | .appveyor-icon:before { 140 | content: "\e923"; 141 | top: 2px; 142 | } 143 | .arc-icon:before { 144 | content: "\e92f"; 145 | top: 2px; 146 | } 147 | .arduino-icon:before { 148 | content: "\e930"; 149 | top: 3px; 150 | font-size: 16px; 151 | } 152 | .arttext-icon:before { 153 | content: "\24d0"; 154 | top: 2px; 155 | } 156 | .as-icon:before { 157 | content: "\e92e"; 158 | top: 1px; 159 | font-size: 14px; 160 | } 161 | .asciidoc-icon:before { 162 | content: "\e918"; 163 | top: 1px; 164 | font-size: 14px; 165 | } 166 | .asciidoctor-icon:before { 167 | content: "\eac7"; 168 | top: 2px; 169 | font-size: 16px; 170 | } 171 | .asymptote-icon:before { 172 | content: "\eae5"; 173 | top: 3px; 174 | font-size: 16px; 175 | } 176 | .atoum-icon:before { 177 | content: "\2649"; 178 | top: 2px; 179 | font-size: 16px; 180 | } 181 | .ats-icon:before { 182 | content: "\e934"; 183 | top: 2px; 184 | } 185 | .audacity-icon:before { 186 | content: "\e9f9"; 187 | top: 2px; 188 | } 189 | .augeas-icon:before { 190 | content: "\e931"; 191 | top: 2px; 192 | } 193 | .aurelia-icon:before { 194 | content: "\ea48"; 195 | top: 2px; 196 | } 197 | .autoit-icon:before { 198 | content: "\e933"; 199 | top: 2px; 200 | font-size: 16px; 201 | } 202 | .azurepipelines-icon:before { 203 | content: "\1f680"; 204 | top: 2px; 205 | } 206 | .avro-icon:before { 207 | content: "\eaa3"; 208 | top: 4px; 209 | font-size: 16px; 210 | left: 1px; 211 | transform: scale(1.2); 212 | } 213 | .babel-icon:before { 214 | content: "\e91f"; 215 | top: 2px; 216 | left: 1px; 217 | } 218 | .bazaar-icon:before { 219 | content: "\eacd"; 220 | top: 2px; 221 | font-size: 16px; 222 | } 223 | .bazel-icon:before { 224 | content: "\ead2"; 225 | top: 2px; 226 | font-size: 16px; 227 | } 228 | .behat-icon:before { 229 | content: "\ea89"; 230 | top: 2px; 231 | } 232 | .bem-icon:before { 233 | content: "\ea59"; 234 | top: 2px; 235 | } 236 | .bibtex-icon:before { 237 | content: "\e601"; 238 | top: 2px; 239 | font-size: 16px; 240 | } 241 | .bintray-icon:before { 242 | content: "\ea6e"; 243 | top: 2px; 244 | } 245 | .bithound-icon:before { 246 | content: "\ea2a"; 247 | top: 2px; 248 | } 249 | .blender-icon:before { 250 | content: "\e9fa"; 251 | top: 2px; 252 | } 253 | .bluespec-icon:before { 254 | content: "\e93c"; 255 | top: 1px; 256 | font-size: 13px; 257 | left: 1px; 258 | } 259 | .boo-icon:before { 260 | content: "\e939"; 261 | top: 2px; 262 | } 263 | .boot-icon:before { 264 | content: "\f103"; 265 | top: 2px; 266 | font-size: 16px; 267 | } 268 | .brain-icon:before { 269 | content: "\e93a"; 270 | top: 2px; 271 | } 272 | .brakeman-icon:before { 273 | content: "\e9d6"; 274 | top: 2px; 275 | } 276 | .bro-icon:before { 277 | content: "\e93b"; 278 | top: 3px; 279 | font-size: 16px; 280 | } 281 | .broccoli-icon:before { 282 | content: "\e922"; 283 | top: 1px; 284 | font-size: 14px; 285 | } 286 | .brotli-icon:before { 287 | content: "\eaa2"; 288 | top: 2px; 289 | } 290 | .browserslist-icon:before { 291 | content: "\ea80"; 292 | top: 2px; 293 | } 294 | .browsersync-icon:before { 295 | content: "b"; 296 | top: 2px; 297 | } 298 | .brunch-icon:before { 299 | content: "\ea47"; 300 | top: 3px; 301 | font-size: 17px; 302 | left: -1px; 303 | } 304 | .buck-icon:before { 305 | content: "\ea46"; 306 | top: 2px; 307 | } 308 | .bundler-icon:before { 309 | content: "\ea45"; 310 | top: 2px; 311 | font-size: 16px; 312 | } 313 | .byond-icon:before { 314 | content: "\e962"; 315 | top: 2px; 316 | } 317 | .cabal-icon:before { 318 | content: "\e9c2"; 319 | top: 2px; 320 | } 321 | .caddy-icon:before { 322 | content: "\1f512"; 323 | top: 2px; 324 | } 325 | .caffe-icon:before { 326 | content: "\ea9a"; 327 | top: 3px; 328 | font-size: 17px; 329 | } 330 | .caffe2-icon:before { 331 | content: "\eab6"; 332 | top: 2px; 333 | } 334 | .cake-icon:before { 335 | content: "\e9e3"; 336 | top: 2px; 337 | } 338 | .cakefile-icon:before { 339 | content: "\e924"; 340 | top: 2px; 341 | } 342 | .cakephp-icon:before { 343 | content: "\ea43"; 344 | top: 2px; 345 | } 346 | .carthage-icon:before { 347 | content: "\ea98"; 348 | top: 2px; 349 | } 350 | .cc-icon:before { 351 | content: "\e9d5"; 352 | top: 2px; 353 | font-size: 16px; 354 | } 355 | .ceylon-icon:before { 356 | content: "\e94f"; 357 | top: 2px; 358 | } 359 | .cf-icon:before { 360 | content: "\e929"; 361 | top: 2px; 362 | } 363 | .chai-icon:before { 364 | content: "c"; 365 | top: 3px; 366 | font-size: 16px; 367 | } 368 | .chapel-icon:before { 369 | content: "\e950"; 370 | top: 2px; 371 | } 372 | .chartjs-icon:before { 373 | content: "\ea0b"; 374 | top: 2px; 375 | } 376 | .chef-icon:before { 377 | content: "\ea42"; 378 | top: 2px; 379 | } 380 | .chocolatey-icon:before { 381 | content: "\1f36b"; 382 | top: 3px; 383 | font-size: 17px; 384 | } 385 | .chuck-icon:before { 386 | content: "\e943"; 387 | top: 2px; 388 | } 389 | .circleci-icon:before { 390 | content: "\ea12"; 391 | top: 2px; 392 | font-size: 14px; 393 | } 394 | .cirru-icon:before { 395 | content: "\e951"; 396 | top: 2px; 397 | } 398 | .cl-icon:before { 399 | content: "\e972"; 400 | top: 2px; 401 | } 402 | .clarion-icon:before { 403 | content: "\e952"; 404 | top: 1px; 405 | font-size: 14px; 406 | left: 1px; 407 | } 408 | .clean-icon:before { 409 | content: "\e95b"; 410 | top: 2px; 411 | font-size: 16px; 412 | } 413 | .click-icon:before { 414 | content: "\e95c"; 415 | top: 2px; 416 | } 417 | .clips-icon:before { 418 | content: "\e940"; 419 | top: 3px; 420 | font-size: 18px; 421 | } 422 | .cljs-icon:before { 423 | content: "\f104"; 424 | top: 2px; 425 | } 426 | .closure-tpl-icon:before { 427 | content: "\ea82"; 428 | top: 2px; 429 | } 430 | .cloudfoundry-icon:before { 431 | content: "\ead0"; 432 | top: 2px; 433 | } 434 | .cmake-icon:before { 435 | content: "\e93f"; 436 | top: 1px; 437 | font-size: 14px; 438 | } 439 | .cobol-icon:before { 440 | content: "\ea44"; 441 | top: 2px; 442 | font-size: 16px; 443 | } 444 | .cocoapods-icon:before { 445 | content: "\ea97"; 446 | top: 2px; 447 | } 448 | .codacy-icon:before { 449 | content: "\ea8b"; 450 | top: 2px; 451 | } 452 | .codecov-icon:before { 453 | content: "\2602"; 454 | top: 2px; 455 | } 456 | .codekit-icon:before { 457 | content: "\ea41"; 458 | top: 2px; 459 | } 460 | .codeship-icon:before { 461 | content: "\ea6a"; 462 | top: 2px; 463 | } 464 | .composer-icon:before { 465 | content: "\e683"; 466 | top: 3px; 467 | font-size: 17px; 468 | } 469 | .conan-icon:before { 470 | content: "\ead1"; 471 | top: 2px; 472 | } 473 | .config-icon:before { 474 | content: "\f07c"; 475 | top: 2px; 476 | font-size: 14px; 477 | } 478 | .config-coffee-icon:before { 479 | content: "\eb18"; 480 | top: 3px; 481 | font-size: 17px; 482 | } 483 | .config-go-icon:before { 484 | content: "\eb12"; 485 | top: 3px; 486 | font-size: 18px; 487 | } 488 | .config-hs-icon:before { 489 | content: "\eb14"; 490 | top: 3px; 491 | font-size: 17px; 492 | } 493 | .config-js-icon:before { 494 | content: "\eb1a"; 495 | top: 3px; 496 | font-size: 17px; 497 | } 498 | .config-perl-icon:before { 499 | content: "\eb19"; 500 | top: 3px; 501 | font-size: 17px; 502 | } 503 | .config-python-icon:before { 504 | content: "\eb15"; 505 | top: 3px; 506 | font-size: 17px; 507 | } 508 | .config-react-icon:before { 509 | content: "\eb16"; 510 | top: 3px; 511 | font-size: 17px; 512 | } 513 | .config-ruby-icon:before { 514 | content: "\eb17"; 515 | top: 3px; 516 | font-size: 17px; 517 | } 518 | .config-rust-icon:before { 519 | content: "\eb13"; 520 | top: 3px; 521 | font-size: 17px; 522 | } 523 | .config-ts-icon:before { 524 | content: "\eb1b"; 525 | top: 3px; 526 | font-size: 17px; 527 | } 528 | .conll-icon:before { 529 | content: "\eaa6"; 530 | top: 2px; 531 | } 532 | .coq-icon:before { 533 | content: "\e95f"; 534 | top: 2px; 535 | font-size: 16px; 536 | left: 1px; 537 | } 538 | .cordova-icon:before { 539 | content: "\ea11"; 540 | top: 2px; 541 | } 542 | .corel-icon:before { 543 | content: "\ea91"; 544 | top: 3px; 545 | font-size: 16px; 546 | } 547 | .coreldraw-icon:before { 548 | content: "\ea90"; 549 | top: 2px; 550 | } 551 | .coveralls-icon:before { 552 | content: "\272a"; 553 | top: 2px; 554 | } 555 | .cp-icon:before { 556 | content: "\e942"; 557 | top: 3px; 558 | font-size: 17px; 559 | } 560 | .cpan-icon:before { 561 | content: "\ea87"; 562 | top: 2px; 563 | } 564 | .creole-icon:before { 565 | content: "\e95e"; 566 | top: 2px; 567 | } 568 | .crowdin-icon:before { 569 | content: "\ead3"; 570 | top: 2px; 571 | font-size: 16px; 572 | } 573 | .crystal-icon:before { 574 | content: "\e902"; 575 | top: 2px; 576 | left: 1px; 577 | } 578 | .csound-icon:before { 579 | content: "\e9f0"; 580 | top: 2px; 581 | } 582 | .csscript-icon:before { 583 | content: "\e9e2"; 584 | top: 2px; 585 | } 586 | .cucumber-icon:before { 587 | content: "\f02b"; 588 | top: 3px; 589 | } 590 | .curl-icon:before { 591 | content: "/"; 592 | top: 3px; 593 | font-size: 16px; 594 | } 595 | .cvs-icon:before { 596 | content: "\1f41f"; 597 | top: 1px; 598 | font-size: 16px; 599 | } 600 | .cwl-icon:before { 601 | content: "\29d9"; 602 | top: 2px; 603 | font-size: 16px; 604 | } 605 | .cython-icon:before { 606 | content: "\e963"; 607 | top: 2px; 608 | } 609 | .d3-icon:before { 610 | content: "\ea10"; 611 | top: 2px; 612 | } 613 | .darcs-icon:before { 614 | content: "\e964"; 615 | top: 2px; 616 | } 617 | .dashboard-icon:before { 618 | content: "\f07d"; 619 | top: 2px; 620 | font-size: 13px; 621 | } 622 | .dataweave-icon:before { 623 | content: "\ea99"; 624 | top: 2px; 625 | } 626 | .dbase-icon:before { 627 | content: "\e9f1"; 628 | top: 2px; 629 | } 630 | .dna-icon:before { 631 | content: "\2624"; 632 | top: 2px; 633 | font-size: 16px; 634 | } 635 | .default-icon:before { 636 | content: "\1f5cc"; 637 | top: 2px; 638 | font-size: 14px; 639 | } 640 | .delphi-icon:before { 641 | content: "\ea40"; 642 | top: 2px; 643 | font-size: 16px; 644 | } 645 | .deno-icon:before { 646 | content: "\eaef"; 647 | top: 2px; 648 | font-size: 16px; 649 | } 650 | .devicetree-icon:before { 651 | content: "\ea57"; 652 | top: 2px; 653 | font-size: 17px; 654 | } 655 | .dia-icon:before { 656 | content: "\eab5"; 657 | top: 2px; 658 | } 659 | .digdag-icon:before { 660 | content: "\eb03"; 661 | top: 2px; 662 | } 663 | .diff-icon:before { 664 | content: "\e960"; 665 | top: 2px; 666 | } 667 | .docker-icon:before { 668 | content: "\f106"; 669 | top: 3px; 670 | font-size: 18px; 671 | } 672 | .doclets-icon:before { 673 | content: "\ea3f"; 674 | top: 2px; 675 | } 676 | .docpad-icon:before { 677 | content: "\21b9"; 678 | top: 4px; 679 | font-size: 17px; 680 | } 681 | .doge-icon:before { 682 | content: "\e946"; 683 | top: 2px; 684 | } 685 | .dosbox-icon:before { 686 | content: "\eaf2"; 687 | top: 2px; 688 | font-size: 16px; 689 | } 690 | .dotjs-icon:before { 691 | content: "\eb0b"; 692 | top: 2px; 693 | font-size: 16px; 694 | } 695 | .doxygen-icon:before { 696 | content: "\e928"; 697 | top: 1px; 698 | font-size: 13px; 699 | } 700 | .dragula-icon:before { 701 | content: "\1f44c"; 702 | top: 3px; 703 | font-size: 17px; 704 | } 705 | .drone-icon:before { 706 | content: "\ea3d"; 707 | top: 2px; 708 | } 709 | .dyalog-icon:before { 710 | content: "\e90c"; 711 | top: 1px; 712 | font-size: 14px; 713 | left: 1px; 714 | } 715 | .dylib-icon:before { 716 | content: "\ea15"; 717 | top: 2px; 718 | } 719 | .e-icon:before { 720 | content: "E"; 721 | top: 1px; 722 | font-size: 14px; 723 | } 724 | .eagle-icon:before { 725 | content: "\e965"; 726 | top: 2px; 727 | } 728 | .easybuild-icon:before { 729 | content: "\ea85"; 730 | top: 2px; 731 | } 732 | .ec-icon:before { 733 | content: "\e9c9"; 734 | top: 2px; 735 | } 736 | .ecere-icon:before { 737 | content: "\e966"; 738 | top: 3px; 739 | font-size: 16px; 740 | } 741 | .editorconfig-icon:before { 742 | content: "\ea1b"; 743 | top: 3px; 744 | } 745 | .edge-icon:before { 746 | content: "\ea78"; 747 | top: 2px; 748 | } 749 | .eiffel-icon:before { 750 | content: "\e967"; 751 | top: 2px; 752 | font-size: 16px; 753 | } 754 | .ejs-icon:before { 755 | content: "\ea4b"; 756 | top: 3px; 757 | font-size: 16px; 758 | } 759 | .electron-icon:before { 760 | content: "\ea27"; 761 | top: 3px; 762 | font-size: 16px; 763 | } 764 | .elm-icon:before { 765 | content: "\f102"; 766 | top: 2px; 767 | } 768 | .em-icon:before { 769 | content: "\e968"; 770 | top: 3px; 771 | font-size: 16px; 772 | } 773 | .emacs-icon:before { 774 | content: "\e926"; 775 | top: 2px; 776 | } 777 | .ember-icon:before { 778 | content: "\e61b"; 779 | top: 2px; 780 | font-size: 14px; 781 | } 782 | .ensime-icon:before { 783 | content: "\ead4"; 784 | top: 2px; 785 | } 786 | .eq-icon:before { 787 | content: "\ea0a"; 788 | top: 5px; 789 | } 790 | .esdoc-icon:before { 791 | content: "\ea5c"; 792 | top: 2px; 793 | } 794 | .eslint-icon:before { 795 | content: "\ea0f"; 796 | top: 3px; 797 | font-size: 16px; 798 | } 799 | .excel-icon:before { 800 | content: "\e9ee"; 801 | top: 2px; 802 | } 803 | .fabfile-icon:before { 804 | content: "\e94b"; 805 | top: 2px; 806 | font-size: 16px; 807 | } 808 | .factor-icon:before { 809 | content: "\e96a"; 810 | top: 3px; 811 | font-size: 18px; 812 | left: -2px; 813 | transform: scale(1.2); 814 | } 815 | .falcon-icon:before { 816 | content: "\eae4"; 817 | top: 2px; 818 | } 819 | .fancy-icon:before { 820 | content: "\e96b"; 821 | top: 2px; 822 | font-size: 16px; 823 | } 824 | .fantom-icon:before { 825 | content: "\e96f"; 826 | top: 2px; 827 | left: 1px; 828 | } 829 | .fbx-icon:before { 830 | content: "\e9fc"; 831 | top: 2px; 832 | } 833 | .fexl-icon:before { 834 | content: "\eb20"; 835 | top: 4px; 836 | font-size: 17px; 837 | } 838 | .ff-icon:before { 839 | content: "\fb00"; 840 | top: 3px; 841 | } 842 | .finder-icon:before { 843 | content: "\e9e9"; 844 | top: 3px; 845 | font-size: 16px; 846 | } 847 | .firebase-icon:before { 848 | content: "\ea7f"; 849 | top: 2px; 850 | } 851 | .firebase-bolt-icon:before { 852 | content: "\26A1"; 853 | top: 3px; 854 | } 855 | .flask-icon:before { 856 | content: "\1f704"; 857 | top: 2px; 858 | } 859 | .floobits-icon:before { 860 | content: "\ead5"; 861 | top: 3px; 862 | font-size: 16px; 863 | } 864 | .flow-icon:before { 865 | content: "\e921"; 866 | top: 1px; 867 | } 868 | .flutter-icon:before { 869 | content: "\eaeb"; 870 | top: 2px; 871 | left: -1px; 872 | } 873 | .flux-icon:before { 874 | content: "\e969"; 875 | top: 2px; 876 | } 877 | .font-icon:before { 878 | content: "\eaaa"; 879 | top: 2px; 880 | font-size: 16px; 881 | } 882 | .font-bitmap-icon:before { 883 | content: "\eaab"; 884 | top: 2px; 885 | } 886 | .fortran-icon:before { 887 | content: "\e90a"; 888 | top: 1px; 889 | font-size: 14px; 890 | left: 1px; 891 | } 892 | .fossa-icon:before { 893 | content: "\eac3"; 894 | top: 3px; 895 | font-size: 17px; 896 | } 897 | .fossil-icon:before { 898 | content: "\ead6"; 899 | top: 2px; 900 | font-size: 17px; 901 | } 902 | .fountain-icon:before { 903 | content: "\1f135"; 904 | top: 2px; 905 | font-size: 16px; 906 | } 907 | .franca-icon:before { 908 | content: "\ea56"; 909 | top: 2px; 910 | } 911 | .freemarker-icon:before { 912 | content: "\e970"; 913 | top: 2px; 914 | font-size: 16px; 915 | left: 1px; 916 | } 917 | .frege-icon:before { 918 | content: "\e96e"; 919 | top: 2px; 920 | font-size: 16px; 921 | left: 1px; 922 | } 923 | .fuelux-icon:before { 924 | content: "\ea09"; 925 | top: 3px; 926 | font-size: 16px; 927 | left: 2px; 928 | transform: scale(1.15); 929 | } 930 | .fusebox-icon:before { 931 | content: "\ead7"; 932 | top: 2px; 933 | } 934 | .gams-icon:before { 935 | content: "\e973"; 936 | top: 2px; 937 | left: 1px; 938 | } 939 | .galen-icon:before { 940 | content: "\ead8"; 941 | top: 2px; 942 | } 943 | .gap-icon:before { 944 | content: "\e971"; 945 | top: 3px; 946 | font-size: 16px; 947 | left: 1px; 948 | } 949 | .gatsby-icon:before { 950 | content: "\24bc"; 951 | top: 2px; 952 | } 953 | .gdb-icon:before { 954 | content: "\ea08"; 955 | top: 3px; 956 | font-size: 16px; 957 | transform: scale(1.15); 958 | } 959 | .genshi-icon:before { 960 | content: "\e976"; 961 | top: 3px; 962 | } 963 | .gentoo-icon:before { 964 | content: "\e96d"; 965 | top: 1px; 966 | font-size: 14px; 967 | left: 1px; 968 | } 969 | .gf-icon:before { 970 | content: "\e978"; 971 | top: 2px; 972 | } 973 | .gimp-icon:before { 974 | content: "\ea88"; 975 | top: 2px; 976 | font-size: 17px; 977 | transform: scale(1.15); 978 | } 979 | .gitlab-icon:before { 980 | content: "\ea3c"; 981 | top: 3px; 982 | font-size: 16px; 983 | } 984 | .glade-icon:before { 985 | content: "\e938"; 986 | top: 2px; 987 | } 988 | .glide-icon:before { 989 | content: "\eacb"; 990 | top: 3px; 991 | font-size: 17px; 992 | transform: scale(1.15); 993 | } 994 | .gltf-icon:before { 995 | content: "\eaa7"; 996 | top: 3px; 997 | font-size: 17px; 998 | } 999 | .glyphs-icon:before { 1000 | content: "G"; 1001 | top: 3px; 1002 | } 1003 | .gml-icon:before { 1004 | content: "\e975"; 1005 | top: 3px; 1006 | font-size: 16px; 1007 | } 1008 | .gn-icon:before { 1009 | content: "\ea25"; 1010 | top: 2px; 1011 | } 1012 | .gnu-icon:before { 1013 | content: "\e679"; 1014 | top: 2px; 1015 | font-size: 16px; 1016 | } 1017 | .go-icon:before { 1018 | content: "\eaae"; 1019 | top: 4px; 1020 | font-size: 18px; 1021 | left: -1px; 1022 | } 1023 | .godot-icon:before { 1024 | content: "\e974"; 1025 | top: 2px; 1026 | } 1027 | .golo-icon:before { 1028 | content: "\e979"; 1029 | top: 2px; 1030 | } 1031 | .gosu-icon:before { 1032 | content: "\e97a"; 1033 | top: 2px; 1034 | } 1035 | .gradle-icon:before { 1036 | content: "\e903"; 1037 | top: 3px; 1038 | font-size: 16px; 1039 | left: 1px; 1040 | } 1041 | .graphite-icon:before { 1042 | content: "\ea8a"; 1043 | top: 2px; 1044 | font-size: 17px; 1045 | } 1046 | .graphql-icon:before { 1047 | content: "\e97c"; 1048 | top: 2px; 1049 | } 1050 | .graphviz-icon:before { 1051 | content: "\e97d"; 1052 | top: 4px; 1053 | font-size: 17px; 1054 | left: 1px; 1055 | } 1056 | .greenkeeper-icon:before { 1057 | content: "\eb0c"; 1058 | top: 3px; 1059 | font-size: 16px; 1060 | } 1061 | .gvdesign-icon:before { 1062 | content: "\eb02"; 1063 | top: 2px; 1064 | } 1065 | .gridsome-icon:before { 1066 | content: "\eae7"; 1067 | top: 2px; 1068 | } 1069 | .groovy-icon:before { 1070 | content: "\e904"; 1071 | top: 4px; 1072 | font-size: 17px; 1073 | left: -1px; 1074 | } 1075 | .grunt-icon:before { 1076 | content: "\e611"; 1077 | top: 1px; 1078 | font-size: 14px; 1079 | } 1080 | .gulp-icon:before { 1081 | content: "\e610"; 1082 | top: 2px; 1083 | font-size: 16px; 1084 | } 1085 | .hack-icon:before { 1086 | content: "\e9ce"; 1087 | top: 2px; 1088 | } 1089 | .haml-icon:before { 1090 | content: "\f15b"; 1091 | top: 2px; 1092 | } 1093 | .hoplon-icon:before { 1094 | content: "\ea4d"; 1095 | top: 2px; 1096 | } 1097 | .harbour-icon:before { 1098 | content: "\e97b"; 1099 | top: 2px; 1100 | font-size: 16px; 1101 | } 1102 | .hashicorp-icon:before { 1103 | content: "\e97e"; 1104 | top: 2px; 1105 | } 1106 | .haxe-icon:before { 1107 | content: "\e907"; 1108 | top: 2px; 1109 | } 1110 | .haxedevelop-icon:before { 1111 | content: "\ea3b"; 1112 | top: 2px; 1113 | font-size: 16px; 1114 | } 1115 | .helix-icon:before { 1116 | content: "\2695"; 1117 | top: 2px; 1118 | font-size: 16px; 1119 | } 1120 | .hg-icon:before { 1121 | content: "\263f"; 1122 | top: 2px; 1123 | } 1124 | .hjson-icon:before { 1125 | content: "\eac2"; 1126 | top: 2px; 1127 | font-size: 16px; 1128 | } 1129 | .houndci-icon:before { 1130 | content: "\eaaf"; 1131 | top: 2px; 1132 | } 1133 | .hp-icon:before { 1134 | content: "\33cb"; 1135 | top: 2px; 1136 | } 1137 | .hy-icon:before { 1138 | content: "\e97f"; 1139 | top: 2px; 1140 | } 1141 | .kx-icon:before { 1142 | content: "\ea9b"; 1143 | top: 2px; 1144 | } 1145 | .husky-icon:before { 1146 | content: "\1f436"; 1147 | top: 2px; 1148 | font-size: 17px; 1149 | } 1150 | .icomoon-icon:before { 1151 | content: "\eaea"; 1152 | top: 2px; 1153 | } 1154 | .idl-icon:before { 1155 | content: "\e947"; 1156 | top: 3px; 1157 | font-size: 18px; 1158 | } 1159 | .idris-icon:before { 1160 | content: "\e983"; 1161 | top: 2px; 1162 | font-size: 16px; 1163 | } 1164 | .igorpro-icon:before { 1165 | content: "\e980"; 1166 | top: 2px; 1167 | font-size: 16px; 1168 | } 1169 | .indesign-icon:before { 1170 | content: "\e9f4"; 1171 | top: 2px; 1172 | } 1173 | .infopath-icon:before { 1174 | content: "\ea35"; 1175 | top: 2px; 1176 | font-size: 16px; 1177 | } 1178 | .inform7-icon:before { 1179 | content: "\e984"; 1180 | top: 2px; 1181 | font-size: 16px; 1182 | } 1183 | .inkscape-icon:before { 1184 | content: "\ea8e"; 1185 | top: 3px; 1186 | font-size: 16px; 1187 | } 1188 | .inno-icon:before { 1189 | content: "\e985"; 1190 | top: 2px; 1191 | } 1192 | .imba-icon:before { 1193 | content: "\26ff"; 1194 | top: 2px; 1195 | font-size: 16px; 1196 | } 1197 | .ink-icon:before { 1198 | content: "\eace"; 1199 | top: 2px; 1200 | font-size: 16px; 1201 | } 1202 | .io-icon:before { 1203 | content: "\e981"; 1204 | top: 1px; 1205 | font-size: 13px; 1206 | } 1207 | .ioke-icon:before { 1208 | content: "\e982"; 1209 | top: 2px; 1210 | } 1211 | .ionic-icon:before { 1212 | content: "\f14b"; 1213 | top: 2px; 1214 | } 1215 | .isabelle-icon:before { 1216 | content: "\e945"; 1217 | top: 2px; 1218 | font-size: 16px; 1219 | } 1220 | .istanbul-icon:before { 1221 | content: "\1f54c"; 1222 | top: 2px; 1223 | font-size: 17px; 1224 | } 1225 | .j-icon:before { 1226 | content: "\e937"; 1227 | top: 1px; 1228 | font-size: 13px; 1229 | } 1230 | .jade-icon:before { 1231 | content: "\e90d"; 1232 | top: 1px; 1233 | font-size: 14px; 1234 | } 1235 | .jake-icon:before { 1236 | content: "\e948"; 1237 | top: 3px; 1238 | font-size: 16px; 1239 | } 1240 | .jasmine-icon:before { 1241 | content: "\ea3a"; 1242 | top: 3px; 1243 | font-size: 16px; 1244 | } 1245 | .jenkins-icon:before { 1246 | content: "\e667"; 1247 | top: 3px; 1248 | font-size: 18px; 1249 | } 1250 | .jest-icon:before { 1251 | content: "\ea39"; 1252 | top: 2px; 1253 | } 1254 | .jolie-icon:before { 1255 | content: "\ea75"; 1256 | top: 2px; 1257 | } 1258 | .jinja-icon:before { 1259 | content: "\e944"; 1260 | top: 2px; 1261 | } 1262 | .jison-icon:before { 1263 | content: "\ea55"; 1264 | top: 2px; 1265 | } 1266 | .json-icon:before { 1267 | content: "\eabe"; 1268 | top: 2px; 1269 | } 1270 | .json5-icon:before { 1271 | content: "\2478"; 1272 | top: 2px; 1273 | } 1274 | .jsonld-icon:before { 1275 | content: "\e958"; 1276 | top: 3px; 1277 | font-size: 17px; 1278 | } 1279 | .jsonnet-icon:before { 1280 | content: "\eb1e"; 1281 | top: 3px; 1282 | font-size: 16px; 1283 | } 1284 | .jsx-icon:before { 1285 | content: "\e9e6"; 1286 | top: 1px; 1287 | font-size: 14px; 1288 | } 1289 | .julia-icon:before { 1290 | content: "\26ec"; 1291 | top: 1px; 1292 | font-size: 14px; 1293 | } 1294 | .junos-icon:before { 1295 | content: "\ea81"; 1296 | top: 2px; 1297 | } 1298 | .jupyter-icon:before { 1299 | content: "\e987"; 1300 | top: 3px; 1301 | font-size: 16px; 1302 | } 1303 | .karma-icon:before { 1304 | content: "\e9cd"; 1305 | top: 2px; 1306 | } 1307 | .keybase-icon:before { 1308 | content: "\eaf8"; 1309 | top: 2px; 1310 | font-size: 17px; 1311 | } 1312 | .keynote-icon:before { 1313 | content: "\e9e5"; 1314 | top: 2px; 1315 | } 1316 | .khronos-icon:before { 1317 | content: "\e9f8"; 1318 | top: 2px; 1319 | } 1320 | .kicad-icon:before { 1321 | content: "\ea4c"; 1322 | top: 2px; 1323 | } 1324 | .kitchenci-icon:before { 1325 | content: "\ea38"; 1326 | top: 2px; 1327 | } 1328 | .kivy-icon:before { 1329 | content: "\e901"; 1330 | top: 2px; 1331 | } 1332 | .knockout-icon:before { 1333 | content: "\4B"; 1334 | top: 2px; 1335 | } 1336 | .kos-icon:before { 1337 | content: "k"; 1338 | top: 4px; 1339 | font-size: 17px; 1340 | } 1341 | .kotlin-icon:before { 1342 | content: "\e989"; 1343 | top: 1px; 1344 | font-size: 14px; 1345 | } 1346 | .krl-icon:before { 1347 | content: "\e988"; 1348 | top: 1px; 1349 | font-size: 14px; 1350 | } 1351 | .kubernetes-icon:before { 1352 | content: "\2388"; 1353 | top: 2px; 1354 | font-size: 16px; 1355 | } 1356 | .labview-icon:before { 1357 | content: "\e98a"; 1358 | top: 2px; 1359 | font-size: 16px; 1360 | } 1361 | .lasso-icon:before { 1362 | content: "\e98c"; 1363 | top: 2px; 1364 | left: 1px; 1365 | } 1366 | .leaflet-icon:before { 1367 | content: "\ea07"; 1368 | top: 2px; 1369 | } 1370 | .lean-icon:before { 1371 | content: "L"; 1372 | top: 1px; 1373 | font-size: 13px; 1374 | } 1375 | .lein-icon:before { 1376 | content: "\f105"; 1377 | top: 3px; 1378 | font-size: 16px; 1379 | transform: scale(1.15); 1380 | } 1381 | .lektor-icon:before { 1382 | content: "\eab9"; 1383 | top: 2px; 1384 | font-size: 16px; 1385 | } 1386 | .lerna-icon:before { 1387 | content: "\ea37"; 1388 | top: 2px; 1389 | font-size: 16px; 1390 | transform: scale(1.15); 1391 | } 1392 | .lfe-icon:before { 1393 | content: "\e94c"; 1394 | top: 2px; 1395 | font-size: 16px; 1396 | } 1397 | .lightwave-icon:before { 1398 | content: "\e9fb"; 1399 | top: 2px; 1400 | } 1401 | .lime-icon:before { 1402 | content: "\ea36"; 1403 | top: 2px; 1404 | font-size: 16px; 1405 | } 1406 | .lisp-icon:before { 1407 | content: "\e908"; 1408 | top: 3px; 1409 | font-size: 17px; 1410 | } 1411 | .llvm-icon:before { 1412 | content: "\e91d"; 1413 | top: 3px; 1414 | font-size: 17px; 1415 | } 1416 | .logtalk-icon:before { 1417 | content: "\e98d"; 1418 | top: 2px; 1419 | } 1420 | .lolcode-icon:before { 1421 | content: "\1f63a"; 1422 | top: 2px; 1423 | font-size: 16px; 1424 | } 1425 | .lookml-icon:before { 1426 | content: "\e98e"; 1427 | top: 2px; 1428 | font-size: 16px; 1429 | } 1430 | .ls-icon:before { 1431 | content: "\e914"; 1432 | top: 2px; 1433 | font-size: 14px; 1434 | } 1435 | .lsl-icon:before { 1436 | content: "\e98b"; 1437 | top: 1px; 1438 | } 1439 | .lua-icon:before { 1440 | content: "\e91b"; 1441 | top: 2px; 1442 | font-size: 14px; 1443 | } 1444 | .lync-icon:before { 1445 | content: "\ead9"; 1446 | top: 2px; 1447 | font-size: 16px; 1448 | } 1449 | .mako-icon:before { 1450 | content: "\e98f"; 1451 | top: 4px; 1452 | font-size: 16px; 1453 | } 1454 | .manpage-icon:before { 1455 | content: "\e936"; 1456 | top: 3px; 1457 | } 1458 | .mapbox-icon:before { 1459 | content: "\e941"; 1460 | top: 1px; 1461 | font-size: 13px; 1462 | } 1463 | .marko-icon:before { 1464 | content: "\e920"; 1465 | top: 4px; 1466 | font-size: 18px; 1467 | left: -1px; 1468 | transform: scale(1.05); 1469 | } 1470 | .markdownlint-icon:before { 1471 | content: "\f0c9"; 1472 | top: 3px; 1473 | font-size: 17px; 1474 | transform: scale(1.25); 1475 | transform-origin: 0 60%; 1476 | } 1477 | .mathematica-icon:before { 1478 | content: "\e990"; 1479 | top: 2px; 1480 | font-size: 16px; 1481 | } 1482 | .mathjax-icon:before { 1483 | content: "\ea06"; 1484 | top: 2px; 1485 | } 1486 | .matlab-icon:before { 1487 | content: "\e991"; 1488 | top: 2px; 1489 | } 1490 | .matroska-icon:before { 1491 | content: "\2668"; 1492 | top: 2px; 1493 | } 1494 | .max-icon:before { 1495 | content: "\e993"; 1496 | top: 2px; 1497 | } 1498 | .maxscript-icon:before { 1499 | content: "\e900"; 1500 | top: 2px; 1501 | } 1502 | .maya-icon:before { 1503 | content: "\e9f6"; 1504 | top: 2px; 1505 | font-size: 16px; 1506 | } 1507 | .mdx-icon:before { 1508 | content: "\eab7"; 1509 | top: 3px; 1510 | font-size: 16px; 1511 | } 1512 | .mediawiki-icon:before { 1513 | content: "\e954"; 1514 | top: 2px; 1515 | font-size: 16px; 1516 | } 1517 | .mercury-icon:before { 1518 | content: "\e994"; 1519 | top: 3px; 1520 | font-size: 16px; 1521 | transform: scale(1.2); 1522 | } 1523 | .meson-icon:before { 1524 | content: "\ea54"; 1525 | top: 2px; 1526 | } 1527 | .metal-icon:before { 1528 | content: "M"; 1529 | top: 1px; 1530 | left: 1px; 1531 | } 1532 | .meteor-icon:before { 1533 | content: "\e6a5"; 1534 | top: 1px; 1535 | } 1536 | .minecraft-icon:before { 1537 | content: "\e9dc"; 1538 | top: 2px; 1539 | } 1540 | .minizinc-icon:before { 1541 | content: "\ea53"; 1542 | top: 2px; 1543 | } 1544 | .mirah-icon:before { 1545 | content: "\e995"; 1546 | top: 2px; 1547 | } 1548 | .miranda-icon:before { 1549 | content: "\ea52"; 1550 | top: 3px; 1551 | font-size: 16px; 1552 | } 1553 | .mjml-icon:before { 1554 | content: "\ea6f"; 1555 | top: 2px; 1556 | } 1557 | .mocha-icon:before { 1558 | content: "\26fe"; 1559 | top: 2px; 1560 | font-size: 17px; 1561 | } 1562 | .model-icon:before { 1563 | content: "\e9e8"; 1564 | top: 2px; 1565 | font-size: 16px; 1566 | } 1567 | .modula2-icon:before { 1568 | content: "\e996"; 1569 | top: 2px; 1570 | } 1571 | .modula3-icon:before { 1572 | content: "\2778"; 1573 | top: 3px; 1574 | font-size: 17px; 1575 | } 1576 | .modelica-icon:before { 1577 | content: "\eaff"; 1578 | top: 4px; 1579 | font-size: 17px; 1580 | transform: scale(1.2); 1581 | } 1582 | .moho-icon:before { 1583 | content: "\eaee"; 1584 | top: 3px; 1585 | font-size: 16px; 1586 | } 1587 | .moleculer-icon:before { 1588 | content: "\eb0e"; 1589 | top: 3px; 1590 | font-size: 16px; 1591 | } 1592 | .moment-icon:before { 1593 | content: "\1f558"; 1594 | top: 2px; 1595 | } 1596 | .moment-tz-icon:before { 1597 | content: "\1f30d"; 1598 | top: 2px; 1599 | } 1600 | .monotone-icon:before { 1601 | content: "\1f400"; 1602 | top: 2px; 1603 | font-size: 18px; 1604 | } 1605 | .monkey-icon:before { 1606 | content: "\e997"; 1607 | top: 3px; 1608 | font-size: 18px; 1609 | left: -1px; 1610 | } 1611 | .mruby-icon:before { 1612 | content: "\ea18"; 1613 | top: 2px; 1614 | } 1615 | .msproject-icon:before { 1616 | content: "\eae8"; 1617 | top: 2px; 1618 | } 1619 | .mupad-icon:before { 1620 | content: "\e9ca"; 1621 | top: 3px; 1622 | font-size: 16px; 1623 | } 1624 | .mustache-icon:before { 1625 | content: "\e60f"; 1626 | top: 2px; 1627 | font-size: 16px; 1628 | } 1629 | .n64-icon:before { 1630 | content: "n"; 1631 | top: 2px; 1632 | font-size: 16px; 1633 | } 1634 | .nailpolish-icon:before { 1635 | content: "\1f485"; 1636 | top: 3px; 1637 | font-size: 16px; 1638 | left: 1px; 1639 | } 1640 | .nano-icon:before { 1641 | content: "\ea76"; 1642 | top: 2px; 1643 | } 1644 | .nanoc-icon:before { 1645 | content: "\ea51"; 1646 | top: 2px; 1647 | } 1648 | .nant-icon:before { 1649 | content: "\e9e1"; 1650 | top: 3px; 1651 | transform: scale(1.2); 1652 | } 1653 | .nasm-icon:before { 1654 | content: "\ea72"; 1655 | top: 2px; 1656 | } 1657 | .ndepend-icon:before { 1658 | content: "\eab4"; 1659 | top: 2px; 1660 | } 1661 | .neko-icon:before { 1662 | content: "\ea05"; 1663 | top: 2px; 1664 | } 1665 | .neo4j-icon:before { 1666 | content: "\eab3"; 1667 | top: 2px; 1668 | } 1669 | .netlify-icon:before { 1670 | content: "\eabf"; 1671 | top: 3px; 1672 | font-size: 16px; 1673 | } 1674 | .netlogo-icon:before { 1675 | content: "\e99c"; 1676 | top: 2px; 1677 | left: 1px; 1678 | } 1679 | .newrelic-icon:before { 1680 | content: "\e9d7"; 1681 | top: 2px; 1682 | } 1683 | .nextflow-icon:before { 1684 | content: "\eaa5"; 1685 | top: 2px; 1686 | font-size: 16px; 1687 | } 1688 | .nestjs-icon:before { 1689 | content: "\eac9"; 1690 | top: 2px; 1691 | } 1692 | .nginx-icon:before { 1693 | content: "\f146b"; 1694 | top: 2px; 1695 | } 1696 | .nib-icon:before { 1697 | content: "\2712"; 1698 | top: 2px; 1699 | } 1700 | .nightwatch-icon:before { 1701 | content: "\eb08"; 1702 | top: 3px; 1703 | font-size: 16px; 1704 | } 1705 | .nimrod-icon:before { 1706 | content: "\e998"; 1707 | top: 2px; 1708 | } 1709 | .nit-icon:before { 1710 | content: "\e999"; 1711 | top: 2px; 1712 | } 1713 | .nix-icon:before { 1714 | content: "\e99a"; 1715 | top: 3px; 1716 | font-size: 16px; 1717 | } 1718 | .nmap-icon:before { 1719 | content: "\e94d"; 1720 | top: 3px; 1721 | font-size: 16px; 1722 | transform: scale(1.1); 1723 | } 1724 | .nodemon-icon:before { 1725 | content: "\ea26"; 1726 | top: 2px; 1727 | } 1728 | .nomad-icon:before { 1729 | content: "\ea96"; 1730 | top: 2px; 1731 | } 1732 | .normalize-icon:before { 1733 | content: "\ea04"; 1734 | top: 3px; 1735 | font-size: 16px; 1736 | } 1737 | .npm-icon:before { 1738 | content: "\e91c"; 1739 | top: 3px; 1740 | font-size: 17px; 1741 | } 1742 | .nsis-icon:before { 1743 | content: "\ea1e"; 1744 | top: 3px; 1745 | font-size: 16px; 1746 | } 1747 | .nuclide-icon:before { 1748 | content: "\ea34"; 1749 | top: 2px; 1750 | } 1751 | .nuget-icon:before { 1752 | content: "\e9d9"; 1753 | top: 2px; 1754 | } 1755 | .numpy-icon:before { 1756 | content: "\e99d"; 1757 | top: 2px; 1758 | font-size: 14px; 1759 | } 1760 | .nunjucks-icon:before { 1761 | content: "\e953"; 1762 | top: 2px; 1763 | font-size: 16px; 1764 | } 1765 | .nuxt-icon:before { 1766 | content: "\eaca"; 1767 | top: 2px; 1768 | font-size: 16px; 1769 | } 1770 | .nxc-icon:before { 1771 | content: "\ea6b"; 1772 | top: 2px; 1773 | font-size: 16px; 1774 | } 1775 | .nvidia-icon:before { 1776 | content: "\e95d"; 1777 | top: 2px; 1778 | } 1779 | .objj-icon:before { 1780 | content: "\e99e"; 1781 | top: 2px; 1782 | } 1783 | .ocaml-icon:before { 1784 | content: "\e91a"; 1785 | top: 1px; 1786 | font-size: 14px; 1787 | } 1788 | .octave-icon:before { 1789 | content: "\ea33"; 1790 | top: 2px; 1791 | } 1792 | .onenote-icon:before { 1793 | content: "\e9eb"; 1794 | top: 2px; 1795 | } 1796 | .ooc-icon:before { 1797 | content: "\e9cb"; 1798 | top: 2px; 1799 | } 1800 | .opa-icon:before { 1801 | content: "\2601"; 1802 | top: 2px; 1803 | } 1804 | .opencl-icon:before { 1805 | content: "\e99f"; 1806 | top: 2px; 1807 | font-size: 16px; 1808 | } 1809 | .opengl-icon:before { 1810 | content: "\ea7a"; 1811 | top: 3px; 1812 | font-size: 18px; 1813 | transform: scale(1.1); 1814 | } 1815 | .openoffice-icon:before { 1816 | content: "\e9e4"; 1817 | top: 2px; 1818 | } 1819 | .openvms-icon:before { 1820 | content: "\eac6"; 1821 | top: 1px; 1822 | font-size: 16px; 1823 | transform: scale(1.1); 1824 | } 1825 | .openvpn-icon:before { 1826 | content: "\eaf3"; 1827 | top: 2px; 1828 | } 1829 | .org-icon:before { 1830 | content: "\e917"; 1831 | top: 1px; 1832 | font-size: 14px; 1833 | left: 1px; 1834 | } 1835 | .outlook-icon:before { 1836 | content: "\eada"; 1837 | top: 2px; 1838 | font-size: 16px; 1839 | } 1840 | .owl-icon:before { 1841 | content: "\e957"; 1842 | top: 2px; 1843 | } 1844 | .ox-icon:before { 1845 | content: "\e9a1"; 1846 | top: 3px; 1847 | font-size: 16px; 1848 | } 1849 | .oxygene-icon:before { 1850 | content: "\e9bf"; 1851 | top: 2px; 1852 | } 1853 | .oz-icon:before { 1854 | content: "\e9be"; 1855 | top: 2px; 1856 | } 1857 | .p4-icon:before { 1858 | content: "\ea50"; 1859 | top: 2px; 1860 | } 1861 | .pan-icon:before { 1862 | content: "\e9bd"; 1863 | top: 2px; 1864 | } 1865 | .papyrus-icon:before { 1866 | content: "\e9bc"; 1867 | top: 2px; 1868 | } 1869 | .parrot-icon:before { 1870 | content: "\e9bb"; 1871 | top: 3px; 1872 | font-size: 16px; 1873 | } 1874 | .pascal-icon:before { 1875 | content: "\e92a"; 1876 | top: 2px; 1877 | } 1878 | .patch-icon:before { 1879 | content: "\e961"; 1880 | top: 2px; 1881 | } 1882 | .pawn-icon:before { 1883 | content: "\265f"; 1884 | top: 1px; 1885 | font-size: 14px; 1886 | } 1887 | .pcd-icon:before { 1888 | content: "\26c5"; 1889 | top: 2px; 1890 | font-size: 16px; 1891 | } 1892 | .peg-icon:before { 1893 | content: "\ea74"; 1894 | top: 3px; 1895 | font-size: 16px; 1896 | } 1897 | .perl6-icon:before { 1898 | content: "\e96c"; 1899 | top: 2px; 1900 | } 1901 | .phalcon-icon:before { 1902 | content: "\e94a"; 1903 | top: 2px; 1904 | } 1905 | .phoenix-icon:before { 1906 | content: "\ea5f"; 1907 | top: 3px; 1908 | font-size: 17px; 1909 | transform: scale(1.1); 1910 | } 1911 | .php-icon:before { 1912 | content: "\f147"; 1913 | top: 1px; 1914 | font-size: 14px; 1915 | left: 1px; 1916 | } 1917 | .phpunit-icon:before { 1918 | content: "\ea32"; 1919 | top: 2px; 1920 | } 1921 | .phraseapp-icon:before { 1922 | content: "\eadb"; 1923 | top: 2px; 1924 | } 1925 | .pickle-icon:before { 1926 | content: "\e9c4"; 1927 | top: 2px; 1928 | } 1929 | .pico8-icon:before { 1930 | content: "\eabc"; 1931 | top: 2px; 1932 | } 1933 | .picolisp-icon:before { 1934 | content: "\eb25"; 1935 | top: 3px; 1936 | font-size: 17px; 1937 | } 1938 | .pike-icon:before { 1939 | content: "\e9b9"; 1940 | top: 4px; 1941 | font-size: 16px; 1942 | transform: scale(1.15); 1943 | } 1944 | .pipenv-icon:before { 1945 | content: "\1f381"; 1946 | top: 2px; 1947 | } 1948 | .platformio-icon:before { 1949 | content: "\ea2c"; 1950 | top: 2px; 1951 | font-size: 16px; 1952 | } 1953 | .pm2-icon:before { 1954 | content: "\2630"; 1955 | top: 3px; 1956 | } 1957 | .pod-icon:before { 1958 | content: "\ea84"; 1959 | top: 2px; 1960 | left: 1px; 1961 | } 1962 | .pogo-icon:before { 1963 | content: "\e9b8"; 1964 | top: 3px; 1965 | font-size: 14px; 1966 | } 1967 | .pointwise-icon:before { 1968 | content: "\e977"; 1969 | top: 2px; 1970 | } 1971 | .polymer-icon:before { 1972 | content: "\ea2b"; 1973 | top: 3px; 1974 | } 1975 | .pony-icon:before { 1976 | content: "\e9b7"; 1977 | top: 3px; 1978 | font-size: 16px; 1979 | } 1980 | .postcss-icon:before { 1981 | content: "\e910"; 1982 | top: 2px; 1983 | font-size: 14px; 1984 | } 1985 | .postscript-icon:before { 1986 | content: "\e955"; 1987 | top: 2px; 1988 | left: 1px; 1989 | } 1990 | .povray-icon:before { 1991 | content: "P"; 1992 | top: 2px; 1993 | left: 1px; 1994 | } 1995 | .powerbuilder-icon:before { 1996 | content: "\ea14"; 1997 | } 1998 | .powerpoint-icon:before { 1999 | content: "\e9ec"; 2000 | top: 2px; 2001 | } 2002 | .powershell-icon:before { 2003 | content: "\e9da"; 2004 | top: 2px; 2005 | font-size: 16px; 2006 | } 2007 | .precommit-icon:before { 2008 | content: "\eac1"; 2009 | top: 2px; 2010 | } 2011 | .premiere-icon:before { 2012 | content: "\e9f5"; 2013 | top: 2px; 2014 | } 2015 | .prettier-icon:before { 2016 | content: "\eaa1"; 2017 | top: 2px; 2018 | } 2019 | .prisma-icon:before { 2020 | content: "\eac5"; 2021 | top: 2px; 2022 | } 2023 | .processing-icon:before { 2024 | content: "\e9a0"; 2025 | top: 2px; 2026 | } 2027 | .progress-icon:before { 2028 | content: "\eadc"; 2029 | top: 2px; 2030 | } 2031 | .proselint-icon:before { 2032 | content: "\ea6d"; 2033 | top: 2px; 2034 | font-size: 16px; 2035 | } 2036 | .pros-icon:before { 2037 | content: "\eaad"; 2038 | top: 3px; 2039 | font-size: 16px; 2040 | } 2041 | .propeller-icon:before { 2042 | content: "\e9b5"; 2043 | top: 3px; 2044 | font-size: 16px; 2045 | } 2046 | .protractor-icon:before { 2047 | content: "\e9de"; 2048 | top: 3px; 2049 | } 2050 | .psd-icon:before { 2051 | content: "\e6b8"; 2052 | top: 2px; 2053 | } 2054 | .publisher-icon:before { 2055 | content: "\eadd"; 2056 | top: 2px; 2057 | font-size: 16px; 2058 | } 2059 | .pug-alt-icon:before { 2060 | content: "\e9d0"; 2061 | top: 3px; 2062 | font-size: 16px; 2063 | } 2064 | .pug-icon:before { 2065 | content: "\ea13"; 2066 | top: 3px; 2067 | font-size: 16px; 2068 | } 2069 | .puppet-icon:before { 2070 | content: "\f0c3"; 2071 | top: 2px; 2072 | left: 1px; 2073 | } 2074 | .purebasic-icon:before { 2075 | content: "\01b5"; 2076 | top: 2px; 2077 | } 2078 | .purescript-icon:before { 2079 | content: "\e9b2"; 2080 | top: 3px; 2081 | } 2082 | .pullapprove-icon:before { 2083 | content: "\293e"; 2084 | top: 2px; 2085 | } 2086 | .pypi-icon:before { 2087 | content: "\ea94"; 2088 | top: 2px; 2089 | } 2090 | .pyret-icon:before { 2091 | content: "\2620"; 2092 | top: 2px; 2093 | font-size: 16px; 2094 | } 2095 | .qlik-icon:before { 2096 | content: "\1f50d"; 2097 | top: 2px; 2098 | } 2099 | .qt-icon:before { 2100 | content: "\eb00"; 2101 | top: 2px; 2102 | font-size: 16px; 2103 | } 2104 | .quasar-icon:before { 2105 | content: "\eacc"; 2106 | top: 2px; 2107 | } 2108 | .r-icon:before { 2109 | content: "\e905"; 2110 | top: 3px; 2111 | font-size: 17px; 2112 | } 2113 | .racket-icon:before { 2114 | content: "\e9b1"; 2115 | top: 2px; 2116 | left: 1px; 2117 | } 2118 | .raml-icon:before { 2119 | content: "\e913"; 2120 | top: 1px; 2121 | font-size: 14px; 2122 | } 2123 | .rascal-icon:before { 2124 | content: "\ea24"; 2125 | top: 2px; 2126 | } 2127 | .rdoc-icon:before { 2128 | content: "\e9b0"; 2129 | top: 2px; 2130 | left: 1px; 2131 | } 2132 | .react-icon:before { 2133 | content: "\f100"; 2134 | top: 2px; 2135 | } 2136 | .reason-icon:before { 2137 | content: "\ea1d"; 2138 | top: 3px; 2139 | } 2140 | .rebol-icon:before { 2141 | content: "\e9ae"; 2142 | top: 1px; 2143 | font-size: 13px; 2144 | } 2145 | .red-icon:before { 2146 | content: "\eaec"; 2147 | top: 3px; 2148 | font-size: 16px; 2149 | } 2150 | .redux-icon:before { 2151 | content: "\ea30"; 2152 | top: 2px; 2153 | } 2154 | .reek-icon:before { 2155 | content: "\eaa0"; 2156 | top: 3px; 2157 | font-size: 17px; 2158 | } 2159 | .regex-icon:before { 2160 | content: "*"; 2161 | top: 1px; 2162 | font-size: 12px; 2163 | left: 1px; 2164 | } 2165 | .remark-icon:before { 2166 | content: "\eb1d"; 2167 | top: 2px; 2168 | } 2169 | .rexx-icon:before { 2170 | content: "\ea16"; 2171 | top: 2px; 2172 | font-size: 14px; 2173 | left: 1px; 2174 | } 2175 | .rhino-icon:before { 2176 | content: "\ea4a"; 2177 | top: 4px; 2178 | font-size: 16px; 2179 | left: 1px; 2180 | transform: scale(1.1); 2181 | } 2182 | .ring-icon:before { 2183 | content: "\1f48d"; 2184 | top: 2px; 2185 | } 2186 | .riot-icon:before { 2187 | content: "\e919"; 2188 | top: 4px; 2189 | font-size: 18px; 2190 | } 2191 | .robot-icon:before { 2192 | content: "\eb0d"; 2193 | top: 2px; 2194 | } 2195 | .robots-icon:before { 2196 | content: "\1f916"; 2197 | top: 2px; 2198 | } 2199 | .rollup-icon:before { 2200 | content: "\ea20"; 2201 | top: 2px; 2202 | } 2203 | .rspec-icon:before { 2204 | content: "\ea31"; 2205 | top: 3px; 2206 | font-size: 16px; 2207 | } 2208 | .rst-icon:before { 2209 | content: "\e9cc"; 2210 | top: 3px; 2211 | font-size: 16px; 2212 | } 2213 | .rstudio-icon:before { 2214 | content: "\24c7"; 2215 | top: 2px; 2216 | } 2217 | .rubocop-icon:before { 2218 | content: "\eade"; 2219 | top: 2px; 2220 | } 2221 | .sage-icon:before { 2222 | content: "\e9ab"; 2223 | top: 3px; 2224 | font-size: 16px; 2225 | } 2226 | .saltstack-icon:before { 2227 | content: "\e915"; 2228 | top: 2px; 2229 | font-size: 14px; 2230 | } 2231 | .sas-icon:before { 2232 | content: "\e95a"; 2233 | top: 2px; 2234 | } 2235 | .san-icon:before { 2236 | content: "\eae6"; 2237 | top: 2px; 2238 | } 2239 | .sbt-icon:before { 2240 | content: "\e9d2"; 2241 | top: 2px; 2242 | font-size: 14px; 2243 | } 2244 | .scad-icon:before { 2245 | content: "\e911"; 2246 | top: 2px; 2247 | font-size: 14px; 2248 | } 2249 | .scd-icon:before { 2250 | content: "\e9a2"; 2251 | top: 2px; 2252 | } 2253 | .scheme-icon:before { 2254 | content: "\03bb"; 2255 | top: 2px; 2256 | } 2257 | .scilab-icon:before { 2258 | content: "\e9a9"; 2259 | top: 3px; 2260 | font-size: 18px; 2261 | left: -1px; 2262 | } 2263 | .scilla-icon:before { 2264 | content: "\eae2"; 2265 | top: 3px; 2266 | font-size: 16px; 2267 | } 2268 | .scratch-icon:before { 2269 | content: "\a7"; 2270 | top: 2px; 2271 | } 2272 | .scrutinizer-icon:before { 2273 | content: "\e9d4"; 2274 | top: 2px; 2275 | font-size: 14px; 2276 | } 2277 | .self-icon:before { 2278 | content: "\e9a8"; 2279 | top: 3px; 2280 | font-size: 16px; 2281 | transform: scale(1.2); 2282 | } 2283 | .sentry-icon:before { 2284 | content: "\eb1c"; 2285 | top: 3px; 2286 | font-size: 16px; 2287 | } 2288 | .serverless-icon:before { 2289 | content: "\eab8"; 2290 | top: 2px; 2291 | } 2292 | .sequelize-icon:before { 2293 | content: "\ea2f"; 2294 | top: 3px; 2295 | font-size: 16px; 2296 | } 2297 | .sf-icon:before { 2298 | content: "\e9db"; 2299 | top: 2px; 2300 | } 2301 | .sgi-icon:before { 2302 | content: "\2318"; 2303 | top: 2px; 2304 | } 2305 | .shen-icon:before { 2306 | content: "\e9a7"; 2307 | top: 2px; 2308 | font-size: 16px; 2309 | } 2310 | .shipit-icon:before { 2311 | content: "\26f5"; 2312 | top: 2px; 2313 | font-size: 16px; 2314 | transform: scale(1.1); 2315 | } 2316 | .shippable-icon:before { 2317 | content: "\ea2d"; 2318 | top: 2px; 2319 | } 2320 | .shopify-icon:before { 2321 | content: "\e9cf"; 2322 | top: 2px; 2323 | } 2324 | .shuriken-icon:before { 2325 | content: "\272b"; 2326 | top: 2px; 2327 | font-size: 14px; 2328 | } 2329 | .sigils-icon:before { 2330 | content: "\1f764"; 2331 | top: 3px; 2332 | font-size: 16px; 2333 | } 2334 | .silverstripe-icon:before { 2335 | content: "\e800"; 2336 | top: 2px; 2337 | } 2338 | .sketch-icon:before { 2339 | content: "\e927"; 2340 | top: 2px; 2341 | } 2342 | .sketchup-lo-icon:before { 2343 | content: "\ea7c"; 2344 | top: 2px; 2345 | } 2346 | .sketchup-mk-icon:before { 2347 | content: "\ea7e"; 2348 | top: 2px; 2349 | } 2350 | .sketchup-sb-icon:before { 2351 | content: "\ea7d"; 2352 | top: 2px; 2353 | } 2354 | .slash-icon:before { 2355 | content: "\e9a6"; 2356 | top: 2px; 2357 | } 2358 | .snapcraft-icon:before { 2359 | content: "\eb09"; 2360 | top: 3px; 2361 | font-size: 16px; 2362 | } 2363 | .snort-icon:before { 2364 | content: "\1f43d"; 2365 | top: 3px; 2366 | font-size: 17px; 2367 | } 2368 | .snyk-icon:before { 2369 | content: "\ea1c"; 2370 | top: 2px; 2371 | font-size: 16px; 2372 | } 2373 | .solidarity-icon:before { 2374 | content: "\1d5e6"; 2375 | top: 2px; 2376 | } 2377 | .solidity-icon:before { 2378 | content: "\ea86"; 2379 | top: 2px; 2380 | } 2381 | .spacemacs-icon:before { 2382 | content: "\eaa4"; 2383 | top: 2px; 2384 | } 2385 | .sparql-icon:before { 2386 | content: "\e959"; 2387 | top: 2px; 2388 | } 2389 | .sqf-icon:before { 2390 | content: "\e9a5"; 2391 | top: 1px; 2392 | } 2393 | .sqlite-icon:before { 2394 | content: "\e9dd"; 2395 | top: 3px; 2396 | } 2397 | .squarespace-icon:before { 2398 | content: "\ea5e"; 2399 | top: 2px; 2400 | } 2401 | .stan-icon:before { 2402 | content: "\e9a4"; 2403 | top: 2px; 2404 | } 2405 | .stata-icon:before { 2406 | content: "\e9a3"; 2407 | top: 2px; 2408 | } 2409 | .stencil-icon:before { 2410 | content: "\ea95"; 2411 | top: 2px; 2412 | } 2413 | .storyist-icon:before { 2414 | content: "\e9ef"; 2415 | top: 2px; 2416 | font-size: 16px; 2417 | } 2418 | .strings-icon:before { 2419 | content: "\e9e0"; 2420 | top: 2px; 2421 | } 2422 | .stylable-icon:before { 2423 | content: "\eae0"; 2424 | top: 2px; 2425 | } 2426 | .storybook-icon:before { 2427 | content: "\eadf"; 2428 | top: 2px; 2429 | font-size: 16px; 2430 | } 2431 | .stylelint-icon:before { 2432 | content: "\e93d"; 2433 | top: 2px; 2434 | } 2435 | .stylus-icon:before { 2436 | content: "s"; 2437 | top: 2px; 2438 | left: 1px; 2439 | } 2440 | .sublime-icon:before { 2441 | content: "\e986"; 2442 | top: 2px; 2443 | } 2444 | .svelte-icon:before { 2445 | content: "\33dc"; 2446 | top: 3px; 2447 | font-size: 16px; 2448 | } 2449 | .svn-icon:before { 2450 | content: "\ea17"; 2451 | top: 2px; 2452 | } 2453 | .swagger-icon:before { 2454 | content: "\ea29"; 2455 | top: 2px; 2456 | } 2457 | .sysverilog-icon:before { 2458 | content: "\e9c3"; 2459 | top: 2px; 2460 | } 2461 | .tag-icon:before { 2462 | content: "\f015"; 2463 | top: 2px; 2464 | font-size: 14px; 2465 | } 2466 | .tailwind-icon:before { 2467 | content: "\301c"; 2468 | top: 3px; 2469 | font-size: 17px; 2470 | } 2471 | .tcl-icon:before { 2472 | content: "\e956"; 2473 | top: 2px; 2474 | font-size: 16px; 2475 | } 2476 | .telegram-icon:before { 2477 | content: "\2708"; 2478 | top: 2px; 2479 | } 2480 | .templeos-icon:before { 2481 | content: "\2696"; 2482 | top: 4px; 2483 | font-size: 18px; 2484 | } 2485 | .terminal-icon:before { 2486 | content: "\f0c8"; 2487 | top: 2px; 2488 | font-size: 14px; 2489 | } 2490 | .tern-icon:before { 2491 | content: "\1f54a"; 2492 | top: 4px; 2493 | font-size: 16px; 2494 | } 2495 | .terraform-icon:before { 2496 | content: "\e916"; 2497 | top: 1px; 2498 | font-size: 14px; 2499 | } 2500 | .test-coffee-icon:before { 2501 | content: "\ea62"; 2502 | } 2503 | .test-dir-icon:before { 2504 | content: "\ea60"; 2505 | top: 2px; 2506 | } 2507 | .test-generic-icon:before { 2508 | content: "\ea63"; 2509 | } 2510 | .test-go-icon:before { 2511 | content: "\eb0f"; 2512 | } 2513 | .test-hs-icon:before { 2514 | content: "\eb10"; 2515 | } 2516 | .test-js-icon:before { 2517 | content: "\ea64"; 2518 | } 2519 | .test-perl-icon:before { 2520 | content: "\ea65"; 2521 | } 2522 | .test-python-icon:before { 2523 | content: "\ea66"; 2524 | } 2525 | .test-react-icon:before { 2526 | content: "\ea67"; 2527 | } 2528 | .test-ruby-icon:before { 2529 | content: "\ea68"; 2530 | } 2531 | .test-rust-icon:before { 2532 | content: "\eb11"; 2533 | } 2534 | .test-ts-icon:before { 2535 | content: "\ea69"; 2536 | } 2537 | .tex-icon:before { 2538 | content: "\e600"; 2539 | top: 4px; 2540 | font-size: 16px; 2541 | } 2542 | .textile-icon:before { 2543 | content: "t"; 2544 | top: 2px; 2545 | } 2546 | .textmate-icon:before { 2547 | content: "\2122"; 2548 | top: 2px; 2549 | font-size: 16px; 2550 | } 2551 | .tfs-icon:before { 2552 | content: "\eae1"; 2553 | top: 3px; 2554 | } 2555 | .thor-icon:before { 2556 | content: "\e9d8"; 2557 | top: 2px; 2558 | } 2559 | .tipe-icon:before { 2560 | content: "\eaa9"; 2561 | top: 3px; 2562 | font-size: 16px; 2563 | } 2564 | .tla-icon:before { 2565 | content: "\eab2"; 2566 | top: 2px; 2567 | } 2568 | .tmux-icon:before { 2569 | content: "\ea8c"; 2570 | top: 2px; 2571 | } 2572 | .toml-icon:before { 2573 | content: "\1f143"; 2574 | top: 2px; 2575 | } 2576 | .tortoise-icon:before { 2577 | content: "\ea93"; 2578 | top: 3px; 2579 | font-size: 17px; 2580 | transform: scale(1.15); 2581 | } 2582 | .ts-icon:before { 2583 | content: "\2a6"; 2584 | top: 1px; 2585 | font-size: 14px; 2586 | } 2587 | .tsx-icon:before { 2588 | content: "\e9e7"; 2589 | top: 1px; 2590 | font-size: 14px; 2591 | } 2592 | .tt-icon:before { 2593 | content: "T"; 2594 | top: 2px; 2595 | } 2596 | .ttcn3-icon:before { 2597 | content: "\2476"; 2598 | top: 2px; 2599 | } 2600 | .turing-icon:before { 2601 | content: "\e9b6"; 2602 | top: 2px; 2603 | } 2604 | .twine-icon:before { 2605 | content: "\ea5d"; 2606 | top: 2px; 2607 | } 2608 | .twig-icon:before { 2609 | content: "\2e19"; 2610 | top: 2px; 2611 | font-size: 16px; 2612 | } 2613 | .txl-icon:before { 2614 | content: "\e9c1"; 2615 | top: 2px; 2616 | } 2617 | .typedoc-icon:before { 2618 | content: "\e9fe"; 2619 | top: 2px; 2620 | } 2621 | .typings-icon:before { 2622 | content: "\e9df"; 2623 | top: 2px; 2624 | } 2625 | .unbeautify-icon:before { 2626 | content: "\eac4"; 2627 | top: 2px; 2628 | font-size: 16px; 2629 | } 2630 | .uno-icon:before { 2631 | content: "\e9b3"; 2632 | top: 2px; 2633 | } 2634 | .unreal-icon:before { 2635 | content: "u"; 2636 | top: 2px; 2637 | } 2638 | .urweb-icon:before { 2639 | content: "\e9ba"; 2640 | top: 4px; 2641 | font-size: 18px; 2642 | left: -1px; 2643 | } 2644 | .v8-icon:before { 2645 | content: "\ea1f"; 2646 | top: 3px; 2647 | font-size: 16px; 2648 | } 2649 | .v8-turbofan-icon:before { 2650 | content: "\eaac"; 2651 | top: 3px; 2652 | font-size: 17px; 2653 | } 2654 | .vagrant-icon:before { 2655 | content: "V"; 2656 | top: 2px; 2657 | font-size: 14px; 2658 | } 2659 | .varnish-icon:before { 2660 | content: "\e9b4"; 2661 | top: 1px; 2662 | font-size: 14px; 2663 | } 2664 | .velocity-icon:before { 2665 | content: "\2b94"; 2666 | top: 3px; 2667 | font-size: 17px; 2668 | transform: scale(1.1); 2669 | } 2670 | .verilog-icon:before { 2671 | content: "\e949"; 2672 | top: 2px; 2673 | } 2674 | .vertex-icon:before { 2675 | content: "\ea79"; 2676 | top: 2px; 2677 | font-size: 16px; 2678 | } 2679 | .vhdl-icon:before { 2680 | content: "\e9aa"; 2681 | top: 2px; 2682 | } 2683 | .video-icon:before { 2684 | content: "\f057"; 2685 | top: 1px; 2686 | font-size: 14px; 2687 | } 2688 | .virtualbox-icon:before { 2689 | content: "\ea3e"; 2690 | top: 2px; 2691 | font-size: 16px; 2692 | } 2693 | .visio-icon:before { 2694 | content: "\ea83"; 2695 | top: 2px; 2696 | } 2697 | .vmware-icon:before { 2698 | content: "\ea49"; 2699 | top: 3px; 2700 | font-size: 16px; 2701 | } 2702 | .vue-icon:before { 2703 | content: "\e906"; 2704 | top: 3px; 2705 | } 2706 | .vsts-icon:before { 2707 | content: "\eac0"; 2708 | top: 3px; 2709 | font-size: 16px; 2710 | left: -1px; 2711 | } 2712 | .wallaby-icon:before { 2713 | content: "\231f"; 2714 | top: 2px; 2715 | } 2716 | .walt-icon:before { 2717 | content: "\eaba"; 2718 | top: 3px; 2719 | font-size: 16px; 2720 | } 2721 | .wasm-icon:before { 2722 | content: "\ea70"; 2723 | top: 2px; 2724 | } 2725 | .watchman-icon:before { 2726 | content: "\ea4f"; 2727 | top: 2px; 2728 | } 2729 | .wdl-icon:before { 2730 | content: "\eab1"; 2731 | top: 2px; 2732 | } 2733 | .webgl-icon:before { 2734 | content: "\ea7b"; 2735 | top: 3px; 2736 | font-size: 18px; 2737 | transform: scale(1.1); 2738 | } 2739 | .webpack-icon:before { 2740 | content: "\ea61"; 2741 | top: 3px; 2742 | font-size: 16px; 2743 | } 2744 | .webvtt-icon:before { 2745 | content: "\eb24"; 2746 | top: 4px; 2747 | font-size: 16px; 2748 | transform: scale(1.1); 2749 | } 2750 | .wercker-icon:before { 2751 | content: "\ea19"; 2752 | top: 2px; 2753 | } 2754 | .wix-icon:before { 2755 | content: "\eab0"; 2756 | top: 3px; 2757 | font-size: 16px; 2758 | } 2759 | .word-icon:before { 2760 | content: "\e9ed"; 2761 | top: 2px; 2762 | } 2763 | .workbox-icon:before { 2764 | content: "\eaa8"; 2765 | top: 2px; 2766 | } 2767 | .wurst-icon:before { 2768 | content: "\1f32d"; 2769 | top: 2px; 2770 | font-size: 16px; 2771 | } 2772 | .xamarin-icon:before { 2773 | content: "\ea77"; 2774 | top: 2px; 2775 | } 2776 | .x10-icon:before { 2777 | content: "\2169"; 2778 | top: 2px; 2779 | } 2780 | .xmos-icon:before { 2781 | content: "X"; 2782 | top: 1px; 2783 | font-size: 14px; 2784 | } 2785 | .xojo-icon:before { 2786 | content: "\e9af"; 2787 | top: 2px; 2788 | } 2789 | .xpages-icon:before { 2790 | content: "\e9c5"; 2791 | top: 2px; 2792 | } 2793 | .xtend-icon:before { 2794 | content: "\e9c6"; 2795 | top: 2px; 2796 | } 2797 | .yaml-icon:before { 2798 | content: "y"; 2799 | top: 2px; 2800 | } 2801 | .yandex-icon:before { 2802 | content: "\42f"; 2803 | top: 2px; 2804 | } 2805 | .yang-icon:before { 2806 | content: "\262f"; 2807 | top: 2px; 2808 | } 2809 | .yara-icon:before { 2810 | content: "\ea9f"; 2811 | top: 2px; 2812 | } 2813 | .yarn-icon:before { 2814 | content: "\ea1a"; 2815 | top: 2px; 2816 | font-size: 16px; 2817 | } 2818 | .yui-icon:before { 2819 | content: "\ea00"; 2820 | top: 2px; 2821 | } 2822 | .zbrush-icon:before { 2823 | content: "\e9f2"; 2824 | top: 2px; 2825 | font-size: 16px; 2826 | } 2827 | .zephir-icon:before { 2828 | content: "\e9c7"; 2829 | top: 2px; 2830 | } 2831 | .zig-icon:before { 2832 | content: "z"; 2833 | top: 3px; 2834 | font-size: 16px; 2835 | } 2836 | .zimpl-icon:before { 2837 | content: "\e9c8"; 2838 | top: 2px; 2839 | font-size: 16px; 2840 | left: 1px; 2841 | } 2842 | .zork-icon:before { 2843 | content: "\1b6"; 2844 | top: 2px; 2845 | } 2846 | -------------------------------------------------------------------------------- /assets/font-awesome/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font Awesome Free License 2 | ------------------------- 3 | 4 | Font Awesome Free is free, open source, and GPL friendly. You can use it for 5 | commercial projects, open source projects, or really almost whatever you want. 6 | Full Font Awesome Free license: https://fontawesome.com/license/free. 7 | 8 | # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) 9 | In the Font Awesome Free download, the CC BY 4.0 license applies to all icons 10 | packaged as SVG and JS file types. 11 | 12 | # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) 13 | In the Font Awesome Free download, the SIL OLF license applies to all icons 14 | packaged as web and desktop font files. 15 | 16 | # Code: MIT License (https://opensource.org/licenses/MIT) 17 | In the Font Awesome Free download, the MIT license applies to all non-font and 18 | non-icon files. 19 | 20 | # Attribution 21 | Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font 22 | Awesome Free files already contain embedded comments with sufficient 23 | attribution, so you shouldn't need to do anything additional when using these 24 | files normally. 25 | 26 | We've kept attribution comments terse, so we ask that you do not actively work 27 | to remove them from files, especially code. They're a great way for folks to 28 | learn about Font Awesome. 29 | 30 | # Brand Icons 31 | All brand icons are trademarks of their respective owners. The use of these 32 | trademarks does not indicate endorsement of the trademark holder by Font 33 | Awesome, nor vice versa. **Please do not use brand logos for any purpose except 34 | to represent the company, product, or service to which they refer.** 35 | -------------------------------------------------------------------------------- /assets/font-awesome/css/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.5.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 | .fa, 6 | .fas, 7 | .far, 8 | .fal, 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 | .fa-lg { 19 | font-size: 1.33333em; 20 | line-height: 0.75em; 21 | vertical-align: -.0667em; } 22 | 23 | .fa-xs { 24 | font-size: .75em; } 25 | 26 | .fa-sm { 27 | font-size: .875em; } 28 | 29 | .fa-1x { 30 | font-size: 1em; } 31 | 32 | .fa-2x { 33 | font-size: 2em; } 34 | 35 | .fa-3x { 36 | font-size: 3em; } 37 | 38 | .fa-4x { 39 | font-size: 4em; } 40 | 41 | .fa-5x { 42 | font-size: 5em; } 43 | 44 | .fa-6x { 45 | font-size: 6em; } 46 | 47 | .fa-7x { 48 | font-size: 7em; } 49 | 50 | .fa-8x { 51 | font-size: 8em; } 52 | 53 | .fa-9x { 54 | font-size: 9em; } 55 | 56 | .fa-10x { 57 | font-size: 10em; } 58 | 59 | .fa-fw { 60 | text-align: center; 61 | width: 1.25em; } 62 | 63 | .fa-ul { 64 | list-style-type: none; 65 | margin-left: 2.5em; 66 | padding-left: 0; } 67 | .fa-ul > li { 68 | position: relative; } 69 | 70 | .fa-li { 71 | left: -2em; 72 | position: absolute; 73 | text-align: center; 74 | width: 2em; 75 | line-height: inherit; } 76 | 77 | .fa-border { 78 | border: solid 0.08em #eee; 79 | border-radius: .1em; 80 | padding: .2em .25em .15em; } 81 | 82 | .fa-pull-left { 83 | float: left; } 84 | 85 | .fa-pull-right { 86 | float: right; } 87 | 88 | .fa.fa-pull-left, 89 | .fas.fa-pull-left, 90 | .far.fa-pull-left, 91 | .fal.fa-pull-left, 92 | .fab.fa-pull-left { 93 | margin-right: .3em; } 94 | 95 | .fa.fa-pull-right, 96 | .fas.fa-pull-right, 97 | .far.fa-pull-right, 98 | .fal.fa-pull-right, 99 | .fab.fa-pull-right { 100 | margin-left: .3em; } 101 | 102 | .fa-spin { 103 | -webkit-animation: fa-spin 2s infinite linear; 104 | animation: fa-spin 2s infinite linear; } 105 | 106 | .fa-pulse { 107 | -webkit-animation: fa-spin 1s infinite steps(8); 108 | animation: fa-spin 1s infinite steps(8); } 109 | 110 | @-webkit-keyframes fa-spin { 111 | 0% { 112 | -webkit-transform: rotate(0deg); 113 | transform: rotate(0deg); } 114 | 100% { 115 | -webkit-transform: rotate(360deg); 116 | transform: rotate(360deg); } } 117 | 118 | @keyframes fa-spin { 119 | 0% { 120 | -webkit-transform: rotate(0deg); 121 | transform: rotate(0deg); } 122 | 100% { 123 | -webkit-transform: rotate(360deg); 124 | transform: rotate(360deg); } } 125 | 126 | .fa-rotate-90 { 127 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 128 | -webkit-transform: rotate(90deg); 129 | transform: rotate(90deg); } 130 | 131 | .fa-rotate-180 { 132 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 133 | -webkit-transform: rotate(180deg); 134 | transform: rotate(180deg); } 135 | 136 | .fa-rotate-270 { 137 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 138 | -webkit-transform: rotate(270deg); 139 | transform: rotate(270deg); } 140 | 141 | .fa-flip-horizontal { 142 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 143 | -webkit-transform: scale(-1, 1); 144 | transform: scale(-1, 1); } 145 | 146 | .fa-flip-vertical { 147 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 148 | -webkit-transform: scale(1, -1); 149 | transform: scale(1, -1); } 150 | 151 | .fa-flip-horizontal.fa-flip-vertical { 152 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 153 | -webkit-transform: scale(-1, -1); 154 | transform: scale(-1, -1); } 155 | 156 | :root .fa-rotate-90, 157 | :root .fa-rotate-180, 158 | :root .fa-rotate-270, 159 | :root .fa-flip-horizontal, 160 | :root .fa-flip-vertical { 161 | -webkit-filter: none; 162 | filter: none; } 163 | 164 | .fa-stack { 165 | display: inline-block; 166 | height: 2em; 167 | line-height: 2em; 168 | position: relative; 169 | vertical-align: middle; 170 | width: 2.5em; } 171 | 172 | .fa-stack-1x, 173 | .fa-stack-2x { 174 | left: 0; 175 | position: absolute; 176 | text-align: center; 177 | width: 100%; } 178 | 179 | .fa-stack-1x { 180 | line-height: inherit; } 181 | 182 | .fa-stack-2x { 183 | font-size: 2em; } 184 | 185 | .fa-inverse { 186 | color: #fff; } 187 | 188 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 189 | readers do not read off random characters that represent icons */ 190 | .fa-500px:before { 191 | content: "\f26e"; } 192 | 193 | .fa-accessible-icon:before { 194 | content: "\f368"; } 195 | 196 | .fa-accusoft:before { 197 | content: "\f369"; } 198 | 199 | .fa-acquisitions-incorporated:before { 200 | content: "\f6af"; } 201 | 202 | .fa-ad:before { 203 | content: "\f641"; } 204 | 205 | .fa-address-book:before { 206 | content: "\f2b9"; } 207 | 208 | .fa-address-card:before { 209 | content: "\f2bb"; } 210 | 211 | .fa-adjust:before { 212 | content: "\f042"; } 213 | 214 | .fa-adn:before { 215 | content: "\f170"; } 216 | 217 | .fa-adversal:before { 218 | content: "\f36a"; } 219 | 220 | .fa-affiliatetheme:before { 221 | content: "\f36b"; } 222 | 223 | .fa-air-freshener:before { 224 | content: "\f5d0"; } 225 | 226 | .fa-algolia:before { 227 | content: "\f36c"; } 228 | 229 | .fa-align-center:before { 230 | content: "\f037"; } 231 | 232 | .fa-align-justify:before { 233 | content: "\f039"; } 234 | 235 | .fa-align-left:before { 236 | content: "\f036"; } 237 | 238 | .fa-align-right:before { 239 | content: "\f038"; } 240 | 241 | .fa-alipay:before { 242 | content: "\f642"; } 243 | 244 | .fa-allergies:before { 245 | content: "\f461"; } 246 | 247 | .fa-amazon:before { 248 | content: "\f270"; } 249 | 250 | .fa-amazon-pay:before { 251 | content: "\f42c"; } 252 | 253 | .fa-ambulance:before { 254 | content: "\f0f9"; } 255 | 256 | .fa-american-sign-language-interpreting:before { 257 | content: "\f2a3"; } 258 | 259 | .fa-amilia:before { 260 | content: "\f36d"; } 261 | 262 | .fa-anchor:before { 263 | content: "\f13d"; } 264 | 265 | .fa-android:before { 266 | content: "\f17b"; } 267 | 268 | .fa-angellist:before { 269 | content: "\f209"; } 270 | 271 | .fa-angle-double-down:before { 272 | content: "\f103"; } 273 | 274 | .fa-angle-double-left:before { 275 | content: "\f100"; } 276 | 277 | .fa-angle-double-right:before { 278 | content: "\f101"; } 279 | 280 | .fa-angle-double-up:before { 281 | content: "\f102"; } 282 | 283 | .fa-angle-down:before { 284 | content: "\f107"; } 285 | 286 | .fa-angle-left:before { 287 | content: "\f104"; } 288 | 289 | .fa-angle-right:before { 290 | content: "\f105"; } 291 | 292 | .fa-angle-up:before { 293 | content: "\f106"; } 294 | 295 | .fa-angry:before { 296 | content: "\f556"; } 297 | 298 | .fa-angrycreative:before { 299 | content: "\f36e"; } 300 | 301 | .fa-angular:before { 302 | content: "\f420"; } 303 | 304 | .fa-ankh:before { 305 | content: "\f644"; } 306 | 307 | .fa-app-store:before { 308 | content: "\f36f"; } 309 | 310 | .fa-app-store-ios:before { 311 | content: "\f370"; } 312 | 313 | .fa-apper:before { 314 | content: "\f371"; } 315 | 316 | .fa-apple:before { 317 | content: "\f179"; } 318 | 319 | .fa-apple-alt:before { 320 | content: "\f5d1"; } 321 | 322 | .fa-apple-pay:before { 323 | content: "\f415"; } 324 | 325 | .fa-archive:before { 326 | content: "\f187"; } 327 | 328 | .fa-archway:before { 329 | content: "\f557"; } 330 | 331 | .fa-arrow-alt-circle-down:before { 332 | content: "\f358"; } 333 | 334 | .fa-arrow-alt-circle-left:before { 335 | content: "\f359"; } 336 | 337 | .fa-arrow-alt-circle-right:before { 338 | content: "\f35a"; } 339 | 340 | .fa-arrow-alt-circle-up:before { 341 | content: "\f35b"; } 342 | 343 | .fa-arrow-circle-down:before { 344 | content: "\f0ab"; } 345 | 346 | .fa-arrow-circle-left:before { 347 | content: "\f0a8"; } 348 | 349 | .fa-arrow-circle-right:before { 350 | content: "\f0a9"; } 351 | 352 | .fa-arrow-circle-up:before { 353 | content: "\f0aa"; } 354 | 355 | .fa-arrow-down:before { 356 | content: "\f063"; } 357 | 358 | .fa-arrow-left:before { 359 | content: "\f060"; } 360 | 361 | .fa-arrow-right:before { 362 | content: "\f061"; } 363 | 364 | .fa-arrow-up:before { 365 | content: "\f062"; } 366 | 367 | .fa-arrows-alt:before { 368 | content: "\f0b2"; } 369 | 370 | .fa-arrows-alt-h:before { 371 | content: "\f337"; } 372 | 373 | .fa-arrows-alt-v:before { 374 | content: "\f338"; } 375 | 376 | .fa-assistive-listening-systems:before { 377 | content: "\f2a2"; } 378 | 379 | .fa-asterisk:before { 380 | content: "\f069"; } 381 | 382 | .fa-asymmetrik:before { 383 | content: "\f372"; } 384 | 385 | .fa-at:before { 386 | content: "\f1fa"; } 387 | 388 | .fa-atlas:before { 389 | content: "\f558"; } 390 | 391 | .fa-atom:before { 392 | content: "\f5d2"; } 393 | 394 | .fa-audible:before { 395 | content: "\f373"; } 396 | 397 | .fa-audio-description:before { 398 | content: "\f29e"; } 399 | 400 | .fa-autoprefixer:before { 401 | content: "\f41c"; } 402 | 403 | .fa-avianex:before { 404 | content: "\f374"; } 405 | 406 | .fa-aviato:before { 407 | content: "\f421"; } 408 | 409 | .fa-award:before { 410 | content: "\f559"; } 411 | 412 | .fa-aws:before { 413 | content: "\f375"; } 414 | 415 | .fa-backspace:before { 416 | content: "\f55a"; } 417 | 418 | .fa-backward:before { 419 | content: "\f04a"; } 420 | 421 | .fa-balance-scale:before { 422 | content: "\f24e"; } 423 | 424 | .fa-ban:before { 425 | content: "\f05e"; } 426 | 427 | .fa-band-aid:before { 428 | content: "\f462"; } 429 | 430 | .fa-bandcamp:before { 431 | content: "\f2d5"; } 432 | 433 | .fa-barcode:before { 434 | content: "\f02a"; } 435 | 436 | .fa-bars:before { 437 | content: "\f0c9"; } 438 | 439 | .fa-baseball-ball:before { 440 | content: "\f433"; } 441 | 442 | .fa-basketball-ball:before { 443 | content: "\f434"; } 444 | 445 | .fa-bath:before { 446 | content: "\f2cd"; } 447 | 448 | .fa-battery-empty:before { 449 | content: "\f244"; } 450 | 451 | .fa-battery-full:before { 452 | content: "\f240"; } 453 | 454 | .fa-battery-half:before { 455 | content: "\f242"; } 456 | 457 | .fa-battery-quarter:before { 458 | content: "\f243"; } 459 | 460 | .fa-battery-three-quarters:before { 461 | content: "\f241"; } 462 | 463 | .fa-bed:before { 464 | content: "\f236"; } 465 | 466 | .fa-beer:before { 467 | content: "\f0fc"; } 468 | 469 | .fa-behance:before { 470 | content: "\f1b4"; } 471 | 472 | .fa-behance-square:before { 473 | content: "\f1b5"; } 474 | 475 | .fa-bell:before { 476 | content: "\f0f3"; } 477 | 478 | .fa-bell-slash:before { 479 | content: "\f1f6"; } 480 | 481 | .fa-bezier-curve:before { 482 | content: "\f55b"; } 483 | 484 | .fa-bible:before { 485 | content: "\f647"; } 486 | 487 | .fa-bicycle:before { 488 | content: "\f206"; } 489 | 490 | .fa-bimobject:before { 491 | content: "\f378"; } 492 | 493 | .fa-binoculars:before { 494 | content: "\f1e5"; } 495 | 496 | .fa-birthday-cake:before { 497 | content: "\f1fd"; } 498 | 499 | .fa-bitbucket:before { 500 | content: "\f171"; } 501 | 502 | .fa-bitcoin:before { 503 | content: "\f379"; } 504 | 505 | .fa-bity:before { 506 | content: "\f37a"; } 507 | 508 | .fa-black-tie:before { 509 | content: "\f27e"; } 510 | 511 | .fa-blackberry:before { 512 | content: "\f37b"; } 513 | 514 | .fa-blender:before { 515 | content: "\f517"; } 516 | 517 | .fa-blender-phone:before { 518 | content: "\f6b6"; } 519 | 520 | .fa-blind:before { 521 | content: "\f29d"; } 522 | 523 | .fa-blogger:before { 524 | content: "\f37c"; } 525 | 526 | .fa-blogger-b:before { 527 | content: "\f37d"; } 528 | 529 | .fa-bluetooth:before { 530 | content: "\f293"; } 531 | 532 | .fa-bluetooth-b:before { 533 | content: "\f294"; } 534 | 535 | .fa-bold:before { 536 | content: "\f032"; } 537 | 538 | .fa-bolt:before { 539 | content: "\f0e7"; } 540 | 541 | .fa-bomb:before { 542 | content: "\f1e2"; } 543 | 544 | .fa-bone:before { 545 | content: "\f5d7"; } 546 | 547 | .fa-bong:before { 548 | content: "\f55c"; } 549 | 550 | .fa-book:before { 551 | content: "\f02d"; } 552 | 553 | .fa-book-dead:before { 554 | content: "\f6b7"; } 555 | 556 | .fa-book-open:before { 557 | content: "\f518"; } 558 | 559 | .fa-book-reader:before { 560 | content: "\f5da"; } 561 | 562 | .fa-bookmark:before { 563 | content: "\f02e"; } 564 | 565 | .fa-bowling-ball:before { 566 | content: "\f436"; } 567 | 568 | .fa-box:before { 569 | content: "\f466"; } 570 | 571 | .fa-box-open:before { 572 | content: "\f49e"; } 573 | 574 | .fa-boxes:before { 575 | content: "\f468"; } 576 | 577 | .fa-braille:before { 578 | content: "\f2a1"; } 579 | 580 | .fa-brain:before { 581 | content: "\f5dc"; } 582 | 583 | .fa-briefcase:before { 584 | content: "\f0b1"; } 585 | 586 | .fa-briefcase-medical:before { 587 | content: "\f469"; } 588 | 589 | .fa-broadcast-tower:before { 590 | content: "\f519"; } 591 | 592 | .fa-broom:before { 593 | content: "\f51a"; } 594 | 595 | .fa-brush:before { 596 | content: "\f55d"; } 597 | 598 | .fa-btc:before { 599 | content: "\f15a"; } 600 | 601 | .fa-bug:before { 602 | content: "\f188"; } 603 | 604 | .fa-building:before { 605 | content: "\f1ad"; } 606 | 607 | .fa-bullhorn:before { 608 | content: "\f0a1"; } 609 | 610 | .fa-bullseye:before { 611 | content: "\f140"; } 612 | 613 | .fa-burn:before { 614 | content: "\f46a"; } 615 | 616 | .fa-buromobelexperte:before { 617 | content: "\f37f"; } 618 | 619 | .fa-bus:before { 620 | content: "\f207"; } 621 | 622 | .fa-bus-alt:before { 623 | content: "\f55e"; } 624 | 625 | .fa-business-time:before { 626 | content: "\f64a"; } 627 | 628 | .fa-buysellads:before { 629 | content: "\f20d"; } 630 | 631 | .fa-calculator:before { 632 | content: "\f1ec"; } 633 | 634 | .fa-calendar:before { 635 | content: "\f133"; } 636 | 637 | .fa-calendar-alt:before { 638 | content: "\f073"; } 639 | 640 | .fa-calendar-check:before { 641 | content: "\f274"; } 642 | 643 | .fa-calendar-minus:before { 644 | content: "\f272"; } 645 | 646 | .fa-calendar-plus:before { 647 | content: "\f271"; } 648 | 649 | .fa-calendar-times:before { 650 | content: "\f273"; } 651 | 652 | .fa-camera:before { 653 | content: "\f030"; } 654 | 655 | .fa-camera-retro:before { 656 | content: "\f083"; } 657 | 658 | .fa-campground:before { 659 | content: "\f6bb"; } 660 | 661 | .fa-cannabis:before { 662 | content: "\f55f"; } 663 | 664 | .fa-capsules:before { 665 | content: "\f46b"; } 666 | 667 | .fa-car:before { 668 | content: "\f1b9"; } 669 | 670 | .fa-car-alt:before { 671 | content: "\f5de"; } 672 | 673 | .fa-car-battery:before { 674 | content: "\f5df"; } 675 | 676 | .fa-car-crash:before { 677 | content: "\f5e1"; } 678 | 679 | .fa-car-side:before { 680 | content: "\f5e4"; } 681 | 682 | .fa-caret-down:before { 683 | content: "\f0d7"; } 684 | 685 | .fa-caret-left:before { 686 | content: "\f0d9"; } 687 | 688 | .fa-caret-right:before { 689 | content: "\f0da"; } 690 | 691 | .fa-caret-square-down:before { 692 | content: "\f150"; } 693 | 694 | .fa-caret-square-left:before { 695 | content: "\f191"; } 696 | 697 | .fa-caret-square-right:before { 698 | content: "\f152"; } 699 | 700 | .fa-caret-square-up:before { 701 | content: "\f151"; } 702 | 703 | .fa-caret-up:before { 704 | content: "\f0d8"; } 705 | 706 | .fa-cart-arrow-down:before { 707 | content: "\f218"; } 708 | 709 | .fa-cart-plus:before { 710 | content: "\f217"; } 711 | 712 | .fa-cat:before { 713 | content: "\f6be"; } 714 | 715 | .fa-cc-amazon-pay:before { 716 | content: "\f42d"; } 717 | 718 | .fa-cc-amex:before { 719 | content: "\f1f3"; } 720 | 721 | .fa-cc-apple-pay:before { 722 | content: "\f416"; } 723 | 724 | .fa-cc-diners-club:before { 725 | content: "\f24c"; } 726 | 727 | .fa-cc-discover:before { 728 | content: "\f1f2"; } 729 | 730 | .fa-cc-jcb:before { 731 | content: "\f24b"; } 732 | 733 | .fa-cc-mastercard:before { 734 | content: "\f1f1"; } 735 | 736 | .fa-cc-paypal:before { 737 | content: "\f1f4"; } 738 | 739 | .fa-cc-stripe:before { 740 | content: "\f1f5"; } 741 | 742 | .fa-cc-visa:before { 743 | content: "\f1f0"; } 744 | 745 | .fa-centercode:before { 746 | content: "\f380"; } 747 | 748 | .fa-certificate:before { 749 | content: "\f0a3"; } 750 | 751 | .fa-chair:before { 752 | content: "\f6c0"; } 753 | 754 | .fa-chalkboard:before { 755 | content: "\f51b"; } 756 | 757 | .fa-chalkboard-teacher:before { 758 | content: "\f51c"; } 759 | 760 | .fa-charging-station:before { 761 | content: "\f5e7"; } 762 | 763 | .fa-chart-area:before { 764 | content: "\f1fe"; } 765 | 766 | .fa-chart-bar:before { 767 | content: "\f080"; } 768 | 769 | .fa-chart-line:before { 770 | content: "\f201"; } 771 | 772 | .fa-chart-pie:before { 773 | content: "\f200"; } 774 | 775 | .fa-check:before { 776 | content: "\f00c"; } 777 | 778 | .fa-check-circle:before { 779 | content: "\f058"; } 780 | 781 | .fa-check-double:before { 782 | content: "\f560"; } 783 | 784 | .fa-check-square:before { 785 | content: "\f14a"; } 786 | 787 | .fa-chess:before { 788 | content: "\f439"; } 789 | 790 | .fa-chess-bishop:before { 791 | content: "\f43a"; } 792 | 793 | .fa-chess-board:before { 794 | content: "\f43c"; } 795 | 796 | .fa-chess-king:before { 797 | content: "\f43f"; } 798 | 799 | .fa-chess-knight:before { 800 | content: "\f441"; } 801 | 802 | .fa-chess-pawn:before { 803 | content: "\f443"; } 804 | 805 | .fa-chess-queen:before { 806 | content: "\f445"; } 807 | 808 | .fa-chess-rook:before { 809 | content: "\f447"; } 810 | 811 | .fa-chevron-circle-down:before { 812 | content: "\f13a"; } 813 | 814 | .fa-chevron-circle-left:before { 815 | content: "\f137"; } 816 | 817 | .fa-chevron-circle-right:before { 818 | content: "\f138"; } 819 | 820 | .fa-chevron-circle-up:before { 821 | content: "\f139"; } 822 | 823 | .fa-chevron-down:before { 824 | content: "\f078"; } 825 | 826 | .fa-chevron-left:before { 827 | content: "\f053"; } 828 | 829 | .fa-chevron-right:before { 830 | content: "\f054"; } 831 | 832 | .fa-chevron-up:before { 833 | content: "\f077"; } 834 | 835 | .fa-child:before { 836 | content: "\f1ae"; } 837 | 838 | .fa-chrome:before { 839 | content: "\f268"; } 840 | 841 | .fa-church:before { 842 | content: "\f51d"; } 843 | 844 | .fa-circle:before { 845 | content: "\f111"; } 846 | 847 | .fa-circle-notch:before { 848 | content: "\f1ce"; } 849 | 850 | .fa-city:before { 851 | content: "\f64f"; } 852 | 853 | .fa-clipboard:before { 854 | content: "\f328"; } 855 | 856 | .fa-clipboard-check:before { 857 | content: "\f46c"; } 858 | 859 | .fa-clipboard-list:before { 860 | content: "\f46d"; } 861 | 862 | .fa-clock:before { 863 | content: "\f017"; } 864 | 865 | .fa-clone:before { 866 | content: "\f24d"; } 867 | 868 | .fa-closed-captioning:before { 869 | content: "\f20a"; } 870 | 871 | .fa-cloud:before { 872 | content: "\f0c2"; } 873 | 874 | .fa-cloud-download-alt:before { 875 | content: "\f381"; } 876 | 877 | .fa-cloud-meatball:before { 878 | content: "\f73b"; } 879 | 880 | .fa-cloud-moon:before { 881 | content: "\f6c3"; } 882 | 883 | .fa-cloud-moon-rain:before { 884 | content: "\f73c"; } 885 | 886 | .fa-cloud-rain:before { 887 | content: "\f73d"; } 888 | 889 | .fa-cloud-showers-heavy:before { 890 | content: "\f740"; } 891 | 892 | .fa-cloud-sun:before { 893 | content: "\f6c4"; } 894 | 895 | .fa-cloud-sun-rain:before { 896 | content: "\f743"; } 897 | 898 | .fa-cloud-upload-alt:before { 899 | content: "\f382"; } 900 | 901 | .fa-cloudscale:before { 902 | content: "\f383"; } 903 | 904 | .fa-cloudsmith:before { 905 | content: "\f384"; } 906 | 907 | .fa-cloudversify:before { 908 | content: "\f385"; } 909 | 910 | .fa-cocktail:before { 911 | content: "\f561"; } 912 | 913 | .fa-code:before { 914 | content: "\f121"; } 915 | 916 | .fa-code-branch:before { 917 | content: "\f126"; } 918 | 919 | .fa-codepen:before { 920 | content: "\f1cb"; } 921 | 922 | .fa-codiepie:before { 923 | content: "\f284"; } 924 | 925 | .fa-coffee:before { 926 | content: "\f0f4"; } 927 | 928 | .fa-cog:before { 929 | content: "\f013"; } 930 | 931 | .fa-cogs:before { 932 | content: "\f085"; } 933 | 934 | .fa-coins:before { 935 | content: "\f51e"; } 936 | 937 | .fa-columns:before { 938 | content: "\f0db"; } 939 | 940 | .fa-comment:before { 941 | content: "\f075"; } 942 | 943 | .fa-comment-alt:before { 944 | content: "\f27a"; } 945 | 946 | .fa-comment-dollar:before { 947 | content: "\f651"; } 948 | 949 | .fa-comment-dots:before { 950 | content: "\f4ad"; } 951 | 952 | .fa-comment-slash:before { 953 | content: "\f4b3"; } 954 | 955 | .fa-comments:before { 956 | content: "\f086"; } 957 | 958 | .fa-comments-dollar:before { 959 | content: "\f653"; } 960 | 961 | .fa-compact-disc:before { 962 | content: "\f51f"; } 963 | 964 | .fa-compass:before { 965 | content: "\f14e"; } 966 | 967 | .fa-compress:before { 968 | content: "\f066"; } 969 | 970 | .fa-concierge-bell:before { 971 | content: "\f562"; } 972 | 973 | .fa-connectdevelop:before { 974 | content: "\f20e"; } 975 | 976 | .fa-contao:before { 977 | content: "\f26d"; } 978 | 979 | .fa-cookie:before { 980 | content: "\f563"; } 981 | 982 | .fa-cookie-bite:before { 983 | content: "\f564"; } 984 | 985 | .fa-copy:before { 986 | content: "\f0c5"; } 987 | 988 | .fa-copyright:before { 989 | content: "\f1f9"; } 990 | 991 | .fa-couch:before { 992 | content: "\f4b8"; } 993 | 994 | .fa-cpanel:before { 995 | content: "\f388"; } 996 | 997 | .fa-creative-commons:before { 998 | content: "\f25e"; } 999 | 1000 | .fa-creative-commons-by:before { 1001 | content: "\f4e7"; } 1002 | 1003 | .fa-creative-commons-nc:before { 1004 | content: "\f4e8"; } 1005 | 1006 | .fa-creative-commons-nc-eu:before { 1007 | content: "\f4e9"; } 1008 | 1009 | .fa-creative-commons-nc-jp:before { 1010 | content: "\f4ea"; } 1011 | 1012 | .fa-creative-commons-nd:before { 1013 | content: "\f4eb"; } 1014 | 1015 | .fa-creative-commons-pd:before { 1016 | content: "\f4ec"; } 1017 | 1018 | .fa-creative-commons-pd-alt:before { 1019 | content: "\f4ed"; } 1020 | 1021 | .fa-creative-commons-remix:before { 1022 | content: "\f4ee"; } 1023 | 1024 | .fa-creative-commons-sa:before { 1025 | content: "\f4ef"; } 1026 | 1027 | .fa-creative-commons-sampling:before { 1028 | content: "\f4f0"; } 1029 | 1030 | .fa-creative-commons-sampling-plus:before { 1031 | content: "\f4f1"; } 1032 | 1033 | .fa-creative-commons-share:before { 1034 | content: "\f4f2"; } 1035 | 1036 | .fa-creative-commons-zero:before { 1037 | content: "\f4f3"; } 1038 | 1039 | .fa-credit-card:before { 1040 | content: "\f09d"; } 1041 | 1042 | .fa-critical-role:before { 1043 | content: "\f6c9"; } 1044 | 1045 | .fa-crop:before { 1046 | content: "\f125"; } 1047 | 1048 | .fa-crop-alt:before { 1049 | content: "\f565"; } 1050 | 1051 | .fa-cross:before { 1052 | content: "\f654"; } 1053 | 1054 | .fa-crosshairs:before { 1055 | content: "\f05b"; } 1056 | 1057 | .fa-crow:before { 1058 | content: "\f520"; } 1059 | 1060 | .fa-crown:before { 1061 | content: "\f521"; } 1062 | 1063 | .fa-css3:before { 1064 | content: "\f13c"; } 1065 | 1066 | .fa-css3-alt:before { 1067 | content: "\f38b"; } 1068 | 1069 | .fa-cube:before { 1070 | content: "\f1b2"; } 1071 | 1072 | .fa-cubes:before { 1073 | content: "\f1b3"; } 1074 | 1075 | .fa-cut:before { 1076 | content: "\f0c4"; } 1077 | 1078 | .fa-cuttlefish:before { 1079 | content: "\f38c"; } 1080 | 1081 | .fa-d-and-d:before { 1082 | content: "\f38d"; } 1083 | 1084 | .fa-d-and-d-beyond:before { 1085 | content: "\f6ca"; } 1086 | 1087 | .fa-dashcube:before { 1088 | content: "\f210"; } 1089 | 1090 | .fa-database:before { 1091 | content: "\f1c0"; } 1092 | 1093 | .fa-deaf:before { 1094 | content: "\f2a4"; } 1095 | 1096 | .fa-delicious:before { 1097 | content: "\f1a5"; } 1098 | 1099 | .fa-democrat:before { 1100 | content: "\f747"; } 1101 | 1102 | .fa-deploydog:before { 1103 | content: "\f38e"; } 1104 | 1105 | .fa-deskpro:before { 1106 | content: "\f38f"; } 1107 | 1108 | .fa-desktop:before { 1109 | content: "\f108"; } 1110 | 1111 | .fa-dev:before { 1112 | content: "\f6cc"; } 1113 | 1114 | .fa-deviantart:before { 1115 | content: "\f1bd"; } 1116 | 1117 | .fa-dharmachakra:before { 1118 | content: "\f655"; } 1119 | 1120 | .fa-diagnoses:before { 1121 | content: "\f470"; } 1122 | 1123 | .fa-dice:before { 1124 | content: "\f522"; } 1125 | 1126 | .fa-dice-d20:before { 1127 | content: "\f6cf"; } 1128 | 1129 | .fa-dice-d6:before { 1130 | content: "\f6d1"; } 1131 | 1132 | .fa-dice-five:before { 1133 | content: "\f523"; } 1134 | 1135 | .fa-dice-four:before { 1136 | content: "\f524"; } 1137 | 1138 | .fa-dice-one:before { 1139 | content: "\f525"; } 1140 | 1141 | .fa-dice-six:before { 1142 | content: "\f526"; } 1143 | 1144 | .fa-dice-three:before { 1145 | content: "\f527"; } 1146 | 1147 | .fa-dice-two:before { 1148 | content: "\f528"; } 1149 | 1150 | .fa-digg:before { 1151 | content: "\f1a6"; } 1152 | 1153 | .fa-digital-ocean:before { 1154 | content: "\f391"; } 1155 | 1156 | .fa-digital-tachograph:before { 1157 | content: "\f566"; } 1158 | 1159 | .fa-directions:before { 1160 | content: "\f5eb"; } 1161 | 1162 | .fa-discord:before { 1163 | content: "\f392"; } 1164 | 1165 | .fa-discourse:before { 1166 | content: "\f393"; } 1167 | 1168 | .fa-divide:before { 1169 | content: "\f529"; } 1170 | 1171 | .fa-dizzy:before { 1172 | content: "\f567"; } 1173 | 1174 | .fa-dna:before { 1175 | content: "\f471"; } 1176 | 1177 | .fa-dochub:before { 1178 | content: "\f394"; } 1179 | 1180 | .fa-docker:before { 1181 | content: "\f395"; } 1182 | 1183 | .fa-dog:before { 1184 | content: "\f6d3"; } 1185 | 1186 | .fa-dollar-sign:before { 1187 | content: "\f155"; } 1188 | 1189 | .fa-dolly:before { 1190 | content: "\f472"; } 1191 | 1192 | .fa-dolly-flatbed:before { 1193 | content: "\f474"; } 1194 | 1195 | .fa-donate:before { 1196 | content: "\f4b9"; } 1197 | 1198 | .fa-door-closed:before { 1199 | content: "\f52a"; } 1200 | 1201 | .fa-door-open:before { 1202 | content: "\f52b"; } 1203 | 1204 | .fa-dot-circle:before { 1205 | content: "\f192"; } 1206 | 1207 | .fa-dove:before { 1208 | content: "\f4ba"; } 1209 | 1210 | .fa-download:before { 1211 | content: "\f019"; } 1212 | 1213 | .fa-draft2digital:before { 1214 | content: "\f396"; } 1215 | 1216 | .fa-drafting-compass:before { 1217 | content: "\f568"; } 1218 | 1219 | .fa-dragon:before { 1220 | content: "\f6d5"; } 1221 | 1222 | .fa-draw-polygon:before { 1223 | content: "\f5ee"; } 1224 | 1225 | .fa-dribbble:before { 1226 | content: "\f17d"; } 1227 | 1228 | .fa-dribbble-square:before { 1229 | content: "\f397"; } 1230 | 1231 | .fa-dropbox:before { 1232 | content: "\f16b"; } 1233 | 1234 | .fa-drum:before { 1235 | content: "\f569"; } 1236 | 1237 | .fa-drum-steelpan:before { 1238 | content: "\f56a"; } 1239 | 1240 | .fa-drumstick-bite:before { 1241 | content: "\f6d7"; } 1242 | 1243 | .fa-drupal:before { 1244 | content: "\f1a9"; } 1245 | 1246 | .fa-dumbbell:before { 1247 | content: "\f44b"; } 1248 | 1249 | .fa-dungeon:before { 1250 | content: "\f6d9"; } 1251 | 1252 | .fa-dyalog:before { 1253 | content: "\f399"; } 1254 | 1255 | .fa-earlybirds:before { 1256 | content: "\f39a"; } 1257 | 1258 | .fa-ebay:before { 1259 | content: "\f4f4"; } 1260 | 1261 | .fa-edge:before { 1262 | content: "\f282"; } 1263 | 1264 | .fa-edit:before { 1265 | content: "\f044"; } 1266 | 1267 | .fa-eject:before { 1268 | content: "\f052"; } 1269 | 1270 | .fa-elementor:before { 1271 | content: "\f430"; } 1272 | 1273 | .fa-ellipsis-h:before { 1274 | content: "\f141"; } 1275 | 1276 | .fa-ellipsis-v:before { 1277 | content: "\f142"; } 1278 | 1279 | .fa-ello:before { 1280 | content: "\f5f1"; } 1281 | 1282 | .fa-ember:before { 1283 | content: "\f423"; } 1284 | 1285 | .fa-empire:before { 1286 | content: "\f1d1"; } 1287 | 1288 | .fa-envelope:before { 1289 | content: "\f0e0"; } 1290 | 1291 | .fa-envelope-open:before { 1292 | content: "\f2b6"; } 1293 | 1294 | .fa-envelope-open-text:before { 1295 | content: "\f658"; } 1296 | 1297 | .fa-envelope-square:before { 1298 | content: "\f199"; } 1299 | 1300 | .fa-envira:before { 1301 | content: "\f299"; } 1302 | 1303 | .fa-equals:before { 1304 | content: "\f52c"; } 1305 | 1306 | .fa-eraser:before { 1307 | content: "\f12d"; } 1308 | 1309 | .fa-erlang:before { 1310 | content: "\f39d"; } 1311 | 1312 | .fa-ethereum:before { 1313 | content: "\f42e"; } 1314 | 1315 | .fa-etsy:before { 1316 | content: "\f2d7"; } 1317 | 1318 | .fa-euro-sign:before { 1319 | content: "\f153"; } 1320 | 1321 | .fa-exchange-alt:before { 1322 | content: "\f362"; } 1323 | 1324 | .fa-exclamation:before { 1325 | content: "\f12a"; } 1326 | 1327 | .fa-exclamation-circle:before { 1328 | content: "\f06a"; } 1329 | 1330 | .fa-exclamation-triangle:before { 1331 | content: "\f071"; } 1332 | 1333 | .fa-expand:before { 1334 | content: "\f065"; } 1335 | 1336 | .fa-expand-arrows-alt:before { 1337 | content: "\f31e"; } 1338 | 1339 | .fa-expeditedssl:before { 1340 | content: "\f23e"; } 1341 | 1342 | .fa-external-link-alt:before { 1343 | content: "\f35d"; } 1344 | 1345 | .fa-external-link-square-alt:before { 1346 | content: "\f360"; } 1347 | 1348 | .fa-eye:before { 1349 | content: "\f06e"; } 1350 | 1351 | .fa-eye-dropper:before { 1352 | content: "\f1fb"; } 1353 | 1354 | .fa-eye-slash:before { 1355 | content: "\f070"; } 1356 | 1357 | .fa-facebook:before { 1358 | content: "\f09a"; } 1359 | 1360 | .fa-facebook-f:before { 1361 | content: "\f39e"; } 1362 | 1363 | .fa-facebook-messenger:before { 1364 | content: "\f39f"; } 1365 | 1366 | .fa-facebook-square:before { 1367 | content: "\f082"; } 1368 | 1369 | .fa-fantasy-flight-games:before { 1370 | content: "\f6dc"; } 1371 | 1372 | .fa-fast-backward:before { 1373 | content: "\f049"; } 1374 | 1375 | .fa-fast-forward:before { 1376 | content: "\f050"; } 1377 | 1378 | .fa-fax:before { 1379 | content: "\f1ac"; } 1380 | 1381 | .fa-feather:before { 1382 | content: "\f52d"; } 1383 | 1384 | .fa-feather-alt:before { 1385 | content: "\f56b"; } 1386 | 1387 | .fa-female:before { 1388 | content: "\f182"; } 1389 | 1390 | .fa-fighter-jet:before { 1391 | content: "\f0fb"; } 1392 | 1393 | .fa-file:before { 1394 | content: "\f15b"; } 1395 | 1396 | .fa-file-alt:before { 1397 | content: "\f15c"; } 1398 | 1399 | .fa-file-archive:before { 1400 | content: "\f1c6"; } 1401 | 1402 | .fa-file-audio:before { 1403 | content: "\f1c7"; } 1404 | 1405 | .fa-file-code:before { 1406 | content: "\f1c9"; } 1407 | 1408 | .fa-file-contract:before { 1409 | content: "\f56c"; } 1410 | 1411 | .fa-file-csv:before { 1412 | content: "\f6dd"; } 1413 | 1414 | .fa-file-download:before { 1415 | content: "\f56d"; } 1416 | 1417 | .fa-file-excel:before { 1418 | content: "\f1c3"; } 1419 | 1420 | .fa-file-export:before { 1421 | content: "\f56e"; } 1422 | 1423 | .fa-file-image:before { 1424 | content: "\f1c5"; } 1425 | 1426 | .fa-file-import:before { 1427 | content: "\f56f"; } 1428 | 1429 | .fa-file-invoice:before { 1430 | content: "\f570"; } 1431 | 1432 | .fa-file-invoice-dollar:before { 1433 | content: "\f571"; } 1434 | 1435 | .fa-file-medical:before { 1436 | content: "\f477"; } 1437 | 1438 | .fa-file-medical-alt:before { 1439 | content: "\f478"; } 1440 | 1441 | .fa-file-pdf:before { 1442 | content: "\f1c1"; } 1443 | 1444 | .fa-file-powerpoint:before { 1445 | content: "\f1c4"; } 1446 | 1447 | .fa-file-prescription:before { 1448 | content: "\f572"; } 1449 | 1450 | .fa-file-signature:before { 1451 | content: "\f573"; } 1452 | 1453 | .fa-file-upload:before { 1454 | content: "\f574"; } 1455 | 1456 | .fa-file-video:before { 1457 | content: "\f1c8"; } 1458 | 1459 | .fa-file-word:before { 1460 | content: "\f1c2"; } 1461 | 1462 | .fa-fill:before { 1463 | content: "\f575"; } 1464 | 1465 | .fa-fill-drip:before { 1466 | content: "\f576"; } 1467 | 1468 | .fa-film:before { 1469 | content: "\f008"; } 1470 | 1471 | .fa-filter:before { 1472 | content: "\f0b0"; } 1473 | 1474 | .fa-fingerprint:before { 1475 | content: "\f577"; } 1476 | 1477 | .fa-fire:before { 1478 | content: "\f06d"; } 1479 | 1480 | .fa-fire-extinguisher:before { 1481 | content: "\f134"; } 1482 | 1483 | .fa-firefox:before { 1484 | content: "\f269"; } 1485 | 1486 | .fa-first-aid:before { 1487 | content: "\f479"; } 1488 | 1489 | .fa-first-order:before { 1490 | content: "\f2b0"; } 1491 | 1492 | .fa-first-order-alt:before { 1493 | content: "\f50a"; } 1494 | 1495 | .fa-firstdraft:before { 1496 | content: "\f3a1"; } 1497 | 1498 | .fa-fish:before { 1499 | content: "\f578"; } 1500 | 1501 | .fa-fist-raised:before { 1502 | content: "\f6de"; } 1503 | 1504 | .fa-flag:before { 1505 | content: "\f024"; } 1506 | 1507 | .fa-flag-checkered:before { 1508 | content: "\f11e"; } 1509 | 1510 | .fa-flag-usa:before { 1511 | content: "\f74d"; } 1512 | 1513 | .fa-flask:before { 1514 | content: "\f0c3"; } 1515 | 1516 | .fa-flickr:before { 1517 | content: "\f16e"; } 1518 | 1519 | .fa-flipboard:before { 1520 | content: "\f44d"; } 1521 | 1522 | .fa-flushed:before { 1523 | content: "\f579"; } 1524 | 1525 | .fa-fly:before { 1526 | content: "\f417"; } 1527 | 1528 | .fa-folder:before { 1529 | content: "\f07b"; } 1530 | 1531 | .fa-folder-minus:before { 1532 | content: "\f65d"; } 1533 | 1534 | .fa-folder-open:before { 1535 | content: "\f07c"; } 1536 | 1537 | .fa-folder-plus:before { 1538 | content: "\f65e"; } 1539 | 1540 | .fa-font:before { 1541 | content: "\f031"; } 1542 | 1543 | .fa-font-awesome:before { 1544 | content: "\f2b4"; } 1545 | 1546 | .fa-font-awesome-alt:before { 1547 | content: "\f35c"; } 1548 | 1549 | .fa-font-awesome-flag:before { 1550 | content: "\f425"; } 1551 | 1552 | .fa-font-awesome-logo-full:before { 1553 | content: "\f4e6"; } 1554 | 1555 | .fa-fonticons:before { 1556 | content: "\f280"; } 1557 | 1558 | .fa-fonticons-fi:before { 1559 | content: "\f3a2"; } 1560 | 1561 | .fa-football-ball:before { 1562 | content: "\f44e"; } 1563 | 1564 | .fa-fort-awesome:before { 1565 | content: "\f286"; } 1566 | 1567 | .fa-fort-awesome-alt:before { 1568 | content: "\f3a3"; } 1569 | 1570 | .fa-forumbee:before { 1571 | content: "\f211"; } 1572 | 1573 | .fa-forward:before { 1574 | content: "\f04e"; } 1575 | 1576 | .fa-foursquare:before { 1577 | content: "\f180"; } 1578 | 1579 | .fa-free-code-camp:before { 1580 | content: "\f2c5"; } 1581 | 1582 | .fa-freebsd:before { 1583 | content: "\f3a4"; } 1584 | 1585 | .fa-frog:before { 1586 | content: "\f52e"; } 1587 | 1588 | .fa-frown:before { 1589 | content: "\f119"; } 1590 | 1591 | .fa-frown-open:before { 1592 | content: "\f57a"; } 1593 | 1594 | .fa-fulcrum:before { 1595 | content: "\f50b"; } 1596 | 1597 | .fa-funnel-dollar:before { 1598 | content: "\f662"; } 1599 | 1600 | .fa-futbol:before { 1601 | content: "\f1e3"; } 1602 | 1603 | .fa-galactic-republic:before { 1604 | content: "\f50c"; } 1605 | 1606 | .fa-galactic-senate:before { 1607 | content: "\f50d"; } 1608 | 1609 | .fa-gamepad:before { 1610 | content: "\f11b"; } 1611 | 1612 | .fa-gas-pump:before { 1613 | content: "\f52f"; } 1614 | 1615 | .fa-gavel:before { 1616 | content: "\f0e3"; } 1617 | 1618 | .fa-gem:before { 1619 | content: "\f3a5"; } 1620 | 1621 | .fa-genderless:before { 1622 | content: "\f22d"; } 1623 | 1624 | .fa-get-pocket:before { 1625 | content: "\f265"; } 1626 | 1627 | .fa-gg:before { 1628 | content: "\f260"; } 1629 | 1630 | .fa-gg-circle:before { 1631 | content: "\f261"; } 1632 | 1633 | .fa-ghost:before { 1634 | content: "\f6e2"; } 1635 | 1636 | .fa-gift:before { 1637 | content: "\f06b"; } 1638 | 1639 | .fa-git:before { 1640 | content: "\f1d3"; } 1641 | 1642 | .fa-git-square:before { 1643 | content: "\f1d2"; } 1644 | 1645 | .fa-github:before { 1646 | content: "\f09b"; } 1647 | 1648 | .fa-github-alt:before { 1649 | content: "\f113"; } 1650 | 1651 | .fa-github-square:before { 1652 | content: "\f092"; } 1653 | 1654 | .fa-gitkraken:before { 1655 | content: "\f3a6"; } 1656 | 1657 | .fa-gitlab:before { 1658 | content: "\f296"; } 1659 | 1660 | .fa-gitter:before { 1661 | content: "\f426"; } 1662 | 1663 | .fa-glass-martini:before { 1664 | content: "\f000"; } 1665 | 1666 | .fa-glass-martini-alt:before { 1667 | content: "\f57b"; } 1668 | 1669 | .fa-glasses:before { 1670 | content: "\f530"; } 1671 | 1672 | .fa-glide:before { 1673 | content: "\f2a5"; } 1674 | 1675 | .fa-glide-g:before { 1676 | content: "\f2a6"; } 1677 | 1678 | .fa-globe:before { 1679 | content: "\f0ac"; } 1680 | 1681 | .fa-globe-africa:before { 1682 | content: "\f57c"; } 1683 | 1684 | .fa-globe-americas:before { 1685 | content: "\f57d"; } 1686 | 1687 | .fa-globe-asia:before { 1688 | content: "\f57e"; } 1689 | 1690 | .fa-gofore:before { 1691 | content: "\f3a7"; } 1692 | 1693 | .fa-golf-ball:before { 1694 | content: "\f450"; } 1695 | 1696 | .fa-goodreads:before { 1697 | content: "\f3a8"; } 1698 | 1699 | .fa-goodreads-g:before { 1700 | content: "\f3a9"; } 1701 | 1702 | .fa-google:before { 1703 | content: "\f1a0"; } 1704 | 1705 | .fa-google-drive:before { 1706 | content: "\f3aa"; } 1707 | 1708 | .fa-google-play:before { 1709 | content: "\f3ab"; } 1710 | 1711 | .fa-google-plus:before { 1712 | content: "\f2b3"; } 1713 | 1714 | .fa-google-plus-g:before { 1715 | content: "\f0d5"; } 1716 | 1717 | .fa-google-plus-square:before { 1718 | content: "\f0d4"; } 1719 | 1720 | .fa-google-wallet:before { 1721 | content: "\f1ee"; } 1722 | 1723 | .fa-gopuram:before { 1724 | content: "\f664"; } 1725 | 1726 | .fa-graduation-cap:before { 1727 | content: "\f19d"; } 1728 | 1729 | .fa-gratipay:before { 1730 | content: "\f184"; } 1731 | 1732 | .fa-grav:before { 1733 | content: "\f2d6"; } 1734 | 1735 | .fa-greater-than:before { 1736 | content: "\f531"; } 1737 | 1738 | .fa-greater-than-equal:before { 1739 | content: "\f532"; } 1740 | 1741 | .fa-grimace:before { 1742 | content: "\f57f"; } 1743 | 1744 | .fa-grin:before { 1745 | content: "\f580"; } 1746 | 1747 | .fa-grin-alt:before { 1748 | content: "\f581"; } 1749 | 1750 | .fa-grin-beam:before { 1751 | content: "\f582"; } 1752 | 1753 | .fa-grin-beam-sweat:before { 1754 | content: "\f583"; } 1755 | 1756 | .fa-grin-hearts:before { 1757 | content: "\f584"; } 1758 | 1759 | .fa-grin-squint:before { 1760 | content: "\f585"; } 1761 | 1762 | .fa-grin-squint-tears:before { 1763 | content: "\f586"; } 1764 | 1765 | .fa-grin-stars:before { 1766 | content: "\f587"; } 1767 | 1768 | .fa-grin-tears:before { 1769 | content: "\f588"; } 1770 | 1771 | .fa-grin-tongue:before { 1772 | content: "\f589"; } 1773 | 1774 | .fa-grin-tongue-squint:before { 1775 | content: "\f58a"; } 1776 | 1777 | .fa-grin-tongue-wink:before { 1778 | content: "\f58b"; } 1779 | 1780 | .fa-grin-wink:before { 1781 | content: "\f58c"; } 1782 | 1783 | .fa-grip-horizontal:before { 1784 | content: "\f58d"; } 1785 | 1786 | .fa-grip-vertical:before { 1787 | content: "\f58e"; } 1788 | 1789 | .fa-gripfire:before { 1790 | content: "\f3ac"; } 1791 | 1792 | .fa-grunt:before { 1793 | content: "\f3ad"; } 1794 | 1795 | .fa-gulp:before { 1796 | content: "\f3ae"; } 1797 | 1798 | .fa-h-square:before { 1799 | content: "\f0fd"; } 1800 | 1801 | .fa-hacker-news:before { 1802 | content: "\f1d4"; } 1803 | 1804 | .fa-hacker-news-square:before { 1805 | content: "\f3af"; } 1806 | 1807 | .fa-hackerrank:before { 1808 | content: "\f5f7"; } 1809 | 1810 | .fa-hammer:before { 1811 | content: "\f6e3"; } 1812 | 1813 | .fa-hamsa:before { 1814 | content: "\f665"; } 1815 | 1816 | .fa-hand-holding:before { 1817 | content: "\f4bd"; } 1818 | 1819 | .fa-hand-holding-heart:before { 1820 | content: "\f4be"; } 1821 | 1822 | .fa-hand-holding-usd:before { 1823 | content: "\f4c0"; } 1824 | 1825 | .fa-hand-lizard:before { 1826 | content: "\f258"; } 1827 | 1828 | .fa-hand-paper:before { 1829 | content: "\f256"; } 1830 | 1831 | .fa-hand-peace:before { 1832 | content: "\f25b"; } 1833 | 1834 | .fa-hand-point-down:before { 1835 | content: "\f0a7"; } 1836 | 1837 | .fa-hand-point-left:before { 1838 | content: "\f0a5"; } 1839 | 1840 | .fa-hand-point-right:before { 1841 | content: "\f0a4"; } 1842 | 1843 | .fa-hand-point-up:before { 1844 | content: "\f0a6"; } 1845 | 1846 | .fa-hand-pointer:before { 1847 | content: "\f25a"; } 1848 | 1849 | .fa-hand-rock:before { 1850 | content: "\f255"; } 1851 | 1852 | .fa-hand-scissors:before { 1853 | content: "\f257"; } 1854 | 1855 | .fa-hand-spock:before { 1856 | content: "\f259"; } 1857 | 1858 | .fa-hands:before { 1859 | content: "\f4c2"; } 1860 | 1861 | .fa-hands-helping:before { 1862 | content: "\f4c4"; } 1863 | 1864 | .fa-handshake:before { 1865 | content: "\f2b5"; } 1866 | 1867 | .fa-hanukiah:before { 1868 | content: "\f6e6"; } 1869 | 1870 | .fa-hashtag:before { 1871 | content: "\f292"; } 1872 | 1873 | .fa-hat-wizard:before { 1874 | content: "\f6e8"; } 1875 | 1876 | .fa-haykal:before { 1877 | content: "\f666"; } 1878 | 1879 | .fa-hdd:before { 1880 | content: "\f0a0"; } 1881 | 1882 | .fa-heading:before { 1883 | content: "\f1dc"; } 1884 | 1885 | .fa-headphones:before { 1886 | content: "\f025"; } 1887 | 1888 | .fa-headphones-alt:before { 1889 | content: "\f58f"; } 1890 | 1891 | .fa-headset:before { 1892 | content: "\f590"; } 1893 | 1894 | .fa-heart:before { 1895 | content: "\f004"; } 1896 | 1897 | .fa-heartbeat:before { 1898 | content: "\f21e"; } 1899 | 1900 | .fa-helicopter:before { 1901 | content: "\f533"; } 1902 | 1903 | .fa-highlighter:before { 1904 | content: "\f591"; } 1905 | 1906 | .fa-hiking:before { 1907 | content: "\f6ec"; } 1908 | 1909 | .fa-hippo:before { 1910 | content: "\f6ed"; } 1911 | 1912 | .fa-hips:before { 1913 | content: "\f452"; } 1914 | 1915 | .fa-hire-a-helper:before { 1916 | content: "\f3b0"; } 1917 | 1918 | .fa-history:before { 1919 | content: "\f1da"; } 1920 | 1921 | .fa-hockey-puck:before { 1922 | content: "\f453"; } 1923 | 1924 | .fa-home:before { 1925 | content: "\f015"; } 1926 | 1927 | .fa-hooli:before { 1928 | content: "\f427"; } 1929 | 1930 | .fa-hornbill:before { 1931 | content: "\f592"; } 1932 | 1933 | .fa-horse:before { 1934 | content: "\f6f0"; } 1935 | 1936 | .fa-hospital:before { 1937 | content: "\f0f8"; } 1938 | 1939 | .fa-hospital-alt:before { 1940 | content: "\f47d"; } 1941 | 1942 | .fa-hospital-symbol:before { 1943 | content: "\f47e"; } 1944 | 1945 | .fa-hot-tub:before { 1946 | content: "\f593"; } 1947 | 1948 | .fa-hotel:before { 1949 | content: "\f594"; } 1950 | 1951 | .fa-hotjar:before { 1952 | content: "\f3b1"; } 1953 | 1954 | .fa-hourglass:before { 1955 | content: "\f254"; } 1956 | 1957 | .fa-hourglass-end:before { 1958 | content: "\f253"; } 1959 | 1960 | .fa-hourglass-half:before { 1961 | content: "\f252"; } 1962 | 1963 | .fa-hourglass-start:before { 1964 | content: "\f251"; } 1965 | 1966 | .fa-house-damage:before { 1967 | content: "\f6f1"; } 1968 | 1969 | .fa-houzz:before { 1970 | content: "\f27c"; } 1971 | 1972 | .fa-hryvnia:before { 1973 | content: "\f6f2"; } 1974 | 1975 | .fa-html5:before { 1976 | content: "\f13b"; } 1977 | 1978 | .fa-hubspot:before { 1979 | content: "\f3b2"; } 1980 | 1981 | .fa-i-cursor:before { 1982 | content: "\f246"; } 1983 | 1984 | .fa-id-badge:before { 1985 | content: "\f2c1"; } 1986 | 1987 | .fa-id-card:before { 1988 | content: "\f2c2"; } 1989 | 1990 | .fa-id-card-alt:before { 1991 | content: "\f47f"; } 1992 | 1993 | .fa-image:before { 1994 | content: "\f03e"; } 1995 | 1996 | .fa-images:before { 1997 | content: "\f302"; } 1998 | 1999 | .fa-imdb:before { 2000 | content: "\f2d8"; } 2001 | 2002 | .fa-inbox:before { 2003 | content: "\f01c"; } 2004 | 2005 | .fa-indent:before { 2006 | content: "\f03c"; } 2007 | 2008 | .fa-industry:before { 2009 | content: "\f275"; } 2010 | 2011 | .fa-infinity:before { 2012 | content: "\f534"; } 2013 | 2014 | .fa-info:before { 2015 | content: "\f129"; } 2016 | 2017 | .fa-info-circle:before { 2018 | content: "\f05a"; } 2019 | 2020 | .fa-instagram:before { 2021 | content: "\f16d"; } 2022 | 2023 | .fa-internet-explorer:before { 2024 | content: "\f26b"; } 2025 | 2026 | .fa-ioxhost:before { 2027 | content: "\f208"; } 2028 | 2029 | .fa-italic:before { 2030 | content: "\f033"; } 2031 | 2032 | .fa-itunes:before { 2033 | content: "\f3b4"; } 2034 | 2035 | .fa-itunes-note:before { 2036 | content: "\f3b5"; } 2037 | 2038 | .fa-java:before { 2039 | content: "\f4e4"; } 2040 | 2041 | .fa-jedi:before { 2042 | content: "\f669"; } 2043 | 2044 | .fa-jedi-order:before { 2045 | content: "\f50e"; } 2046 | 2047 | .fa-jenkins:before { 2048 | content: "\f3b6"; } 2049 | 2050 | .fa-joget:before { 2051 | content: "\f3b7"; } 2052 | 2053 | .fa-joint:before { 2054 | content: "\f595"; } 2055 | 2056 | .fa-joomla:before { 2057 | content: "\f1aa"; } 2058 | 2059 | .fa-journal-whills:before { 2060 | content: "\f66a"; } 2061 | 2062 | .fa-js:before { 2063 | content: "\f3b8"; } 2064 | 2065 | .fa-js-square:before { 2066 | content: "\f3b9"; } 2067 | 2068 | .fa-jsfiddle:before { 2069 | content: "\f1cc"; } 2070 | 2071 | .fa-kaaba:before { 2072 | content: "\f66b"; } 2073 | 2074 | .fa-kaggle:before { 2075 | content: "\f5fa"; } 2076 | 2077 | .fa-key:before { 2078 | content: "\f084"; } 2079 | 2080 | .fa-keybase:before { 2081 | content: "\f4f5"; } 2082 | 2083 | .fa-keyboard:before { 2084 | content: "\f11c"; } 2085 | 2086 | .fa-keycdn:before { 2087 | content: "\f3ba"; } 2088 | 2089 | .fa-khanda:before { 2090 | content: "\f66d"; } 2091 | 2092 | .fa-kickstarter:before { 2093 | content: "\f3bb"; } 2094 | 2095 | .fa-kickstarter-k:before { 2096 | content: "\f3bc"; } 2097 | 2098 | .fa-kiss:before { 2099 | content: "\f596"; } 2100 | 2101 | .fa-kiss-beam:before { 2102 | content: "\f597"; } 2103 | 2104 | .fa-kiss-wink-heart:before { 2105 | content: "\f598"; } 2106 | 2107 | .fa-kiwi-bird:before { 2108 | content: "\f535"; } 2109 | 2110 | .fa-korvue:before { 2111 | content: "\f42f"; } 2112 | 2113 | .fa-landmark:before { 2114 | content: "\f66f"; } 2115 | 2116 | .fa-language:before { 2117 | content: "\f1ab"; } 2118 | 2119 | .fa-laptop:before { 2120 | content: "\f109"; } 2121 | 2122 | .fa-laptop-code:before { 2123 | content: "\f5fc"; } 2124 | 2125 | .fa-laravel:before { 2126 | content: "\f3bd"; } 2127 | 2128 | .fa-lastfm:before { 2129 | content: "\f202"; } 2130 | 2131 | .fa-lastfm-square:before { 2132 | content: "\f203"; } 2133 | 2134 | .fa-laugh:before { 2135 | content: "\f599"; } 2136 | 2137 | .fa-laugh-beam:before { 2138 | content: "\f59a"; } 2139 | 2140 | .fa-laugh-squint:before { 2141 | content: "\f59b"; } 2142 | 2143 | .fa-laugh-wink:before { 2144 | content: "\f59c"; } 2145 | 2146 | .fa-layer-group:before { 2147 | content: "\f5fd"; } 2148 | 2149 | .fa-leaf:before { 2150 | content: "\f06c"; } 2151 | 2152 | .fa-leanpub:before { 2153 | content: "\f212"; } 2154 | 2155 | .fa-lemon:before { 2156 | content: "\f094"; } 2157 | 2158 | .fa-less:before { 2159 | content: "\f41d"; } 2160 | 2161 | .fa-less-than:before { 2162 | content: "\f536"; } 2163 | 2164 | .fa-less-than-equal:before { 2165 | content: "\f537"; } 2166 | 2167 | .fa-level-down-alt:before { 2168 | content: "\f3be"; } 2169 | 2170 | .fa-level-up-alt:before { 2171 | content: "\f3bf"; } 2172 | 2173 | .fa-life-ring:before { 2174 | content: "\f1cd"; } 2175 | 2176 | .fa-lightbulb:before { 2177 | content: "\f0eb"; } 2178 | 2179 | .fa-line:before { 2180 | content: "\f3c0"; } 2181 | 2182 | .fa-link:before { 2183 | content: "\f0c1"; } 2184 | 2185 | .fa-linkedin:before { 2186 | content: "\f08c"; } 2187 | 2188 | .fa-linkedin-in:before { 2189 | content: "\f0e1"; } 2190 | 2191 | .fa-linode:before { 2192 | content: "\f2b8"; } 2193 | 2194 | .fa-linux:before { 2195 | content: "\f17c"; } 2196 | 2197 | .fa-lira-sign:before { 2198 | content: "\f195"; } 2199 | 2200 | .fa-list:before { 2201 | content: "\f03a"; } 2202 | 2203 | .fa-list-alt:before { 2204 | content: "\f022"; } 2205 | 2206 | .fa-list-ol:before { 2207 | content: "\f0cb"; } 2208 | 2209 | .fa-list-ul:before { 2210 | content: "\f0ca"; } 2211 | 2212 | .fa-location-arrow:before { 2213 | content: "\f124"; } 2214 | 2215 | .fa-lock:before { 2216 | content: "\f023"; } 2217 | 2218 | .fa-lock-open:before { 2219 | content: "\f3c1"; } 2220 | 2221 | .fa-long-arrow-alt-down:before { 2222 | content: "\f309"; } 2223 | 2224 | .fa-long-arrow-alt-left:before { 2225 | content: "\f30a"; } 2226 | 2227 | .fa-long-arrow-alt-right:before { 2228 | content: "\f30b"; } 2229 | 2230 | .fa-long-arrow-alt-up:before { 2231 | content: "\f30c"; } 2232 | 2233 | .fa-low-vision:before { 2234 | content: "\f2a8"; } 2235 | 2236 | .fa-luggage-cart:before { 2237 | content: "\f59d"; } 2238 | 2239 | .fa-lyft:before { 2240 | content: "\f3c3"; } 2241 | 2242 | .fa-magento:before { 2243 | content: "\f3c4"; } 2244 | 2245 | .fa-magic:before { 2246 | content: "\f0d0"; } 2247 | 2248 | .fa-magnet:before { 2249 | content: "\f076"; } 2250 | 2251 | .fa-mail-bulk:before { 2252 | content: "\f674"; } 2253 | 2254 | .fa-mailchimp:before { 2255 | content: "\f59e"; } 2256 | 2257 | .fa-male:before { 2258 | content: "\f183"; } 2259 | 2260 | .fa-mandalorian:before { 2261 | content: "\f50f"; } 2262 | 2263 | .fa-map:before { 2264 | content: "\f279"; } 2265 | 2266 | .fa-map-marked:before { 2267 | content: "\f59f"; } 2268 | 2269 | .fa-map-marked-alt:before { 2270 | content: "\f5a0"; } 2271 | 2272 | .fa-map-marker:before { 2273 | content: "\f041"; } 2274 | 2275 | .fa-map-marker-alt:before { 2276 | content: "\f3c5"; } 2277 | 2278 | .fa-map-pin:before { 2279 | content: "\f276"; } 2280 | 2281 | .fa-map-signs:before { 2282 | content: "\f277"; } 2283 | 2284 | .fa-markdown:before { 2285 | content: "\f60f"; } 2286 | 2287 | .fa-marker:before { 2288 | content: "\f5a1"; } 2289 | 2290 | .fa-mars:before { 2291 | content: "\f222"; } 2292 | 2293 | .fa-mars-double:before { 2294 | content: "\f227"; } 2295 | 2296 | .fa-mars-stroke:before { 2297 | content: "\f229"; } 2298 | 2299 | .fa-mars-stroke-h:before { 2300 | content: "\f22b"; } 2301 | 2302 | .fa-mars-stroke-v:before { 2303 | content: "\f22a"; } 2304 | 2305 | .fa-mask:before { 2306 | content: "\f6fa"; } 2307 | 2308 | .fa-mastodon:before { 2309 | content: "\f4f6"; } 2310 | 2311 | .fa-maxcdn:before { 2312 | content: "\f136"; } 2313 | 2314 | .fa-medal:before { 2315 | content: "\f5a2"; } 2316 | 2317 | .fa-medapps:before { 2318 | content: "\f3c6"; } 2319 | 2320 | .fa-medium:before { 2321 | content: "\f23a"; } 2322 | 2323 | .fa-medium-m:before { 2324 | content: "\f3c7"; } 2325 | 2326 | .fa-medkit:before { 2327 | content: "\f0fa"; } 2328 | 2329 | .fa-medrt:before { 2330 | content: "\f3c8"; } 2331 | 2332 | .fa-meetup:before { 2333 | content: "\f2e0"; } 2334 | 2335 | .fa-megaport:before { 2336 | content: "\f5a3"; } 2337 | 2338 | .fa-meh:before { 2339 | content: "\f11a"; } 2340 | 2341 | .fa-meh-blank:before { 2342 | content: "\f5a4"; } 2343 | 2344 | .fa-meh-rolling-eyes:before { 2345 | content: "\f5a5"; } 2346 | 2347 | .fa-memory:before { 2348 | content: "\f538"; } 2349 | 2350 | .fa-menorah:before { 2351 | content: "\f676"; } 2352 | 2353 | .fa-mercury:before { 2354 | content: "\f223"; } 2355 | 2356 | .fa-meteor:before { 2357 | content: "\f753"; } 2358 | 2359 | .fa-microchip:before { 2360 | content: "\f2db"; } 2361 | 2362 | .fa-microphone:before { 2363 | content: "\f130"; } 2364 | 2365 | .fa-microphone-alt:before { 2366 | content: "\f3c9"; } 2367 | 2368 | .fa-microphone-alt-slash:before { 2369 | content: "\f539"; } 2370 | 2371 | .fa-microphone-slash:before { 2372 | content: "\f131"; } 2373 | 2374 | .fa-microscope:before { 2375 | content: "\f610"; } 2376 | 2377 | .fa-microsoft:before { 2378 | content: "\f3ca"; } 2379 | 2380 | .fa-minus:before { 2381 | content: "\f068"; } 2382 | 2383 | .fa-minus-circle:before { 2384 | content: "\f056"; } 2385 | 2386 | .fa-minus-square:before { 2387 | content: "\f146"; } 2388 | 2389 | .fa-mix:before { 2390 | content: "\f3cb"; } 2391 | 2392 | .fa-mixcloud:before { 2393 | content: "\f289"; } 2394 | 2395 | .fa-mizuni:before { 2396 | content: "\f3cc"; } 2397 | 2398 | .fa-mobile:before { 2399 | content: "\f10b"; } 2400 | 2401 | .fa-mobile-alt:before { 2402 | content: "\f3cd"; } 2403 | 2404 | .fa-modx:before { 2405 | content: "\f285"; } 2406 | 2407 | .fa-monero:before { 2408 | content: "\f3d0"; } 2409 | 2410 | .fa-money-bill:before { 2411 | content: "\f0d6"; } 2412 | 2413 | .fa-money-bill-alt:before { 2414 | content: "\f3d1"; } 2415 | 2416 | .fa-money-bill-wave:before { 2417 | content: "\f53a"; } 2418 | 2419 | .fa-money-bill-wave-alt:before { 2420 | content: "\f53b"; } 2421 | 2422 | .fa-money-check:before { 2423 | content: "\f53c"; } 2424 | 2425 | .fa-money-check-alt:before { 2426 | content: "\f53d"; } 2427 | 2428 | .fa-monument:before { 2429 | content: "\f5a6"; } 2430 | 2431 | .fa-moon:before { 2432 | content: "\f186"; } 2433 | 2434 | .fa-mortar-pestle:before { 2435 | content: "\f5a7"; } 2436 | 2437 | .fa-mosque:before { 2438 | content: "\f678"; } 2439 | 2440 | .fa-motorcycle:before { 2441 | content: "\f21c"; } 2442 | 2443 | .fa-mountain:before { 2444 | content: "\f6fc"; } 2445 | 2446 | .fa-mouse-pointer:before { 2447 | content: "\f245"; } 2448 | 2449 | .fa-music:before { 2450 | content: "\f001"; } 2451 | 2452 | .fa-napster:before { 2453 | content: "\f3d2"; } 2454 | 2455 | .fa-neos:before { 2456 | content: "\f612"; } 2457 | 2458 | .fa-network-wired:before { 2459 | content: "\f6ff"; } 2460 | 2461 | .fa-neuter:before { 2462 | content: "\f22c"; } 2463 | 2464 | .fa-newspaper:before { 2465 | content: "\f1ea"; } 2466 | 2467 | .fa-nimblr:before { 2468 | content: "\f5a8"; } 2469 | 2470 | .fa-nintendo-switch:before { 2471 | content: "\f418"; } 2472 | 2473 | .fa-node:before { 2474 | content: "\f419"; } 2475 | 2476 | .fa-node-js:before { 2477 | content: "\f3d3"; } 2478 | 2479 | .fa-not-equal:before { 2480 | content: "\f53e"; } 2481 | 2482 | .fa-notes-medical:before { 2483 | content: "\f481"; } 2484 | 2485 | .fa-npm:before { 2486 | content: "\f3d4"; } 2487 | 2488 | .fa-ns8:before { 2489 | content: "\f3d5"; } 2490 | 2491 | .fa-nutritionix:before { 2492 | content: "\f3d6"; } 2493 | 2494 | .fa-object-group:before { 2495 | content: "\f247"; } 2496 | 2497 | .fa-object-ungroup:before { 2498 | content: "\f248"; } 2499 | 2500 | .fa-odnoklassniki:before { 2501 | content: "\f263"; } 2502 | 2503 | .fa-odnoklassniki-square:before { 2504 | content: "\f264"; } 2505 | 2506 | .fa-oil-can:before { 2507 | content: "\f613"; } 2508 | 2509 | .fa-old-republic:before { 2510 | content: "\f510"; } 2511 | 2512 | .fa-om:before { 2513 | content: "\f679"; } 2514 | 2515 | .fa-opencart:before { 2516 | content: "\f23d"; } 2517 | 2518 | .fa-openid:before { 2519 | content: "\f19b"; } 2520 | 2521 | .fa-opera:before { 2522 | content: "\f26a"; } 2523 | 2524 | .fa-optin-monster:before { 2525 | content: "\f23c"; } 2526 | 2527 | .fa-osi:before { 2528 | content: "\f41a"; } 2529 | 2530 | .fa-otter:before { 2531 | content: "\f700"; } 2532 | 2533 | .fa-outdent:before { 2534 | content: "\f03b"; } 2535 | 2536 | .fa-page4:before { 2537 | content: "\f3d7"; } 2538 | 2539 | .fa-pagelines:before { 2540 | content: "\f18c"; } 2541 | 2542 | .fa-paint-brush:before { 2543 | content: "\f1fc"; } 2544 | 2545 | .fa-paint-roller:before { 2546 | content: "\f5aa"; } 2547 | 2548 | .fa-palette:before { 2549 | content: "\f53f"; } 2550 | 2551 | .fa-palfed:before { 2552 | content: "\f3d8"; } 2553 | 2554 | .fa-pallet:before { 2555 | content: "\f482"; } 2556 | 2557 | .fa-paper-plane:before { 2558 | content: "\f1d8"; } 2559 | 2560 | .fa-paperclip:before { 2561 | content: "\f0c6"; } 2562 | 2563 | .fa-parachute-box:before { 2564 | content: "\f4cd"; } 2565 | 2566 | .fa-paragraph:before { 2567 | content: "\f1dd"; } 2568 | 2569 | .fa-parking:before { 2570 | content: "\f540"; } 2571 | 2572 | .fa-passport:before { 2573 | content: "\f5ab"; } 2574 | 2575 | .fa-pastafarianism:before { 2576 | content: "\f67b"; } 2577 | 2578 | .fa-paste:before { 2579 | content: "\f0ea"; } 2580 | 2581 | .fa-patreon:before { 2582 | content: "\f3d9"; } 2583 | 2584 | .fa-pause:before { 2585 | content: "\f04c"; } 2586 | 2587 | .fa-pause-circle:before { 2588 | content: "\f28b"; } 2589 | 2590 | .fa-paw:before { 2591 | content: "\f1b0"; } 2592 | 2593 | .fa-paypal:before { 2594 | content: "\f1ed"; } 2595 | 2596 | .fa-peace:before { 2597 | content: "\f67c"; } 2598 | 2599 | .fa-pen:before { 2600 | content: "\f304"; } 2601 | 2602 | .fa-pen-alt:before { 2603 | content: "\f305"; } 2604 | 2605 | .fa-pen-fancy:before { 2606 | content: "\f5ac"; } 2607 | 2608 | .fa-pen-nib:before { 2609 | content: "\f5ad"; } 2610 | 2611 | .fa-pen-square:before { 2612 | content: "\f14b"; } 2613 | 2614 | .fa-pencil-alt:before { 2615 | content: "\f303"; } 2616 | 2617 | .fa-pencil-ruler:before { 2618 | content: "\f5ae"; } 2619 | 2620 | .fa-penny-arcade:before { 2621 | content: "\f704"; } 2622 | 2623 | .fa-people-carry:before { 2624 | content: "\f4ce"; } 2625 | 2626 | .fa-percent:before { 2627 | content: "\f295"; } 2628 | 2629 | .fa-percentage:before { 2630 | content: "\f541"; } 2631 | 2632 | .fa-periscope:before { 2633 | content: "\f3da"; } 2634 | 2635 | .fa-person-booth:before { 2636 | content: "\f756"; } 2637 | 2638 | .fa-phabricator:before { 2639 | content: "\f3db"; } 2640 | 2641 | .fa-phoenix-framework:before { 2642 | content: "\f3dc"; } 2643 | 2644 | .fa-phoenix-squadron:before { 2645 | content: "\f511"; } 2646 | 2647 | .fa-phone:before { 2648 | content: "\f095"; } 2649 | 2650 | .fa-phone-slash:before { 2651 | content: "\f3dd"; } 2652 | 2653 | .fa-phone-square:before { 2654 | content: "\f098"; } 2655 | 2656 | .fa-phone-volume:before { 2657 | content: "\f2a0"; } 2658 | 2659 | .fa-php:before { 2660 | content: "\f457"; } 2661 | 2662 | .fa-pied-piper:before { 2663 | content: "\f2ae"; } 2664 | 2665 | .fa-pied-piper-alt:before { 2666 | content: "\f1a8"; } 2667 | 2668 | .fa-pied-piper-hat:before { 2669 | content: "\f4e5"; } 2670 | 2671 | .fa-pied-piper-pp:before { 2672 | content: "\f1a7"; } 2673 | 2674 | .fa-piggy-bank:before { 2675 | content: "\f4d3"; } 2676 | 2677 | .fa-pills:before { 2678 | content: "\f484"; } 2679 | 2680 | .fa-pinterest:before { 2681 | content: "\f0d2"; } 2682 | 2683 | .fa-pinterest-p:before { 2684 | content: "\f231"; } 2685 | 2686 | .fa-pinterest-square:before { 2687 | content: "\f0d3"; } 2688 | 2689 | .fa-place-of-worship:before { 2690 | content: "\f67f"; } 2691 | 2692 | .fa-plane:before { 2693 | content: "\f072"; } 2694 | 2695 | .fa-plane-arrival:before { 2696 | content: "\f5af"; } 2697 | 2698 | .fa-plane-departure:before { 2699 | content: "\f5b0"; } 2700 | 2701 | .fa-play:before { 2702 | content: "\f04b"; } 2703 | 2704 | .fa-play-circle:before { 2705 | content: "\f144"; } 2706 | 2707 | .fa-playstation:before { 2708 | content: "\f3df"; } 2709 | 2710 | .fa-plug:before { 2711 | content: "\f1e6"; } 2712 | 2713 | .fa-plus:before { 2714 | content: "\f067"; } 2715 | 2716 | .fa-plus-circle:before { 2717 | content: "\f055"; } 2718 | 2719 | .fa-plus-square:before { 2720 | content: "\f0fe"; } 2721 | 2722 | .fa-podcast:before { 2723 | content: "\f2ce"; } 2724 | 2725 | .fa-poll:before { 2726 | content: "\f681"; } 2727 | 2728 | .fa-poll-h:before { 2729 | content: "\f682"; } 2730 | 2731 | .fa-poo:before { 2732 | content: "\f2fe"; } 2733 | 2734 | .fa-poo-storm:before { 2735 | content: "\f75a"; } 2736 | 2737 | .fa-poop:before { 2738 | content: "\f619"; } 2739 | 2740 | .fa-portrait:before { 2741 | content: "\f3e0"; } 2742 | 2743 | .fa-pound-sign:before { 2744 | content: "\f154"; } 2745 | 2746 | .fa-power-off:before { 2747 | content: "\f011"; } 2748 | 2749 | .fa-pray:before { 2750 | content: "\f683"; } 2751 | 2752 | .fa-praying-hands:before { 2753 | content: "\f684"; } 2754 | 2755 | .fa-prescription:before { 2756 | content: "\f5b1"; } 2757 | 2758 | .fa-prescription-bottle:before { 2759 | content: "\f485"; } 2760 | 2761 | .fa-prescription-bottle-alt:before { 2762 | content: "\f486"; } 2763 | 2764 | .fa-print:before { 2765 | content: "\f02f"; } 2766 | 2767 | .fa-procedures:before { 2768 | content: "\f487"; } 2769 | 2770 | .fa-product-hunt:before { 2771 | content: "\f288"; } 2772 | 2773 | .fa-project-diagram:before { 2774 | content: "\f542"; } 2775 | 2776 | .fa-pushed:before { 2777 | content: "\f3e1"; } 2778 | 2779 | .fa-puzzle-piece:before { 2780 | content: "\f12e"; } 2781 | 2782 | .fa-python:before { 2783 | content: "\f3e2"; } 2784 | 2785 | .fa-qq:before { 2786 | content: "\f1d6"; } 2787 | 2788 | .fa-qrcode:before { 2789 | content: "\f029"; } 2790 | 2791 | .fa-question:before { 2792 | content: "\f128"; } 2793 | 2794 | .fa-question-circle:before { 2795 | content: "\f059"; } 2796 | 2797 | .fa-quidditch:before { 2798 | content: "\f458"; } 2799 | 2800 | .fa-quinscape:before { 2801 | content: "\f459"; } 2802 | 2803 | .fa-quora:before { 2804 | content: "\f2c4"; } 2805 | 2806 | .fa-quote-left:before { 2807 | content: "\f10d"; } 2808 | 2809 | .fa-quote-right:before { 2810 | content: "\f10e"; } 2811 | 2812 | .fa-quran:before { 2813 | content: "\f687"; } 2814 | 2815 | .fa-r-project:before { 2816 | content: "\f4f7"; } 2817 | 2818 | .fa-rainbow:before { 2819 | content: "\f75b"; } 2820 | 2821 | .fa-random:before { 2822 | content: "\f074"; } 2823 | 2824 | .fa-ravelry:before { 2825 | content: "\f2d9"; } 2826 | 2827 | .fa-react:before { 2828 | content: "\f41b"; } 2829 | 2830 | .fa-reacteurope:before { 2831 | content: "\f75d"; } 2832 | 2833 | .fa-readme:before { 2834 | content: "\f4d5"; } 2835 | 2836 | .fa-rebel:before { 2837 | content: "\f1d0"; } 2838 | 2839 | .fa-receipt:before { 2840 | content: "\f543"; } 2841 | 2842 | .fa-recycle:before { 2843 | content: "\f1b8"; } 2844 | 2845 | .fa-red-river:before { 2846 | content: "\f3e3"; } 2847 | 2848 | .fa-reddit:before { 2849 | content: "\f1a1"; } 2850 | 2851 | .fa-reddit-alien:before { 2852 | content: "\f281"; } 2853 | 2854 | .fa-reddit-square:before { 2855 | content: "\f1a2"; } 2856 | 2857 | .fa-redo:before { 2858 | content: "\f01e"; } 2859 | 2860 | .fa-redo-alt:before { 2861 | content: "\f2f9"; } 2862 | 2863 | .fa-registered:before { 2864 | content: "\f25d"; } 2865 | 2866 | .fa-renren:before { 2867 | content: "\f18b"; } 2868 | 2869 | .fa-reply:before { 2870 | content: "\f3e5"; } 2871 | 2872 | .fa-reply-all:before { 2873 | content: "\f122"; } 2874 | 2875 | .fa-replyd:before { 2876 | content: "\f3e6"; } 2877 | 2878 | .fa-republican:before { 2879 | content: "\f75e"; } 2880 | 2881 | .fa-researchgate:before { 2882 | content: "\f4f8"; } 2883 | 2884 | .fa-resolving:before { 2885 | content: "\f3e7"; } 2886 | 2887 | .fa-retweet:before { 2888 | content: "\f079"; } 2889 | 2890 | .fa-rev:before { 2891 | content: "\f5b2"; } 2892 | 2893 | .fa-ribbon:before { 2894 | content: "\f4d6"; } 2895 | 2896 | .fa-ring:before { 2897 | content: "\f70b"; } 2898 | 2899 | .fa-road:before { 2900 | content: "\f018"; } 2901 | 2902 | .fa-robot:before { 2903 | content: "\f544"; } 2904 | 2905 | .fa-rocket:before { 2906 | content: "\f135"; } 2907 | 2908 | .fa-rocketchat:before { 2909 | content: "\f3e8"; } 2910 | 2911 | .fa-rockrms:before { 2912 | content: "\f3e9"; } 2913 | 2914 | .fa-route:before { 2915 | content: "\f4d7"; } 2916 | 2917 | .fa-rss:before { 2918 | content: "\f09e"; } 2919 | 2920 | .fa-rss-square:before { 2921 | content: "\f143"; } 2922 | 2923 | .fa-ruble-sign:before { 2924 | content: "\f158"; } 2925 | 2926 | .fa-ruler:before { 2927 | content: "\f545"; } 2928 | 2929 | .fa-ruler-combined:before { 2930 | content: "\f546"; } 2931 | 2932 | .fa-ruler-horizontal:before { 2933 | content: "\f547"; } 2934 | 2935 | .fa-ruler-vertical:before { 2936 | content: "\f548"; } 2937 | 2938 | .fa-running:before { 2939 | content: "\f70c"; } 2940 | 2941 | .fa-rupee-sign:before { 2942 | content: "\f156"; } 2943 | 2944 | .fa-sad-cry:before { 2945 | content: "\f5b3"; } 2946 | 2947 | .fa-sad-tear:before { 2948 | content: "\f5b4"; } 2949 | 2950 | .fa-safari:before { 2951 | content: "\f267"; } 2952 | 2953 | .fa-sass:before { 2954 | content: "\f41e"; } 2955 | 2956 | .fa-save:before { 2957 | content: "\f0c7"; } 2958 | 2959 | .fa-schlix:before { 2960 | content: "\f3ea"; } 2961 | 2962 | .fa-school:before { 2963 | content: "\f549"; } 2964 | 2965 | .fa-screwdriver:before { 2966 | content: "\f54a"; } 2967 | 2968 | .fa-scribd:before { 2969 | content: "\f28a"; } 2970 | 2971 | .fa-scroll:before { 2972 | content: "\f70e"; } 2973 | 2974 | .fa-search:before { 2975 | content: "\f002"; } 2976 | 2977 | .fa-search-dollar:before { 2978 | content: "\f688"; } 2979 | 2980 | .fa-search-location:before { 2981 | content: "\f689"; } 2982 | 2983 | .fa-search-minus:before { 2984 | content: "\f010"; } 2985 | 2986 | .fa-search-plus:before { 2987 | content: "\f00e"; } 2988 | 2989 | .fa-searchengin:before { 2990 | content: "\f3eb"; } 2991 | 2992 | .fa-seedling:before { 2993 | content: "\f4d8"; } 2994 | 2995 | .fa-sellcast:before { 2996 | content: "\f2da"; } 2997 | 2998 | .fa-sellsy:before { 2999 | content: "\f213"; } 3000 | 3001 | .fa-server:before { 3002 | content: "\f233"; } 3003 | 3004 | .fa-servicestack:before { 3005 | content: "\f3ec"; } 3006 | 3007 | .fa-shapes:before { 3008 | content: "\f61f"; } 3009 | 3010 | .fa-share:before { 3011 | content: "\f064"; } 3012 | 3013 | .fa-share-alt:before { 3014 | content: "\f1e0"; } 3015 | 3016 | .fa-share-alt-square:before { 3017 | content: "\f1e1"; } 3018 | 3019 | .fa-share-square:before { 3020 | content: "\f14d"; } 3021 | 3022 | .fa-shekel-sign:before { 3023 | content: "\f20b"; } 3024 | 3025 | .fa-shield-alt:before { 3026 | content: "\f3ed"; } 3027 | 3028 | .fa-ship:before { 3029 | content: "\f21a"; } 3030 | 3031 | .fa-shipping-fast:before { 3032 | content: "\f48b"; } 3033 | 3034 | .fa-shirtsinbulk:before { 3035 | content: "\f214"; } 3036 | 3037 | .fa-shoe-prints:before { 3038 | content: "\f54b"; } 3039 | 3040 | .fa-shopping-bag:before { 3041 | content: "\f290"; } 3042 | 3043 | .fa-shopping-basket:before { 3044 | content: "\f291"; } 3045 | 3046 | .fa-shopping-cart:before { 3047 | content: "\f07a"; } 3048 | 3049 | .fa-shopware:before { 3050 | content: "\f5b5"; } 3051 | 3052 | .fa-shower:before { 3053 | content: "\f2cc"; } 3054 | 3055 | .fa-shuttle-van:before { 3056 | content: "\f5b6"; } 3057 | 3058 | .fa-sign:before { 3059 | content: "\f4d9"; } 3060 | 3061 | .fa-sign-in-alt:before { 3062 | content: "\f2f6"; } 3063 | 3064 | .fa-sign-language:before { 3065 | content: "\f2a7"; } 3066 | 3067 | .fa-sign-out-alt:before { 3068 | content: "\f2f5"; } 3069 | 3070 | .fa-signal:before { 3071 | content: "\f012"; } 3072 | 3073 | .fa-signature:before { 3074 | content: "\f5b7"; } 3075 | 3076 | .fa-simplybuilt:before { 3077 | content: "\f215"; } 3078 | 3079 | .fa-sistrix:before { 3080 | content: "\f3ee"; } 3081 | 3082 | .fa-sitemap:before { 3083 | content: "\f0e8"; } 3084 | 3085 | .fa-sith:before { 3086 | content: "\f512"; } 3087 | 3088 | .fa-skull:before { 3089 | content: "\f54c"; } 3090 | 3091 | .fa-skull-crossbones:before { 3092 | content: "\f714"; } 3093 | 3094 | .fa-skyatlas:before { 3095 | content: "\f216"; } 3096 | 3097 | .fa-skype:before { 3098 | content: "\f17e"; } 3099 | 3100 | .fa-slack:before { 3101 | content: "\f198"; } 3102 | 3103 | .fa-slack-hash:before { 3104 | content: "\f3ef"; } 3105 | 3106 | .fa-slash:before { 3107 | content: "\f715"; } 3108 | 3109 | .fa-sliders-h:before { 3110 | content: "\f1de"; } 3111 | 3112 | .fa-slideshare:before { 3113 | content: "\f1e7"; } 3114 | 3115 | .fa-smile:before { 3116 | content: "\f118"; } 3117 | 3118 | .fa-smile-beam:before { 3119 | content: "\f5b8"; } 3120 | 3121 | .fa-smile-wink:before { 3122 | content: "\f4da"; } 3123 | 3124 | .fa-smog:before { 3125 | content: "\f75f"; } 3126 | 3127 | .fa-smoking:before { 3128 | content: "\f48d"; } 3129 | 3130 | .fa-smoking-ban:before { 3131 | content: "\f54d"; } 3132 | 3133 | .fa-snapchat:before { 3134 | content: "\f2ab"; } 3135 | 3136 | .fa-snapchat-ghost:before { 3137 | content: "\f2ac"; } 3138 | 3139 | .fa-snapchat-square:before { 3140 | content: "\f2ad"; } 3141 | 3142 | .fa-snowflake:before { 3143 | content: "\f2dc"; } 3144 | 3145 | .fa-socks:before { 3146 | content: "\f696"; } 3147 | 3148 | .fa-solar-panel:before { 3149 | content: "\f5ba"; } 3150 | 3151 | .fa-sort:before { 3152 | content: "\f0dc"; } 3153 | 3154 | .fa-sort-alpha-down:before { 3155 | content: "\f15d"; } 3156 | 3157 | .fa-sort-alpha-up:before { 3158 | content: "\f15e"; } 3159 | 3160 | .fa-sort-amount-down:before { 3161 | content: "\f160"; } 3162 | 3163 | .fa-sort-amount-up:before { 3164 | content: "\f161"; } 3165 | 3166 | .fa-sort-down:before { 3167 | content: "\f0dd"; } 3168 | 3169 | .fa-sort-numeric-down:before { 3170 | content: "\f162"; } 3171 | 3172 | .fa-sort-numeric-up:before { 3173 | content: "\f163"; } 3174 | 3175 | .fa-sort-up:before { 3176 | content: "\f0de"; } 3177 | 3178 | .fa-soundcloud:before { 3179 | content: "\f1be"; } 3180 | 3181 | .fa-spa:before { 3182 | content: "\f5bb"; } 3183 | 3184 | .fa-space-shuttle:before { 3185 | content: "\f197"; } 3186 | 3187 | .fa-speakap:before { 3188 | content: "\f3f3"; } 3189 | 3190 | .fa-spider:before { 3191 | content: "\f717"; } 3192 | 3193 | .fa-spinner:before { 3194 | content: "\f110"; } 3195 | 3196 | .fa-splotch:before { 3197 | content: "\f5bc"; } 3198 | 3199 | .fa-spotify:before { 3200 | content: "\f1bc"; } 3201 | 3202 | .fa-spray-can:before { 3203 | content: "\f5bd"; } 3204 | 3205 | .fa-square:before { 3206 | content: "\f0c8"; } 3207 | 3208 | .fa-square-full:before { 3209 | content: "\f45c"; } 3210 | 3211 | .fa-square-root-alt:before { 3212 | content: "\f698"; } 3213 | 3214 | .fa-squarespace:before { 3215 | content: "\f5be"; } 3216 | 3217 | .fa-stack-exchange:before { 3218 | content: "\f18d"; } 3219 | 3220 | .fa-stack-overflow:before { 3221 | content: "\f16c"; } 3222 | 3223 | .fa-stamp:before { 3224 | content: "\f5bf"; } 3225 | 3226 | .fa-star:before { 3227 | content: "\f005"; } 3228 | 3229 | .fa-star-and-crescent:before { 3230 | content: "\f699"; } 3231 | 3232 | .fa-star-half:before { 3233 | content: "\f089"; } 3234 | 3235 | .fa-star-half-alt:before { 3236 | content: "\f5c0"; } 3237 | 3238 | .fa-star-of-david:before { 3239 | content: "\f69a"; } 3240 | 3241 | .fa-star-of-life:before { 3242 | content: "\f621"; } 3243 | 3244 | .fa-staylinked:before { 3245 | content: "\f3f5"; } 3246 | 3247 | .fa-steam:before { 3248 | content: "\f1b6"; } 3249 | 3250 | .fa-steam-square:before { 3251 | content: "\f1b7"; } 3252 | 3253 | .fa-steam-symbol:before { 3254 | content: "\f3f6"; } 3255 | 3256 | .fa-step-backward:before { 3257 | content: "\f048"; } 3258 | 3259 | .fa-step-forward:before { 3260 | content: "\f051"; } 3261 | 3262 | .fa-stethoscope:before { 3263 | content: "\f0f1"; } 3264 | 3265 | .fa-sticker-mule:before { 3266 | content: "\f3f7"; } 3267 | 3268 | .fa-sticky-note:before { 3269 | content: "\f249"; } 3270 | 3271 | .fa-stop:before { 3272 | content: "\f04d"; } 3273 | 3274 | .fa-stop-circle:before { 3275 | content: "\f28d"; } 3276 | 3277 | .fa-stopwatch:before { 3278 | content: "\f2f2"; } 3279 | 3280 | .fa-store:before { 3281 | content: "\f54e"; } 3282 | 3283 | .fa-store-alt:before { 3284 | content: "\f54f"; } 3285 | 3286 | .fa-strava:before { 3287 | content: "\f428"; } 3288 | 3289 | .fa-stream:before { 3290 | content: "\f550"; } 3291 | 3292 | .fa-street-view:before { 3293 | content: "\f21d"; } 3294 | 3295 | .fa-strikethrough:before { 3296 | content: "\f0cc"; } 3297 | 3298 | .fa-stripe:before { 3299 | content: "\f429"; } 3300 | 3301 | .fa-stripe-s:before { 3302 | content: "\f42a"; } 3303 | 3304 | .fa-stroopwafel:before { 3305 | content: "\f551"; } 3306 | 3307 | .fa-studiovinari:before { 3308 | content: "\f3f8"; } 3309 | 3310 | .fa-stumbleupon:before { 3311 | content: "\f1a4"; } 3312 | 3313 | .fa-stumbleupon-circle:before { 3314 | content: "\f1a3"; } 3315 | 3316 | .fa-subscript:before { 3317 | content: "\f12c"; } 3318 | 3319 | .fa-subway:before { 3320 | content: "\f239"; } 3321 | 3322 | .fa-suitcase:before { 3323 | content: "\f0f2"; } 3324 | 3325 | .fa-suitcase-rolling:before { 3326 | content: "\f5c1"; } 3327 | 3328 | .fa-sun:before { 3329 | content: "\f185"; } 3330 | 3331 | .fa-superpowers:before { 3332 | content: "\f2dd"; } 3333 | 3334 | .fa-superscript:before { 3335 | content: "\f12b"; } 3336 | 3337 | .fa-supple:before { 3338 | content: "\f3f9"; } 3339 | 3340 | .fa-surprise:before { 3341 | content: "\f5c2"; } 3342 | 3343 | .fa-swatchbook:before { 3344 | content: "\f5c3"; } 3345 | 3346 | .fa-swimmer:before { 3347 | content: "\f5c4"; } 3348 | 3349 | .fa-swimming-pool:before { 3350 | content: "\f5c5"; } 3351 | 3352 | .fa-synagogue:before { 3353 | content: "\f69b"; } 3354 | 3355 | .fa-sync:before { 3356 | content: "\f021"; } 3357 | 3358 | .fa-sync-alt:before { 3359 | content: "\f2f1"; } 3360 | 3361 | .fa-syringe:before { 3362 | content: "\f48e"; } 3363 | 3364 | .fa-table:before { 3365 | content: "\f0ce"; } 3366 | 3367 | .fa-table-tennis:before { 3368 | content: "\f45d"; } 3369 | 3370 | .fa-tablet:before { 3371 | content: "\f10a"; } 3372 | 3373 | .fa-tablet-alt:before { 3374 | content: "\f3fa"; } 3375 | 3376 | .fa-tablets:before { 3377 | content: "\f490"; } 3378 | 3379 | .fa-tachometer-alt:before { 3380 | content: "\f3fd"; } 3381 | 3382 | .fa-tag:before { 3383 | content: "\f02b"; } 3384 | 3385 | .fa-tags:before { 3386 | content: "\f02c"; } 3387 | 3388 | .fa-tape:before { 3389 | content: "\f4db"; } 3390 | 3391 | .fa-tasks:before { 3392 | content: "\f0ae"; } 3393 | 3394 | .fa-taxi:before { 3395 | content: "\f1ba"; } 3396 | 3397 | .fa-teamspeak:before { 3398 | content: "\f4f9"; } 3399 | 3400 | .fa-teeth:before { 3401 | content: "\f62e"; } 3402 | 3403 | .fa-teeth-open:before { 3404 | content: "\f62f"; } 3405 | 3406 | .fa-telegram:before { 3407 | content: "\f2c6"; } 3408 | 3409 | .fa-telegram-plane:before { 3410 | content: "\f3fe"; } 3411 | 3412 | .fa-temperature-high:before { 3413 | content: "\f769"; } 3414 | 3415 | .fa-temperature-low:before { 3416 | content: "\f76b"; } 3417 | 3418 | .fa-tencent-weibo:before { 3419 | content: "\f1d5"; } 3420 | 3421 | .fa-terminal:before { 3422 | content: "\f120"; } 3423 | 3424 | .fa-text-height:before { 3425 | content: "\f034"; } 3426 | 3427 | .fa-text-width:before { 3428 | content: "\f035"; } 3429 | 3430 | .fa-th:before { 3431 | content: "\f00a"; } 3432 | 3433 | .fa-th-large:before { 3434 | content: "\f009"; } 3435 | 3436 | .fa-th-list:before { 3437 | content: "\f00b"; } 3438 | 3439 | .fa-the-red-yeti:before { 3440 | content: "\f69d"; } 3441 | 3442 | .fa-theater-masks:before { 3443 | content: "\f630"; } 3444 | 3445 | .fa-themeco:before { 3446 | content: "\f5c6"; } 3447 | 3448 | .fa-themeisle:before { 3449 | content: "\f2b2"; } 3450 | 3451 | .fa-thermometer:before { 3452 | content: "\f491"; } 3453 | 3454 | .fa-thermometer-empty:before { 3455 | content: "\f2cb"; } 3456 | 3457 | .fa-thermometer-full:before { 3458 | content: "\f2c7"; } 3459 | 3460 | .fa-thermometer-half:before { 3461 | content: "\f2c9"; } 3462 | 3463 | .fa-thermometer-quarter:before { 3464 | content: "\f2ca"; } 3465 | 3466 | .fa-thermometer-three-quarters:before { 3467 | content: "\f2c8"; } 3468 | 3469 | .fa-think-peaks:before { 3470 | content: "\f731"; } 3471 | 3472 | .fa-thumbs-down:before { 3473 | content: "\f165"; } 3474 | 3475 | .fa-thumbs-up:before { 3476 | content: "\f164"; } 3477 | 3478 | .fa-thumbtack:before { 3479 | content: "\f08d"; } 3480 | 3481 | .fa-ticket-alt:before { 3482 | content: "\f3ff"; } 3483 | 3484 | .fa-times:before { 3485 | content: "\f00d"; } 3486 | 3487 | .fa-times-circle:before { 3488 | content: "\f057"; } 3489 | 3490 | .fa-tint:before { 3491 | content: "\f043"; } 3492 | 3493 | .fa-tint-slash:before { 3494 | content: "\f5c7"; } 3495 | 3496 | .fa-tired:before { 3497 | content: "\f5c8"; } 3498 | 3499 | .fa-toggle-off:before { 3500 | content: "\f204"; } 3501 | 3502 | .fa-toggle-on:before { 3503 | content: "\f205"; } 3504 | 3505 | .fa-toilet-paper:before { 3506 | content: "\f71e"; } 3507 | 3508 | .fa-toolbox:before { 3509 | content: "\f552"; } 3510 | 3511 | .fa-tooth:before { 3512 | content: "\f5c9"; } 3513 | 3514 | .fa-torah:before { 3515 | content: "\f6a0"; } 3516 | 3517 | .fa-torii-gate:before { 3518 | content: "\f6a1"; } 3519 | 3520 | .fa-tractor:before { 3521 | content: "\f722"; } 3522 | 3523 | .fa-trade-federation:before { 3524 | content: "\f513"; } 3525 | 3526 | .fa-trademark:before { 3527 | content: "\f25c"; } 3528 | 3529 | .fa-traffic-light:before { 3530 | content: "\f637"; } 3531 | 3532 | .fa-train:before { 3533 | content: "\f238"; } 3534 | 3535 | .fa-transgender:before { 3536 | content: "\f224"; } 3537 | 3538 | .fa-transgender-alt:before { 3539 | content: "\f225"; } 3540 | 3541 | .fa-trash:before { 3542 | content: "\f1f8"; } 3543 | 3544 | .fa-trash-alt:before { 3545 | content: "\f2ed"; } 3546 | 3547 | .fa-tree:before { 3548 | content: "\f1bb"; } 3549 | 3550 | .fa-trello:before { 3551 | content: "\f181"; } 3552 | 3553 | .fa-tripadvisor:before { 3554 | content: "\f262"; } 3555 | 3556 | .fa-trophy:before { 3557 | content: "\f091"; } 3558 | 3559 | .fa-truck:before { 3560 | content: "\f0d1"; } 3561 | 3562 | .fa-truck-loading:before { 3563 | content: "\f4de"; } 3564 | 3565 | .fa-truck-monster:before { 3566 | content: "\f63b"; } 3567 | 3568 | .fa-truck-moving:before { 3569 | content: "\f4df"; } 3570 | 3571 | .fa-truck-pickup:before { 3572 | content: "\f63c"; } 3573 | 3574 | .fa-tshirt:before { 3575 | content: "\f553"; } 3576 | 3577 | .fa-tty:before { 3578 | content: "\f1e4"; } 3579 | 3580 | .fa-tumblr:before { 3581 | content: "\f173"; } 3582 | 3583 | .fa-tumblr-square:before { 3584 | content: "\f174"; } 3585 | 3586 | .fa-tv:before { 3587 | content: "\f26c"; } 3588 | 3589 | .fa-twitch:before { 3590 | content: "\f1e8"; } 3591 | 3592 | .fa-twitter:before { 3593 | content: "\f099"; } 3594 | 3595 | .fa-twitter-square:before { 3596 | content: "\f081"; } 3597 | 3598 | .fa-typo3:before { 3599 | content: "\f42b"; } 3600 | 3601 | .fa-uber:before { 3602 | content: "\f402"; } 3603 | 3604 | .fa-uikit:before { 3605 | content: "\f403"; } 3606 | 3607 | .fa-umbrella:before { 3608 | content: "\f0e9"; } 3609 | 3610 | .fa-umbrella-beach:before { 3611 | content: "\f5ca"; } 3612 | 3613 | .fa-underline:before { 3614 | content: "\f0cd"; } 3615 | 3616 | .fa-undo:before { 3617 | content: "\f0e2"; } 3618 | 3619 | .fa-undo-alt:before { 3620 | content: "\f2ea"; } 3621 | 3622 | .fa-uniregistry:before { 3623 | content: "\f404"; } 3624 | 3625 | .fa-universal-access:before { 3626 | content: "\f29a"; } 3627 | 3628 | .fa-university:before { 3629 | content: "\f19c"; } 3630 | 3631 | .fa-unlink:before { 3632 | content: "\f127"; } 3633 | 3634 | .fa-unlock:before { 3635 | content: "\f09c"; } 3636 | 3637 | .fa-unlock-alt:before { 3638 | content: "\f13e"; } 3639 | 3640 | .fa-untappd:before { 3641 | content: "\f405"; } 3642 | 3643 | .fa-upload:before { 3644 | content: "\f093"; } 3645 | 3646 | .fa-usb:before { 3647 | content: "\f287"; } 3648 | 3649 | .fa-user:before { 3650 | content: "\f007"; } 3651 | 3652 | .fa-user-alt:before { 3653 | content: "\f406"; } 3654 | 3655 | .fa-user-alt-slash:before { 3656 | content: "\f4fa"; } 3657 | 3658 | .fa-user-astronaut:before { 3659 | content: "\f4fb"; } 3660 | 3661 | .fa-user-check:before { 3662 | content: "\f4fc"; } 3663 | 3664 | .fa-user-circle:before { 3665 | content: "\f2bd"; } 3666 | 3667 | .fa-user-clock:before { 3668 | content: "\f4fd"; } 3669 | 3670 | .fa-user-cog:before { 3671 | content: "\f4fe"; } 3672 | 3673 | .fa-user-edit:before { 3674 | content: "\f4ff"; } 3675 | 3676 | .fa-user-friends:before { 3677 | content: "\f500"; } 3678 | 3679 | .fa-user-graduate:before { 3680 | content: "\f501"; } 3681 | 3682 | .fa-user-injured:before { 3683 | content: "\f728"; } 3684 | 3685 | .fa-user-lock:before { 3686 | content: "\f502"; } 3687 | 3688 | .fa-user-md:before { 3689 | content: "\f0f0"; } 3690 | 3691 | .fa-user-minus:before { 3692 | content: "\f503"; } 3693 | 3694 | .fa-user-ninja:before { 3695 | content: "\f504"; } 3696 | 3697 | .fa-user-plus:before { 3698 | content: "\f234"; } 3699 | 3700 | .fa-user-secret:before { 3701 | content: "\f21b"; } 3702 | 3703 | .fa-user-shield:before { 3704 | content: "\f505"; } 3705 | 3706 | .fa-user-slash:before { 3707 | content: "\f506"; } 3708 | 3709 | .fa-user-tag:before { 3710 | content: "\f507"; } 3711 | 3712 | .fa-user-tie:before { 3713 | content: "\f508"; } 3714 | 3715 | .fa-user-times:before { 3716 | content: "\f235"; } 3717 | 3718 | .fa-users:before { 3719 | content: "\f0c0"; } 3720 | 3721 | .fa-users-cog:before { 3722 | content: "\f509"; } 3723 | 3724 | .fa-ussunnah:before { 3725 | content: "\f407"; } 3726 | 3727 | .fa-utensil-spoon:before { 3728 | content: "\f2e5"; } 3729 | 3730 | .fa-utensils:before { 3731 | content: "\f2e7"; } 3732 | 3733 | .fa-vaadin:before { 3734 | content: "\f408"; } 3735 | 3736 | .fa-vector-square:before { 3737 | content: "\f5cb"; } 3738 | 3739 | .fa-venus:before { 3740 | content: "\f221"; } 3741 | 3742 | .fa-venus-double:before { 3743 | content: "\f226"; } 3744 | 3745 | .fa-venus-mars:before { 3746 | content: "\f228"; } 3747 | 3748 | .fa-viacoin:before { 3749 | content: "\f237"; } 3750 | 3751 | .fa-viadeo:before { 3752 | content: "\f2a9"; } 3753 | 3754 | .fa-viadeo-square:before { 3755 | content: "\f2aa"; } 3756 | 3757 | .fa-vial:before { 3758 | content: "\f492"; } 3759 | 3760 | .fa-vials:before { 3761 | content: "\f493"; } 3762 | 3763 | .fa-viber:before { 3764 | content: "\f409"; } 3765 | 3766 | .fa-video:before { 3767 | content: "\f03d"; } 3768 | 3769 | .fa-video-slash:before { 3770 | content: "\f4e2"; } 3771 | 3772 | .fa-vihara:before { 3773 | content: "\f6a7"; } 3774 | 3775 | .fa-vimeo:before { 3776 | content: "\f40a"; } 3777 | 3778 | .fa-vimeo-square:before { 3779 | content: "\f194"; } 3780 | 3781 | .fa-vimeo-v:before { 3782 | content: "\f27d"; } 3783 | 3784 | .fa-vine:before { 3785 | content: "\f1ca"; } 3786 | 3787 | .fa-vk:before { 3788 | content: "\f189"; } 3789 | 3790 | .fa-vnv:before { 3791 | content: "\f40b"; } 3792 | 3793 | .fa-volleyball-ball:before { 3794 | content: "\f45f"; } 3795 | 3796 | .fa-volume-down:before { 3797 | content: "\f027"; } 3798 | 3799 | .fa-volume-mute:before { 3800 | content: "\f6a9"; } 3801 | 3802 | .fa-volume-off:before { 3803 | content: "\f026"; } 3804 | 3805 | .fa-volume-up:before { 3806 | content: "\f028"; } 3807 | 3808 | .fa-vote-yea:before { 3809 | content: "\f772"; } 3810 | 3811 | .fa-vr-cardboard:before { 3812 | content: "\f729"; } 3813 | 3814 | .fa-vuejs:before { 3815 | content: "\f41f"; } 3816 | 3817 | .fa-walking:before { 3818 | content: "\f554"; } 3819 | 3820 | .fa-wallet:before { 3821 | content: "\f555"; } 3822 | 3823 | .fa-warehouse:before { 3824 | content: "\f494"; } 3825 | 3826 | .fa-water:before { 3827 | content: "\f773"; } 3828 | 3829 | .fa-weebly:before { 3830 | content: "\f5cc"; } 3831 | 3832 | .fa-weibo:before { 3833 | content: "\f18a"; } 3834 | 3835 | .fa-weight:before { 3836 | content: "\f496"; } 3837 | 3838 | .fa-weight-hanging:before { 3839 | content: "\f5cd"; } 3840 | 3841 | .fa-weixin:before { 3842 | content: "\f1d7"; } 3843 | 3844 | .fa-whatsapp:before { 3845 | content: "\f232"; } 3846 | 3847 | .fa-whatsapp-square:before { 3848 | content: "\f40c"; } 3849 | 3850 | .fa-wheelchair:before { 3851 | content: "\f193"; } 3852 | 3853 | .fa-whmcs:before { 3854 | content: "\f40d"; } 3855 | 3856 | .fa-wifi:before { 3857 | content: "\f1eb"; } 3858 | 3859 | .fa-wikipedia-w:before { 3860 | content: "\f266"; } 3861 | 3862 | .fa-wind:before { 3863 | content: "\f72e"; } 3864 | 3865 | .fa-window-close:before { 3866 | content: "\f410"; } 3867 | 3868 | .fa-window-maximize:before { 3869 | content: "\f2d0"; } 3870 | 3871 | .fa-window-minimize:before { 3872 | content: "\f2d1"; } 3873 | 3874 | .fa-window-restore:before { 3875 | content: "\f2d2"; } 3876 | 3877 | .fa-windows:before { 3878 | content: "\f17a"; } 3879 | 3880 | .fa-wine-bottle:before { 3881 | content: "\f72f"; } 3882 | 3883 | .fa-wine-glass:before { 3884 | content: "\f4e3"; } 3885 | 3886 | .fa-wine-glass-alt:before { 3887 | content: "\f5ce"; } 3888 | 3889 | .fa-wix:before { 3890 | content: "\f5cf"; } 3891 | 3892 | .fa-wizards-of-the-coast:before { 3893 | content: "\f730"; } 3894 | 3895 | .fa-wolf-pack-battalion:before { 3896 | content: "\f514"; } 3897 | 3898 | .fa-won-sign:before { 3899 | content: "\f159"; } 3900 | 3901 | .fa-wordpress:before { 3902 | content: "\f19a"; } 3903 | 3904 | .fa-wordpress-simple:before { 3905 | content: "\f411"; } 3906 | 3907 | .fa-wpbeginner:before { 3908 | content: "\f297"; } 3909 | 3910 | .fa-wpexplorer:before { 3911 | content: "\f2de"; } 3912 | 3913 | .fa-wpforms:before { 3914 | content: "\f298"; } 3915 | 3916 | .fa-wpressr:before { 3917 | content: "\f3e4"; } 3918 | 3919 | .fa-wrench:before { 3920 | content: "\f0ad"; } 3921 | 3922 | .fa-x-ray:before { 3923 | content: "\f497"; } 3924 | 3925 | .fa-xbox:before { 3926 | content: "\f412"; } 3927 | 3928 | .fa-xing:before { 3929 | content: "\f168"; } 3930 | 3931 | .fa-xing-square:before { 3932 | content: "\f169"; } 3933 | 3934 | .fa-y-combinator:before { 3935 | content: "\f23b"; } 3936 | 3937 | .fa-yahoo:before { 3938 | content: "\f19e"; } 3939 | 3940 | .fa-yandex:before { 3941 | content: "\f413"; } 3942 | 3943 | .fa-yandex-international:before { 3944 | content: "\f414"; } 3945 | 3946 | .fa-yelp:before { 3947 | content: "\f1e9"; } 3948 | 3949 | .fa-yen-sign:before { 3950 | content: "\f157"; } 3951 | 3952 | .fa-yin-yang:before { 3953 | content: "\f6ad"; } 3954 | 3955 | .fa-yoast:before { 3956 | content: "\f2b1"; } 3957 | 3958 | .fa-youtube:before { 3959 | content: "\f167"; } 3960 | 3961 | .fa-youtube-square:before { 3962 | content: "\f431"; } 3963 | 3964 | .fa-zhihu:before { 3965 | content: "\f63f"; } 3966 | 3967 | .sr-only { 3968 | border: 0; 3969 | clip: rect(0, 0, 0, 0); 3970 | height: 1px; 3971 | margin: -1px; 3972 | overflow: hidden; 3973 | padding: 0; 3974 | position: absolute; 3975 | width: 1px; } 3976 | 3977 | .sr-only-focusable:active, .sr-only-focusable:focus { 3978 | clip: auto; 3979 | height: auto; 3980 | margin: 0; 3981 | overflow: visible; 3982 | position: static; 3983 | width: auto; } 3984 | @font-face { 3985 | font-family: 'Font Awesome 5 Brands'; 3986 | font-style: normal; 3987 | font-weight: normal; 3988 | src: url("../webfonts/fa-brands-400.eot"); 3989 | src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } 3990 | 3991 | .fab { 3992 | font-family: 'Font Awesome 5 Brands'; } 3993 | @font-face { 3994 | font-family: 'Font Awesome 5 Free'; 3995 | font-style: normal; 3996 | font-weight: 400; 3997 | src: url("../webfonts/fa-regular-400.eot"); 3998 | src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } 3999 | 4000 | .far { 4001 | font-family: 'Font Awesome 5 Free'; 4002 | font-weight: 400; } 4003 | @font-face { 4004 | font-family: 'Font Awesome 5 Free'; 4005 | font-style: normal; 4006 | font-weight: 900; 4007 | src: url("../webfonts/fa-solid-900.eot"); 4008 | src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } 4009 | 4010 | .fa, 4011 | .fas { 4012 | font-family: 'Font Awesome 5 Free'; 4013 | font-weight: 900; } 4014 | -------------------------------------------------------------------------------- /assets/font-awesome/css/all.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.5.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 | .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/yabai-status-bar/f3152745276db5c6bd8ef6a63c3df1fbec3aa775/assets/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /components/battery.jsx: -------------------------------------------------------------------------------- 1 | import get from 'lodash/fp/get'; 2 | 3 | const iconPicker = (level, status) => { 4 | if (status === 'AC') { 5 | return 'fa-bolt'; 6 | } else if (level < 10) { 7 | return 'fa-battery-empty'; 8 | } else if (level < 20) { 9 | return 'fa-battery-quarter'; 10 | } else if (level < 50) { 11 | return 'fa-battery-half'; 12 | } else if (level < 80) { 13 | return 'fa-battery-three-quarters'; 14 | } else { 15 | return 'fa-battery-full'; 16 | } 17 | }; 18 | 19 | const iconColorPicker = level => { 20 | if (level > 20) { 21 | return '#09ff09'; 22 | } else if (level > 10 && level <= 20) { 23 | return '#ffab12'; 24 | } else { 25 | return 'red'; 26 | } 27 | }; 28 | 29 | const Battery = ({ data }) => ( 30 |
31 | 37 |   38 | {get('level')(data)} 39 |
40 | ); 41 | 42 | export default Battery; 43 | -------------------------------------------------------------------------------- /components/memory.jsx: -------------------------------------------------------------------------------- 1 | import get from 'lodash/fp/get'; 2 | 3 | const memoryString = input => { 4 | if (input <= 16) { 5 | return `${input}G`; 6 | } else if (input <= 1024) { 7 | return `${input}M`; 8 | } else { 9 | return `${(input / 1024).toFixed(2)}G`; 10 | } 11 | }; 12 | 13 | const Memory = ({ data }) => ( 14 |
15 | 16 |
17 | Free: {memoryString(get('free')(data))} 18 |
19 |
20 | ); 21 | 22 | export default Memory; 23 | -------------------------------------------------------------------------------- /components/volume.jsx: -------------------------------------------------------------------------------- 1 | import get from 'lodash/fp/get'; 2 | 3 | const iconPicker = (level, muted) => { 4 | if (muted === 'true' || level < 10) { 5 | return 'fa-volume-mute'; 6 | } else if (level < 20) { 7 | return 'fa-volume-down'; 8 | } else { 9 | return 'fa-volume-up'; 10 | } 11 | }; 12 | 13 | const Volume = ({ data }) => ( 14 |
15 | 18 |
19 | ); 20 | export default Volume; 21 | -------------------------------------------------------------------------------- /components/wifi.jsx: -------------------------------------------------------------------------------- 1 | import get from 'lodash/fp/get'; 2 | import trim from 'lodash/fp/trim'; 3 | 4 | const Wifi = ({ data }) => ( 5 |
6 | 10 |
{get('ssid')(data)}
11 |
12 | ); 13 | 14 | export default Wifi; 15 | -------------------------------------------------------------------------------- /desktop.jsx: -------------------------------------------------------------------------------- 1 | import map from 'lodash/fp/map'; 2 | import get from 'lodash/fp/get'; 3 | import { parse } from './helpers.jsx'; 4 | 5 | export const command = 'sh yabai-status-bar/scripts/desktop.sh'; 6 | 7 | export const refreshFrequency = false; 8 | 9 | export const className = ` 10 | color: #a8a8a8; 11 | font-family: Helvetica Neue; 12 | 13 | .desktop { 14 | align-items: center; 15 | color: #a8a8a8; 16 | display: flex; 17 | font-family: Helvetica Neue; 18 | font-size: 14px; 19 | height: 23px; 20 | margin-left: 20px; 21 | } 22 | `; 23 | 24 | const mapWithIndex = map.convert({ cap: false }); 25 | 26 | const iconList = [ 27 | 'fi emacs-icon', 28 | 'fi terminal-icon', 29 | 'fab fa-chrome', 30 | 'fab fa-slack', 31 | 'fas fa-comments', 32 | 'fas fa-desktop', 33 | ]; 34 | 35 | export const render = ({ output }) => { 36 | let data = parse(output); 37 | 38 | return ( 39 |
40 | {mapWithIndex((workspace, index) => ( 41 |
50 | = iconList.length 53 | ? iconList[iconList.length - 1] 54 | : iconList[index] 55 | } 56 | /> 57 | {workspace.index === get('active.index')(data) && ( 58 |
68 | )} 69 |
70 | ))(get('workspaces')(data))} 71 |
72 | ); 73 | }; 74 | -------------------------------------------------------------------------------- /helpers.jsx: -------------------------------------------------------------------------------- 1 | export const parse = input => { 2 | try { 3 | return JSON.parse(input); 4 | } catch (e) { 5 | return undefined; 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /index.jsx: -------------------------------------------------------------------------------- 1 | export const refreshFrequency = false; 2 | 3 | export const render = () => ( 4 |
5 | 9 | 13 | 17 |
18 | ); 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "yabai-status-bar", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "eslint-plugin-prettier": "^3.1.0", 7 | "lodash": "^4.17.13", 8 | "prettier": "^1.18.2" 9 | }, 10 | "eslintConfig": { 11 | "plugins": [ 12 | "prettier", 13 | "import" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /right_bar.jsx: -------------------------------------------------------------------------------- 1 | import get from 'lodash/fp/get'; 2 | import Memory from './components/memory.jsx'; 3 | import Wifi from './components/wifi.jsx'; 4 | import Battery from './components/battery.jsx'; 5 | import { parse } from './helpers.jsx'; 6 | 7 | export const command = 'sh yabai-status-bar/scripts/right_bar.sh'; 8 | 9 | export const refreshFrequency = 5000; // ms 10 | 11 | export const className = ` 12 | right: 0; 13 | 14 | .right-bar { 15 | align-items: center; 16 | color: #a8a8a8; 17 | display: flex; 18 | font-family: Helvetica Neue; 19 | font-size: 14px; 20 | height: 23px; 21 | position: relative; 22 | right: 0; 23 | } 24 | 25 | .right-bar > div { 26 | margin-right: 20px; 27 | } 28 | `; 29 | 30 | export const render = ({ output }) => { 31 | const data = parse(output); 32 | 33 | return ( 34 |
35 | 36 | 37 | 38 |
{get('date_time')(data)}
39 |
40 | ); 41 | }; 42 | -------------------------------------------------------------------------------- /scripts/desktop.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | yabai=/usr/local/bin/yabai 4 | jq=/usr/local/bin/jq 5 | 6 | CURRENT_WORKSPACE=$($yabai -m query --spaces --space) 7 | WORKSPACES=$($yabai -m query --spaces --display) 8 | 9 | echo $(cat <