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.

2520 lines
41 KiB

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