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.

2583 lines
42 KiB

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