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.

2521 lines
41 KiB

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