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.

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