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.

2590 lines
42 KiB

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