You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2467 lines
40 KiB

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