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.

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