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.

2127 lines
35 KiB

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