Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.33 KB | None | 0 0
  1. /*!
  2. * # Semantic UI 2.2.14 - Icon
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10.  
  11.  
  12. /*******************************
  13. Icon
  14. *******************************/
  15.  
  16. @font-face {
  17. font-family: 'Icons';
  18. src: url("./assets/fonts/icons.eot");
  19. src: url("./assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("./assets/fonts/icons.woff2") format('woff2'), url("./assets/fonts/icons.woff") format('woff'), url("./assets/fonts/icons.ttf") format('truetype'), url("./assets/fonts/icons.svg#icons") format('svg');
  20. font-style: normal;
  21. font-weight: normal;
  22. font-variant: normal;
  23. text-decoration: inherit;
  24. text-transform: none;
  25. }
  26. i.icon {
  27. display: inline-block;
  28. opacity: 1;
  29. margin: 0em 0.25rem 0em 0em;
  30. width: 1.18em;
  31. height: 1em;
  32. font-family: 'Icons';
  33. font-style: normal;
  34. font-weight: normal;
  35. text-decoration: inherit;
  36. text-align: center;
  37. speak: none;
  38. font-smoothing: antialiased;
  39. -moz-osx-font-smoothing: grayscale;
  40. -webkit-font-smoothing: antialiased;
  41. -webkit-backface-visibility: hidden;
  42. backface-visibility: hidden;
  43. }
  44. i.icon:before {
  45. background: none !important;
  46. }
  47.  
  48.  
  49. /*******************************
  50. Types
  51. *******************************/
  52.  
  53.  
  54. /*--------------
  55. Loading
  56. ---------------*/
  57.  
  58. i.icon.loading {
  59. height: 1em;
  60. line-height: 1;
  61. -webkit-animation: icon-loading 2s linear infinite;
  62. animation: icon-loading 2s linear infinite;
  63. }
  64. @-webkit-keyframes icon-loading {
  65. from {
  66. -webkit-transform: rotate(0deg);
  67. transform: rotate(0deg);
  68. }
  69. to {
  70. -webkit-transform: rotate(360deg);
  71. transform: rotate(360deg);
  72. }
  73. }
  74. @keyframes icon-loading {
  75. from {
  76. -webkit-transform: rotate(0deg);
  77. transform: rotate(0deg);
  78. }
  79. to {
  80. -webkit-transform: rotate(360deg);
  81. transform: rotate(360deg);
  82. }
  83. }
  84.  
  85.  
  86. /*******************************
  87. States
  88. *******************************/
  89.  
  90. i.icon.hover {
  91. opacity: 1 !important;
  92. }
  93. i.icon.active {
  94. opacity: 1 !important;
  95. }
  96. i.emphasized.icon {
  97. opacity: 1 !important;
  98. }
  99. i.disabled.icon {
  100. opacity: 0.45 !important;
  101. }
  102.  
  103.  
  104. /*******************************
  105. Variations
  106. *******************************/
  107.  
  108.  
  109. /*-------------------
  110. Fitted
  111. --------------------*/
  112.  
  113. i.fitted.icon {
  114. width: auto;
  115. margin: 0em;
  116. }
  117.  
  118. /*-------------------
  119. Link
  120. --------------------*/
  121.  
  122. i.link.icon,
  123. i.link.icons {
  124. cursor: pointer;
  125. opacity: 0.8;
  126. -webkit-transition: opacity 0.1s ease;
  127. transition: opacity 0.1s ease;
  128. }
  129. i.link.icon:hover,
  130. i.link.icons:hover {
  131. opacity: 1 !important;
  132. }
  133.  
  134. /*-------------------
  135. Circular
  136. --------------------*/
  137.  
  138. i.circular.icon {
  139. border-radius: 500em !important;
  140. line-height: 1 !important;
  141. padding: 0.5em 0.5em !important;
  142. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  143. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  144. width: 2em !important;
  145. height: 2em !important;
  146. }
  147. i.circular.inverted.icon {
  148. border: none;
  149. -webkit-box-shadow: none;
  150. box-shadow: none;
  151. }
  152.  
  153. /*-------------------
  154. Flipped
  155. --------------------*/
  156.  
  157. i.flipped.icon,
  158. i.horizontally.flipped.icon {
  159. -webkit-transform: scale(-1, 1);
  160. transform: scale(-1, 1);
  161. }
  162. i.vertically.flipped.icon {
  163. -webkit-transform: scale(1, -1);
  164. transform: scale(1, -1);
  165. }
  166.  
  167. /*-------------------
  168. Rotated
  169. --------------------*/
  170.  
  171. i.rotated.icon,
  172. i.right.rotated.icon,
  173. i.clockwise.rotated.icon {
  174. -webkit-transform: rotate(90deg);
  175. transform: rotate(90deg);
  176. }
  177. i.left.rotated.icon,
  178. i.counterclockwise.rotated.icon {
  179. -webkit-transform: rotate(-90deg);
  180. transform: rotate(-90deg);
  181. }
  182.  
  183. /*-------------------
  184. Bordered
  185. --------------------*/
  186.  
  187. i.bordered.icon {
  188. line-height: 1;
  189. vertical-align: baseline;
  190. width: 2em;
  191. height: 2em;
  192. padding: 0.5em 0.41em !important;
  193. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  194. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  195. }
  196. i.bordered.inverted.icon {
  197. border: none;
  198. -webkit-box-shadow: none;
  199. box-shadow: none;
  200. }
  201.  
  202. /*-------------------
  203. Inverted
  204. --------------------*/
  205.  
  206.  
  207. /* Inverted Shapes */
  208. i.inverted.bordered.icon,
  209. i.inverted.circular.icon {
  210. background-color: #1B1C1D !important;
  211. color: #FFFFFF !important;
  212. }
  213. i.inverted.icon {
  214. color: #FFFFFF;
  215. }
  216.  
  217. /*-------------------
  218. Colors
  219. --------------------*/
  220.  
  221.  
  222. /* Red */
  223. i.red.icon {
  224. color: #DB2828 !important;
  225. }
  226. i.inverted.red.icon {
  227. color: #FF695E !important;
  228. }
  229. i.inverted.bordered.red.icon,
  230. i.inverted.circular.red.icon {
  231. background-color: #DB2828 !important;
  232. color: #FFFFFF !important;
  233. }
  234.  
  235. /* Orange */
  236. i.orange.icon {
  237. color: #F2711C !important;
  238. }
  239. i.inverted.orange.icon {
  240. color: #FF851B !important;
  241. }
  242. i.inverted.bordered.orange.icon,
  243. i.inverted.circular.orange.icon {
  244. background-color: #F2711C !important;
  245. color: #FFFFFF !important;
  246. }
  247.  
  248. /* Yellow */
  249. i.yellow.icon {
  250. color: #FBBD08 !important;
  251. }
  252. i.inverted.yellow.icon {
  253. color: #FFE21F !important;
  254. }
  255. i.inverted.bordered.yellow.icon,
  256. i.inverted.circular.yellow.icon {
  257. background-color: #FBBD08 !important;
  258. color: #FFFFFF !important;
  259. }
  260.  
  261. /* Olive */
  262. i.olive.icon {
  263. color: #B5CC18 !important;
  264. }
  265. i.inverted.olive.icon {
  266. color: #D9E778 !important;
  267. }
  268. i.inverted.bordered.olive.icon,
  269. i.inverted.circular.olive.icon {
  270. background-color: #B5CC18 !important;
  271. color: #FFFFFF !important;
  272. }
  273.  
  274. /* Green */
  275. i.green.icon {
  276. color: #21BA45 !important;
  277. }
  278. i.inverted.green.icon {
  279. color: #2ECC40 !important;
  280. }
  281. i.inverted.bordered.green.icon,
  282. i.inverted.circular.green.icon {
  283. background-color: #21BA45 !important;
  284. color: #FFFFFF !important;
  285. }
  286.  
  287. /* Teal */
  288. i.teal.icon {
  289. color: #00B5AD !important;
  290. }
  291. i.inverted.teal.icon {
  292. color: #6DFFFF !important;
  293. }
  294. i.inverted.bordered.teal.icon,
  295. i.inverted.circular.teal.icon {
  296. background-color: #00B5AD !important;
  297. color: #FFFFFF !important;
  298. }
  299.  
  300. /* Blue */
  301. i.blue.icon {
  302. color: #2185D0 !important;
  303. }
  304. i.inverted.blue.icon {
  305. color: #54C8FF !important;
  306. }
  307. i.inverted.bordered.blue.icon,
  308. i.inverted.circular.blue.icon {
  309. background-color: #2185D0 !important;
  310. color: #FFFFFF !important;
  311. }
  312.  
  313. /* Violet */
  314. i.violet.icon {
  315. color: #6435C9 !important;
  316. }
  317. i.inverted.violet.icon {
  318. color: #A291FB !important;
  319. }
  320. i.inverted.bordered.violet.icon,
  321. i.inverted.circular.violet.icon {
  322. background-color: #6435C9 !important;
  323. color: #FFFFFF !important;
  324. }
  325.  
  326. /* Purple */
  327. i.purple.icon {
  328. color: #A333C8 !important;
  329. }
  330. i.inverted.purple.icon {
  331. color: #DC73FF !important;
  332. }
  333. i.inverted.bordered.purple.icon,
  334. i.inverted.circular.purple.icon {
  335. background-color: #A333C8 !important;
  336. color: #FFFFFF !important;
  337. }
  338.  
  339. /* Pink */
  340. i.pink.icon {
  341. color: #E03997 !important;
  342. }
  343. i.inverted.pink.icon {
  344. color: #FF8EDF !important;
  345. }
  346. i.inverted.bordered.pink.icon,
  347. i.inverted.circular.pink.icon {
  348. background-color: #E03997 !important;
  349. color: #FFFFFF !important;
  350. }
  351.  
  352. /* Brown */
  353. i.brown.icon {
  354. color: #A5673F !important;
  355. }
  356. i.inverted.brown.icon {
  357. color: #D67C1C !important;
  358. }
  359. i.inverted.bordered.brown.icon,
  360. i.inverted.circular.brown.icon {
  361. background-color: #A5673F !important;
  362. color: #FFFFFF !important;
  363. }
  364.  
  365. /* Grey */
  366. i.grey.icon {
  367. color: #767676 !important;
  368. }
  369. i.inverted.grey.icon {
  370. color: #DCDDDE !important;
  371. }
  372. i.inverted.bordered.grey.icon,
  373. i.inverted.circular.grey.icon {
  374. background-color: #767676 !important;
  375. color: #FFFFFF !important;
  376. }
  377.  
  378. /* Black */
  379. i.black.icon {
  380. color: #1B1C1D !important;
  381. }
  382. i.inverted.black.icon {
  383. color: #545454 !important;
  384. }
  385. i.inverted.bordered.black.icon,
  386. i.inverted.circular.black.icon {
  387. background-color: #1B1C1D !important;
  388. color: #FFFFFF !important;
  389. }
  390.  
  391. /*-------------------
  392. Sizes
  393. --------------------*/
  394.  
  395. i.mini.icon,
  396. i.mini.icons {
  397. line-height: 1;
  398. font-size: 0.4em;
  399. }
  400. i.tiny.icon,
  401. i.tiny.icons {
  402. line-height: 1;
  403. font-size: 0.5em;
  404. }
  405. i.small.icon,
  406. i.small.icons {
  407. line-height: 1;
  408. font-size: 0.75em;
  409. }
  410. i.icon,
  411. i.icons {
  412. font-size: 1em;
  413. }
  414. i.large.icon,
  415. i.large.icons {
  416. line-height: 1;
  417. vertical-align: middle;
  418. font-size: 1.5em;
  419. }
  420. i.big.icon,
  421. i.big.icons {
  422. line-height: 1;
  423. vertical-align: middle;
  424. font-size: 2em;
  425. }
  426. i.huge.icon,
  427. i.huge.icons {
  428. line-height: 1;
  429. vertical-align: middle;
  430. font-size: 4em;
  431. }
  432. i.massive.icon,
  433. i.massive.icons {
  434. line-height: 1;
  435. vertical-align: middle;
  436. font-size: 8em;
  437. }
  438.  
  439.  
  440. /*******************************
  441. Groups
  442. *******************************/
  443.  
  444. i.icons {
  445. display: inline-block;
  446. position: relative;
  447. line-height: 1;
  448. }
  449. i.icons .icon {
  450. position: absolute;
  451. top: 50%;
  452. left: 50%;
  453. -webkit-transform: translateX(-50%) translateY(-50%);
  454. transform: translateX(-50%) translateY(-50%);
  455. margin: 0em;
  456. margin: 0;
  457. }
  458. i.icons .icon:first-child {
  459. position: static;
  460. width: auto;
  461. height: auto;
  462. vertical-align: top;
  463. -webkit-transform: none;
  464. transform: none;
  465. margin-right: 0.25rem;
  466. }
  467.  
  468. /* Corner Icon */
  469. i.icons .corner.icon {
  470. top: auto;
  471. left: auto;
  472. right: 0;
  473. bottom: 0;
  474. -webkit-transform: none;
  475. transform: none;
  476. font-size: 0.45em;
  477. text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
  478. }
  479. i.icons .top.right.corner.icon {
  480. top: 0;
  481. left: auto;
  482. right: 0;
  483. bottom: auto;
  484. }
  485. i.icons .top.left.corner.icon {
  486. top: 0;
  487. left: 0;
  488. right: auto;
  489. bottom: auto;
  490. }
  491. i.icons .bottom.left.corner.icon {
  492. top: auto;
  493. left: 0;
  494. right: auto;
  495. bottom: 0;
  496. }
  497. i.icons .bottom.right.corner.icon {
  498. top: auto;
  499. left: auto;
  500. right: 0;
  501. bottom: 0;
  502. }
  503. i.icons .inverted.corner.icon {
  504. text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
  505. }
  506. /*
  507. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  508. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  509. */
  510.  
  511.  
  512. /*******************************
  513.  
  514. Semantic-UI integration of font-awesome :
  515.  
  516. ///class names are separated
  517. i.icon.circle => i.icon.circle
  518. i.icon.circle-o => i.icon.circle.outline
  519.  
  520. //abbreviation are replaced by full letters:
  521. i.icon.ellipsis-h => i.icon.ellipsis.horizontal
  522. i.icon.ellipsis-v => i.icon.ellipsis.vertical
  523. .alpha => .i.icon.alphabet
  524. .asc => .i.icon.ascending
  525. .desc => .i.icon.descending
  526. .alt =>.alternate
  527.  
  528. ASCII order is conserved for easier maintenance.
  529.  
  530. Icons that only have one style 'outline', 'square' etc do not require this class
  531. for instance `lemon icon` not `lemon outline icon` since there is only one lemon
  532.  
  533. *******************************/
  534.  
  535.  
  536.  
  537. /*******************************
  538. Icons
  539. *******************************/
  540.  
  541.  
  542. /* Web Content */
  543. i.icon.search:before {
  544. content: "\f002";
  545. }
  546. i.icon.mail.outline:before {
  547. content: "\f003";
  548. }
  549. i.icon.signal:before {
  550. content: "\f012";
  551. }
  552. i.icon.setting:before {
  553. content: "\f013";
  554. }
  555. i.icon.home:before {
  556. content: "\f015";
  557. }
  558. i.icon.inbox:before {
  559. content: "\f01c";
  560. }
  561. i.icon.browser:before {
  562. content: "\f022";
  563. }
  564. i.icon.tag:before {
  565. content: "\f02b";
  566. }
  567. i.icon.tags:before {
  568. content: "\f02c";
  569. }
  570. i.icon.image:before {
  571. content: "\f03e";
  572. }
  573. i.icon.calendar:before {
  574. content: "\f073";
  575. }
  576. i.icon.comment:before {
  577. content: "\f075";
  578. }
  579. i.icon.shop:before {
  580. content: "\f07a";
  581. }
  582. i.icon.comments:before {
  583. content: "\f086";
  584. }
  585. i.icon.external:before {
  586. content: "\f08e";
  587. }
  588. i.icon.privacy:before {
  589. content: "\f084";
  590. }
  591. i.icon.settings:before {
  592. content: "\f085";
  593. }
  594. i.icon.comments:before {
  595. content: "\f086";
  596. }
  597. i.icon.external:before {
  598. content: "\f08e";
  599. }
  600. i.icon.trophy:before {
  601. content: "\f091";
  602. }
  603. i.icon.payment:before {
  604. content: "\f09d";
  605. }
  606. i.icon.feed:before {
  607. content: "\f09e";
  608. }
  609. i.icon.alarm.outline:before {
  610. content: "\f0a2";
  611. }
  612. i.icon.tasks:before {
  613. content: "\f0ae";
  614. }
  615. i.icon.cloud:before {
  616. content: "\f0c2";
  617. }
  618. i.icon.lab:before {
  619. content: "\f0c3";
  620. }
  621. i.icon.mail:before {
  622. content: "\f0e0";
  623. }
  624. i.icon.dashboard:before {
  625. content: "\f0e4";
  626. }
  627. i.icon.comment.outline:before {
  628. content: "\f0e5";
  629. }
  630. i.icon.comments.outline:before {
  631. content: "\f0e6";
  632. }
  633. i.icon.sitemap:before {
  634. content: "\f0e8";
  635. }
  636. i.icon.idea:before {
  637. content: "\f0eb";
  638. }
  639. i.icon.alarm:before {
  640. content: "\f0f3";
  641. }
  642. i.icon.terminal:before {
  643. content: "\f120";
  644. }
  645. i.icon.code:before {
  646. content: "\f121";
  647. }
  648. i.icon.protect:before {
  649. content: "\f132";
  650. }
  651. i.icon.calendar.outline:before {
  652. content: "\f133";
  653. }
  654. i.icon.ticket:before {
  655. content: "\f145";
  656. }
  657. i.icon.external.square:before {
  658. content: "\f14c";
  659. }
  660. i.icon.bug:before {
  661. content: "\f188";
  662. }
  663. i.icon.mail.square:before {
  664. content: "\f199";
  665. }
  666. i.icon.history:before {
  667. content: "\f1da";
  668. }
  669. i.icon.options:before {
  670. content: "\f1de";
  671. }
  672. i.icon.text.telephone:before {
  673. content: "\f1e4";
  674. }
  675. i.icon.find:before {
  676. content: "\f1e5";
  677. }
  678. i.icon.alarm.mute:before {
  679. content: "\f1f6";
  680. }
  681. i.icon.alarm.mute.outline:before {
  682. content: "\f1f7";
  683. }
  684. i.icon.copyright:before {
  685. content: "\f1f9";
  686. }
  687. i.icon.at:before {
  688. content: "\f1fa";
  689. }
  690. i.icon.eyedropper:before {
  691. content: "\f1fb";
  692. }
  693. i.icon.paint.brush:before {
  694. content: "\f1fc";
  695. }
  696. i.icon.heartbeat:before {
  697. content: "\f21e";
  698. }
  699. i.icon.mouse.pointer:before {
  700. content: "\f245";
  701. }
  702. i.icon.hourglass.empty:before {
  703. content: "\f250";
  704. }
  705. i.icon.hourglass.start:before {
  706. content: "\f251";
  707. }
  708. i.icon.hourglass.half:before {
  709. content: "\f252";
  710. }
  711. i.icon.hourglass.end:before {
  712. content: "\f253";
  713. }
  714. i.icon.hourglass.full:before {
  715. content: "\f254";
  716. }
  717. i.icon.hand.pointer:before {
  718. content: "\f25a";
  719. }
  720. i.icon.trademark:before {
  721. content: "\f25c";
  722. }
  723. i.icon.registered:before {
  724. content: "\f25d";
  725. }
  726. i.icon.creative.commons:before {
  727. content: "\f25e";
  728. }
  729. i.icon.add.to.calendar:before {
  730. content: "\f271";
  731. }
  732. i.icon.remove.from.calendar:before {
  733. content: "\f272";
  734. }
  735. i.icon.delete.calendar:before {
  736. content: "\f273";
  737. }
  738. i.icon.checked.calendar:before {
  739. content: "\f274";
  740. }
  741. i.icon.industry:before {
  742. content: "\f275";
  743. }
  744. i.icon.shopping.bag:before {
  745. content: "\f290";
  746. }
  747. i.icon.shopping.basket:before {
  748. content: "\f291";
  749. }
  750. i.icon.hashtag:before {
  751. content: "\f292";
  752. }
  753. i.icon.percent:before {
  754. content: "\f295";
  755. }
  756. i.icon.handshake:before {
  757. content: "\f2b5";
  758. }
  759. i.icon.open.envelope:before {
  760. content: "\f2b6";
  761. }
  762. i.icon.open.envelope.outline:before {
  763. content: "\f2b7";
  764. }
  765. i.icon.address.book:before {
  766. content: "\f2b9";
  767. }
  768. i.icon.address.book.outline:before {
  769. content: "\f2ba";
  770. }
  771. i.icon.address.card:before {
  772. content: "\f2bb";
  773. }
  774. i.icon.address.card.outline:before {
  775. content: "\f2bc";
  776. }
  777. i.icon.id.badge:before {
  778. content: "\f2c1";
  779. }
  780. i.icon.id.card:before {
  781. content: "\f2c2";
  782. }
  783. i.icon.id.card.outline:before {
  784. content: "\f2c3";
  785. }
  786. i.icon.podcast:before {
  787. content: "\f2ce";
  788. }
  789. i.icon.window.maximize:before {
  790. content: "\f2d0";
  791. }
  792. i.icon.window.minimize:before {
  793. content: "\f2d1";
  794. }
  795. i.icon.window.restore:before {
  796. content: "\f2d2";
  797. }
  798. i.icon.window.close:before {
  799. content: "\f2d3";
  800. }
  801. i.icon.window.close.outline:before {
  802. content: "\f2d4";
  803. }
  804.  
  805. /* User Actions */
  806. i.icon.wait:before {
  807. content: "\f017";
  808. }
  809. i.icon.download:before {
  810. content: "\f019";
  811. }
  812. i.icon.repeat:before {
  813. content: "\f01e";
  814. }
  815. i.icon.refresh:before {
  816. content: "\f021";
  817. }
  818. i.icon.lock:before {
  819. content: "\f023";
  820. }
  821. i.icon.bookmark:before {
  822. content: "\f02e";
  823. }
  824. i.icon.print:before {
  825. content: "\f02f";
  826. }
  827. i.icon.write:before {
  828. content: "\f040";
  829. }
  830. i.icon.adjust:before {
  831. content: "\f042";
  832. }
  833. i.icon.theme:before {
  834. content: "\f043";
  835. }
  836. i.icon.edit:before {
  837. content: "\f044";
  838. }
  839. i.icon.external.share:before {
  840. content: "\f045";
  841. }
  842. i.icon.ban:before {
  843. content: "\f05e";
  844. }
  845. i.icon.mail.forward:before {
  846. content: "\f064";
  847. }
  848. i.icon.share:before {
  849. content: "\f064";
  850. }
  851. i.icon.expand:before {
  852. content: "\f065";
  853. }
  854. i.icon.compress:before {
  855. content: "\f066";
  856. }
  857. i.icon.unhide:before {
  858. content: "\f06e";
  859. }
  860. i.icon.hide:before {
  861. content: "\f070";
  862. }
  863. i.icon.random:before {
  864. content: "\f074";
  865. }
  866. i.icon.retweet:before {
  867. content: "\f079";
  868. }
  869. i.icon.sign.out:before {
  870. content: "\f08b";
  871. }
  872. i.icon.pin:before {
  873. content: "\f08d";
  874. }
  875. i.icon.sign.in:before {
  876. content: "\f090";
  877. }
  878. i.icon.upload:before {
  879. content: "\f093";
  880. }
  881. i.icon.call:before {
  882. content: "\f095";
  883. }
  884. i.icon.remove.bookmark:before {
  885. content: "\f097";
  886. }
  887. i.icon.call.square:before {
  888. content: "\f098";
  889. }
  890. i.icon.unlock:before {
  891. content: "\f09c";
  892. }
  893. i.icon.configure:before {
  894. content: "\f0ad";
  895. }
  896. i.icon.filter:before {
  897. content: "\f0b0";
  898. }
  899. i.icon.wizard:before {
  900. content: "\f0d0";
  901. }
  902. i.icon.undo:before {
  903. content: "\f0e2";
  904. }
  905. i.icon.exchange:before {
  906. content: "\f0ec";
  907. }
  908. i.icon.cloud.download:before {
  909. content: "\f0ed";
  910. }
  911. i.icon.cloud.upload:before {
  912. content: "\f0ee";
  913. }
  914. i.icon.reply:before {
  915. content: "\f112";
  916. }
  917. i.icon.reply.all:before {
  918. content: "\f122";
  919. }
  920. i.icon.erase:before {
  921. content: "\f12d";
  922. }
  923. i.icon.unlock.alternate:before {
  924. content: "\f13e";
  925. }
  926. i.icon.write.square:before {
  927. content: "\f14b";
  928. }
  929. i.icon.share.square:before {
  930. content: "\f14d";
  931. }
  932. i.icon.archive:before {
  933. content: "\f187";
  934. }
  935. i.icon.translate:before {
  936. content: "\f1ab";
  937. }
  938. i.icon.recycle:before {
  939. content: "\f1b8";
  940. }
  941. i.icon.send:before {
  942. content: "\f1d8";
  943. }
  944. i.icon.send.outline:before {
  945. content: "\f1d9";
  946. }
  947. i.icon.share.alternate:before {
  948. content: "\f1e0";
  949. }
  950. i.icon.share.alternate.square:before {
  951. content: "\f1e1";
  952. }
  953. i.icon.add.to.cart:before {
  954. content: "\f217";
  955. }
  956. i.icon.in.cart:before {
  957. content: "\f218";
  958. }
  959. i.icon.add.user:before {
  960. content: "\f234";
  961. }
  962. i.icon.remove.user:before {
  963. content: "\f235";
  964. }
  965. i.icon.object.group:before {
  966. content: "\f247";
  967. }
  968. i.icon.object.ungroup:before {
  969. content: "\f248";
  970. }
  971. i.icon.clone:before {
  972. content: "\f24d";
  973. }
  974. i.icon.talk:before {
  975. content: "\f27a";
  976. }
  977. i.icon.talk.outline:before {
  978. content: "\f27b";
  979. }
  980.  
  981. /* Messages */
  982. i.icon.help.circle:before {
  983. content: "\f059";
  984. }
  985. i.icon.info.circle:before {
  986. content: "\f05a";
  987. }
  988. i.icon.warning.circle:before {
  989. content: "\f06a";
  990. }
  991. i.icon.warning.sign:before {
  992. content: "\f071";
  993. }
  994. i.icon.announcement:before {
  995. content: "\f0a1";
  996. }
  997. i.icon.help:before {
  998. content: "\f128";
  999. }
  1000. i.icon.info:before {
  1001. content: "\f129";
  1002. }
  1003. i.icon.warning:before {
  1004. content: "\f12a";
  1005. }
  1006. i.icon.birthday:before {
  1007. content: "\f1fd";
  1008. }
  1009. i.icon.help.circle.outline:before {
  1010. content: "\f29c";
  1011. }
  1012.  
  1013. /* Users */
  1014. i.icon.user:before {
  1015. content: "\f007";
  1016. }
  1017. i.icon.users:before {
  1018. content: "\f0c0";
  1019. }
  1020. i.icon.doctor:before {
  1021. content: "\f0f0";
  1022. }
  1023. i.icon.handicap:before {
  1024. content: "\f193";
  1025. }
  1026. i.icon.student:before {
  1027. content: "\f19d";
  1028. }
  1029. i.icon.child:before {
  1030. content: "\f1ae";
  1031. }
  1032. i.icon.spy:before {
  1033. content: "\f21b";
  1034. }
  1035. i.icon.user.circle:before {
  1036. content: "\f2bd";
  1037. }
  1038. i.icon.user.circle.outline:before {
  1039. content: "\f2be";
  1040. }
  1041. i.icon.user.outline:before {
  1042. content: "\f2c0";
  1043. }
  1044.  
  1045. /* Gender & Sexuality */
  1046. i.icon.female:before {
  1047. content: "\f182";
  1048. }
  1049. i.icon.male:before {
  1050. content: "\f183";
  1051. }
  1052. i.icon.woman:before {
  1053. content: "\f221";
  1054. }
  1055. i.icon.man:before {
  1056. content: "\f222";
  1057. }
  1058. i.icon.non.binary.transgender:before {
  1059. content: "\f223";
  1060. }
  1061. i.icon.intergender:before {
  1062. content: "\f224";
  1063. }
  1064. i.icon.transgender:before {
  1065. content: "\f225";
  1066. }
  1067. i.icon.lesbian:before {
  1068. content: "\f226";
  1069. }
  1070. i.icon.gay:before {
  1071. content: "\f227";
  1072. }
  1073. i.icon.heterosexual:before {
  1074. content: "\f228";
  1075. }
  1076. i.icon.other.gender:before {
  1077. content: "\f229";
  1078. }
  1079. i.icon.other.gender.vertical:before {
  1080. content: "\f22a";
  1081. }
  1082. i.icon.other.gender.horizontal:before {
  1083. content: "\f22b";
  1084. }
  1085. i.icon.neuter:before {
  1086. content: "\f22c";
  1087. }
  1088. i.icon.genderless:before {
  1089. content: "\f22d";
  1090. }
  1091.  
  1092. /* Accessibility */
  1093. i.icon.universal.access:before {
  1094. content: "\f29a";
  1095. }
  1096. i.icon.wheelchair:before {
  1097. content: "\f29b";
  1098. }
  1099. i.icon.blind:before {
  1100. content: "\f29d";
  1101. }
  1102. i.icon.audio.description:before {
  1103. content: "\f29e";
  1104. }
  1105. i.icon.volume.control.phone:before {
  1106. content: "\f2a0";
  1107. }
  1108. i.icon.braille:before {
  1109. content: "\f2a1";
  1110. }
  1111. i.icon.asl:before {
  1112. content: "\f2a3";
  1113. }
  1114. i.icon.assistive.listening.systems:before {
  1115. content: "\f2a2";
  1116. }
  1117. i.icon.deafness:before {
  1118. content: "\f2a4";
  1119. }
  1120. i.icon.sign.language:before {
  1121. content: "\f2a7";
  1122. }
  1123. i.icon.low.vision:before {
  1124. content: "\f2a8";
  1125. }
  1126.  
  1127. /* View Adjustment */
  1128. i.icon.block.layout:before {
  1129. content: "\f009";
  1130. }
  1131. i.icon.grid.layout:before {
  1132. content: "\f00a";
  1133. }
  1134. i.icon.list.layout:before {
  1135. content: "\f00b";
  1136. }
  1137. i.icon.zoom:before {
  1138. content: "\f00e";
  1139. }
  1140. i.icon.zoom.out:before {
  1141. content: "\f010";
  1142. }
  1143. i.icon.resize.vertical:before {
  1144. content: "\f07d";
  1145. }
  1146. i.icon.resize.horizontal:before {
  1147. content: "\f07e";
  1148. }
  1149. i.icon.maximize:before {
  1150. content: "\f0b2";
  1151. }
  1152. i.icon.crop:before {
  1153. content: "\f125";
  1154. }
  1155.  
  1156. /* Literal Objects */
  1157. i.icon.cocktail:before {
  1158. content: "\f000";
  1159. }
  1160. i.icon.road:before {
  1161. content: "\f018";
  1162. }
  1163. i.icon.flag:before {
  1164. content: "\f024";
  1165. }
  1166. i.icon.book:before {
  1167. content: "\f02d";
  1168. }
  1169. i.icon.gift:before {
  1170. content: "\f06b";
  1171. }
  1172. i.icon.leaf:before {
  1173. content: "\f06c";
  1174. }
  1175. i.icon.fire:before {
  1176. content: "\f06d";
  1177. }
  1178. i.icon.plane:before {
  1179. content: "\f072";
  1180. }
  1181. i.icon.magnet:before {
  1182. content: "\f076";
  1183. }
  1184. i.icon.lemon:before {
  1185. content: "\f094";
  1186. }
  1187. i.icon.world:before {
  1188. content: "\f0ac";
  1189. }
  1190. i.icon.travel:before {
  1191. content: "\f0b1";
  1192. }
  1193. i.icon.shipping:before {
  1194. content: "\f0d1";
  1195. }
  1196. i.icon.money:before {
  1197. content: "\f0d6";
  1198. }
  1199. i.icon.legal:before {
  1200. content: "\f0e3";
  1201. }
  1202. i.icon.lightning:before {
  1203. content: "\f0e7";
  1204. }
  1205. i.icon.umbrella:before {
  1206. content: "\f0e9";
  1207. }
  1208. i.icon.treatment:before {
  1209. content: "\f0f1";
  1210. }
  1211. i.icon.suitcase:before {
  1212. content: "\f0f2";
  1213. }
  1214. i.icon.bar:before {
  1215. content: "\f0fc";
  1216. }
  1217. i.icon.flag.outline:before {
  1218. content: "\f11d";
  1219. }
  1220. i.icon.flag.checkered:before {
  1221. content: "\f11e";
  1222. }
  1223. i.icon.puzzle:before {
  1224. content: "\f12e";
  1225. }
  1226. i.icon.fire.extinguisher:before {
  1227. content: "\f134";
  1228. }
  1229. i.icon.rocket:before {
  1230. content: "\f135";
  1231. }
  1232. i.icon.anchor:before {
  1233. content: "\f13d";
  1234. }
  1235. i.icon.bullseye:before {
  1236. content: "\f140";
  1237. }
  1238. i.icon.sun:before {
  1239. content: "\f185";
  1240. }
  1241. i.icon.moon:before {
  1242. content: "\f186";
  1243. }
  1244. i.icon.fax:before {
  1245. content: "\f1ac";
  1246. }
  1247. i.icon.life.ring:before {
  1248. content: "\f1cd";
  1249. }
  1250. i.icon.bomb:before {
  1251. content: "\f1e2";
  1252. }
  1253. i.icon.soccer:before {
  1254. content: "\f1e3";
  1255. }
  1256. i.icon.calculator:before {
  1257. content: "\f1ec";
  1258. }
  1259. i.icon.diamond:before {
  1260. content: "\f219";
  1261. }
  1262. i.icon.sticky.note:before {
  1263. content: "\f249";
  1264. }
  1265. i.icon.sticky.note.outline:before {
  1266. content: "\f24a";
  1267. }
  1268. i.icon.law:before {
  1269. content: "\f24e";
  1270. }
  1271. i.icon.hand.peace:before {
  1272. content: "\f25b";
  1273. }
  1274. i.icon.hand.rock:before {
  1275. content: "\f255";
  1276. }
  1277. i.icon.hand.paper:before {
  1278. content: "\f256";
  1279. }
  1280. i.icon.hand.scissors:before {
  1281. content: "\f257";
  1282. }
  1283. i.icon.hand.lizard:before {
  1284. content: "\f258";
  1285. }
  1286. i.icon.hand.spock:before {
  1287. content: "\f259";
  1288. }
  1289. i.icon.tv:before {
  1290. content: "\f26c";
  1291. }
  1292. i.icon.thermometer.full:before {
  1293. content: "\f2c7";
  1294. }
  1295. i.icon.thermometer.three.quarters:before {
  1296. content: "\f2c8";
  1297. }
  1298. i.icon.thermometer.half:before {
  1299. content: "\f2c9";
  1300. }
  1301. i.icon.thermometer.quarter:before {
  1302. content: "\f2ca";
  1303. }
  1304. i.icon.thermometer.empty:before {
  1305. content: "\f2cb";
  1306. }
  1307. i.icon.shower:before {
  1308. content: "\f2cc";
  1309. }
  1310. i.icon.bathtub:before {
  1311. content: "\f2cd";
  1312. }
  1313. i.icon.snowflake:before {
  1314. content: "\f2dc";
  1315. }
  1316.  
  1317. /* Shapes */
  1318. i.icon.crosshairs:before {
  1319. content: "\f05b";
  1320. }
  1321. i.icon.asterisk:before {
  1322. content: "\f069";
  1323. }
  1324. i.icon.square.outline:before {
  1325. content: "\f096";
  1326. }
  1327. i.icon.certificate:before {
  1328. content: "\f0a3";
  1329. }
  1330. i.icon.square:before {
  1331. content: "\f0c8";
  1332. }
  1333. i.icon.quote.left:before {
  1334. content: "\f10d";
  1335. }
  1336. i.icon.quote.right:before {
  1337. content: "\f10e";
  1338. }
  1339. i.icon.spinner:before {
  1340. content: "\f110";
  1341. }
  1342. i.icon.circle:before {
  1343. content: "\f111";
  1344. }
  1345. i.icon.ellipsis.horizontal:before {
  1346. content: "\f141";
  1347. }
  1348. i.icon.ellipsis.vertical:before {
  1349. content: "\f142";
  1350. }
  1351. i.icon.cube:before {
  1352. content: "\f1b2";
  1353. }
  1354. i.icon.cubes:before {
  1355. content: "\f1b3";
  1356. }
  1357. i.icon.circle.notched:before {
  1358. content: "\f1ce";
  1359. }
  1360. i.icon.circle.thin:before {
  1361. content: "\f1db";
  1362. }
  1363.  
  1364. /* Item Selection */
  1365. i.icon.checkmark:before {
  1366. content: "\f00c";
  1367. }
  1368. i.icon.remove:before {
  1369. content: "\f00d";
  1370. }
  1371. i.icon.checkmark.box:before {
  1372. content: "\f046";
  1373. }
  1374. i.icon.move:before {
  1375. content: "\f047";
  1376. }
  1377. i.icon.add.circle:before {
  1378. content: "\f055";
  1379. }
  1380. i.icon.minus.circle:before {
  1381. content: "\f056";
  1382. }
  1383. i.icon.remove.circle:before {
  1384. content: "\f057";
  1385. }
  1386. i.icon.check.circle:before {
  1387. content: "\f058";
  1388. }
  1389. i.icon.remove.circle.outline:before {
  1390. content: "\f05c";
  1391. }
  1392. i.icon.check.circle.outline:before {
  1393. content: "\f05d";
  1394. }
  1395. i.icon.plus:before {
  1396. content: "\f067";
  1397. }
  1398. i.icon.minus:before {
  1399. content: "\f068";
  1400. }
  1401. i.icon.add.square:before {
  1402. content: "\f0fe";
  1403. }
  1404. i.icon.radio:before {
  1405. content: "\f10c";
  1406. }
  1407. i.icon.minus.square:before {
  1408. content: "\f146";
  1409. }
  1410. i.icon.minus.square.outline:before {
  1411. content: "\f147";
  1412. }
  1413. i.icon.check.square:before {
  1414. content: "\f14a";
  1415. }
  1416. i.icon.selected.radio:before {
  1417. content: "\f192";
  1418. }
  1419. i.icon.plus.square.outline:before {
  1420. content: "\f196";
  1421. }
  1422. i.icon.toggle.off:before {
  1423. content: "\f204";
  1424. }
  1425. i.icon.toggle.on:before {
  1426. content: "\f205";
  1427. }
  1428.  
  1429. /* Media */
  1430. i.icon.film:before {
  1431. content: "\f008";
  1432. }
  1433. i.icon.sound:before {
  1434. content: "\f025";
  1435. }
  1436. i.icon.photo:before {
  1437. content: "\f030";
  1438. }
  1439. i.icon.bar.chart:before {
  1440. content: "\f080";
  1441. }
  1442. i.icon.camera.retro:before {
  1443. content: "\f083";
  1444. }
  1445. i.icon.newspaper:before {
  1446. content: "\f1ea";
  1447. }
  1448. i.icon.area.chart:before {
  1449. content: "\f1fe";
  1450. }
  1451. i.icon.pie.chart:before {
  1452. content: "\f200";
  1453. }
  1454. i.icon.line.chart:before {
  1455. content: "\f201";
  1456. }
  1457.  
  1458. /* Pointers */
  1459. i.icon.arrow.circle.outline.down:before {
  1460. content: "\f01a";
  1461. }
  1462. i.icon.arrow.circle.outline.up:before {
  1463. content: "\f01b";
  1464. }
  1465. i.icon.chevron.left:before {
  1466. content: "\f053";
  1467. }
  1468. i.icon.chevron.right:before {
  1469. content: "\f054";
  1470. }
  1471. i.icon.arrow.left:before {
  1472. content: "\f060";
  1473. }
  1474. i.icon.arrow.right:before {
  1475. content: "\f061";
  1476. }
  1477. i.icon.arrow.up:before {
  1478. content: "\f062";
  1479. }
  1480. i.icon.arrow.down:before {
  1481. content: "\f063";
  1482. }
  1483. i.icon.chevron.up:before {
  1484. content: "\f077";
  1485. }
  1486. i.icon.chevron.down:before {
  1487. content: "\f078";
  1488. }
  1489. i.icon.pointing.right:before {
  1490. content: "\f0a4";
  1491. }
  1492. i.icon.pointing.left:before {
  1493. content: "\f0a5";
  1494. }
  1495. i.icon.pointing.up:before {
  1496. content: "\f0a6";
  1497. }
  1498. i.icon.pointing.down:before {
  1499. content: "\f0a7";
  1500. }
  1501. i.icon.arrow.circle.left:before {
  1502. content: "\f0a8";
  1503. }
  1504. i.icon.arrow.circle.right:before {
  1505. content: "\f0a9";
  1506. }
  1507. i.icon.arrow.circle.up:before {
  1508. content: "\f0aa";
  1509. }
  1510. i.icon.arrow.circle.down:before {
  1511. content: "\f0ab";
  1512. }
  1513. i.icon.caret.down:before {
  1514. content: "\f0d7";
  1515. }
  1516. i.icon.caret.up:before {
  1517. content: "\f0d8";
  1518. }
  1519. i.icon.caret.left:before {
  1520. content: "\f0d9";
  1521. }
  1522. i.icon.caret.right:before {
  1523. content: "\f0da";
  1524. }
  1525. i.icon.angle.double.left:before {
  1526. content: "\f100";
  1527. }
  1528. i.icon.angle.double.right:before {
  1529. content: "\f101";
  1530. }
  1531. i.icon.angle.double.up:before {
  1532. content: "\f102";
  1533. }
  1534. i.icon.angle.double.down:before {
  1535. content: "\f103";
  1536. }
  1537. i.icon.angle.left:before {
  1538. content: "\f104";
  1539. }
  1540. i.icon.angle.right:before {
  1541. content: "\f105";
  1542. }
  1543. i.icon.angle.up:before {
  1544. content: "\f106";
  1545. }
  1546. i.icon.angle.down:before {
  1547. content: "\f107";
  1548. }
  1549. i.icon.chevron.circle.left:before {
  1550. content: "\f137";
  1551. }
  1552. i.icon.chevron.circle.right:before {
  1553. content: "\f138";
  1554. }
  1555. i.icon.chevron.circle.up:before {
  1556. content: "\f139";
  1557. }
  1558. i.icon.chevron.circle.down:before {
  1559. content: "\f13a";
  1560. }
  1561. i.icon.toggle.down:before {
  1562. content: "\f150";
  1563. }
  1564. i.icon.toggle.up:before {
  1565. content: "\f151";
  1566. }
  1567. i.icon.toggle.right:before {
  1568. content: "\f152";
  1569. }
  1570. i.icon.long.arrow.down:before {
  1571. content: "\f175";
  1572. }
  1573. i.icon.long.arrow.up:before {
  1574. content: "\f176";
  1575. }
  1576. i.icon.long.arrow.left:before {
  1577. content: "\f177";
  1578. }
  1579. i.icon.long.arrow.right:before {
  1580. content: "\f178";
  1581. }
  1582. i.icon.arrow.circle.outline.right:before {
  1583. content: "\f18e";
  1584. }
  1585. i.icon.arrow.circle.outline.left:before {
  1586. content: "\f190";
  1587. }
  1588. i.icon.toggle.left:before {
  1589. content: "\f191";
  1590. }
  1591.  
  1592. /* Mobile */
  1593. i.icon.tablet:before {
  1594. content: "\f10a";
  1595. }
  1596. i.icon.mobile:before {
  1597. content: "\f10b";
  1598. }
  1599. i.icon.battery.full:before {
  1600. content: "\f240";
  1601. }
  1602. i.icon.battery.high:before {
  1603. content: "\f241";
  1604. }
  1605. i.icon.battery.medium:before {
  1606. content: "\f242";
  1607. }
  1608. i.icon.battery.low:before {
  1609. content: "\f243";
  1610. }
  1611. i.icon.battery.empty:before {
  1612. content: "\f244";
  1613. }
  1614.  
  1615. /* Computer */
  1616. i.icon.power:before {
  1617. content: "\f011";
  1618. }
  1619. i.icon.trash.outline:before {
  1620. content: "\f014";
  1621. }
  1622. i.icon.disk.outline:before {
  1623. content: "\f0a0";
  1624. }
  1625. i.icon.desktop:before {
  1626. content: "\f108";
  1627. }
  1628. i.icon.laptop:before {
  1629. content: "\f109";
  1630. }
  1631. i.icon.game:before {
  1632. content: "\f11b";
  1633. }
  1634. i.icon.keyboard:before {
  1635. content: "\f11c";
  1636. }
  1637. i.icon.plug:before {
  1638. content: "\f1e6";
  1639. }
  1640.  
  1641. /* File System */
  1642. i.icon.trash:before {
  1643. content: "\f1f8";
  1644. }
  1645. i.icon.file.outline:before {
  1646. content: "\f016";
  1647. }
  1648. i.icon.folder:before {
  1649. content: "\f07b";
  1650. }
  1651. i.icon.folder.open:before {
  1652. content: "\f07c";
  1653. }
  1654. i.icon.file.text.outline:before {
  1655. content: "\f0f6";
  1656. }
  1657. i.icon.folder.outline:before {
  1658. content: "\f114";
  1659. }
  1660. i.icon.folder.open.outline:before {
  1661. content: "\f115";
  1662. }
  1663. i.icon.level.up:before {
  1664. content: "\f148";
  1665. }
  1666. i.icon.level.down:before {
  1667. content: "\f149";
  1668. }
  1669. i.icon.file:before {
  1670. content: "\f15b";
  1671. }
  1672. i.icon.file.text:before {
  1673. content: "\f15c";
  1674. }
  1675. i.icon.file.pdf.outline:before {
  1676. content: "\f1c1";
  1677. }
  1678. i.icon.file.word.outline:before {
  1679. content: "\f1c2";
  1680. }
  1681. i.icon.file.excel.outline:before {
  1682. content: "\f1c3";
  1683. }
  1684. i.icon.file.powerpoint.outline:before {
  1685. content: "\f1c4";
  1686. }
  1687. i.icon.file.image.outline:before {
  1688. content: "\f1c5";
  1689. }
  1690. i.icon.file.archive.outline:before {
  1691. content: "\f1c6";
  1692. }
  1693. i.icon.file.audio.outline:before {
  1694. content: "\f1c7";
  1695. }
  1696. i.icon.file.video.outline:before {
  1697. content: "\f1c8";
  1698. }
  1699. i.icon.file.code.outline:before {
  1700. content: "\f1c9";
  1701. }
  1702.  
  1703. /* Technologies */
  1704. i.icon.qrcode:before {
  1705. content: "\f029";
  1706. }
  1707. i.icon.barcode:before {
  1708. content: "\f02a";
  1709. }
  1710. i.icon.rss:before {
  1711. content: "\f09e";
  1712. }
  1713. i.icon.fork:before {
  1714. content: "\f126";
  1715. }
  1716. i.icon.html5:before {
  1717. content: "\f13b";
  1718. }
  1719. i.icon.css3:before {
  1720. content: "\f13c";
  1721. }
  1722. i.icon.rss.square:before {
  1723. content: "\f143";
  1724. }
  1725. i.icon.openid:before {
  1726. content: "\f19b";
  1727. }
  1728. i.icon.database:before {
  1729. content: "\f1c0";
  1730. }
  1731. i.icon.wifi:before {
  1732. content: "\f1eb";
  1733. }
  1734. i.icon.server:before {
  1735. content: "\f233";
  1736. }
  1737. i.icon.usb:before {
  1738. content: "\f287";
  1739. }
  1740. i.icon.bluetooth:before {
  1741. content: "\f293";
  1742. }
  1743. i.icon.bluetooth.alternative:before {
  1744. content: "\f294";
  1745. }
  1746. i.icon.microchip:before {
  1747. content: "\f2db";
  1748. }
  1749.  
  1750. /* Rating */
  1751. i.icon.heart:before {
  1752. content: "\f004";
  1753. }
  1754. i.icon.star:before {
  1755. content: "\f005";
  1756. }
  1757. i.icon.empty.star:before {
  1758. content: "\f006";
  1759. }
  1760. i.icon.thumbs.outline.up:before {
  1761. content: "\f087";
  1762. }
  1763. i.icon.thumbs.outline.down:before {
  1764. content: "\f088";
  1765. }
  1766. i.icon.star.half:before {
  1767. content: "\f089";
  1768. }
  1769. i.icon.empty.heart:before {
  1770. content: "\f08a";
  1771. }
  1772. i.icon.smile:before {
  1773. content: "\f118";
  1774. }
  1775. i.icon.frown:before {
  1776. content: "\f119";
  1777. }
  1778. i.icon.meh:before {
  1779. content: "\f11a";
  1780. }
  1781. i.icon.star.half.empty:before {
  1782. content: "\f123";
  1783. }
  1784. i.icon.thumbs.up:before {
  1785. content: "\f164";
  1786. }
  1787. i.icon.thumbs.down:before {
  1788. content: "\f165";
  1789. }
  1790.  
  1791. /* Audio */
  1792. i.icon.music:before {
  1793. content: "\f001";
  1794. }
  1795. i.icon.video.play.outline:before {
  1796. content: "\f01d";
  1797. }
  1798. i.icon.volume.off:before {
  1799. content: "\f026";
  1800. }
  1801. i.icon.volume.down:before {
  1802. content: "\f027";
  1803. }
  1804. i.icon.volume.up:before {
  1805. content: "\f028";
  1806. }
  1807. i.icon.record:before {
  1808. content: "\f03d";
  1809. }
  1810. i.icon.step.backward:before {
  1811. content: "\f048";
  1812. }
  1813. i.icon.fast.backward:before {
  1814. content: "\f049";
  1815. }
  1816. i.icon.backward:before {
  1817. content: "\f04a";
  1818. }
  1819. i.icon.play:before {
  1820. content: "\f04b";
  1821. }
  1822. i.icon.pause:before {
  1823. content: "\f04c";
  1824. }
  1825. i.icon.stop:before {
  1826. content: "\f04d";
  1827. }
  1828. i.icon.forward:before {
  1829. content: "\f04e";
  1830. }
  1831. i.icon.fast.forward:before {
  1832. content: "\f050";
  1833. }
  1834. i.icon.step.forward:before {
  1835. content: "\f051";
  1836. }
  1837. i.icon.eject:before {
  1838. content: "\f052";
  1839. }
  1840. i.icon.unmute:before {
  1841. content: "\f130";
  1842. }
  1843. i.icon.mute:before {
  1844. content: "\f131";
  1845. }
  1846. i.icon.video.play:before {
  1847. content: "\f144";
  1848. }
  1849. i.icon.closed.captioning:before {
  1850. content: "\f20a";
  1851. }
  1852. i.icon.pause.circle:before {
  1853. content: "\f28b";
  1854. }
  1855. i.icon.pause.circle.outline:before {
  1856. content: "\f28c";
  1857. }
  1858. i.icon.stop.circle:before {
  1859. content: "\f28d";
  1860. }
  1861. i.icon.stop.circle.outline:before {
  1862. content: "\f28e";
  1863. }
  1864.  
  1865. /* Map, Locations, & Transportation */
  1866. i.icon.marker:before {
  1867. content: "\f041";
  1868. }
  1869. i.icon.coffee:before {
  1870. content: "\f0f4";
  1871. }
  1872. i.icon.food:before {
  1873. content: "\f0f5";
  1874. }
  1875. i.icon.building.outline:before {
  1876. content: "\f0f7";
  1877. }
  1878. i.icon.hospital:before {
  1879. content: "\f0f8";
  1880. }
  1881. i.icon.emergency:before {
  1882. content: "\f0f9";
  1883. }
  1884. i.icon.first.aid:before {
  1885. content: "\f0fa";
  1886. }
  1887. i.icon.military:before {
  1888. content: "\f0fb";
  1889. }
  1890. i.icon.h:before {
  1891. content: "\f0fd";
  1892. }
  1893. i.icon.location.arrow:before {
  1894. content: "\f124";
  1895. }
  1896. i.icon.compass:before {
  1897. content: "\f14e";
  1898. }
  1899. i.icon.space.shuttle:before {
  1900. content: "\f197";
  1901. }
  1902. i.icon.university:before {
  1903. content: "\f19c";
  1904. }
  1905. i.icon.building:before {
  1906. content: "\f1ad";
  1907. }
  1908. i.icon.paw:before {
  1909. content: "\f1b0";
  1910. }
  1911. i.icon.spoon:before {
  1912. content: "\f1b1";
  1913. }
  1914. i.icon.car:before {
  1915. content: "\f1b9";
  1916. }
  1917. i.icon.taxi:before {
  1918. content: "\f1ba";
  1919. }
  1920. i.icon.tree:before {
  1921. content: "\f1bb";
  1922. }
  1923. i.icon.bicycle:before {
  1924. content: "\f206";
  1925. }
  1926. i.icon.bus:before {
  1927. content: "\f207";
  1928. }
  1929. i.icon.ship:before {
  1930. content: "\f21a";
  1931. }
  1932. i.icon.motorcycle:before {
  1933. content: "\f21c";
  1934. }
  1935. i.icon.street.view:before {
  1936. content: "\f21d";
  1937. }
  1938. i.icon.hotel:before {
  1939. content: "\f236";
  1940. }
  1941. i.icon.train:before {
  1942. content: "\f238";
  1943. }
  1944. i.icon.subway:before {
  1945. content: "\f239";
  1946. }
  1947. i.icon.map.pin:before {
  1948. content: "\f276";
  1949. }
  1950. i.icon.map.signs:before {
  1951. content: "\f277";
  1952. }
  1953. i.icon.map.outline:before {
  1954. content: "\f278";
  1955. }
  1956. i.icon.map:before {
  1957. content: "\f279";
  1958. }
  1959.  
  1960. /* Tables */
  1961. i.icon.table:before {
  1962. content: "\f0ce";
  1963. }
  1964. i.icon.columns:before {
  1965. content: "\f0db";
  1966. }
  1967. i.icon.sort:before {
  1968. content: "\f0dc";
  1969. }
  1970. i.icon.sort.descending:before {
  1971. content: "\f0dd";
  1972. }
  1973. i.icon.sort.ascending:before {
  1974. content: "\f0de";
  1975. }
  1976. i.icon.sort.alphabet.ascending:before {
  1977. content: "\f15d";
  1978. }
  1979. i.icon.sort.alphabet.descending:before {
  1980. content: "\f15e";
  1981. }
  1982. i.icon.sort.content.ascending:before {
  1983. content: "\f160";
  1984. }
  1985. i.icon.sort.content.descending:before {
  1986. content: "\f161";
  1987. }
  1988. i.icon.sort.numeric.ascending:before {
  1989. content: "\f162";
  1990. }
  1991. i.icon.sort.numeric.descending:before {
  1992. content: "\f163";
  1993. }
  1994.  
  1995. /* Text Editor */
  1996. i.icon.font:before {
  1997. content: "\f031";
  1998. }
  1999. i.icon.bold:before {
  2000. content: "\f032";
  2001. }
  2002. i.icon.italic:before {
  2003. content: "\f033";
  2004. }
  2005. i.icon.text.height:before {
  2006. content: "\f034";
  2007. }
  2008. i.icon.text.width:before {
  2009. content: "\f035";
  2010. }
  2011. i.icon.align.left:before {
  2012. content: "\f036";
  2013. }
  2014. i.icon.align.center:before {
  2015. content: "\f037";
  2016. }
  2017. i.icon.align.right:before {
  2018. content: "\f038";
  2019. }
  2020. i.icon.align.justify:before {
  2021. content: "\f039";
  2022. }
  2023. i.icon.list:before {
  2024. content: "\f03a";
  2025. }
  2026. i.icon.outdent:before {
  2027. content: "\f03b";
  2028. }
  2029. i.icon.indent:before {
  2030. content: "\f03c";
  2031. }
  2032. i.icon.linkify:before {
  2033. content: "\f0c1";
  2034. }
  2035. i.icon.cut:before {
  2036. content: "\f0c4";
  2037. }
  2038. i.icon.copy:before {
  2039. content: "\f0c5";
  2040. }
  2041. i.icon.attach:before {
  2042. content: "\f0c6";
  2043. }
  2044. i.icon.save:before {
  2045. content: "\f0c7";
  2046. }
  2047. i.icon.content:before {
  2048. content: "\f0c9";
  2049. }
  2050. i.icon.unordered.list:before {
  2051. content: "\f0ca";
  2052. }
  2053. i.icon.ordered.list:before {
  2054. content: "\f0cb";
  2055. }
  2056. i.icon.strikethrough:before {
  2057. content: "\f0cc";
  2058. }
  2059. i.icon.underline:before {
  2060. content: "\f0cd";
  2061. }
  2062. i.icon.paste:before {
  2063. content: "\f0ea";
  2064. }
  2065. i.icon.unlinkify:before {
  2066. content: "\f127";
  2067. }
  2068. i.icon.superscript:before {
  2069. content: "\f12b";
  2070. }
  2071. i.icon.subscript:before {
  2072. content: "\f12c";
  2073. }
  2074. i.icon.header:before {
  2075. content: "\f1dc";
  2076. }
  2077. i.icon.paragraph:before {
  2078. content: "\f1dd";
  2079. }
  2080. i.icon.text.cursor:before {
  2081. content: "\f246";
  2082. }
  2083.  
  2084. /* Currency */
  2085. i.icon.euro:before {
  2086. content: "\f153";
  2087. }
  2088. i.icon.pound:before {
  2089. content: "\f154";
  2090. }
  2091. i.icon.dollar:before {
  2092. content: "\f155";
  2093. }
  2094. i.icon.rupee:before {
  2095. content: "\f156";
  2096. }
  2097. i.icon.yen:before {
  2098. content: "\f157";
  2099. }
  2100. i.icon.ruble:before {
  2101. content: "\f158";
  2102. }
  2103. i.icon.won:before {
  2104. content: "\f159";
  2105. }
  2106. i.icon.bitcoin:before {
  2107. content: "\f15a";
  2108. }
  2109. i.icon.lira:before {
  2110. content: "\f195";
  2111. }
  2112. i.icon.shekel:before {
  2113. content: "\f20b";
  2114. }
  2115.  
  2116. /* Payment Options */
  2117. i.icon.paypal:before {
  2118. content: "\f1ed";
  2119. }
  2120. i.icon.google.wallet:before {
  2121. content: "\f1ee";
  2122. }
  2123. i.icon.visa:before {
  2124. content: "\f1f0";
  2125. }
  2126. i.icon.mastercard:before {
  2127. content: "\f1f1";
  2128. }
  2129. i.icon.discover:before {
  2130. content: "\f1f2";
  2131. }
  2132. i.icon.american.express:before {
  2133. content: "\f1f3";
  2134. }
  2135. i.icon.paypal.card:before {
  2136. content: "\f1f4";
  2137. }
  2138. i.icon.stripe:before {
  2139. content: "\f1f5";
  2140. }
  2141. i.icon.japan.credit.bureau:before {
  2142. content: "\f24b";
  2143. }
  2144. i.icon.diners.club:before {
  2145. content: "\f24c";
  2146. }
  2147. i.icon.credit.card.alternative:before {
  2148. content: "\f283";
  2149. }
  2150. /* Networks and Websites*/
  2151. i.icon.twitter.square:before {
  2152. content: "\f081";
  2153. }
  2154. i.icon.facebook.square:before {
  2155. content: "\f082";
  2156. }
  2157. i.icon.linkedin.square:before {
  2158. content: "\f08c";
  2159. }
  2160. i.icon.github.square:before {
  2161. content: "\f092";
  2162. }
  2163. i.icon.twitter:before {
  2164. content: "\f099";
  2165. }
  2166. i.icon.facebook.f:before {
  2167. content: "\f09a";
  2168. }
  2169. i.icon.github:before {
  2170. content: "\f09b";
  2171. }
  2172. i.icon.pinterest:before {
  2173. content: "\f0d2";
  2174. }
  2175. i.icon.pinterest.square:before {
  2176. content: "\f0d3";
  2177. }
  2178. i.icon.google.plus.square:before {
  2179. content: "\f0d4";
  2180. }
  2181. i.icon.google.plus:before {
  2182. content: "\f0d5";
  2183. }
  2184. i.icon.linkedin:before {
  2185. content: "\f0e1";
  2186. }
  2187. i.icon.github.alternate:before {
  2188. content: "\f113";
  2189. }
  2190. i.icon.maxcdn:before {
  2191. content: "\f136";
  2192. }
  2193. i.icon.youtube.square:before {
  2194. content: "\f166";
  2195. }
  2196. i.icon.youtube:before {
  2197. content: "\f167";
  2198. }
  2199. i.icon.xing:before {
  2200. content: "\f168";
  2201. }
  2202. i.icon.xing.square:before {
  2203. content: "\f169";
  2204. }
  2205. i.icon.youtube.play:before {
  2206. content: "\f16a";
  2207. }
  2208. i.icon.dropbox:before {
  2209. content: "\f16b";
  2210. }
  2211. i.icon.stack.overflow:before {
  2212. content: "\f16c";
  2213. }
  2214. i.icon.instagram:before {
  2215. content: "\f16d";
  2216. }
  2217. i.icon.flickr:before {
  2218. content: "\f16e";
  2219. }
  2220. i.icon.adn:before {
  2221. content: "\f170";
  2222. }
  2223. i.icon.bitbucket:before {
  2224. content: "\f171";
  2225. }
  2226. i.icon.bitbucket.square:before {
  2227. content: "\f172";
  2228. }
  2229. i.icon.tumblr:before {
  2230. content: "\f173";
  2231. }
  2232. i.icon.tumblr.square:before {
  2233. content: "\f174";
  2234. }
  2235. i.icon.apple:before {
  2236. content: "\f179";
  2237. }
  2238. i.icon.windows:before {
  2239. content: "\f17a";
  2240. }
  2241. i.icon.android:before {
  2242. content: "\f17b";
  2243. }
  2244. i.icon.linux:before {
  2245. content: "\f17c";
  2246. }
  2247. i.icon.dribble:before {
  2248. content: "\f17d";
  2249. }
  2250. i.icon.skype:before {
  2251. content: "\f17e";
  2252. }
  2253. i.icon.foursquare:before {
  2254. content: "\f180";
  2255. }
  2256. i.icon.trello:before {
  2257. content: "\f181";
  2258. }
  2259. i.icon.gittip:before {
  2260. content: "\f184";
  2261. }
  2262. i.icon.vk:before {
  2263. content: "\f189";
  2264. }
  2265. i.icon.weibo:before {
  2266. content: "\f18a";
  2267. }
  2268. i.icon.renren:before {
  2269. content: "\f18b";
  2270. }
  2271. i.icon.pagelines:before {
  2272. content: "\f18c";
  2273. }
  2274. i.icon.stack.exchange:before {
  2275. content: "\f18d";
  2276. }
  2277. i.icon.vimeo.square:before {
  2278. content: "\f194";
  2279. }
  2280. i.icon.slack:before {
  2281. content: "\f198";
  2282. }
  2283. i.icon.wordpress:before {
  2284. content: "\f19a";
  2285. }
  2286. i.icon.yahoo:before {
  2287. content: "\f19e";
  2288. }
  2289. i.icon.google:before {
  2290. content: "\f1a0";
  2291. }
  2292. i.icon.reddit:before {
  2293. content: "\f1a1";
  2294. }
  2295. i.icon.reddit.square:before {
  2296. content: "\f1a2";
  2297. }
  2298. i.icon.stumbleupon.circle:before {
  2299. content: "\f1a3";
  2300. }
  2301. i.icon.stumbleupon:before {
  2302. content: "\f1a4";
  2303. }
  2304. i.icon.delicious:before {
  2305. content: "\f1a5";
  2306. }
  2307. i.icon.digg:before {
  2308. content: "\f1a6";
  2309. }
  2310. i.icon.pied.piper:before {
  2311. content: "\f1a7";
  2312. }
  2313. i.icon.pied.piper.alternate:before {
  2314. content: "\f1a8";
  2315. }
  2316. i.icon.drupal:before {
  2317. content: "\f1a9";
  2318. }
  2319. i.icon.joomla:before {
  2320. content: "\f1aa";
  2321. }
  2322. i.icon.behance:before {
  2323. content: "\f1b4";
  2324. }
  2325. i.icon.behance.square:before {
  2326. content: "\f1b5";
  2327. }
  2328. i.icon.steam:before {
  2329. content: "\f1b6";
  2330. }
  2331. i.icon.steam.square:before {
  2332. content: "\f1b7";
  2333. }
  2334. i.icon.spotify:before {
  2335. content: "\f1bc";
  2336. }
  2337. i.icon.deviantart:before {
  2338. content: "\f1bd";
  2339. }
  2340. i.icon.soundcloud:before {
  2341. content: "\f1be";
  2342. }
  2343. i.icon.vine:before {
  2344. content: "\f1ca";
  2345. }
  2346. i.icon.codepen:before {
  2347. content: "\f1cb";
  2348. }
  2349. i.icon.jsfiddle:before {
  2350. content: "\f1cc";
  2351. }
  2352. i.icon.rebel:before {
  2353. content: "\f1d0";
  2354. }
  2355. i.icon.empire:before {
  2356. content: "\f1d1";
  2357. }
  2358. i.icon.git.square:before {
  2359. content: "\f1d2";
  2360. }
  2361. i.icon.git:before {
  2362. content: "\f1d3";
  2363. }
  2364. i.icon.hacker.news:before {
  2365. content: "\f1d4";
  2366. }
  2367. i.icon.tencent.weibo:before {
  2368. content: "\f1d5";
  2369. }
  2370. i.icon.qq:before {
  2371. content: "\f1d6";
  2372. }
  2373. i.icon.wechat:before {
  2374. content: "\f1d7";
  2375. }
  2376. i.icon.slideshare:before {
  2377. content: "\f1e7";
  2378. }
  2379. i.icon.twitch:before {
  2380. content: "\f1e8";
  2381. }
  2382. i.icon.yelp:before {
  2383. content: "\f1e9";
  2384. }
  2385. i.icon.lastfm:before {
  2386. content: "\f202";
  2387. }
  2388. i.icon.lastfm.square:before {
  2389. content: "\f203";
  2390. }
  2391. i.icon.ioxhost:before {
  2392. content: "\f208";
  2393. }
  2394. i.icon.angellist:before {
  2395. content: "\f209";
  2396. }
  2397. i.icon.meanpath:before {
  2398. content: "\f20c";
  2399. }
  2400. i.icon.buysellads:before {
  2401. content: "\f20d";
  2402. }
  2403. i.icon.connectdevelop:before {
  2404. content: "\f20e";
  2405. }
  2406. i.icon.dashcube:before {
  2407. content: "\f210";
  2408. }
  2409. i.icon.forumbee:before {
  2410. content: "\f211";
  2411. }
  2412. i.icon.leanpub:before {
  2413. content: "\f212";
  2414. }
  2415. i.icon.sellsy:before {
  2416. content: "\f213";
  2417. }
  2418. i.icon.shirtsinbulk:before {
  2419. content: "\f214";
  2420. }
  2421. i.icon.simplybuilt:before {
  2422. content: "\f215";
  2423. }
  2424. i.icon.skyatlas:before {
  2425. content: "\f216";
  2426. }
  2427. i.icon.facebook:before {
  2428. content: "\f230";
  2429. }
  2430. i.icon.pinterest:before {
  2431. content: "\f231";
  2432. }
  2433. i.icon.whatsapp:before {
  2434. content: "\f232";
  2435. }
  2436. i.icon.viacoin:before {
  2437. content: "\f237";
  2438. }
  2439. i.icon.medium:before {
  2440. content: "\f23a";
  2441. }
  2442. i.icon.y.combinator:before {
  2443. content: "\f23b";
  2444. }
  2445. i.icon.optinmonster:before {
  2446. content: "\f23c";
  2447. }
  2448. i.icon.opencart:before {
  2449. content: "\f23d";
  2450. }
  2451. i.icon.expeditedssl:before {
  2452. content: "\f23e";
  2453. }
  2454. i.icon.gg:before {
  2455. content: "\f260";
  2456. }
  2457. i.icon.gg.circle:before {
  2458. content: "\f261";
  2459. }
  2460. i.icon.tripadvisor:before {
  2461. content: "\f262";
  2462. }
  2463. i.icon.odnoklassniki:before {
  2464. content: "\f263";
  2465. }
  2466. i.icon.odnoklassniki.square:before {
  2467. content: "\f264";
  2468. }
  2469. i.icon.pocket:before {
  2470. content: "\f265";
  2471. }
  2472. i.icon.wikipedia:before {
  2473. content: "\f266";
  2474. }
  2475. i.icon.safari:before {
  2476. content: "\f267";
  2477. }
  2478. i.icon.chrome:before {
  2479. content: "\f268";
  2480. }
  2481. i.icon.firefox:before {
  2482. content: "\f269";
  2483. }
  2484. i.icon.opera:before {
  2485. content: "\f26a";
  2486. }
  2487. i.icon.internet.explorer:before {
  2488. content: "\f26b";
  2489. }
  2490. i.icon.contao:before {
  2491. content: "\f26d";
  2492. }
  2493. i.icon.\35 00px:before {
  2494. content: "\f26e";
  2495. }
  2496. i.icon.amazon:before {
  2497. content: "\f270";
  2498. }
  2499. i.icon.houzz:before {
  2500. content: "\f27c";
  2501. }
  2502. i.icon.vimeo:before {
  2503. content: "\f27d";
  2504. }
  2505. i.icon.black.tie:before {
  2506. content: "\f27e";
  2507. }
  2508. i.icon.fonticons:before {
  2509. content: "\f280";
  2510. }
  2511. i.icon.reddit.alien:before {
  2512. content: "\f281";
  2513. }
  2514. i.icon.microsoft.edge:before {
  2515. content: "\f282";
  2516. }
  2517. i.icon.codiepie:before {
  2518. content: "\f284";
  2519. }
  2520. i.icon.modx:before {
  2521. content: "\f285";
  2522. }
  2523. i.icon.fort.awesome:before {
  2524. content: "\f286";
  2525. }
  2526. i.icon.product.hunt:before {
  2527. content: "\f288";
  2528. }
  2529. i.icon.mixcloud:before {
  2530. content: "\f289";
  2531. }
  2532. i.icon.scribd:before {
  2533. content: "\f28a";
  2534. }
  2535. i.icon.gitlab:before {
  2536. content: "\f296";
  2537. }
  2538. i.icon.wpbeginner:before {
  2539. content: "\f297";
  2540. }
  2541. i.icon.wpforms:before {
  2542. content: "\f298";
  2543. }
  2544. i.icon.envira.gallery:before {
  2545. content: "\f299";
  2546. }
  2547. i.icon.glide:before {
  2548. content: "\f2a5";
  2549. }
  2550. i.icon.glide.g:before {
  2551. content: "\f2a6";
  2552. }
  2553. i.icon.viadeo:before {
  2554. content: "\f2a9";
  2555. }
  2556. i.icon.viadeo.square:before {
  2557. content: "\f2aa";
  2558. }
  2559. i.icon.snapchat:before {
  2560. content: "\f2ab";
  2561. }
  2562. i.icon.snapchat.ghost:before {
  2563. content: "\f2ac";
  2564. }
  2565. i.icon.snapchat.square:before {
  2566. content: "\f2ad";
  2567. }
  2568. i.icon.pied.piper.hat:before {
  2569. content: "\f2ae";
  2570. }
  2571. i.icon.first.order:before {
  2572. content: "\f2b0";
  2573. }
  2574. i.icon.yoast:before {
  2575. content: "\f2b1";
  2576. }
  2577. i.icon.themeisle:before {
  2578. content: "\f2b2";
  2579. }
  2580. i.icon.google.plus.circle:before {
  2581. content: "\f2b3";
  2582. }
  2583. i.icon.font.awesome:before {
  2584. content: "\f2b4";
  2585. }
  2586. i.icon.linode:before {
  2587. content: "\f2b8";
  2588. }
  2589. i.icon.quora:before {
  2590. content: "\f2c4";
  2591. }
  2592. i.icon.free.code.camp:before {
  2593. content: "\f2c5";
  2594. }
  2595. i.icon.telegram:before {
  2596. content: "\f2c6";
  2597. }
  2598. i.icon.bandcamp:before {
  2599. content: "\f2d5";
  2600. }
  2601. i.icon.grav:before {
  2602. content: "\f2d6";
  2603. }
  2604. i.icon.etsy:before {
  2605. content: "\f2d7";
  2606. }
  2607. i.icon.imdb:before {
  2608. content: "\f2d8";
  2609. }
  2610. i.icon.ravelry:before {
  2611. content: "\f2d9";
  2612. }
  2613. i.icon.eercast:before {
  2614. content: "\f2da";
  2615. }
  2616. i.icon.superpowers:before {
  2617. content: "\f2dd";
  2618. }
  2619. i.icon.wpexplorer:before {
  2620. content: "\f2de";
  2621. }
  2622. i.icon.meetup:before {
  2623. content: "\f2e0";
  2624. }
  2625.  
  2626.  
  2627. /*******************************
  2628. Aliases
  2629. *******************************/
  2630.  
  2631. i.icon.like:before {
  2632. content: "\f004";
  2633. }
  2634. i.icon.favorite:before {
  2635. content: "\f005";
  2636. }
  2637. i.icon.video:before {
  2638. content: "\f008";
  2639. }
  2640. i.icon.check:before {
  2641. content: "\f00c";
  2642. }
  2643. i.icon.close:before {
  2644. content: "\f00d";
  2645. }
  2646. i.icon.cancel:before {
  2647. content: "\f00d";
  2648. }
  2649. i.icon.delete:before {
  2650. content: "\f00d";
  2651. }
  2652. i.icon.x:before {
  2653. content: "\f00d";
  2654. }
  2655. i.icon.zoom.in:before {
  2656. content: "\f00e";
  2657. }
  2658. i.icon.magnify:before {
  2659. content: "\f00e";
  2660. }
  2661. i.icon.shutdown:before {
  2662. content: "\f011";
  2663. }
  2664. i.icon.clock:before {
  2665. content: "\f017";
  2666. }
  2667. i.icon.time:before {
  2668. content: "\f017";
  2669. }
  2670. i.icon.play.circle.outline:before {
  2671. content: "\f01d";
  2672. }
  2673. i.icon.headphone:before {
  2674. content: "\f025";
  2675. }
  2676. i.icon.camera:before {
  2677. content: "\f030";
  2678. }
  2679. i.icon.video.camera:before {
  2680. content: "\f03d";
  2681. }
  2682. i.icon.picture:before {
  2683. content: "\f03e";
  2684. }
  2685. i.icon.pencil:before {
  2686. content: "\f040";
  2687. }
  2688. i.icon.compose:before {
  2689. content: "\f040";
  2690. }
  2691. i.icon.point:before {
  2692. content: "\f041";
  2693. }
  2694. i.icon.tint:before {
  2695. content: "\f043";
  2696. }
  2697. i.icon.signup:before {
  2698. content: "\f044";
  2699. }
  2700. i.icon.plus.circle:before {
  2701. content: "\f055";
  2702. }
  2703. i.icon.question.circle:before {
  2704. content: "\f059";
  2705. }
  2706. i.icon.dont:before {
  2707. content: "\f05e";
  2708. }
  2709. i.icon.minimize:before {
  2710. content: "\f066";
  2711. }
  2712. i.icon.add:before {
  2713. content: "\f067";
  2714. }
  2715. i.icon.exclamation.circle:before {
  2716. content: "\f06a";
  2717. }
  2718. i.icon.attention:before {
  2719. content: "\f06a";
  2720. }
  2721. i.icon.eye:before {
  2722. content: "\f06e";
  2723. }
  2724. i.icon.exclamation.triangle:before {
  2725. content: "\f071";
  2726. }
  2727. i.icon.shuffle:before {
  2728. content: "\f074";
  2729. }
  2730. i.icon.chat:before {
  2731. content: "\f075";
  2732. }
  2733. i.icon.cart:before {
  2734. content: "\f07a";
  2735. }
  2736. i.icon.shopping.cart:before {
  2737. content: "\f07a";
  2738. }
  2739. i.icon.bar.graph:before {
  2740. content: "\f080";
  2741. }
  2742. i.icon.key:before {
  2743. content: "\f084";
  2744. }
  2745. i.icon.cogs:before {
  2746. content: "\f085";
  2747. }
  2748. i.icon.discussions:before {
  2749. content: "\f086";
  2750. }
  2751. i.icon.like.outline:before {
  2752. content: "\f087";
  2753. }
  2754. i.icon.dislike.outline:before {
  2755. content: "\f088";
  2756. }
  2757. i.icon.heart.outline:before {
  2758. content: "\f08a";
  2759. }
  2760. i.icon.log.out:before {
  2761. content: "\f08b";
  2762. }
  2763. i.icon.thumb.tack:before {
  2764. content: "\f08d";
  2765. }
  2766. i.icon.winner:before {
  2767. content: "\f091";
  2768. }
  2769. i.icon.phone:before {
  2770. content: "\f095";
  2771. }
  2772. i.icon.bookmark.outline:before {
  2773. content: "\f097";
  2774. }
  2775. i.icon.phone.square:before {
  2776. content: "\f098";
  2777. }
  2778. i.icon.credit.card:before {
  2779. content: "\f09d";
  2780. }
  2781. i.icon.hdd.outline:before {
  2782. content: "\f0a0";
  2783. }
  2784. i.icon.bullhorn:before {
  2785. content: "\f0a1";
  2786. }
  2787. i.icon.bell.outline:before {
  2788. content: "\f0a2";
  2789. }
  2790. i.icon.hand.outline.right:before {
  2791. content: "\f0a4";
  2792. }
  2793. i.icon.hand.outline.left:before {
  2794. content: "\f0a5";
  2795. }
  2796. i.icon.hand.outline.up:before {
  2797. content: "\f0a6";
  2798. }
  2799. i.icon.hand.outline.down:before {
  2800. content: "\f0a7";
  2801. }
  2802. i.icon.globe:before {
  2803. content: "\f0ac";
  2804. }
  2805. i.icon.wrench:before {
  2806. content: "\f0ad";
  2807. }
  2808. i.icon.briefcase:before {
  2809. content: "\f0b1";
  2810. }
  2811. i.icon.group:before {
  2812. content: "\f0c0";
  2813. }
  2814. i.icon.linkify:before {
  2815. content: "\f0c1";
  2816. }
  2817. i.icon.chain:before {
  2818. content: "\f0c1";
  2819. }
  2820. i.icon.flask:before {
  2821. content: "\f0c3";
  2822. }
  2823. i.icon.sidebar:before {
  2824. content: "\f0c9";
  2825. }
  2826. i.icon.bars:before {
  2827. content: "\f0c9";
  2828. }
  2829. i.icon.list.ul:before {
  2830. content: "\f0ca";
  2831. }
  2832. i.icon.list.ol:before {
  2833. content: "\f0cb";
  2834. }
  2835. i.icon.numbered.list:before {
  2836. content: "\f0cb";
  2837. }
  2838. i.icon.magic:before {
  2839. content: "\f0d0";
  2840. }
  2841. i.icon.truck:before {
  2842. content: "\f0d1";
  2843. }
  2844. i.icon.currency:before {
  2845. content: "\f0d6";
  2846. }
  2847. i.icon.triangle.down:before {
  2848. content: "\f0d7";
  2849. }
  2850. i.icon.dropdown:before {
  2851. content: "\f0d7";
  2852. }
  2853. i.icon.triangle.up:before {
  2854. content: "\f0d8";
  2855. }
  2856. i.icon.triangle.left:before {
  2857. content: "\f0d9";
  2858. }
  2859. i.icon.triangle.right:before {
  2860. content: "\f0da";
  2861. }
  2862. i.icon.envelope:before {
  2863. content: "\f0e0";
  2864. }
  2865. i.icon.conversation:before {
  2866. content: "\f0e6";
  2867. }
  2868. i.icon.rain:before {
  2869. content: "\f0e9";
  2870. }
  2871. i.icon.clipboard:before {
  2872. content: "\f0ea";
  2873. }
  2874. i.icon.lightbulb:before {
  2875. content: "\f0eb";
  2876. }
  2877. i.icon.bell:before {
  2878. content: "\f0f3";
  2879. }
  2880. i.icon.ambulance:before {
  2881. content: "\f0f9";
  2882. }
  2883. i.icon.medkit:before {
  2884. content: "\f0fa";
  2885. }
  2886. i.icon.fighter.jet:before {
  2887. content: "\f0fb";
  2888. }
  2889. i.icon.beer:before {
  2890. content: "\f0fc";
  2891. }
  2892. i.icon.plus.square:before {
  2893. content: "\f0fe";
  2894. }
  2895. i.icon.computer:before {
  2896. content: "\f108";
  2897. }
  2898. i.icon.circle.outline:before {
  2899. content: "\f10c";
  2900. }
  2901. i.icon.gamepad:before {
  2902. content: "\f11b";
  2903. }
  2904. i.icon.star.half.full:before {
  2905. content: "\f123";
  2906. }
  2907. i.icon.broken.chain:before {
  2908. content: "\f127";
  2909. }
  2910. i.icon.question:before {
  2911. content: "\f128";
  2912. }
  2913. i.icon.exclamation:before {
  2914. content: "\f12a";
  2915. }
  2916. i.icon.eraser:before {
  2917. content: "\f12d";
  2918. }
  2919. i.icon.microphone:before {
  2920. content: "\f130";
  2921. }
  2922. i.icon.microphone.slash:before {
  2923. content: "\f131";
  2924. }
  2925. i.icon.shield:before {
  2926. content: "\f132";
  2927. }
  2928. i.icon.target:before {
  2929. content: "\f140";
  2930. }
  2931. i.icon.play.circle:before {
  2932. content: "\f144";
  2933. }
  2934. i.icon.pencil.square:before {
  2935. content: "\f14b";
  2936. }
  2937. i.icon.eur:before {
  2938. content: "\f153";
  2939. }
  2940. i.icon.gbp:before {
  2941. content: "\f154";
  2942. }
  2943. i.icon.usd:before {
  2944. content: "\f155";
  2945. }
  2946. i.icon.inr:before {
  2947. content: "\f156";
  2948. }
  2949. i.icon.cny:before {
  2950. content: "\f157";
  2951. }
  2952. i.icon.rmb:before {
  2953. content: "\f157";
  2954. }
  2955. i.icon.jpy:before {
  2956. content: "\f157";
  2957. }
  2958. i.icon.rouble:before {
  2959. content: "\f158";
  2960. }
  2961. i.icon.rub:before {
  2962. content: "\f158";
  2963. }
  2964. i.icon.krw:before {
  2965. content: "\f159";
  2966. }
  2967. i.icon.btc:before {
  2968. content: "\f15a";
  2969. }
  2970. i.icon.gratipay:before {
  2971. content: "\f184";
  2972. }
  2973. i.icon.zip:before {
  2974. content: "\f187";
  2975. }
  2976. i.icon.dot.circle.outline:before {
  2977. content: "\f192";
  2978. }
  2979. i.icon.try:before {
  2980. content: "\f195";
  2981. }
  2982. i.icon.graduation:before {
  2983. content: "\f19d";
  2984. }
  2985. i.icon.circle.outline:before {
  2986. content: "\f1db";
  2987. }
  2988. i.icon.sliders:before {
  2989. content: "\f1de";
  2990. }
  2991. i.icon.weixin:before {
  2992. content: "\f1d7";
  2993. }
  2994. i.icon.tty:before {
  2995. content: "\f1e4";
  2996. }
  2997. i.icon.teletype:before {
  2998. content: "\f1e4";
  2999. }
  3000. i.icon.binoculars:before {
  3001. content: "\f1e5";
  3002. }
  3003. i.icon.power.cord:before {
  3004. content: "\f1e6";
  3005. }
  3006. i.icon.wi-fi:before {
  3007. content: "\f1eb";
  3008. }
  3009. i.icon.visa.card:before {
  3010. content: "\f1f0";
  3011. }
  3012. i.icon.mastercard.card:before {
  3013. content: "\f1f1";
  3014. }
  3015. i.icon.discover.card:before {
  3016. content: "\f1f2";
  3017. }
  3018. i.icon.amex:before {
  3019. content: "\f1f3";
  3020. }
  3021. i.icon.american.express.card:before {
  3022. content: "\f1f3";
  3023. }
  3024. i.icon.stripe.card:before {
  3025. content: "\f1f5";
  3026. }
  3027. i.icon.bell.slash:before {
  3028. content: "\f1f6";
  3029. }
  3030. i.icon.bell.slash.outline:before {
  3031. content: "\f1f7";
  3032. }
  3033. i.icon.area.graph:before {
  3034. content: "\f1fe";
  3035. }
  3036. i.icon.pie.graph:before {
  3037. content: "\f200";
  3038. }
  3039. i.icon.line.graph:before {
  3040. content: "\f201";
  3041. }
  3042. i.icon.cc:before {
  3043. content: "\f20a";
  3044. }
  3045. i.icon.sheqel:before {
  3046. content: "\f20b";
  3047. }
  3048. i.icon.ils:before {
  3049. content: "\f20b";
  3050. }
  3051. i.icon.plus.cart:before {
  3052. content: "\f217";
  3053. }
  3054. i.icon.arrow.down.cart:before {
  3055. content: "\f218";
  3056. }
  3057. i.icon.detective:before {
  3058. content: "\f21b";
  3059. }
  3060. i.icon.venus:before {
  3061. content: "\f221";
  3062. }
  3063. i.icon.mars:before {
  3064. content: "\f222";
  3065. }
  3066. i.icon.mercury:before {
  3067. content: "\f223";
  3068. }
  3069. i.icon.intersex:before {
  3070. content: "\f224";
  3071. }
  3072. i.icon.venus.double:before {
  3073. content: "\f226";
  3074. }
  3075. i.icon.female.homosexual:before {
  3076. content: "\f226";
  3077. }
  3078. i.icon.mars.double:before {
  3079. content: "\f227";
  3080. }
  3081. i.icon.male.homosexual:before {
  3082. content: "\f227";
  3083. }
  3084. i.icon.venus.mars:before {
  3085. content: "\f228";
  3086. }
  3087. i.icon.mars.stroke:before {
  3088. content: "\f229";
  3089. }
  3090. i.icon.mars.alternate:before {
  3091. content: "\f229";
  3092. }
  3093. i.icon.mars.vertical:before {
  3094. content: "\f22a";
  3095. }
  3096. i.icon.mars.stroke.vertical:before {
  3097. content: "\f22a";
  3098. }
  3099. i.icon.mars.horizontal:before {
  3100. content: "\f22b";
  3101. }
  3102. i.icon.mars.stroke.horizontal:before {
  3103. content: "\f22b";
  3104. }
  3105. i.icon.asexual:before {
  3106. content: "\f22d";
  3107. }
  3108. i.icon.facebook.official:before {
  3109. content: "\f230";
  3110. }
  3111. i.icon.user.plus:before {
  3112. content: "\f234";
  3113. }
  3114. i.icon.user.times:before {
  3115. content: "\f235";
  3116. }
  3117. i.icon.user.close:before {
  3118. content: "\f235";
  3119. }
  3120. i.icon.user.cancel:before {
  3121. content: "\f235";
  3122. }
  3123. i.icon.user.delete:before {
  3124. content: "\f235";
  3125. }
  3126. i.icon.user.x:before {
  3127. content: "\f235";
  3128. }
  3129. i.icon.bed:before {
  3130. content: "\f236";
  3131. }
  3132. i.icon.yc:before {
  3133. content: "\f23b";
  3134. }
  3135. i.icon.ycombinator:before {
  3136. content: "\f23b";
  3137. }
  3138. i.icon.battery.four:before {
  3139. content: "\f240";
  3140. }
  3141. i.icon.battery.three:before {
  3142. content: "\f241";
  3143. }
  3144. i.icon.battery.three.quarters:before {
  3145. content: "\f241";
  3146. }
  3147. i.icon.battery.two:before {
  3148. content: "\f242";
  3149. }
  3150. i.icon.battery.half:before {
  3151. content: "\f242";
  3152. }
  3153. i.icon.battery.one:before {
  3154. content: "\f243";
  3155. }
  3156. i.icon.battery.quarter:before {
  3157. content: "\f243";
  3158. }
  3159. i.icon.battery.zero:before {
  3160. content: "\f244";
  3161. }
  3162. i.icon.i.cursor:before {
  3163. content: "\f246";
  3164. }
  3165. i.icon.jcb:before {
  3166. content: "\f24b";
  3167. }
  3168. i.icon.japan.credit.bureau.card:before {
  3169. content: "\f24b";
  3170. }
  3171. i.icon.diners.club.card:before {
  3172. content: "\f24c";
  3173. }
  3174. i.icon.balance:before {
  3175. content: "\f24e";
  3176. }
  3177. i.icon.hourglass.outline:before {
  3178. content: "\f250";
  3179. }
  3180. i.icon.hourglass.zero:before {
  3181. content: "\f250";
  3182. }
  3183. i.icon.hourglass.one:before {
  3184. content: "\f251";
  3185. }
  3186. i.icon.hourglass.two:before {
  3187. content: "\f252";
  3188. }
  3189. i.icon.hourglass.three:before {
  3190. content: "\f253";
  3191. }
  3192. i.icon.hourglass.four:before {
  3193. content: "\f254";
  3194. }
  3195. i.icon.grab:before {
  3196. content: "\f255";
  3197. }
  3198. i.icon.hand.victory:before {
  3199. content: "\f25b";
  3200. }
  3201. i.icon.tm:before {
  3202. content: "\f25c";
  3203. }
  3204. i.icon.r.circle:before {
  3205. content: "\f25d";
  3206. }
  3207. i.icon.television:before {
  3208. content: "\f26c";
  3209. }
  3210. i.icon.five.hundred.pixels:before {
  3211. content: "\f26e";
  3212. }
  3213. i.icon.calendar.plus:before {
  3214. content: "\f271";
  3215. }
  3216. i.icon.calendar.minus:before {
  3217. content: "\f272";
  3218. }
  3219. i.icon.calendar.times:before {
  3220. content: "\f273";
  3221. }
  3222. i.icon.calendar.check:before {
  3223. content: "\f274";
  3224. }
  3225. i.icon.factory:before {
  3226. content: "\f275";
  3227. }
  3228. i.icon.commenting:before {
  3229. content: "\f27a";
  3230. }
  3231. i.icon.commenting.outline:before {
  3232. content: "\f27b";
  3233. }
  3234. i.icon.edge:before {
  3235. content: "\f282";
  3236. }
  3237. i.icon.ms.edge:before {
  3238. content: "\f282";
  3239. }
  3240. i.icon.wordpress.beginner:before {
  3241. content: "\f297";
  3242. }
  3243. i.icon.wordpress.forms:before {
  3244. content: "\f298";
  3245. }
  3246. i.icon.envira:before {
  3247. content: "\f299";
  3248. }
  3249. i.icon.question.circle.outline:before {
  3250. content: "\f29c";
  3251. }
  3252. i.icon.assistive.listening.devices:before {
  3253. content: "\f2a2";
  3254. }
  3255. i.icon.als:before {
  3256. content: "\f2a2";
  3257. }
  3258. i.icon.ald:before {
  3259. content: "\f2a2";
  3260. }
  3261. i.icon.asl.interpreting:before {
  3262. content: "\f2a3";
  3263. }
  3264. i.icon.deaf:before {
  3265. content: "\f2a4";
  3266. }
  3267. i.icon.american.sign.language.interpreting:before {
  3268. content: "\f2a3";
  3269. }
  3270. i.icon.hard.of.hearing:before {
  3271. content: "\f2a4";
  3272. }
  3273. i.icon.signing:before {
  3274. content: "\f2a7";
  3275. }
  3276. i.icon.new.pied.piper:before {
  3277. content: "\f2ae";
  3278. }
  3279. i.icon.theme.isle:before {
  3280. content: "\f2b2";
  3281. }
  3282. i.icon.google.plus.official:before {
  3283. content: "\f2b3";
  3284. }
  3285. i.icon.fa:before {
  3286. content: "\f2b4";
  3287. }
  3288. i.icon.vcard:before {
  3289. content: "\f2bb";
  3290. }
  3291. i.icon.vcard.outline:before {
  3292. content: "\f2bc";
  3293. }
  3294. i.icon.drivers.license:before {
  3295. content: "\f2c2";
  3296. }
  3297. i.icon.drivers.license.outline:before {
  3298. content: "\f2c3";
  3299. }
  3300. i.icon.thermometer:before {
  3301. content: "\f2c7";
  3302. }
  3303. i.icon.s15:before {
  3304. content: "\f2cd";
  3305. }
  3306. i.icon.bath:before {
  3307. content: "\f2cd";
  3308. }
  3309. i.icon.times.rectangle:before {
  3310. content: "\f2d3";
  3311. }
  3312. i.icon.times.rectangle.outline:before {
  3313. content: "\f2d4";
  3314. }
  3315.  
  3316.  
  3317. /*******************************
  3318. Site Overrides
  3319. *******************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement