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.

2125 lines
35 KiB

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