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.

3316 lines
54 KiB

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