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.

3008 lines
49 KiB

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