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.

2172 lines
39 KiB

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