github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/dist/components/icon.css (about) 1 /*! 2 * # Semantic UI x.x - Icon 3 * http://github.com/semantic-org/semantic-ui/ 4 * 5 * 6 * Copyright 2014 Contributors 7 * Released under the MIT license 8 * http://opensource.org/licenses/MIT 9 * 10 */ 11 12 13 /******************************* 14 Icon 15 *******************************/ 16 17 @font-face { 18 font-family: 'Icons'; 19 src: url("../themes/default/assets/fonts/icons.eot"); 20 src: url("../themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("../themes/default/assets/fonts/icons.woff2") format('woff'), url("../themes/default/assets/fonts/icons.woff") format('woff'), url("../themes/default/assets/fonts/icons.ttf") format('truetype'), url("../themes/default/assets/fonts/icons.svg#icons") format('svg'); 21 font-style: normal; 22 font-weight: normal; 23 font-variant: normal; 24 text-decoration: inherit; 25 text-transform: none; 26 } 27 i.icon { 28 display: inline-block; 29 opacity: 1; 30 margin: 0em 0.25rem 0em 0em; 31 width: 1.23em; 32 height: 0.9em; 33 font-family: 'Icons'; 34 font-style: normal; 35 line-height: 1; 36 font-weight: normal; 37 text-decoration: inherit; 38 text-align: center; 39 speak: none; 40 font-smoothing: antialiased; 41 -moz-osx-font-smoothing: grayscale; 42 -webkit-backface-visibility: hidden; 43 backface-visibility: hidden; 44 } 45 i.icon:before { 46 background: none !important; 47 } 48 49 50 /******************************* 51 Types 52 *******************************/ 53 54 55 /*-------------- 56 Loading 57 ---------------*/ 58 59 i.icon.loading { 60 height: 1em; 61 -webkit-animation: icon-loading 2s linear infinite; 62 animation: icon-loading 2s linear infinite; 63 } 64 @-webkit-keyframes icon-loading { 65 from { 66 -webkit-transform: rotate(0deg); 67 transform: rotate(0deg); 68 } 69 to { 70 -webkit-transform: rotate(360deg); 71 transform: rotate(360deg); 72 } 73 } 74 @keyframes icon-loading { 75 from { 76 -webkit-transform: rotate(0deg); 77 transform: rotate(0deg); 78 } 79 to { 80 -webkit-transform: rotate(360deg); 81 transform: rotate(360deg); 82 } 83 } 84 85 86 /******************************* 87 States 88 *******************************/ 89 90 i.icon.hover { 91 opacity: 1; 92 } 93 i.icon.active { 94 opacity: 1; 95 } 96 i.emphasized.icon { 97 opacity: 1; 98 } 99 i.disabled.icon { 100 pointer-events: none; 101 opacity: 0.3 !important; 102 } 103 104 105 /******************************* 106 Variations 107 *******************************/ 108 109 110 /*------------------- 111 Link 112 --------------------*/ 113 114 i.link.icon { 115 cursor: pointer; 116 opacity: 0.8; 117 -webkit-transition: opacity 0.2s ease; 118 transition: opacity 0.2s ease; 119 } 120 i.link.icon:hover { 121 opacity: 1 !important; 122 } 123 124 /*------------------- 125 Circular 126 --------------------*/ 127 128 i.circular.icon { 129 border-radius: 500em !important; 130 padding: 0.5em 0.5em !important; 131 box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; 132 line-height: 1 !important; 133 width: 2em !important; 134 height: 2em !important; 135 } 136 i.circular.inverted.icon { 137 border: none; 138 box-shadow: none; 139 } 140 141 /*------------------- 142 Flipped 143 --------------------*/ 144 145 i.flipped.icon, 146 i.horizontally.flipped.icon { 147 -webkit-transform: scale(-1, 1); 148 -ms-transform: scale(-1, 1); 149 transform: scale(-1, 1); 150 } 151 i.vertically.flipped.icon { 152 -webkit-transform: scale(1, -1); 153 -ms-transform: scale(1, -1); 154 transform: scale(1, -1); 155 } 156 157 /*------------------- 158 Rotated 159 --------------------*/ 160 161 i.rotated.icon, 162 i.right.rotated.icon, 163 i.clockwise.rotated.icon { 164 -webkit-transform: rotate(90deg); 165 -ms-transform: rotate(90deg); 166 transform: rotate(90deg); 167 } 168 i.left.rotated.icon, 169 i.counterclockwise.rotated.icon { 170 -webkit-transform: rotate(-90deg); 171 -ms-transform: rotate(-90deg); 172 transform: rotate(-90deg); 173 } 174 175 /*------------------- 176 Bordered 177 --------------------*/ 178 179 i.bordered.icon { 180 width: 2em; 181 height: 2em; 182 padding: 0.55em 0.385em !important; 183 box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; 184 vertical-align: baseline; 185 } 186 i.bordered.inverted.icon { 187 border: none; 188 box-shadow: none; 189 } 190 191 /*------------------- 192 Colors 193 --------------------*/ 194 195 i.white.icon { 196 color: #ffffff !important; 197 } 198 i.black.icon { 199 color: #1b1c1d !important; 200 } 201 i.blue.icon { 202 color: #006e93 !important; 203 } 204 i.green.icon { 205 color: #5bbd72 !important; 206 } 207 i.orange.icon { 208 color: #e07b53 !important; 209 } 210 i.pink.icon { 211 color: #d9499a !important; 212 } 213 i.purple.icon { 214 color: #564f8a !important; 215 } 216 i.red.icon { 217 color: #d95c5c !important; 218 } 219 i.teal.icon { 220 color: #00b5ad !important; 221 } 222 i.yellow.icon { 223 color: #f2c61f !important; 224 } 225 226 /*------------------- 227 Inverted 228 --------------------*/ 229 230 i.inverted.icon { 231 color: #ffffff; 232 } 233 i.inverted.black.icon { 234 color: #333333 !important; 235 } 236 i.inverted.blue.icon { 237 color: #0097c9 !important; 238 } 239 i.inverted.green.icon { 240 color: #2ecc40 !important; 241 } 242 i.inverted.orange.icon { 243 color: #ff851b !important; 244 } 245 i.inverted.pink.icon { 246 color: #ff8edf !important; 247 } 248 i.inverted.purple.icon { 249 color: #cdc6ff !important; 250 } 251 i.inverted.red.icon { 252 color: #ff695e !important; 253 } 254 i.inverted.teal.icon { 255 color: #6dffff !important; 256 } 257 i.inverted.yellow.icon { 258 color: #ffe21f !important; 259 } 260 261 /* Inverted Shapes */ 262 i.inverted.bordered.icon, 263 i.inverted.circular.icon { 264 background-color: #222222 !important; 265 color: #FFFFFF !important; 266 } 267 i.inverted.bordered.black.icon, 268 i.inverted.circular.black.icon { 269 background-color: #1b1c1d !important; 270 color: #FFFFFF !important; 271 } 272 i.inverted.bordered.blue.icon, 273 i.inverted.circular.blue.icon { 274 background-color: #006e93 !important; 275 color: #FFFFFF !important; 276 } 277 i.inverted.bordered.green.icon, 278 i.inverted.circular.green.icon { 279 background-color: #5bbd72 !important; 280 color: #FFFFFF !important; 281 } 282 i.inverted.bordered.orange.icon, 283 i.inverted.circular.orange.icon { 284 background-color: #e07b53 !important; 285 color: #FFFFFF !important; 286 } 287 i.inverted.bordered.pink.icon, 288 i.inverted.circular.pink.icon { 289 background-color: #d9499a !important; 290 color: #FFFFFF !important; 291 } 292 i.inverted.bordered.purple.icon, 293 i.inverted.circular.purple.icon { 294 background-color: #564f8a !important; 295 color: #FFFFFF !important; 296 } 297 i.inverted.bordered.red.icon, 298 i.inverted.circular.red.icon { 299 background-color: #d95c5c !important; 300 color: #FFFFFF !important; 301 } 302 i.inverted.bordered.teal.icon, 303 i.inverted.circular.teal.icon { 304 background-color: #00b5ad !important; 305 color: #FFFFFF !important; 306 } 307 i.inverted.bordered.yellow.icon, 308 i.inverted.circular.yellow.icon { 309 background-color: #f2c61f !important; 310 color: #FFFFFF !important; 311 } 312 313 /*------------------- 314 Sizes 315 --------------------*/ 316 317 i.small.icon { 318 font-size: 0.875em; 319 } 320 i.icon { 321 font-size: 1em; 322 } 323 i.large.icon { 324 font-size: 1.5em; 325 vertical-align: middle; 326 } 327 i.big.icon { 328 font-size: 2em; 329 vertical-align: middle; 330 } 331 i.huge.icon { 332 font-size: 4em; 333 vertical-align: middle; 334 } 335 i.massive.icon { 336 font-size: 8em; 337 vertical-align: middle; 338 } 339 /* 340 * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 341 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 342 */ 343 344 345 /******************************* 346 347 Semantic-UI integration of font-awesome : 348 349 ///class names are separated 350 i.icon.circle => i.icon.circle 351 i.icon.circle-o => i.icon.circle.outline 352 353 //abbreviation are replaced by full letters: 354 i.icon.ellipsis-h => i.icon.ellipsis.horizontal 355 i.icon.ellipsis-v => i.icon.ellipsis.vertical 356 .alpha => .i.icon.alphabet 357 .asc => .i.icon.ascending 358 .desc => .i.icon.descending 359 .alt =>.alternate 360 361 ASCII order is conserved for easier maintenance. 362 363 Icons that only have one style 'outline', 'square' etc do not require this class 364 for instance `lemon icon` not `lemon outline icon` since there is only one lemon 365 366 *******************************/ 367 368 369 370 /******************************* 371 Icons 372 *******************************/ 373 374 375 /* Web Content */ 376 i.icon.search:before { 377 content: "\f002"; 378 } 379 i.icon.mail.outline:before { 380 content: "\f003"; 381 } 382 i.icon.external:before { 383 content: "\f08e"; 384 } 385 i.icon.signal:before { 386 content: "\f012"; 387 } 388 i.icon.setting:before { 389 content: "\f013"; 390 } 391 i.icon.home:before { 392 content: "\f015"; 393 } 394 i.icon.inbox:before { 395 content: "\f01c"; 396 } 397 i.icon.browser:before { 398 content: "\f022"; 399 } 400 i.icon.tag:before { 401 content: "\f02b"; 402 } 403 i.icon.tags:before { 404 content: "\f02c"; 405 } 406 i.icon.calendar:before { 407 content: "\f073"; 408 } 409 i.icon.comment:before { 410 content: "\f075"; 411 } 412 i.icon.comments:before { 413 content: "\f086"; 414 } 415 i.icon.shop:before { 416 content: "\f07a"; 417 } 418 i.icon.privacy:before { 419 content: "\f084"; 420 } 421 i.icon.settings:before { 422 content: "\f085"; 423 } 424 i.icon.trophy:before { 425 content: "\f091"; 426 } 427 i.icon.payment:before { 428 content: "\f09d"; 429 } 430 i.icon.feed:before { 431 content: "\f09e"; 432 } 433 i.icon.alarm.outline:before { 434 content: "\f0a2"; 435 } 436 i.icon.tasks:before { 437 content: "\f0ae"; 438 } 439 i.icon.cloud:before { 440 content: "\f0c2"; 441 } 442 i.icon.lab:before { 443 content: "\f0c3"; 444 } 445 i.icon.mail:before { 446 content: "\f0e0"; 447 } 448 i.icon.idea:before { 449 content: "\f0eb"; 450 } 451 i.icon.dashboard:before { 452 content: "\f0e4"; 453 } 454 i.icon.sitemap:before { 455 content: "\f0e8"; 456 } 457 i.icon.alarm:before { 458 content: "\f0f3"; 459 } 460 i.icon.terminal:before { 461 content: "\f120"; 462 } 463 i.icon.code:before { 464 content: "\f121"; 465 } 466 i.icon.protect:before { 467 content: "\f132"; 468 } 469 i.icon.calendar.outline:before { 470 content: "\f133"; 471 } 472 i.icon.ticket:before { 473 content: "\f145"; 474 } 475 i.icon.external.square:before { 476 content: "\f14c"; 477 } 478 i.icon.map:before { 479 content: "\f14e"; 480 } 481 i.icon.bug:before { 482 content: "\f188"; 483 } 484 i.icon.mail.square:before { 485 content: "\f199"; 486 } 487 i.icon.history:before { 488 content: "\f1da"; 489 } 490 i.icon.options:before { 491 content: "\f1de"; 492 } 493 i.icon.comment.outline:before { 494 content: "\f0e5"; 495 } 496 i.icon.comments.outline:before { 497 content: "\f0e6"; 498 } 499 i.icon.text.telephone:before { 500 content: "\f1e4"; 501 } 502 i.icon.find:before { 503 content: "\f1e5"; 504 } 505 i.icon.wifi:before { 506 content: "\f1eb"; 507 } 508 i.icon.alarm.slash:before { 509 content: "\f1f6"; 510 } 511 i.icon.alarm.slash.outline:before { 512 content: "\f1f7"; 513 } 514 i.icon.copyright:before { 515 content: "\f1f9"; 516 } 517 i.icon.at:before { 518 content: "\f1fa"; 519 } 520 i.icon.eyedropper:before { 521 content: "\f1fb"; 522 } 523 i.icon.paint.brush:before { 524 content: "\f1fc"; 525 } 526 i.icon.heartbeat:before { 527 content: "\f21e"; 528 } 529 530 /* User Actions */ 531 i.icon.download:before { 532 content: "\f019"; 533 } 534 i.icon.repeat:before { 535 content: "\f01e"; 536 } 537 i.icon.refresh:before { 538 content: "\f021"; 539 } 540 i.icon.lock:before { 541 content: "\f023"; 542 } 543 i.icon.bookmark:before { 544 content: "\f02e"; 545 } 546 i.icon.print:before { 547 content: "\f02f"; 548 } 549 i.icon.write:before { 550 content: "\f040"; 551 } 552 i.icon.theme:before { 553 content: "\f043"; 554 } 555 i.icon.adjust:before { 556 content: "\f042"; 557 } 558 i.icon.edit:before { 559 content: "\f044"; 560 } 561 i.icon.external.share:before { 562 content: "\f045"; 563 } 564 i.icon.ban:before { 565 content: "\f05e"; 566 } 567 i.icon.mail.forward:before { 568 content: "\f064"; 569 } 570 i.icon.share:before { 571 content: "\f064"; 572 } 573 i.icon.expand:before { 574 content: "\f065"; 575 } 576 i.icon.compress:before { 577 content: "\f066"; 578 } 579 i.icon.unhide:before { 580 content: "\f06e"; 581 } 582 i.icon.hide:before { 583 content: "\f070"; 584 } 585 i.icon.random:before { 586 content: "\f074"; 587 } 588 i.icon.retweet:before { 589 content: "\f079"; 590 } 591 i.icon.sign.out:before { 592 content: "\f08b"; 593 } 594 i.icon.pin:before { 595 content: "\f08d"; 596 } 597 i.icon.sign.in:before { 598 content: "\f090"; 599 } 600 i.icon.upload:before { 601 content: "\f093"; 602 } 603 i.icon.call:before { 604 content: "\f095"; 605 } 606 i.icon.call.square:before { 607 content: "\f098"; 608 } 609 i.icon.remove.bookmark:before { 610 content: "\f097"; 611 } 612 i.icon.unlock:before { 613 content: "\f09c"; 614 } 615 i.icon.configure:before { 616 content: "\f0ad"; 617 } 618 i.icon.filter:before { 619 content: "\f0b0"; 620 } 621 i.icon.wizard:before { 622 content: "\f0d0"; 623 } 624 i.icon.undo:before { 625 content: "\f0e2"; 626 } 627 i.icon.exchange:before { 628 content: "\f0ec"; 629 } 630 i.icon.cloud.download:before { 631 content: "\f0ed"; 632 } 633 i.icon.cloud.upload:before { 634 content: "\f0ee"; 635 } 636 i.icon.reply:before { 637 content: "\f112"; 638 } 639 i.icon.reply.all:before { 640 content: "\f122"; 641 } 642 i.icon.erase:before { 643 content: "\f12d"; 644 } 645 i.icon.unlock.alternate:before { 646 content: "\f13e"; 647 } 648 i.icon.archive:before { 649 content: "\f187"; 650 } 651 i.icon.translate:before { 652 content: "\f1ab"; 653 } 654 i.icon.recycle:before { 655 content: "\f1b8"; 656 } 657 i.icon.send:before { 658 content: "\f1d8"; 659 } 660 i.icon.send.outline:before { 661 content: "\f1d9"; 662 } 663 i.icon.share.alternate:before { 664 content: "\f1e0"; 665 } 666 i.icon.share.alternate.square:before { 667 content: "\f1e1"; 668 } 669 i.icon.wait:before { 670 content: "\f017"; 671 } 672 i.icon.write.square:before { 673 content: "\f14b"; 674 } 675 i.icon.share.square:before { 676 content: "\f14d"; 677 } 678 i.icon.add.to.cart:before { 679 content: "\f217"; 680 } 681 i.icon.in.cart:before { 682 content: "\f218"; 683 } 684 i.icon.add.user:before { 685 content: "\f234"; 686 } 687 i.icon.remove.user:before { 688 content: "\f235"; 689 } 690 691 /* Messages */ 692 i.icon.help.circle:before { 693 content: "\f059"; 694 } 695 i.icon.info.circle:before { 696 content: "\f05a"; 697 } 698 i.icon.warning:before { 699 content: "\f12a"; 700 } 701 i.icon.warning.circle:before { 702 content: "\f06a"; 703 } 704 i.icon.warning.sign:before { 705 content: "\f071"; 706 } 707 i.icon.help:before { 708 content: "\f128"; 709 } 710 i.icon.info:before { 711 content: "\f129"; 712 } 713 i.icon.announcement:before { 714 content: "\f0a1"; 715 } 716 i.icon.birthday:before { 717 content: "\f1fd"; 718 } 719 720 /* Users */ 721 i.icon.users:before { 722 content: "\f0c0"; 723 } 724 i.icon.doctor:before { 725 content: "\f0f0"; 726 } 727 i.icon.child:before { 728 content: "\f1ae"; 729 } 730 i.icon.user:before { 731 content: "\f007"; 732 } 733 i.icon.handicap:before { 734 content: "\f193"; 735 } 736 i.icon.student:before { 737 content: "\f19d"; 738 } 739 i.icon.spy:before { 740 content: "\f21b"; 741 } 742 743 /* Gender & Sexuality */ 744 i.icon.female:before { 745 content: "\f182"; 746 } 747 i.icon.male:before { 748 content: "\f183"; 749 } 750 i.icon.woman:before { 751 content: "\f221"; 752 } 753 i.icon.man:before { 754 content: "\f222"; 755 } 756 i.icon.non.binary.transgender:before { 757 content: "\f223"; 758 } 759 i.icon.intergender:before { 760 content: "\f224"; 761 } 762 i.icon.transgender:before { 763 content: "\f225"; 764 } 765 i.icon.lesbian:before { 766 content: "\f226"; 767 } 768 i.icon.gay:before { 769 content: "\f227"; 770 } 771 i.icon.heterosexual:before { 772 content: "\f228"; 773 } 774 i.icon.other.gender:before { 775 content: "\f229"; 776 } 777 i.icon.other.gender.vertical:before { 778 content: "\f22a"; 779 } 780 i.icon.other.gender.horizontal:before { 781 content: "\f22b"; 782 } 783 i.icon.neuter:before { 784 content: "\f22c"; 785 } 786 787 /* View Adjustment */ 788 i.icon.grid.layout:before { 789 content: "\f00a"; 790 } 791 i.icon.list.layout:before { 792 content: "\f00b"; 793 } 794 i.icon.block.layout:before { 795 content: "\f009"; 796 } 797 i.icon.zoom:before { 798 content: "\f00e"; 799 } 800 i.icon.zoom.out:before { 801 content: "\f010"; 802 } 803 i.icon.resize.vertical:before { 804 content: "\f07d"; 805 } 806 i.icon.resize.horizontal:before { 807 content: "\f07e"; 808 } 809 i.icon.maximize:before { 810 content: "\f0b2"; 811 } 812 i.icon.crop:before { 813 content: "\f125"; 814 } 815 816 /* Literal Objects */ 817 i.icon.cocktail:before { 818 content: "\f000"; 819 } 820 i.icon.road:before { 821 content: "\f018"; 822 } 823 i.icon.flag:before { 824 content: "\f024"; 825 } 826 i.icon.book:before { 827 content: "\f02d"; 828 } 829 i.icon.gift:before { 830 content: "\f06b"; 831 } 832 i.icon.leaf:before { 833 content: "\f06c"; 834 } 835 i.icon.fire:before { 836 content: "\f06d"; 837 } 838 i.icon.plane:before { 839 content: "\f072"; 840 } 841 i.icon.magnet:before { 842 content: "\f076"; 843 } 844 i.icon.legal:before { 845 content: "\f0e3"; 846 } 847 i.icon.lemon:before { 848 content: "\f094"; 849 } 850 i.icon.world:before { 851 content: "\f0ac"; 852 } 853 i.icon.travel:before { 854 content: "\f0b1"; 855 } 856 i.icon.shipping:before { 857 content: "\f0d1"; 858 } 859 i.icon.money:before { 860 content: "\f0d6"; 861 } 862 i.icon.lightning:before { 863 content: "\f0e7"; 864 } 865 i.icon.rain:before { 866 content: "\f0e9"; 867 } 868 i.icon.treatment:before { 869 content: "\f0f1"; 870 } 871 i.icon.suitcase:before { 872 content: "\f0f2"; 873 } 874 i.icon.bar:before { 875 content: "\f0fc"; 876 } 877 i.icon.flag.outline:before { 878 content: "\f11d"; 879 } 880 i.icon.flag.checkered:before { 881 content: "\f11e"; 882 } 883 i.icon.puzzle:before { 884 content: "\f12e"; 885 } 886 i.icon.fire.extinguisher:before { 887 content: "\f134"; 888 } 889 i.icon.rocket:before { 890 content: "\f135"; 891 } 892 i.icon.anchor:before { 893 content: "\f13d"; 894 } 895 i.icon.bullseye:before { 896 content: "\f140"; 897 } 898 i.icon.sun:before { 899 content: "\f185"; 900 } 901 i.icon.moon:before { 902 content: "\f186"; 903 } 904 i.icon.fax:before { 905 content: "\f1ac"; 906 } 907 i.icon.life.ring:before { 908 content: "\f1cd"; 909 } 910 i.icon.bomb:before { 911 content: "\f1e2"; 912 } 913 i.icon.soccer:before { 914 content: "\f1e3"; 915 } 916 i.icon.calculator:before { 917 content: "\f1ec"; 918 } 919 i.icon.diamond:before { 920 content: "\f219"; 921 } 922 923 /* Shapes */ 924 i.icon.crosshairs:before { 925 content: "\f05b"; 926 } 927 i.icon.asterisk:before { 928 content: "\f069"; 929 } 930 i.icon.certificate:before { 931 content: "\f0a3"; 932 } 933 i.icon.circle:before { 934 content: "\f111"; 935 } 936 i.icon.quote.left:before { 937 content: "\f10d"; 938 } 939 i.icon.quote.right:before { 940 content: "\f10e"; 941 } 942 i.icon.ellipsis.horizontal:before { 943 content: "\f141"; 944 } 945 i.icon.ellipsis.vertical:before { 946 content: "\f142"; 947 } 948 i.icon.cube:before { 949 content: "\f1b2"; 950 } 951 i.icon.cubes:before { 952 content: "\f1b3"; 953 } 954 i.icon.circle.notched:before { 955 content: "\f1ce"; 956 } 957 i.icon.circle.thin:before { 958 content: "\f1db"; 959 } 960 961 /* Item Selection */ 962 i.icon.checkmark:before { 963 content: "\f00c"; 964 } 965 i.icon.remove:before { 966 content: "\f00d"; 967 } 968 i.icon.checkmark.box:before { 969 content: "\f046"; 970 } 971 i.icon.move:before { 972 content: "\f047"; 973 } 974 i.icon.add.circle:before { 975 content: "\f055"; 976 } 977 i.icon.minus.circle:before { 978 content: "\f056"; 979 } 980 i.icon.remove.circle:before { 981 content: "\f057"; 982 } 983 i.icon.check.circle:before { 984 content: "\f058"; 985 } 986 i.icon.remove.circle.outline:before { 987 content: "\f05c"; 988 } 989 i.icon.check.circle.outline:before { 990 content: "\f05d"; 991 } 992 i.icon.plus:before { 993 content: "\f067"; 994 } 995 i.icon.minus:before { 996 content: "\f068"; 997 } 998 i.icon.add.square:before { 999 content: "\f0fe"; 1000 } 1001 i.icon.radio:before { 1002 content: "\f10c"; 1003 } 1004 i.icon.selected.radio:before { 1005 content: "\f192"; 1006 } 1007 i.icon.minus.square:before { 1008 content: "\f146"; 1009 } 1010 i.icon.minus.square.outline:before { 1011 content: "\f147"; 1012 } 1013 i.icon.check.square:before { 1014 content: "\f14a"; 1015 } 1016 i.icon.plus.square.outline:before { 1017 content: "\f196"; 1018 } 1019 i.icon.toggle.off:before { 1020 content: "\f204"; 1021 } 1022 i.icon.toggle.on:before { 1023 content: "\f205"; 1024 } 1025 1026 /* Media */ 1027 i.icon.film:before { 1028 content: "\f008"; 1029 } 1030 i.icon.sound:before { 1031 content: "\f025"; 1032 } 1033 i.icon.photo:before { 1034 content: "\f030"; 1035 } 1036 i.icon.bar.chart:before { 1037 content: "\f080"; 1038 } 1039 i.icon.camera.retro:before { 1040 content: "\f083"; 1041 } 1042 i.icon.newspaper:before { 1043 content: "\f1ea"; 1044 } 1045 i.icon.area.chart:before { 1046 content: "\f1fe"; 1047 } 1048 i.icon.pie.chart:before { 1049 content: "\f200"; 1050 } 1051 i.icon.line.chart:before { 1052 content: "\f201"; 1053 } 1054 1055 /* Pointers */ 1056 i.icon.arrow.circle.outline.down:before { 1057 content: "\f01a"; 1058 } 1059 i.icon.arrow.circle.outline.up:before { 1060 content: "\f01b"; 1061 } 1062 i.icon.chevron.left:before { 1063 content: "\f053"; 1064 } 1065 i.icon.chevron.right:before { 1066 content: "\f054"; 1067 } 1068 i.icon.arrow.left:before { 1069 content: "\f060"; 1070 } 1071 i.icon.arrow.right:before { 1072 content: "\f061"; 1073 } 1074 i.icon.arrow.up:before { 1075 content: "\f062"; 1076 } 1077 i.icon.arrow.down:before { 1078 content: "\f063"; 1079 } 1080 i.icon.chevron.up:before { 1081 content: "\f077"; 1082 } 1083 i.icon.chevron.down:before { 1084 content: "\f078"; 1085 } 1086 i.icon.pointing.right:before { 1087 content: "\f0a4"; 1088 } 1089 i.icon.pointing.left:before { 1090 content: "\f0a5"; 1091 } 1092 i.icon.pointing.up:before { 1093 content: "\f0a6"; 1094 } 1095 i.icon.pointing.down:before { 1096 content: "\f0a7"; 1097 } 1098 i.icon.arrow.circle.left:before { 1099 content: "\f0a8"; 1100 } 1101 i.icon.arrow.circle.right:before { 1102 content: "\f0a9"; 1103 } 1104 i.icon.arrow.circle.up:before { 1105 content: "\f0aa"; 1106 } 1107 i.icon.arrow.circle.down:before { 1108 content: "\f0ab"; 1109 } 1110 i.icon.caret.down:before { 1111 content: "\f0d7"; 1112 } 1113 i.icon.caret.up:before { 1114 content: "\f0d8"; 1115 } 1116 i.icon.caret.left:before { 1117 content: "\f0d9"; 1118 } 1119 i.icon.caret.right:before { 1120 content: "\f0da"; 1121 } 1122 i.icon.angle.double.left:before { 1123 content: "\f100"; 1124 } 1125 i.icon.angle.double.right:before { 1126 content: "\f101"; 1127 } 1128 i.icon.angle.double.up:before { 1129 content: "\f102"; 1130 } 1131 i.icon.angle.double.down:before { 1132 content: "\f103"; 1133 } 1134 i.icon.angle.left:before { 1135 content: "\f104"; 1136 } 1137 i.icon.angle.right:before { 1138 content: "\f105"; 1139 } 1140 i.icon.angle.up:before { 1141 content: "\f106"; 1142 } 1143 i.icon.angle.down:before { 1144 content: "\f107"; 1145 } 1146 i.icon.chevron.circle.left:before { 1147 content: "\f137"; 1148 } 1149 i.icon.chevron.circle.right:before { 1150 content: "\f138"; 1151 } 1152 i.icon.chevron.circle.up:before { 1153 content: "\f139"; 1154 } 1155 i.icon.chevron.circle.down:before { 1156 content: "\f13a"; 1157 } 1158 i.icon.toggle.down:before { 1159 content: "\f150"; 1160 } 1161 i.icon.toggle.up:before { 1162 content: "\f151"; 1163 } 1164 i.icon.toggle.right:before { 1165 content: "\f152"; 1166 } 1167 i.icon.long.arrow.down:before { 1168 content: "\f175"; 1169 } 1170 i.icon.long.arrow.up:before { 1171 content: "\f176"; 1172 } 1173 i.icon.long.arrow.left:before { 1174 content: "\f177"; 1175 } 1176 i.icon.long.arrow.right:before { 1177 content: "\f178"; 1178 } 1179 i.icon.arrow.circle.outline.right:before { 1180 content: "\f18e"; 1181 } 1182 i.icon.arrow.circle.outline.left:before { 1183 content: "\f190"; 1184 } 1185 i.icon.toggle.left:before { 1186 content: "\f191"; 1187 } 1188 1189 /* Computer */ 1190 i.icon.power:before { 1191 content: "\f011"; 1192 } 1193 i.icon.trash:before { 1194 content: "\f1f8"; 1195 } 1196 i.icon.trash.outline:before { 1197 content: "\f014"; 1198 } 1199 i.icon.disk.outline:before { 1200 content: "\f0a0"; 1201 } 1202 i.icon.desktop:before { 1203 content: "\f108"; 1204 } 1205 i.icon.laptop:before { 1206 content: "\f109"; 1207 } 1208 i.icon.tablet:before { 1209 content: "\f10a"; 1210 } 1211 i.icon.mobile:before { 1212 content: "\f10b"; 1213 } 1214 i.icon.game:before { 1215 content: "\f11b"; 1216 } 1217 i.icon.keyboard:before { 1218 content: "\f11c"; 1219 } 1220 i.icon.plug:before { 1221 content: "\f1e6"; 1222 } 1223 1224 /* File System */ 1225 i.icon.folder:before { 1226 content: "\f07b"; 1227 } 1228 i.icon.folder.open:before { 1229 content: "\f07c"; 1230 } 1231 i.icon.level.up:before { 1232 content: "\f148"; 1233 } 1234 i.icon.level.down:before { 1235 content: "\f149"; 1236 } 1237 i.icon.file:before { 1238 content: "\f15b"; 1239 } 1240 i.icon.file.outline:before { 1241 content: "\f016"; 1242 } 1243 i.icon.file.text:before { 1244 content: "\f15c"; 1245 } 1246 i.icon.file.text.outline:before { 1247 content: "\f0f6"; 1248 } 1249 i.icon.folder.outline:before { 1250 content: "\f114"; 1251 } 1252 i.icon.folder.open.outline:before { 1253 content: "\f115"; 1254 } 1255 i.icon.file.pdf.outline:before { 1256 content: "\f1c1"; 1257 } 1258 i.icon.file.word.outline:before { 1259 content: "\f1c2"; 1260 } 1261 i.icon.file.excel.outline:before { 1262 content: "\f1c3"; 1263 } 1264 i.icon.file.powerpoint.outline:before { 1265 content: "\f1c4"; 1266 } 1267 i.icon.file.image.outline:before { 1268 content: "\f1c5"; 1269 } 1270 i.icon.file.archive.outline:before { 1271 content: "\f1c6"; 1272 } 1273 i.icon.file.audio.outline:before { 1274 content: "\f1c7"; 1275 } 1276 i.icon.file.video.outline:before { 1277 content: "\f1c8"; 1278 } 1279 i.icon.file.code.outline:before { 1280 content: "\f1c9"; 1281 } 1282 1283 /* Technologies */ 1284 i.icon.barcode:before { 1285 content: "\f02a"; 1286 } 1287 i.icon.qrcode:before { 1288 content: "\f029"; 1289 } 1290 i.icon.fork:before { 1291 content: "\f126"; 1292 } 1293 i.icon.html5:before { 1294 content: "\f13b"; 1295 } 1296 i.icon.css3:before { 1297 content: "\f13c"; 1298 } 1299 i.icon.rss:before { 1300 content: "\f09e"; 1301 } 1302 i.icon.rss.square:before { 1303 content: "\f143"; 1304 } 1305 i.icon.openid:before { 1306 content: "\f19b"; 1307 } 1308 i.icon.database:before { 1309 content: "\f1c0"; 1310 } 1311 i.icon.server:before { 1312 content: "\f233"; 1313 } 1314 1315 /* Rating */ 1316 i.icon.heart:before { 1317 content: "\f004"; 1318 } 1319 i.icon.star:before { 1320 content: "\f005"; 1321 } 1322 i.icon.empty.star:before { 1323 content: "\f006"; 1324 } 1325 i.icon.thumbs.outline.up:before { 1326 content: "\f087"; 1327 } 1328 i.icon.thumbs.outline.down:before { 1329 content: "\f088"; 1330 } 1331 i.icon.star.half:before { 1332 content: "\f089"; 1333 } 1334 i.icon.empty.heart:before { 1335 content: "\f08a"; 1336 } 1337 i.icon.smile:before { 1338 content: "\f118"; 1339 } 1340 i.icon.frown:before { 1341 content: "\f119"; 1342 } 1343 i.icon.meh:before { 1344 content: "\f11a"; 1345 } 1346 i.icon.star.half.empty:before { 1347 content: "\f123"; 1348 } 1349 i.icon.thumbs.up:before { 1350 content: "\f164"; 1351 } 1352 i.icon.thumbs.down:before { 1353 content: "\f165"; 1354 } 1355 1356 /* Audio */ 1357 i.icon.music:before { 1358 content: "\f001"; 1359 } 1360 i.icon.video.play.outline:before { 1361 content: "\f01d"; 1362 } 1363 i.icon.volume.off:before { 1364 content: "\f026"; 1365 } 1366 i.icon.volume.down:before { 1367 content: "\f027"; 1368 } 1369 i.icon.volume.up:before { 1370 content: "\f028"; 1371 } 1372 i.icon.record:before { 1373 content: "\f03d"; 1374 } 1375 i.icon.step.backward:before { 1376 content: "\f048"; 1377 } 1378 i.icon.fast.backward:before { 1379 content: "\f049"; 1380 } 1381 i.icon.backward:before { 1382 content: "\f04a"; 1383 } 1384 i.icon.play:before { 1385 content: "\f04b"; 1386 } 1387 i.icon.pause:before { 1388 content: "\f04c"; 1389 } 1390 i.icon.stop:before { 1391 content: "\f04d"; 1392 } 1393 i.icon.forward:before { 1394 content: "\f04e"; 1395 } 1396 i.icon.fast.forward:before { 1397 content: "\f050"; 1398 } 1399 i.icon.step.forward:before { 1400 content: "\f051"; 1401 } 1402 i.icon.eject:before { 1403 content: "\f052"; 1404 } 1405 i.icon.unmute:before { 1406 content: "\f130"; 1407 } 1408 i.icon.mute:before { 1409 content: "\f131"; 1410 } 1411 i.icon.video.play:before { 1412 content: "\f144"; 1413 } 1414 i.icon.closed.captioning:before { 1415 content: "\f20a"; 1416 } 1417 1418 /* Map, Locations, & Transportation */ 1419 i.icon.marker:before { 1420 content: "\f041"; 1421 } 1422 i.icon.coffee:before { 1423 content: "\f0f4"; 1424 } 1425 i.icon.food:before { 1426 content: "\f0f5"; 1427 } 1428 i.icon.building.outline:before { 1429 content: "\f0f7"; 1430 } 1431 i.icon.hospital:before { 1432 content: "\f0f8"; 1433 } 1434 i.icon.emergency:before { 1435 content: "\f0f9"; 1436 } 1437 i.icon.first.aid:before { 1438 content: "\f0fa"; 1439 } 1440 i.icon.military:before { 1441 content: "\f0fb"; 1442 } 1443 i.icon.h:before { 1444 content: "\f0fd"; 1445 } 1446 i.icon.location.arrow:before { 1447 content: "\f124"; 1448 } 1449 i.icon.space.shuttle:before { 1450 content: "\f197"; 1451 } 1452 i.icon.university:before { 1453 content: "\f19c"; 1454 } 1455 i.icon.building:before { 1456 content: "\f1ad"; 1457 } 1458 i.icon.paw:before { 1459 content: "\f1b0"; 1460 } 1461 i.icon.spoon:before { 1462 content: "\f1b1"; 1463 } 1464 i.icon.car:before { 1465 content: "\f1b9"; 1466 } 1467 i.icon.taxi:before { 1468 content: "\f1ba"; 1469 } 1470 i.icon.tree:before { 1471 content: "\f1bb"; 1472 } 1473 i.icon.bicycle:before { 1474 content: "\f206"; 1475 } 1476 i.icon.bus:before { 1477 content: "\f207"; 1478 } 1479 i.icon.ship:before { 1480 content: "\f21a"; 1481 } 1482 i.icon.motorcycle:before { 1483 content: "\f21c"; 1484 } 1485 i.icon.street.view:before { 1486 content: "\f21d"; 1487 } 1488 i.icon.hotel:before { 1489 content: "\f236"; 1490 } 1491 i.icon.train:before { 1492 content: "\f238"; 1493 } 1494 i.icon.subway:before { 1495 content: "\f239"; 1496 } 1497 1498 /* Tables */ 1499 i.icon.table:before { 1500 content: "\f0ce"; 1501 } 1502 i.icon.columns:before { 1503 content: "\f0db"; 1504 } 1505 i.icon.sort:before { 1506 content: "\f0dc"; 1507 } 1508 i.icon.sort.ascending:before { 1509 content: "\f0dd"; 1510 } 1511 i.icon.sort.descending:before { 1512 content: "\f0de"; 1513 } 1514 i.icon.sort.alphabet.ascending:before { 1515 content: "\f15d"; 1516 } 1517 i.icon.sort.alphabet.descending:before { 1518 content: "\f15e"; 1519 } 1520 i.icon.sort.content.ascending:before { 1521 content: "\f160"; 1522 } 1523 i.icon.sort.content.descending:before { 1524 content: "\f161"; 1525 } 1526 i.icon.sort.numeric.ascending:before { 1527 content: "\f162"; 1528 } 1529 i.icon.sort.numeric.descending:before { 1530 content: "\f163"; 1531 } 1532 1533 /* Text Editor */ 1534 i.icon.font:before { 1535 content: "\f031"; 1536 } 1537 i.icon.bold:before { 1538 content: "\f032"; 1539 } 1540 i.icon.italic:before { 1541 content: "\f033"; 1542 } 1543 i.icon.text.height:before { 1544 content: "\f034"; 1545 } 1546 i.icon.text.width:before { 1547 content: "\f035"; 1548 } 1549 i.icon.align.left:before { 1550 content: "\f036"; 1551 } 1552 i.icon.align.center:before { 1553 content: "\f037"; 1554 } 1555 i.icon.align.right:before { 1556 content: "\f038"; 1557 } 1558 i.icon.align.justify:before { 1559 content: "\f039"; 1560 } 1561 i.icon.list:before { 1562 content: "\f03a"; 1563 } 1564 i.icon.outdent:before { 1565 content: "\f03b"; 1566 } 1567 i.icon.indent:before { 1568 content: "\f03c"; 1569 } 1570 i.icon.linkify:before { 1571 content: "\f0c1"; 1572 } 1573 i.icon.cut:before { 1574 content: "\f0c4"; 1575 } 1576 i.icon.copy:before { 1577 content: "\f0c5"; 1578 } 1579 i.icon.attach:before { 1580 content: "\f0c6"; 1581 } 1582 i.icon.save:before { 1583 content: "\f0c7"; 1584 } 1585 i.icon.content:before { 1586 content: "\f0c9"; 1587 } 1588 i.icon.unordered.list:before { 1589 content: "\f0ca"; 1590 } 1591 i.icon.ordered.list:before { 1592 content: "\f0cb"; 1593 } 1594 i.icon.strikethrough:before { 1595 content: "\f0cc"; 1596 } 1597 i.icon.underline:before { 1598 content: "\f0cd"; 1599 } 1600 i.icon.paste:before { 1601 content: "\f0ea"; 1602 } 1603 i.icon.unlink:before { 1604 content: "\f127"; 1605 } 1606 i.icon.superscript:before { 1607 content: "\f12b"; 1608 } 1609 i.icon.subscript:before { 1610 content: "\f12c"; 1611 } 1612 i.icon.header:before { 1613 content: "\f1dc"; 1614 } 1615 i.icon.paragraph:before { 1616 content: "\f1dd"; 1617 } 1618 1619 /* Currency */ 1620 i.icon.euro:before { 1621 content: "\f153"; 1622 } 1623 i.icon.pound:before { 1624 content: "\f154"; 1625 } 1626 i.icon.dollar:before { 1627 content: "\f155"; 1628 } 1629 i.icon.rupee:before { 1630 content: "\f156"; 1631 } 1632 i.icon.yen:before { 1633 content: "\f157"; 1634 } 1635 i.icon.ruble:before { 1636 content: "\f158"; 1637 } 1638 i.icon.won:before { 1639 content: "\f159"; 1640 } 1641 i.icon.lira:before { 1642 content: "\f195"; 1643 } 1644 i.icon.shekel:before { 1645 content: "\f20b"; 1646 } 1647 1648 /* Payment Options */ 1649 i.icon.paypal:before { 1650 content: "\f1ed"; 1651 } 1652 i.icon.paypal.card:before { 1653 content: "\f1f4"; 1654 } 1655 i.icon.google.wallet:before { 1656 content: "\f1ee"; 1657 } 1658 i.icon.visa:before { 1659 content: "\f1f0"; 1660 } 1661 i.icon.mastercard:before { 1662 content: "\f1f1"; 1663 } 1664 i.icon.discover:before { 1665 content: "\f1f2"; 1666 } 1667 i.icon.american.express:before { 1668 content: "\f1f3"; 1669 } 1670 i.icon.stripe:before { 1671 content: "\f1f5"; 1672 } 1673 /* Networks and Websites*/ 1674 i.icon.twitter.square:before { 1675 content: "\f081"; 1676 } 1677 i.icon.facebook.square:before { 1678 content: "\f082"; 1679 } 1680 i.icon.linkedin.square:before { 1681 content: "\f08c"; 1682 } 1683 i.icon.github.square:before { 1684 content: "\f092"; 1685 } 1686 i.icon.twitter:before { 1687 content: "\f099"; 1688 } 1689 i.icon.facebook:before { 1690 content: "\f09a"; 1691 } 1692 i.icon.github:before { 1693 content: "\f09b"; 1694 } 1695 i.icon.pinterest:before { 1696 content: "\f0d2"; 1697 } 1698 i.icon.pinterest.square:before { 1699 content: "\f0d3"; 1700 } 1701 i.icon.google.plus.square:before { 1702 content: "\f0d4"; 1703 } 1704 i.icon.google.plus:before { 1705 content: "\f0d5"; 1706 } 1707 i.icon.linkedin:before { 1708 content: "\f0e1"; 1709 } 1710 i.icon.github.alternate:before { 1711 content: "\f113"; 1712 } 1713 i.icon.maxcdn:before { 1714 content: "\f136"; 1715 } 1716 i.icon.bitcoin:before { 1717 content: "\f15a"; 1718 } 1719 i.icon.youtube.square:before { 1720 content: "\f166"; 1721 } 1722 i.icon.youtube:before { 1723 content: "\f167"; 1724 } 1725 i.icon.xing:before { 1726 content: "\f168"; 1727 } 1728 i.icon.xing.square:before { 1729 content: "\f169"; 1730 } 1731 i.icon.youtube.play:before { 1732 content: "\f16a"; 1733 } 1734 i.icon.dropbox:before { 1735 content: "\f16b"; 1736 } 1737 i.icon.stack.overflow:before { 1738 content: "\f16c"; 1739 } 1740 i.icon.instagram:before { 1741 content: "\f16d"; 1742 } 1743 i.icon.flickr:before { 1744 content: "\f16e"; 1745 } 1746 i.icon.adn:before { 1747 content: "\f170"; 1748 } 1749 i.icon.bitbucket:before { 1750 content: "\f171"; 1751 } 1752 i.icon.bitbucket.square:before { 1753 content: "\f172"; 1754 } 1755 i.icon.tumblr:before { 1756 content: "\f173"; 1757 } 1758 i.icon.tumblr.square:before { 1759 content: "\f174"; 1760 } 1761 i.icon.apple:before { 1762 content: "\f179"; 1763 } 1764 i.icon.windows:before { 1765 content: "\f17a"; 1766 } 1767 i.icon.android:before { 1768 content: "\f17b"; 1769 } 1770 i.icon.linux:before { 1771 content: "\f17c"; 1772 } 1773 i.icon.dribbble:before { 1774 content: "\f17d"; 1775 } 1776 i.icon.skype:before { 1777 content: "\f17e"; 1778 } 1779 i.icon.foursquare:before { 1780 content: "\f180"; 1781 } 1782 i.icon.trello:before { 1783 content: "\f181"; 1784 } 1785 i.icon.gittip:before { 1786 content: "\f184"; 1787 } 1788 i.icon.vk:before { 1789 content: "\f189"; 1790 } 1791 i.icon.weibo:before { 1792 content: "\f18a"; 1793 } 1794 i.icon.renren:before { 1795 content: "\f18b"; 1796 } 1797 i.icon.pagelines:before { 1798 content: "\f18c"; 1799 } 1800 i.icon.stack.exchange:before { 1801 content: "\f18d"; 1802 } 1803 i.icon.vimeo:before { 1804 content: "\f194"; 1805 } 1806 i.icon.slack:before { 1807 content: "\f198"; 1808 } 1809 i.icon.wordpress:before { 1810 content: "\f19a"; 1811 } 1812 i.icon.yahoo:before { 1813 content: "\f19e"; 1814 } 1815 i.icon.google:before { 1816 content: "\f1a0"; 1817 } 1818 i.icon.reddit:before { 1819 content: "\f1a1"; 1820 } 1821 i.icon.reddit.square:before { 1822 content: "\f1a2"; 1823 } 1824 i.icon.stumbleupon.circle:before { 1825 content: "\f1a3"; 1826 } 1827 i.icon.stumbleupon:before { 1828 content: "\f1a4"; 1829 } 1830 i.icon.delicious:before { 1831 content: "\f1a5"; 1832 } 1833 i.icon.digg:before { 1834 content: "\f1a6"; 1835 } 1836 i.icon.pied.piper:before { 1837 content: "\f1a7"; 1838 } 1839 i.icon.pied.piper.alternate:before { 1840 content: "\f1a8"; 1841 } 1842 i.icon.drupal:before { 1843 content: "\f1a9"; 1844 } 1845 i.icon.joomla:before { 1846 content: "\f1aa"; 1847 } 1848 i.icon.behance:before { 1849 content: "\f1b4"; 1850 } 1851 i.icon.behance.square:before { 1852 content: "\f1b5"; 1853 } 1854 i.icon.steam:before { 1855 content: "\f1b6"; 1856 } 1857 i.icon.steam.square:before { 1858 content: "\f1b7"; 1859 } 1860 i.icon.spotify:before { 1861 content: "\f1bc"; 1862 } 1863 i.icon.deviantart:before { 1864 content: "\f1bd"; 1865 } 1866 i.icon.soundcloud:before { 1867 content: "\f1be"; 1868 } 1869 i.icon.vine:before { 1870 content: "\f1ca"; 1871 } 1872 i.icon.codepen:before { 1873 content: "\f1cb"; 1874 } 1875 i.icon.jsfiddle:before { 1876 content: "\f1cc"; 1877 } 1878 i.icon.rebel:before { 1879 content: "\f1d0"; 1880 } 1881 i.icon.empire:before { 1882 content: "\f1d1"; 1883 } 1884 i.icon.git.square:before { 1885 content: "\f1d2"; 1886 } 1887 i.icon.git:before { 1888 content: "\f1d3"; 1889 } 1890 i.icon.hacker.news:before { 1891 content: "\f1d4"; 1892 } 1893 i.icon.tencent.weibo:before { 1894 content: "\f1d5"; 1895 } 1896 i.icon.qq:before { 1897 content: "\f1d6"; 1898 } 1899 i.icon.wechat:before { 1900 content: "\f1d7"; 1901 } 1902 i.icon.slideshare:before { 1903 content: "\f1e7"; 1904 } 1905 i.icon.twitch:before { 1906 content: "\f1e8"; 1907 } 1908 i.icon.yelp:before { 1909 content: "\f1e9"; 1910 } 1911 i.icon.lastfm:before { 1912 content: "\f202"; 1913 } 1914 i.icon.lastfm.square:before { 1915 content: "\f203"; 1916 } 1917 i.icon.ioxhost:before { 1918 content: "\f208"; 1919 } 1920 i.icon.angellist:before { 1921 content: "\f209"; 1922 } 1923 i.icon.meanpath:before { 1924 content: "\f20c"; 1925 } 1926 i.icon.buysellads:before { 1927 content: "\f20d"; 1928 } 1929 i.icon.connectdevelop:before { 1930 content: "\f20e"; 1931 } 1932 i.icon.dashcube:before { 1933 content: "\f210"; 1934 } 1935 i.icon.forumbee:before { 1936 content: "\f211"; 1937 } 1938 i.icon.leanpub:before { 1939 content: "\f212"; 1940 } 1941 i.icon.sellsy:before { 1942 content: "\f213"; 1943 } 1944 i.icon.shirtsinbulk:before { 1945 content: "\f214"; 1946 } 1947 i.icon.simplybuilt:before { 1948 content: "\f215"; 1949 } 1950 i.icon.skyatlas:before { 1951 content: "\f216"; 1952 } 1953 i.icon.whatsapp:before { 1954 content: "\f232"; 1955 } 1956 i.icon.viacoin:before { 1957 content: "\f237"; 1958 } 1959 i.icon.medium:before { 1960 content: "\f23a"; 1961 } 1962 1963 1964 /******************************* 1965 Aliases 1966 *******************************/ 1967 1968 i.icon.like:before { 1969 content: "\f004"; 1970 } 1971 i.icon.favorite:before { 1972 content: "\f005"; 1973 } 1974 i.icon.video:before { 1975 content: "\f008"; 1976 } 1977 i.icon.check:before { 1978 content: "\f00c"; 1979 } 1980 i.icon.remove:before { 1981 content: "\f00d"; 1982 } 1983 i.icon.close:before { 1984 content: "\f00d"; 1985 } 1986 i.icon.cancel:before { 1987 content: "\f00d"; 1988 } 1989 i.icon.delete:before { 1990 content: "\f00d"; 1991 } 1992 i.icon.x:before { 1993 content: "\f00d"; 1994 } 1995 i.icon.user.times:before { 1996 content: "\f235"; 1997 } 1998 i.icon.user.close:before { 1999 content: "\f235"; 2000 } 2001 i.icon.user.cancel:before { 2002 content: "\f235"; 2003 } 2004 i.icon.user.delete:before { 2005 content: "\f235"; 2006 } 2007 i.icon.user.x:before { 2008 content: "\f235"; 2009 } 2010 i.icon.zoom.in:before { 2011 content: "\f00e"; 2012 } 2013 i.icon.magnify:before { 2014 content: "\f00e"; 2015 } 2016 i.icon.shutdown:before { 2017 content: "\f011"; 2018 } 2019 i.icon.clock:before { 2020 content: "\f017"; 2021 } 2022 i.icon.time:before { 2023 content: "\f017"; 2024 } 2025 i.icon.play.circle.outline:before { 2026 content: "\f01d"; 2027 } 2028 i.icon.headphone:before { 2029 content: "\f025"; 2030 } 2031 i.icon.volume.off:before { 2032 content: "\f026"; 2033 } 2034 i.icon.camera:before { 2035 content: "\f030"; 2036 } 2037 i.icon.video.camera:before { 2038 content: "\f03d"; 2039 } 2040 i.icon.picture:before { 2041 content: "\f03e"; 2042 } 2043 i.icon.pencil:before { 2044 content: "\f040"; 2045 } 2046 i.icon.compose:before { 2047 content: "\f040"; 2048 } 2049 i.icon.point:before { 2050 content: "\f041"; 2051 } 2052 i.icon.tint:before { 2053 content: "\f043"; 2054 } 2055 i.icon.signup:before { 2056 content: "\f044"; 2057 } 2058 i.icon.plus.circle:before { 2059 content: "\f055"; 2060 } 2061 i.icon.minus.circle:before { 2062 content: "\f056"; 2063 } 2064 i.icon.dont:before { 2065 content: "\f05e"; 2066 } 2067 i.icon.minimize:before { 2068 content: "\f066"; 2069 } 2070 i.icon.add:before { 2071 content: "\f067"; 2072 } 2073 i.icon.eye:before { 2074 content: "\f06e"; 2075 } 2076 i.icon.attention:before { 2077 content: "\f06a"; 2078 } 2079 i.icon.cart:before { 2080 content: "\f07a"; 2081 } 2082 i.icon.shuffle:before { 2083 content: "\f074"; 2084 } 2085 i.icon.talk:before { 2086 content: "\f075"; 2087 } 2088 i.icon.chat:before { 2089 content: "\f075"; 2090 } 2091 i.icon.shopping.cart:before { 2092 content: "\f07a"; 2093 } 2094 i.icon.bar.graph:before { 2095 content: "\f080"; 2096 } 2097 i.icon.area.graph:before { 2098 content: "\f1fe"; 2099 } 2100 i.icon.pie.graph:before { 2101 content: "\f200"; 2102 } 2103 i.icon.line.graph:before { 2104 content: "\f201"; 2105 } 2106 i.icon.key:before { 2107 content: "\f084"; 2108 } 2109 i.icon.privacy:before { 2110 content: "\f084"; 2111 } 2112 i.icon.cogs:before { 2113 content: "\f085"; 2114 } 2115 i.icon.discussions:before { 2116 content: "\f086"; 2117 } 2118 i.icon.like.outline:before { 2119 content: "\f087"; 2120 } 2121 i.icon.dislike.outline:before { 2122 content: "\f088"; 2123 } 2124 i.icon.heart.outline:before { 2125 content: "\f08a"; 2126 } 2127 i.icon.log.out:before { 2128 content: "\f08b"; 2129 } 2130 i.icon.thumb.tack:before { 2131 content: "\f08d"; 2132 } 2133 i.icon.winner:before { 2134 content: "\f091"; 2135 } 2136 i.icon.bookmark.outline:before { 2137 content: "\f097"; 2138 } 2139 i.icon.phone.square:before { 2140 content: "\f098"; 2141 } 2142 i.icon.phone.square:before { 2143 content: "\f098"; 2144 } 2145 i.icon.credit.card:before { 2146 content: "\f09d"; 2147 } 2148 i.icon.hdd.outline:before { 2149 content: "\f0a0"; 2150 } 2151 i.icon.bullhorn:before { 2152 content: "\f0a1"; 2153 } 2154 i.icon.bell:before { 2155 content: "\f0f3"; 2156 } 2157 i.icon.bell.outline:before { 2158 content: "\f0a2"; 2159 } 2160 i.icon.bell.slash:before { 2161 content: "\f1f6"; 2162 } 2163 i.icon.bell.slash.outline:before { 2164 content: "\f1f7"; 2165 } 2166 i.icon.hand.outline.right:before { 2167 content: "\f0a4"; 2168 } 2169 i.icon.hand.outline.left:before { 2170 content: "\f0a5"; 2171 } 2172 i.icon.hand.outline.up:before { 2173 content: "\f0a6"; 2174 } 2175 i.icon.hand.outline.down:before { 2176 content: "\f0a7"; 2177 } 2178 i.icon.globe:before { 2179 content: "\f0ac"; 2180 } 2181 i.icon.wrench:before { 2182 content: "\f0ad"; 2183 } 2184 i.icon.briefcase:before { 2185 content: "\f0b1"; 2186 } 2187 i.icon.group:before { 2188 content: "\f0c0"; 2189 } 2190 i.icon.flask:before { 2191 content: "\f0c3"; 2192 } 2193 i.icon.sidebar:before { 2194 content: "\f0c9"; 2195 } 2196 i.icon.bars:before { 2197 content: "\f0c9"; 2198 } 2199 i.icon.list.ul:before { 2200 content: "\f0ca"; 2201 } 2202 i.icon.list.ol:before { 2203 content: "\f0cb"; 2204 } 2205 i.icon.numbered.list:before { 2206 content: "\f0cb"; 2207 } 2208 i.icon.magic:before { 2209 content: "\f0d0"; 2210 } 2211 i.icon.truck:before { 2212 content: "\f0d1"; 2213 } 2214 i.icon.currency:before { 2215 content: "\f0d6"; 2216 } 2217 i.icon.triangle.down:before { 2218 content: "\f0d7"; 2219 } 2220 i.icon.dropdown:before { 2221 content: "\f0d7"; 2222 } 2223 i.icon.triangle.up:before { 2224 content: "\f0d8"; 2225 } 2226 i.icon.triangle.left:before { 2227 content: "\f0d9"; 2228 } 2229 i.icon.triangle.right:before { 2230 content: "\f0da"; 2231 } 2232 i.icon.envelope:before { 2233 content: "\f0e0"; 2234 } 2235 i.icon.conversation:before { 2236 content: "\f0e6"; 2237 } 2238 i.icon.lightning:before { 2239 content: "\f0e7"; 2240 } 2241 i.icon.umbrella:before { 2242 content: "\f0e9"; 2243 } 2244 i.icon.lightbulb:before { 2245 content: "\f0eb"; 2246 } 2247 i.icon.suitcase:before { 2248 content: "\f0f2"; 2249 } 2250 i.icon.bell.outline:before { 2251 content: "\f0a2"; 2252 } 2253 i.icon.ambulance:before { 2254 content: "\f0f9"; 2255 } 2256 i.icon.medkit:before { 2257 content: "\f0fa"; 2258 } 2259 i.icon.fighter.jet:before { 2260 content: "\f0fb"; 2261 } 2262 i.icon.beer:before { 2263 content: "\f0fc"; 2264 } 2265 i.icon.plus.square:before { 2266 content: "\f0fe"; 2267 } 2268 i.icon.computer:before { 2269 content: "\f108"; 2270 } 2271 i.icon.circle.outline:before { 2272 content: "\f10c"; 2273 } 2274 i.icon.intersex:before { 2275 content: "\f10c"; 2276 } 2277 i.icon.asexual:before { 2278 content: "\f10c"; 2279 } 2280 i.icon.spinner:before { 2281 content: "\f110"; 2282 } 2283 i.icon.gamepad:before { 2284 content: "\f11b"; 2285 } 2286 i.icon.star.half.full:before { 2287 content: "\f123"; 2288 } 2289 i.icon.question:before { 2290 content: "\f128"; 2291 } 2292 i.icon.attention:before { 2293 content: "\f12a"; 2294 } 2295 i.icon.eraser:before { 2296 content: "\f12d"; 2297 } 2298 i.icon.microphone:before { 2299 content: "\f130"; 2300 } 2301 i.icon.microphone.slash:before { 2302 content: "\f131"; 2303 } 2304 i.icon.shield:before { 2305 content: "\f132"; 2306 } 2307 i.icon.target:before { 2308 content: "\f140"; 2309 } 2310 i.icon.play.circle:before { 2311 content: "\f144"; 2312 } 2313 i.icon.pencil.square:before { 2314 content: "\f14b"; 2315 } 2316 i.icon.compass:before { 2317 content: "\f14e"; 2318 } 2319 i.icon.eur:before { 2320 content: "\f153"; 2321 } 2322 i.icon.gbp:before { 2323 content: "\f154"; 2324 } 2325 i.icon.usd:before { 2326 content: "\f155"; 2327 } 2328 i.icon.inr:before { 2329 content: "\f156"; 2330 } 2331 i.icon.cny:before, 2332 i.icon.rmb:before, 2333 i.icon.jpy:before { 2334 content: "\f157"; 2335 } 2336 i.icon.rouble:before, 2337 i.icon.rub:before { 2338 content: "\f158"; 2339 } 2340 i.icon.won:before, 2341 i.icon.krw:before { 2342 content: "\f159"; 2343 } 2344 i.icon.btc:before { 2345 content: "\f15a"; 2346 } 2347 i.icon.sheqel:before, 2348 i.icon.ils:before { 2349 content: "\f20b"; 2350 } 2351 i.icon.try:before { 2352 content: "\f195"; 2353 } 2354 i.icon.zip:before { 2355 content: "\f187"; 2356 } 2357 i.icon.dot.circle.outline:before { 2358 content: "\f192"; 2359 } 2360 i.icon.sliders:before { 2361 content: "\f1de"; 2362 } 2363 i.icon.wi-fi:before { 2364 content: "\f1eb"; 2365 } 2366 i.icon.graduation:before { 2367 content: "\f19d"; 2368 } 2369 i.icon.\33d:before { 2370 content: "\f1b2"; 2371 } 2372 i.icon.weixin:before { 2373 content: "\f1d7"; 2374 } 2375 i.icon.binoculars:before { 2376 content: "\f1e5"; 2377 } 2378 i.icon.gratipay:before { 2379 content: "\f184"; 2380 } 2381 i.icon.genderless:before { 2382 content: "\f1db"; 2383 } 2384 i.icon.teletype:before { 2385 content: "\f1e4"; 2386 } 2387 i.icon.power.cord:before { 2388 content: "\f1e6"; 2389 } 2390 i.icon.tty:before { 2391 content: "\f1e4"; 2392 } 2393 i.icon.cc:before { 2394 content: "\f20a"; 2395 } 2396 i.icon.ils:before { 2397 content: "\f20b"; 2398 } 2399 i.icon.plus.cart:before { 2400 content: "\f217"; 2401 } 2402 i.icon.arrow.down.cart:before { 2403 content: "\f218"; 2404 } 2405 i.icon.detective:before { 2406 content: "\f21b"; 2407 } 2408 i.icon.venus:before { 2409 content: "\f221"; 2410 } 2411 i.icon.mars:before { 2412 content: "\f222"; 2413 } 2414 i.icon.mercury:before { 2415 content: "\f223"; 2416 } 2417 i.icon.venus.double:before { 2418 content: "\f226"; 2419 } 2420 i.icon.female.homosexual:before { 2421 content: "\f226"; 2422 } 2423 i.icon.mars.double:before { 2424 content: "\f227"; 2425 } 2426 i.icon.male.homosexual:before { 2427 content: "\f227"; 2428 } 2429 i.icon.venus.mars:before { 2430 content: "\f228"; 2431 } 2432 i.icon.mars.stroke:before { 2433 content: "\f229"; 2434 } 2435 i.icon.mars.alternate:before { 2436 content: "\f229"; 2437 } 2438 i.icon.mars.vertical:before { 2439 content: "\f22a"; 2440 } 2441 i.icon.mars.horizontal:before { 2442 content: "\f22b"; 2443 } 2444 i.icon.mars.stroke.vertical:before { 2445 content: "\f22a"; 2446 } 2447 i.icon.mars.stroke.horizontal:before { 2448 content: "\f22b"; 2449 } 2450 i.icon.neuter:before { 2451 content: "\f22c"; 2452 } 2453 i.icon.facebook.official { 2454 content: "\f230"; 2455 } 2456 i.icon.pinterest.official { 2457 content: "\f231"; 2458 } 2459 i.icon.bed:before { 2460 content: "\f236"; 2461 } 2462 2463 2464 /******************************* 2465 Site Overrides 2466 *******************************/ 2467