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.

1546 lines
28 KiB

  1. /*
  2. * # Semantic - Icon
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*!
  12. * Font Awesome 3.2.1
  13. * the iconic font designed for Bootstrap
  14. * ------------------------------------------------------------------------------
  15. * The full suite of pictographic icons, examples, and documentation can be
  16. * found at http://fon.io. Stay up to date on Twitter at
  17. * http://twitter.com/fon.
  18. *
  19. * License
  20. * ------------------------------------------------------------------------------
  21. * - The Font Awesome font is licensed under SIL OFL 1.1 -
  22. * http://scripts.sil.org/OFL
  23. /*******************************
  24. Theme
  25. *******************************/
  26. /*
  27. */
  28. /*******************************
  29. Folders
  30. *******************************/
  31. /* Path to theme packages */
  32. /* Path to site override folder */
  33. /*******************************
  34. Themes
  35. *******************************/
  36. /* To override a theme for an individual element
  37. specify theme name below
  38. Be sure to update the user folder name (see README)
  39. */
  40. /* Global */
  41. /* Elements */
  42. /* Collections */
  43. /* Modules */
  44. /* Views */
  45. /*******************************
  46. Import Directives
  47. *******************************/
  48. /*------------------
  49. Load Default
  50. -------------------*/
  51. /*******************************
  52. Global Variables
  53. *******************************/
  54. /*-------------------
  55. Paths
  56. --------------------*/
  57. /*-------------------
  58. Page
  59. --------------------*/
  60. /*-------------------
  61. Breakpoints
  62. --------------------*/
  63. /*-------------------
  64. Fonts
  65. --------------------*/
  66. /*-------------------
  67. Icons
  68. --------------------*/
  69. /* Width of largest icon */
  70. /*******************************
  71. BG Colors
  72. *******************************/
  73. /*******************************
  74. Colors
  75. *******************************/
  76. /*-------------------
  77. Background
  78. --------------------*/
  79. /*--- Colors ---*/
  80. /*--- Emotive ---*/
  81. /*--- Neutrals ---*/
  82. /*-------------------
  83. Emotive
  84. --------------------*/
  85. /*-------------------
  86. Text Colors
  87. --------------------*/
  88. /*-------------------
  89. Brand Colors
  90. --------------------*/
  91. /*-------------------
  92. Borders
  93. --------------------*/
  94. /*-------------------
  95. Sizes
  96. --------------------*/
  97. /*-------------------
  98. Transitions
  99. --------------------*/
  100. /*******************************
  101. States
  102. *******************************/
  103. /*-------------------
  104. Disabled
  105. --------------------*/
  106. /*-------------------
  107. Hover
  108. --------------------*/
  109. /*--- Colors ---*/
  110. /*--- Emotive ---*/
  111. /*--- Neutrals ---*/
  112. /*-------------------
  113. Down (:active)
  114. --------------------*/
  115. /*--- Colors ---*/
  116. /*--- Emotive ---*/
  117. /*--- Neutrals ---*/
  118. /*-------------------
  119. Active
  120. --------------------*/
  121. /*--- Standard ---*/
  122. /*--- Emotive ---*/
  123. /*--- Neutrals ---*/
  124. /*-------------------
  125. Globals Used
  126. --------------------*/
  127. /*
  128. @disabledOpacity
  129. */
  130. /*-------------------
  131. Icon Variables
  132. --------------------*/
  133. /*------------------
  134. Load Theme
  135. -------------------*/
  136. /*------------------
  137. Load Site
  138. -------------------*/
  139. /*******************************
  140. User Global Variables
  141. *******************************/
  142. /*******************************
  143. User Variable Overrides
  144. *******************************/
  145. /*------------------
  146. Override Mix-in
  147. -------------------*/
  148. /*******************************
  149. Icon
  150. *******************************/
  151. @font-face {
  152. font-family: 'Icons';
  153. src: url("../../themes/packages/default/assets/fonts/icons.eot");
  154. src: url("../../themes/packages/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("../../themes/packages/default/assets/fonts/icons.svg#icons") format('svg'), url("../../themes/packages/default/assets/fonts/icons.woff") format('woff'), url("../../themes/packages/default/assets/fonts/icons.ttf") format('truetype');
  155. font-style: normal;
  156. font-weight: normal;
  157. font-variant: normal;
  158. text-decoration: inherit;
  159. text-transform: none;
  160. }
  161. i.icon {
  162. display: inline-block;
  163. opacity: 0.75;
  164. margin: 0em 0.25em 0em 0em;
  165. width: 1.23em;
  166. height: 1em;
  167. font-family: 'Icons';
  168. font-style: normal;
  169. line-height: 1;
  170. font-weight: normal;
  171. text-decoration: inherit;
  172. text-align: center;
  173. speak: none;
  174. -webkit-box-sizing: border-box;
  175. -moz-box-sizing: border-box;
  176. box-sizing: border-box;
  177. font-smoothing: antialiased;
  178. -webkit-backface-visibility: hidden;
  179. -ms-backface-visibility: hidden;
  180. backface-visibility: hidden;
  181. }
  182. /*******************************
  183. Types
  184. *******************************/
  185. /*--------------
  186. Loading
  187. ---------------*/
  188. i.icon.loading {
  189. -webkit-animation: icon-loading 2s linear infinite;
  190. animation: icon-loading 2s linear infinite;
  191. }
  192. @-webkit-keyframes icon-loading {
  193. from {
  194. -webkit-transform: rotate(0deg);
  195. transform: rotate(0deg);
  196. }
  197. to {
  198. -webkit-transform: rotate(360deg);
  199. transform: rotate(360deg);
  200. }
  201. }
  202. @keyframes icon-loading {
  203. from {
  204. -webkit-transform: rotate(0deg);
  205. transform: rotate(0deg);
  206. }
  207. to {
  208. -webkit-transform: rotate(360deg);
  209. transform: rotate(360deg);
  210. }
  211. }
  212. /*******************************
  213. States
  214. *******************************/
  215. i.icon.hover {
  216. opacity: 1;
  217. }
  218. i.icon.active {
  219. opacity: 1;
  220. }
  221. i.emphasized.icon {
  222. opacity: 1;
  223. }
  224. i.icon.disabled {
  225. opacity: 0.3;
  226. }
  227. /*******************************
  228. Variations
  229. *******************************/
  230. /*-------------------
  231. Link
  232. --------------------*/
  233. i.link.icon {
  234. cursor: pointer;
  235. opacity: 0.75;
  236. -webkit-transition: opacity 0.25s ease;
  237. transition: opacity 0.25s ease;
  238. }
  239. i.link.icon:hover {
  240. opacity: 1 !important;
  241. }
  242. /*-------------------
  243. Circular
  244. --------------------*/
  245. i.circular.icon {
  246. border-radius: 500em !important;
  247. padding: 0.5em 0.35em !important;
  248. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  249. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  250. line-height: 1 !important;
  251. width: 2em !important;
  252. height: 2em !important;
  253. }
  254. i.circular.inverted.icon {
  255. border: none;
  256. -webkit-box-shadow: none;
  257. box-shadow: none;
  258. }
  259. /*-------------------
  260. Flipped
  261. --------------------*/
  262. i.flipped.icon,
  263. i.horizontally.flipped.icon {
  264. -webkit-transform: scale(-1, 1);
  265. -ms-transform: scale(-1, 1);
  266. transform: scale(-1, 1);
  267. }
  268. i.vertically.flipped.icon {
  269. -webkit-transform: scale(1, -1);
  270. -ms-transform: scale(1, -1);
  271. transform: scale(1, -1);
  272. }
  273. /*-------------------
  274. Rotated
  275. --------------------*/
  276. i.rotated.icon,
  277. i.right.rotated.icon,
  278. i.clockwise.rotated.icon {
  279. -webkit-transform: rotate(90deg);
  280. -ms-transform: rotate(90deg);
  281. transform: rotate(90deg);
  282. }
  283. i.left.rotated.icon,
  284. i.counterclockwise.rotated.icon {
  285. -webkit-transform: rotate(-90deg);
  286. -ms-transform: rotate(-90deg);
  287. transform: rotate(-90deg);
  288. }
  289. /*-------------------
  290. Square
  291. --------------------*/
  292. i.square.icon {
  293. width: 2em;
  294. height: 2em;
  295. padding: 2em !important;
  296. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  297. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  298. vertical-align: baseline;
  299. }
  300. i.square.inverted.icon {
  301. border: none;
  302. -webkit-box-shadow: none;
  303. box-shadow: none;
  304. }
  305. /*-------------------
  306. Inverted
  307. --------------------*/
  308. i.inverted.icon {
  309. background-color: #222222;
  310. color: #FFFFFF;
  311. }
  312. /*-------------------
  313. Colors
  314. --------------------*/
  315. i.black.icon {
  316. color: #555555 !important;
  317. }
  318. i.blue.icon {
  319. color: #0074d9 !important;
  320. }
  321. i.green.icon {
  322. color: #2ecc40 !important;
  323. }
  324. i.orange.icon {
  325. color: #ff851b !important;
  326. }
  327. i.pink.icon {
  328. color: #d9499a !important;
  329. }
  330. i.purple.icon {
  331. color: #564f8a !important;
  332. }
  333. i.red.icon {
  334. color: #ff4136 !important;
  335. }
  336. i.teal.icon {
  337. color: #39cccc !important;
  338. }
  339. i.yellow.icon {
  340. color: #ffcb08 !important;
  341. }
  342. /*-------------------
  343. Inverted Colors
  344. --------------------*/
  345. i.inverted.black.icon {
  346. background-color: #555555 !important;
  347. color: #FFFFFF !important;
  348. }
  349. i.inverted.blue.icon {
  350. background-color: #0074d9 !important;
  351. color: #FFFFFF !important;
  352. }
  353. i.inverted.green.icon {
  354. background-color: #2ecc40 !important;
  355. color: #FFFFFF !important;
  356. }
  357. i.inverted.orange.icon {
  358. background-color: #ff851b !important;
  359. color: #FFFFFF !important;
  360. }
  361. i.inverted.pink.icon {
  362. background-color: #d9499a !important;
  363. color: #FFFFFF !important;
  364. }
  365. i.inverted.purple.icon {
  366. background-color: #564f8a !important;
  367. color: #FFFFFF !important;
  368. }
  369. i.inverted.red.icon {
  370. background-color: #ff4136 !important;
  371. color: #FFFFFF !important;
  372. }
  373. i.inverted.teal.icon {
  374. background-color: #39cccc !important;
  375. color: #FFFFFF !important;
  376. }
  377. i.inverted.yellow.icon {
  378. background-color: #ffcb08 !important;
  379. color: #FFFFFF !important;
  380. }
  381. /*-------------------
  382. Sizes
  383. --------------------*/
  384. i.small.icon {
  385. font-size: 0.875em;
  386. }
  387. i.icon {
  388. font-size: 1em;
  389. }
  390. i.large.icon {
  391. font-size: 1.5em;
  392. vertical-align: middle;
  393. }
  394. i.big.icon {
  395. font-size: 2em;
  396. vertical-align: middle;
  397. }
  398. i.huge.icon {
  399. font-size: 4em;
  400. vertical-align: middle;
  401. }
  402. i.massive.icon {
  403. font-size: 8em;
  404. vertical-align: middle;
  405. }
  406. /*******************************
  407. Overrides
  408. *******************************/
  409. i.icon.left:before {
  410. content: "\f060";
  411. }
  412. i.icon.right:before {
  413. content: "\f061";
  414. }
  415. i.icon.add.sign.box:before {
  416. content: "\f0fe";
  417. }
  418. i.icon.add.sign:before {
  419. content: "\f055";
  420. }
  421. i.icon.add:before {
  422. content: "\f067";
  423. }
  424. i.icon.adjust:before {
  425. content: "\f042";
  426. }
  427. i.icon.adn:before {
  428. content: "\f170";
  429. }
  430. i.icon.align.center:before {
  431. content: "\f037";
  432. }
  433. i.icon.align.justify:before {
  434. content: "\f039";
  435. }
  436. i.icon.align.left:before {
  437. content: "\f036";
  438. }
  439. i.icon.align.right:before {
  440. content: "\f038";
  441. }
  442. i.icon.ambulance:before {
  443. content: "\f0f9";
  444. }
  445. i.icon.anchor:before {
  446. content: "\f13d";
  447. }
  448. i.icon.android:before {
  449. content: "\f17b";
  450. }
  451. i.icon.angle.down:before {
  452. content: "\f107";
  453. }
  454. i.icon.angle.left:before {
  455. content: "\f104";
  456. }
  457. i.icon.angle.right:before {
  458. content: "\f105";
  459. }
  460. i.icon.angle.up:before {
  461. content: "\f106";
  462. }
  463. i.icon.apple:before {
  464. content: "\f179";
  465. }
  466. i.icon.archive:before {
  467. content: "\f187";
  468. }
  469. i.icon.arrow.down:before {
  470. content: "\f078";
  471. }
  472. i.icon.arrow.left:before {
  473. content: "\f053";
  474. }
  475. i.icon.arrow.right:before {
  476. content: "\f054";
  477. }
  478. i.icon.arrow.sign.down:before {
  479. content: "\f13a";
  480. }
  481. i.icon.arrow.sign.left:before {
  482. content: "\f137";
  483. }
  484. i.icon.arrow.sign.right:before {
  485. content: "\f138";
  486. }
  487. i.icon.arrow.sign.up:before {
  488. content: "\f139";
  489. }
  490. i.icon.arrow.up:before {
  491. content: "\f077";
  492. }
  493. i.icon.asterisk:before {
  494. content: "\f069";
  495. }
  496. i.icon.attachment:before {
  497. content: "\f0c6";
  498. }
  499. i.icon.attention:before {
  500. content: "\f06a";
  501. }
  502. i.icon.backward:before {
  503. content: "\f04a";
  504. }
  505. i.icon.ban.circle:before {
  506. content: "\f05e";
  507. }
  508. i.icon.bar.chart:before {
  509. content: "\f080";
  510. }
  511. i.icon.barcode:before {
  512. content: "\f02a";
  513. }
  514. i.icon.beer:before {
  515. content: "\f0fc";
  516. }
  517. i.icon.bell.outline:before {
  518. content: "\f0a2";
  519. }
  520. i.icon.bell:before {
  521. content: "\f0f3";
  522. }
  523. i.icon.bitbucket.sign:before {
  524. content: "\f172";
  525. }
  526. i.icon.bitbucket:before {
  527. content: "\f171";
  528. }
  529. i.icon.bitcoin:before {
  530. content: "\f15a";
  531. }
  532. i.icon.bold:before {
  533. content: "\f032";
  534. }
  535. i.icon.bolt:before {
  536. content: "\f0e7";
  537. }
  538. i.icon.book:before {
  539. content: "\f02d";
  540. }
  541. i.icon.bookmark.empty:before {
  542. content: "\f097";
  543. }
  544. i.icon.bookmark:before {
  545. content: "\f02e";
  546. }
  547. i.icon.box.arrow.down:before {
  548. content: "\f150";
  549. }
  550. i.icon.box.arrow.right:before {
  551. content: "\f152";
  552. }
  553. i.icon.box.arrow.up:before {
  554. content: "\f151";
  555. }
  556. i.icon.briefcase:before {
  557. content: "\f0b1";
  558. }
  559. i.icon.browser:before {
  560. content: "\f022";
  561. }
  562. i.icon.bug:before {
  563. content: "\f188";
  564. }
  565. i.icon.building:before {
  566. content: "\f0f7";
  567. }
  568. i.icon.bullhorn:before {
  569. content: "\f0a1";
  570. }
  571. i.icon.bullseye:before {
  572. content: "\f140";
  573. }
  574. i.icon.calendar.empty:before {
  575. content: "\f133";
  576. }
  577. i.icon.calendar:before {
  578. content: "\f073";
  579. }
  580. i.icon.camera.retro:before {
  581. content: "\f083";
  582. }
  583. i.icon.camera:before {
  584. content: "\f030";
  585. }
  586. i.icon.triangle.down:before {
  587. content: "\f0d7";
  588. }
  589. i.icon.triangle.left:before {
  590. content: "\f0d9";
  591. }
  592. i.icon.triangle.right:before {
  593. content: "\f0da";
  594. }
  595. i.icon.triangle.up:before {
  596. content: "\f0d8";
  597. }
  598. i.icon.cart:before {
  599. content: "\f07a";
  600. }
  601. i.icon.certificate:before {
  602. content: "\f0a3";
  603. }
  604. i.icon.chat.outline:before {
  605. content: "\f0e6";
  606. }
  607. i.icon.chat:before {
  608. content: "\f086";
  609. }
  610. i.icon.checkbox.empty:before {
  611. content: "\f096";
  612. }
  613. i.icon.checkbox.minus:before {
  614. content: "\f147";
  615. }
  616. i.icon.checked.checkbox:before {
  617. content: "\f046";
  618. }
  619. i.icon.checkmark.sign:before {
  620. content: "\f14a";
  621. }
  622. i.icon.checkmark:before {
  623. content: "\f00c";
  624. }
  625. i.icon.circle.blank:before {
  626. content: "\f10c";
  627. }
  628. i.icon.circle.down:before {
  629. content: "\f0ab";
  630. }
  631. i.icon.circle.left:before {
  632. content: "\f0a8";
  633. }
  634. i.icon.circle.right:before {
  635. content: "\f0a9";
  636. }
  637. i.icon.circle.up:before {
  638. content: "\f0aa";
  639. }
  640. i.icon.circle:before {
  641. content: "\f111";
  642. }
  643. i.icon.cloud.download:before {
  644. content: "\f0ed";
  645. }
  646. i.icon.cloud.upload:before {
  647. content: "\f0ee";
  648. }
  649. i.icon.cloud:before {
  650. content: "\f0c2";
  651. }
  652. i.icon.code.fork:before {
  653. content: "\f126";
  654. }
  655. i.icon.code:before {
  656. content: "\f121";
  657. }
  658. i.icon.coffee:before {
  659. content: "\f0f4";
  660. }
  661. i.icon.collapse:before {
  662. content: "\f117";
  663. }
  664. i.icon.comment.outline:before {
  665. content: "\f0e5";
  666. }
  667. i.icon.comment:before {
  668. content: "\f075";
  669. }
  670. i.icon.copy:before {
  671. content: "\f0c5";
  672. }
  673. i.icon.crop:before {
  674. content: "\f125";
  675. }
  676. i.icon.css3:before {
  677. content: "\f13c";
  678. }
  679. i.icon.cut:before {
  680. content: "\f0c4";
  681. }
  682. i.icon.dashboard:before {
  683. content: "\f0e4";
  684. }
  685. i.icon.desktop:before {
  686. content: "\f108";
  687. }
  688. i.icon.doctor:before {
  689. content: "\f0f0";
  690. }
  691. i.icon.dollar:before {
  692. content: "\f155";
  693. }
  694. i.icon.double.angle.down:before {
  695. content: "\f103";
  696. }
  697. i.icon.double.angle.left:before {
  698. content: "\f100";
  699. }
  700. i.icon.double.angle.right:before {
  701. content: "\f101";
  702. }
  703. i.icon.double.angle.up:before {
  704. content: "\f102";
  705. }
  706. i.icon.down:before {
  707. content: "\f063";
  708. }
  709. i.icon.download.disk:before {
  710. content: "\f019";
  711. }
  712. i.icon.download:before {
  713. content: "\f01a";
  714. }
  715. i.icon.dribbble:before {
  716. content: "\f17d";
  717. }
  718. i.icon.dropbox:before {
  719. content: "\f16b";
  720. }
  721. i.icon.edit.sign:before {
  722. content: "\f14b";
  723. }
  724. i.icon.edit:before {
  725. content: "\f044";
  726. }
  727. i.icon.eject:before {
  728. content: "\f052";
  729. }
  730. i.icon.ellipsis.horizontal:before {
  731. content: "\f141";
  732. }
  733. i.icon.ellipsis.vertical:before {
  734. content: "\f142";
  735. }
  736. i.icon.eraser:before {
  737. content: "\f12d";
  738. }
  739. i.icon.euro:before {
  740. content: "\f153";
  741. }
  742. i.icon.exchange:before {
  743. content: "\f0ec";
  744. }
  745. i.icon.exclamation:before {
  746. content: "\f12a";
  747. }
  748. i.icon.expand:before {
  749. content: "\f116";
  750. }
  751. i.icon.external.url.sign:before {
  752. content: "\f14c";
  753. }
  754. i.icon.external.url:before {
  755. content: "\f08e";
  756. }
  757. i.icon.facebook.sign:before {
  758. content: "\f082";
  759. }
  760. i.icon.facebook:before {
  761. content: "\f09a";
  762. }
  763. i.icon.facetime.video:before {
  764. content: "\f03d";
  765. }
  766. i.icon.fast.backward:before {
  767. content: "\f049";
  768. }
  769. i.icon.fast.forward:before {
  770. content: "\f050";
  771. }
  772. i.icon.female:before {
  773. content: "\f182";
  774. }
  775. i.icon.fighter.jet:before {
  776. content: "\f0fb";
  777. }
  778. i.icon.file.outline:before {
  779. content: "\f016";
  780. }
  781. i.icon.file.text.outline:before {
  782. content: "\f0f6";
  783. }
  784. i.icon.file.text:before {
  785. content: "\f15c";
  786. }
  787. i.icon.file:before {
  788. content: "\f15b";
  789. }
  790. i.icon.filter:before {
  791. content: "\f0b0";
  792. }
  793. i.icon.fire.extinguisher:before {
  794. content: "\f134";
  795. }
  796. i.icon.fire:before {
  797. content: "\f06d";
  798. }
  799. i.icon.flag.checkered:before {
  800. content: "\f11e";
  801. }
  802. i.icon.flag.empty:before {
  803. content: "\f11d";
  804. }
  805. i.icon.flag:before {
  806. content: "\f024";
  807. }
  808. i.icon.flickr:before {
  809. content: "\f16e";
  810. }
  811. i.icon.folder.open.outline:before {
  812. content: "\f115";
  813. }
  814. i.icon.folder.open:before {
  815. content: "\f07c";
  816. }
  817. i.icon.folder.outline:before {
  818. content: "\f114";
  819. }
  820. i.icon.folder:before {
  821. content: "\f07b";
  822. }
  823. i.icon.font:before {
  824. content: "\f031";
  825. }
  826. i.icon.food:before {
  827. content: "\f0f5";
  828. }
  829. i.icon.forward.mail:before {
  830. content: "\f064";
  831. }
  832. i.icon.forward:before {
  833. content: "\f04e";
  834. }
  835. i.icon.foursquare:before {
  836. content: "\f180";
  837. }
  838. i.icon.frown:before {
  839. content: "\f119";
  840. }
  841. i.icon.fullscreen:before {
  842. content: "\f0b2";
  843. }
  844. i.icon.gamepad:before {
  845. content: "\f11b";
  846. }
  847. i.icon.gift:before {
  848. content: "\f06b";
  849. }
  850. i.icon.github.alternate:before {
  851. content: "\f09b";
  852. }
  853. i.icon.github.sign:before {
  854. content: "\f092";
  855. }
  856. i.icon.github:before {
  857. content: "\f113";
  858. }
  859. i.icon.gittip:before {
  860. content: "\f184";
  861. }
  862. i.icon.glass:before {
  863. content: "\f000";
  864. }
  865. i.icon.globe:before {
  866. content: "\f0ac";
  867. }
  868. i.icon.google.plus.sign:before {
  869. content: "\f0d4";
  870. }
  871. i.icon.google.plus:before {
  872. content: "\f0d5";
  873. }
  874. i.icon.h.sign:before {
  875. content: "\f0fd";
  876. }
  877. i.icon.hand.down:before {
  878. content: "\f0a7";
  879. }
  880. i.icon.hand.left:before {
  881. content: "\f0a5";
  882. }
  883. i.icon.hand.right:before {
  884. content: "\f0a4";
  885. }
  886. i.icon.hand.up:before {
  887. content: "\f0a6";
  888. }
  889. i.icon.hdd:before {
  890. content: "\f0a0";
  891. }
  892. i.icon.headphones:before {
  893. content: "\f025";
  894. }
  895. i.icon.heart.empty:before {
  896. content: "\f08a";
  897. }
  898. i.icon.heart:before {
  899. content: "\f004";
  900. }
  901. i.icon.help:before {
  902. content: "\f059";
  903. }
  904. i.icon.hide:before {
  905. content: "\f070";
  906. }
  907. i.icon.home:before {
  908. content: "\f015";
  909. }
  910. i.icon.hospital:before {
  911. content: "\f0f8";
  912. }
  913. i.icon.html5:before {
  914. content: "\f13b";
  915. }
  916. i.icon.inbox:before {
  917. content: "\f01c";
  918. }
  919. i.icon.indent.left:before {
  920. content: "\f03b";
  921. }
  922. i.icon.indent.right:before {
  923. content: "\f03c";
  924. }
  925. i.icon.info.letter:before {
  926. content: "\f129";
  927. }
  928. i.icon.info:before {
  929. content: "\f05a";
  930. }
  931. i.icon.instagram:before {
  932. content: "\f16d";
  933. }
  934. i.icon.italic:before {
  935. content: "\f033";
  936. }
  937. i.icon.key:before {
  938. content: "\f084";
  939. }
  940. i.icon.keyboard:before {
  941. content: "\f11c";
  942. }
  943. i.icon.lab:before {
  944. content: "\f0c3";
  945. }
  946. i.icon.laptop:before {
  947. content: "\f109";
  948. }
  949. i.icon.layout.block:before {
  950. content: "\f009";
  951. }
  952. i.icon.layout.column:before {
  953. content: "\f0db";
  954. }
  955. i.icon.layout.grid:before {
  956. content: "\f00a";
  957. }
  958. i.icon.layout.list:before {
  959. content: "\f00b";
  960. }
  961. i.icon.leaf:before {
  962. content: "\f06c";
  963. }
  964. i.icon.legal:before {
  965. content: "\f0e3";
  966. }
  967. i.icon.lemon:before {
  968. content: "\f094";
  969. }
  970. i.icon.level.down:before {
  971. content: "\f149";
  972. }
  973. i.icon.level.up:before {
  974. content: "\f148";
  975. }
  976. i.icon.lightbulb:before {
  977. content: "\f0eb";
  978. }
  979. i.icon.linkedin.sign:before {
  980. content: "\f08c";
  981. }
  982. i.icon.linkedin:before {
  983. content: "\f0e1";
  984. }
  985. i.icon.linux:before {
  986. content: "\f17c";
  987. }
  988. i.icon.list.ordered:before {
  989. content: "\f0cb";
  990. }
  991. i.icon.list.unordered:before {
  992. content: "\f0ca";
  993. }
  994. i.icon.list:before {
  995. content: "\f03a";
  996. }
  997. i.icon.loading:before {
  998. content: "\f110";
  999. }
  1000. i.icon.location:before {
  1001. content: "\f124";
  1002. }
  1003. i.icon.lock:before {
  1004. content: "\f023";
  1005. }
  1006. i.icon.long.arrow.down:before {
  1007. content: "\f175";
  1008. }
  1009. i.icon.long.arrow.left:before {
  1010. content: "\f177";
  1011. }
  1012. i.icon.long.arrow.right:before {
  1013. content: "\f178";
  1014. }
  1015. i.icon.long.arrow.up:before {
  1016. content: "\f176";
  1017. }
  1018. i.icon.magic:before {
  1019. content: "\f0d0";
  1020. }
  1021. i.icon.magnet:before {
  1022. content: "\f076";
  1023. }
  1024. i.icon.mail.outline:before {
  1025. content: "\f003";
  1026. }
  1027. i.icon.mail.reply:before {
  1028. content: "\f112";
  1029. }
  1030. i.icon.mail:before {
  1031. content: "\f0e0";
  1032. }
  1033. i.icon.male:before {
  1034. content: "\f183";
  1035. }
  1036. i.icon.map.marker:before {
  1037. content: "\f041";
  1038. }
  1039. i.icon.map:before {
  1040. content: "\f14e";
  1041. }
  1042. i.icon.maxcdn:before {
  1043. content: "\f136";
  1044. }
  1045. i.icon.medkit:before {
  1046. content: "\f0fa";
  1047. }
  1048. i.icon.meh:before {
  1049. content: "\f11a";
  1050. }
  1051. i.icon.minus.sign.alternate:before {
  1052. content: "\f146";
  1053. }
  1054. i.icon.minus.sign:before {
  1055. content: "\f056";
  1056. }
  1057. i.icon.minus:before {
  1058. content: "\f068";
  1059. }
  1060. i.icon.mobile:before {
  1061. content: "\f10b";
  1062. }
  1063. i.icon.money:before {
  1064. content: "\f0d6";
  1065. }
  1066. i.icon.moon:before {
  1067. content: "\f186";
  1068. }
  1069. i.icon.move:before {
  1070. content: "\f047";
  1071. }
  1072. i.icon.music:before {
  1073. content: "\f001";
  1074. }
  1075. i.icon.mute:before {
  1076. content: "\f131";
  1077. }
  1078. i.icon.off:before {
  1079. content: "\f011";
  1080. }
  1081. i.icon.ok.circle:before {
  1082. content: "\f05d";
  1083. }
  1084. i.icon.ok.sign:before {
  1085. content: "\f058";
  1086. }
  1087. i.icon.paste:before {
  1088. content: "\f0ea";
  1089. }
  1090. i.icon.pause:before {
  1091. content: "\f04c";
  1092. }
  1093. i.icon.payment:before {
  1094. content: "\f09d";
  1095. }
  1096. i.icon.pencil:before {
  1097. content: "\f040";
  1098. }
  1099. i.icon.phone.sign:before {
  1100. content: "\f098";
  1101. }
  1102. i.icon.phone:before {
  1103. content: "\f095";
  1104. }
  1105. i.icon.photo:before {
  1106. content: "\f03e";
  1107. }
  1108. i.icon.pin:before {
  1109. content: "\f08d";
  1110. }
  1111. i.icon.pinterest.sign:before {
  1112. content: "\f0d3";
  1113. }
  1114. i.icon.pinterest:before {
  1115. content: "\f0d2";
  1116. }
  1117. i.icon.plane:before {
  1118. content: "\f072";
  1119. }
  1120. i.icon.play.circle:before {
  1121. content: "\f01d";
  1122. }
  1123. i.icon.play.sign:before {
  1124. content: "\f144";
  1125. }
  1126. i.icon.play:before {
  1127. content: "\f04b";
  1128. }
  1129. i.icon.pound:before {
  1130. content: "\f154";
  1131. }
  1132. i.icon.print:before {
  1133. content: "\f02f";
  1134. }
  1135. i.icon.puzzle.piece:before {
  1136. content: "\f12e";
  1137. }
  1138. i.icon.qr.code:before {
  1139. content: "\f029";
  1140. }
  1141. i.icon.question:before {
  1142. content: "\f128";
  1143. }
  1144. i.icon.quote.left:before {
  1145. content: "\f10d";
  1146. }
  1147. i.icon.quote.right:before {
  1148. content: "\f10e";
  1149. }
  1150. i.icon.refresh:before {
  1151. content: "\f021";
  1152. }
  1153. i.icon.remove.circle:before {
  1154. content: "\f05c";
  1155. }
  1156. i.icon.remove.sign:before {
  1157. content: "\f057";
  1158. }
  1159. i.icon.remove:before {
  1160. content: "\f00d";
  1161. }
  1162. i.icon.renren:before {
  1163. content: "\f18b";
  1164. }
  1165. i.icon.reorder:before {
  1166. content: "\f0c9";
  1167. }
  1168. i.icon.repeat:before {
  1169. content: "\f01e";
  1170. }
  1171. i.icon.reply.all.mail:before {
  1172. content: "\f122";
  1173. }
  1174. i.icon.resize.full:before {
  1175. content: "\f065";
  1176. }
  1177. i.icon.resize.horizontal:before {
  1178. content: "\f07e";
  1179. }
  1180. i.icon.resize.small:before {
  1181. content: "\f066";
  1182. }
  1183. i.icon.resize.vertical:before {
  1184. content: "\f07d";
  1185. }
  1186. i.icon.retweet:before {
  1187. content: "\f079";
  1188. }
  1189. i.icon.road:before {
  1190. content: "\f018";
  1191. }
  1192. i.icon.rocket:before {
  1193. content: "\f135";
  1194. }
  1195. i.icon.rss.sign:before {
  1196. content: "\f143";
  1197. }
  1198. i.icon.rss:before {
  1199. content: "\f09e";
  1200. }
  1201. i.icon.rupee:before {
  1202. content: "\f156";
  1203. }
  1204. i.icon.save:before {
  1205. content: "\f0c7";
  1206. }
  1207. i.icon.screenshot:before {
  1208. content: "\f05b";
  1209. }
  1210. i.icon.search:before {
  1211. content: "\f002";
  1212. }
  1213. i.icon.setting:before {
  1214. content: "\f013";
  1215. }
  1216. i.icon.settings:before {
  1217. content: "\f085";
  1218. }
  1219. i.icon.share.sign:before {
  1220. content: "\f14d";
  1221. }
  1222. i.icon.share:before {
  1223. content: "\f045";
  1224. }
  1225. i.icon.shield:before {
  1226. content: "\f132";
  1227. }
  1228. i.icon.shuffle:before {
  1229. content: "\f074";
  1230. }
  1231. i.icon.sign.in:before {
  1232. content: "\f090";
  1233. }
  1234. i.icon.sign.out:before {
  1235. content: "\f08b";
  1236. }
  1237. i.icon.sign:before {
  1238. content: "\f0c8";
  1239. }
  1240. i.icon.signal:before {
  1241. content: "\f012";
  1242. }
  1243. i.icon.sitemap:before {
  1244. content: "\f0e8";
  1245. }
  1246. i.icon.skype:before {
  1247. content: "\f17e";
  1248. }
  1249. i.icon.smile:before {
  1250. content: "\f118";
  1251. }
  1252. i.icon.sort.ascending:before {
  1253. content: "\f0de";
  1254. }
  1255. i.icon.sort.descending:before {
  1256. content: "\f0dd";
  1257. }
  1258. i.icon.sort.alphabet.descending:before {
  1259. content: "\f15e";
  1260. }
  1261. i.icon.sort.alphabet:before {
  1262. content: "\f15d";
  1263. }
  1264. i.icon.sort.attributes.descending:before {
  1265. content: "\f161";
  1266. }
  1267. i.icon.sort.attributes:before {
  1268. content: "\f160";
  1269. }
  1270. i.icon.sort.order.descending:before {
  1271. content: "\f163";
  1272. }
  1273. i.icon.sort.order:before {
  1274. content: "\f162";
  1275. }
  1276. i.icon.sort:before {
  1277. content: "\f0dc";
  1278. }
  1279. i.icon.stackexchange:before {
  1280. content: "\f16c";
  1281. }
  1282. i.icon.star.empty:before {
  1283. content: "\f006";
  1284. }
  1285. i.icon.star.half.empty:before {
  1286. content: "\f123";
  1287. }
  1288. i.icon.star.half.full:before,
  1289. i.icon.star.half:before {
  1290. content: "\f089";
  1291. }
  1292. i.icon.star:before {
  1293. content: "\f005";
  1294. }
  1295. i.icon.step.backward:before {
  1296. content: "\f048";
  1297. }
  1298. i.icon.step.forward:before {
  1299. content: "\f051";
  1300. }
  1301. i.icon.stethoscope:before {
  1302. content: "\f0f1";
  1303. }
  1304. i.icon.stop:before {
  1305. content: "\f04d";
  1306. }
  1307. i.icon.strikethrough:before {
  1308. content: "\f0cc";
  1309. }
  1310. i.icon.subscript:before {
  1311. content: "\f12c";
  1312. }
  1313. i.icon.suitcase:before {
  1314. content: "\f0f2";
  1315. }
  1316. i.icon.sun:before {
  1317. content: "\f185";
  1318. }
  1319. i.icon.superscript:before {
  1320. content: "\f12b";
  1321. }
  1322. i.icon.table:before {
  1323. content: "\f0ce";
  1324. }
  1325. i.icon.tablet:before {
  1326. content: "\f10a";
  1327. }
  1328. i.icon.tag:before {
  1329. content: "\f02b";
  1330. }
  1331. i.icon.tags:before {
  1332. content: "\f02c";
  1333. }
  1334. i.icon.tasks:before {
  1335. content: "\f0ae";
  1336. }
  1337. i.icon.terminal:before {
  1338. content: "\f120";
  1339. }
  1340. i.icon.text.height:before {
  1341. content: "\f034";
  1342. }
  1343. i.icon.text.width:before {
  1344. content: "\f035";
  1345. }
  1346. i.icon.thumbs.down.outline:before {
  1347. content: "\f088";
  1348. }
  1349. i.icon.thumbs.down:before {
  1350. content: "\f165";
  1351. }
  1352. i.icon.thumbs.up.outline:before {
  1353. content: "\f087";
  1354. }
  1355. i.icon.thumbs.up:before {
  1356. content: "\f164";
  1357. }
  1358. i.icon.ticket:before {
  1359. content: "\f145";
  1360. }
  1361. i.icon.time:before {
  1362. content: "\f017";
  1363. }
  1364. i.icon.tint:before {
  1365. content: "\f043";
  1366. }
  1367. i.icon.trash:before {
  1368. content: "\f014";
  1369. }
  1370. i.icon.trello:before {
  1371. content: "\f181";
  1372. }
  1373. i.icon.trophy:before {
  1374. content: "\f091";
  1375. }
  1376. i.icon.truck:before {
  1377. content: "\f0d1";
  1378. }
  1379. i.icon.tumblr.sign:before {
  1380. content: "\f174";
  1381. }
  1382. i.icon.tumblr:before {
  1383. content: "\f173";
  1384. }
  1385. i.icon.twitter.sign:before {
  1386. content: "\f081";
  1387. }
  1388. i.icon.twitter:before {
  1389. content: "\f099";
  1390. }
  1391. i.icon.umbrella:before {
  1392. content: "\f0e9";
  1393. }
  1394. i.icon.underline:before {
  1395. content: "\f0cd";
  1396. }
  1397. i.icon.undo:before {
  1398. content: "\f0e2";
  1399. }
  1400. i.icon.unhide:before {
  1401. content: "\f06e";
  1402. }
  1403. i.icon.unlink:before {
  1404. content: "\f127";
  1405. }
  1406. i.icon.unlock.alternate:before {
  1407. content: "\f13e";
  1408. }
  1409. i.icon.unlock:before {
  1410. content: "\f09c";
  1411. }
  1412. i.icon.unmute:before {
  1413. content: "\f130";
  1414. }
  1415. i.icon.up:before {
  1416. content: "\f062";
  1417. }
  1418. i.icon.upload.disk:before {
  1419. content: "\f093";
  1420. }
  1421. i.icon.upload:before {
  1422. content: "\f01b";
  1423. }
  1424. i.icon.url:before {
  1425. content: "\f0c1";
  1426. }
  1427. i.icon.user:before {
  1428. content: "\f007";
  1429. }
  1430. i.icon.users:before {
  1431. content: "\f0c0";
  1432. }
  1433. i.icon.video:before {
  1434. content: "\f008";
  1435. }
  1436. i.icon.vk:before {
  1437. content: "\f189";
  1438. }
  1439. i.icon.volume.down:before {
  1440. content: "\f027";
  1441. }
  1442. i.icon.volume.off:before {
  1443. content: "\f026";
  1444. }
  1445. i.icon.volume.up:before {
  1446. content: "\f028";
  1447. }
  1448. i.icon.warning:before {
  1449. content: "\f071";
  1450. }
  1451. i.icon.weibo:before {
  1452. content: "\f18a";
  1453. }
  1454. i.icon.windows:before {
  1455. content: "\f17a";
  1456. }
  1457. i.icon.won:before {
  1458. content: "\f159";
  1459. }
  1460. i.icon.wrench:before {
  1461. content: "\f0ad";
  1462. }
  1463. i.icon.xing.sign:before {
  1464. content: "\f169";
  1465. }
  1466. i.icon.xing:before {
  1467. content: "\f168";
  1468. }
  1469. i.icon.yen:before {
  1470. content: "\f157";
  1471. }
  1472. i.icon.youtube.play:before {
  1473. content: "\f16a";
  1474. }
  1475. i.icon.youtube.sign:before {
  1476. content: "\f166";
  1477. }
  1478. i.icon.youtube:before {
  1479. content: "\f167";
  1480. }
  1481. i.icon.yuan:before {
  1482. content: "\f158";
  1483. }
  1484. i.icon.zoom.in:before {
  1485. content: "\f00e";
  1486. }
  1487. i.icon.zoom.out:before {
  1488. content: "\f010";
  1489. }
  1490. /*--------------
  1491. Aliases
  1492. ---------------*/
  1493. i.icon.check:before {
  1494. content: "\f00c";
  1495. }
  1496. i.icon.close:before {
  1497. content: "\f00d";
  1498. }
  1499. i.icon.delete:before {
  1500. content: "\f00d";
  1501. }
  1502. i.icon.like:before {
  1503. content: "\f004";
  1504. }
  1505. i.icon.plus:before {
  1506. content: "\f067";
  1507. }
  1508. i.icon.signup:before {
  1509. content: "\f044";
  1510. }
  1511. i.icon.list.layout:before {
  1512. content: "\f0c9";
  1513. }
  1514. /*--------------
  1515. Spacing Fix
  1516. ---------------*/
  1517. /* stars are usually consecutive */
  1518. i.icon.star {
  1519. width: auto;
  1520. margin: 0em !important;
  1521. }
  1522. /* left side icons */
  1523. i.icon.left {
  1524. width: auto;
  1525. margin: 0em 0.5em 0em 0em;
  1526. }
  1527. /* right side icons */
  1528. i.icon.download,
  1529. i.icon.search,
  1530. i.icon.right {
  1531. width: auto;
  1532. margin: 0em 0em 0em 0.5em;
  1533. }
  1534. /*******************************
  1535. Overrides
  1536. *******************************/