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