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.

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