font-awesome.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083
  1. /*!
  2. * Font Awesome 3.1.0
  3. * the iconic font designed for use with Twitter Bootstrap
  4. * -------------------------------------------------------
  5. * The full suite of pictographic icons, examples, and documentation
  6. * can be found at: http://fortawesome.github.com/Font-Awesome/
  7. *
  8. * License
  9. * -------------------------------------------------------
  10. * - The Font Awesome font is licensed under the SIL Open Font License v1.1 - http://scripts.sil.org/OFL
  11. * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
  12. * http://opensource.org/licenses/mit-license.html
  13. * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
  14. * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
  15. * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
  16. * Contact
  17. * -------------------------------------------------------
  18. * Email: dave@davegandy.com
  19. * Twitter: http://twitter.com/fortaweso_me
  20. * Work: Lead Product Designer @ http://kyruus.com
  21. */
  22. @font-face {
  23. font-family: 'FontAwesome';
  24. src: url('../font/fontawesome-webfont.eot?v=3.0.1');
  25. src: url('../font/FontAwesome.otf') format('opentype');
  26. font-weight: normal;
  27. font-style: normal;
  28. }
  29. /* Font Awesome styles
  30. ------------------------------------------------------- */
  31. [class^="icon-"],
  32. [class*=" icon-"] {
  33. font-family: FontAwesome;
  34. font-weight: normal;
  35. font-style: normal;
  36. text-decoration: inherit;
  37. -webkit-font-smoothing: antialiased;
  38. /* sprites.less reset */
  39. display: inline;
  40. width: auto;
  41. height: auto;
  42. line-height: normal;
  43. vertical-align: baseline;
  44. background-image: none;
  45. background-position: 0% 0%;
  46. background-repeat: repeat;
  47. margin-top: 0;
  48. }
  49. /* more sprites.less reset */
  50. .icon-white,
  51. .nav-pills > .active > a > [class^="icon-"],
  52. .nav-pills > .active > a > [class*=" icon-"],
  53. .nav-list > .active > a > [class^="icon-"],
  54. .nav-list > .active > a > [class*=" icon-"],
  55. .navbar-inverse .nav > .active > a > [class^="icon-"],
  56. .navbar-inverse .nav > .active > a > [class*=" icon-"],
  57. .dropdown-menu > li > a:hover > [class^="icon-"],
  58. .dropdown-menu > li > a:hover > [class*=" icon-"],
  59. .dropdown-menu > .active > a > [class^="icon-"],
  60. .dropdown-menu > .active > a > [class*=" icon-"],
  61. .dropdown-submenu:hover > a > [class^="icon-"],
  62. .dropdown-submenu:hover > a > [class*=" icon-"] {
  63. background-image: none;
  64. }
  65. [class^="icon-"]:before,
  66. [class*=" icon-"]:before {
  67. text-decoration: inherit;
  68. display: inline-block;
  69. speak: none;
  70. }
  71. /* makes sure icons active on rollover in links */
  72. a [class^="icon-"],
  73. a [class*=" icon-"] {
  74. display: inline-block;
  75. }
  76. /* makes the font 33% larger relative to the icon container */
  77. .icon-large:before {
  78. vertical-align: -10%;
  79. font-size: 1.3333333333333333em;
  80. }
  81. .btn [class^="icon-"],
  82. .nav [class^="icon-"],
  83. .btn [class*=" icon-"],
  84. .nav [class*=" icon-"] {
  85. display: inline;
  86. /* keeps button heights with and without icons the same */
  87. }
  88. .btn [class^="icon-"].icon-large,
  89. .nav [class^="icon-"].icon-large,
  90. .btn [class*=" icon-"].icon-large,
  91. .nav [class*=" icon-"].icon-large {
  92. line-height: .9em;
  93. }
  94. .btn [class^="icon-"].icon-spin,
  95. .nav [class^="icon-"].icon-spin,
  96. .btn [class*=" icon-"].icon-spin,
  97. .nav [class*=" icon-"].icon-spin {
  98. display: inline-block;
  99. }
  100. .nav-tabs [class^="icon-"],
  101. .nav-pills [class^="icon-"],
  102. .nav-tabs [class*=" icon-"],
  103. .nav-pills [class*=" icon-"] {
  104. /* keeps button heights with and without icons the same */
  105. }
  106. .nav-tabs [class^="icon-"],
  107. .nav-pills [class^="icon-"],
  108. .nav-tabs [class*=" icon-"],
  109. .nav-pills [class*=" icon-"],
  110. .nav-tabs [class^="icon-"].icon-large,
  111. .nav-pills [class^="icon-"].icon-large,
  112. .nav-tabs [class*=" icon-"].icon-large,
  113. .nav-pills [class*=" icon-"].icon-large {
  114. line-height: .9em;
  115. }
  116. li [class^="icon-"],
  117. .nav li [class^="icon-"],
  118. li [class*=" icon-"],
  119. .nav li [class*=" icon-"] {
  120. display: inline-block;
  121. width: 1.25em;
  122. text-align: center;
  123. }
  124. li [class^="icon-"].icon-large,
  125. .nav li [class^="icon-"].icon-large,
  126. li [class*=" icon-"].icon-large,
  127. .nav li [class*=" icon-"].icon-large {
  128. /* increased font size for icon-large */
  129. width: 1.5625em;
  130. }
  131. ul.icons {
  132. list-style-type: none;
  133. text-indent: -0.75em;
  134. }
  135. ul.icons li [class^="icon-"],
  136. ul.icons li [class*=" icon-"] {
  137. width: .75em;
  138. }
  139. .icon-muted {
  140. color: #eeeeee;
  141. }
  142. .icon-border {
  143. border: solid 1px #eeeeee;
  144. padding: .2em .25em .15em;
  145. -webkit-border-radius: 3px;
  146. -moz-border-radius: 3px;
  147. border-radius: 3px;
  148. }
  149. .icon-2x {
  150. font-size: 2em;
  151. }
  152. .icon-2x.icon-border {
  153. border-width: 2px;
  154. -webkit-border-radius: 4px;
  155. -moz-border-radius: 4px;
  156. border-radius: 4px;
  157. }
  158. .icon-3x {
  159. font-size: 3em;
  160. }
  161. .icon-3x.icon-border {
  162. border-width: 3px;
  163. -webkit-border-radius: 5px;
  164. -moz-border-radius: 5px;
  165. border-radius: 5px;
  166. }
  167. .icon-4x {
  168. font-size: 4em;
  169. }
  170. .icon-4x.icon-border {
  171. border-width: 4px;
  172. -webkit-border-radius: 6px;
  173. -moz-border-radius: 6px;
  174. border-radius: 6px;
  175. }
  176. .pull-right {
  177. float: right;
  178. }
  179. .pull-left {
  180. float: left;
  181. }
  182. [class^="icon-"].pull-left,
  183. [class*=" icon-"].pull-left {
  184. margin-right: .3em;
  185. }
  186. [class^="icon-"].pull-right,
  187. [class*=" icon-"].pull-right {
  188. margin-left: .3em;
  189. }
  190. .btn [class^="icon-"].pull-left.icon-2x,
  191. .btn [class*=" icon-"].pull-left.icon-2x,
  192. .btn [class^="icon-"].pull-right.icon-2x,
  193. .btn [class*=" icon-"].pull-right.icon-2x {
  194. margin-top: .18em;
  195. }
  196. .btn [class^="icon-"].icon-spin.icon-large,
  197. .btn [class*=" icon-"].icon-spin.icon-large {
  198. line-height: .8em;
  199. }
  200. .btn.btn-small [class^="icon-"].pull-left.icon-2x,
  201. .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
  202. .btn.btn-small [class^="icon-"].pull-right.icon-2x,
  203. .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  204. margin-top: .25em;
  205. }
  206. .btn.btn-large [class^="icon-"],
  207. .btn.btn-large [class*=" icon-"] {
  208. margin-top: 0;
  209. }
  210. .btn.btn-large [class^="icon-"].pull-left.icon-2x,
  211. .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
  212. .btn.btn-large [class^="icon-"].pull-right.icon-2x,
  213. .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  214. margin-top: .05em;
  215. }
  216. .btn.btn-large [class^="icon-"].pull-left.icon-2x,
  217. .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  218. margin-right: .2em;
  219. }
  220. .btn.btn-large [class^="icon-"].pull-right.icon-2x,
  221. .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  222. margin-left: .2em;
  223. }
  224. .icon-spin {
  225. display: inline-block;
  226. -moz-animation: spin 2s infinite linear;
  227. -o-animation: spin 2s infinite linear;
  228. -webkit-animation: spin 2s infinite linear;
  229. animation: spin 2s infinite linear;
  230. }
  231. @-moz-keyframes spin {
  232. 0% {
  233. -moz-transform: rotate(0deg);
  234. }
  235. 100% {
  236. -moz-transform: rotate(359deg);
  237. }
  238. }
  239. @-webkit-keyframes spin {
  240. 0% {
  241. -webkit-transform: rotate(0deg);
  242. }
  243. 100% {
  244. -webkit-transform: rotate(359deg);
  245. }
  246. }
  247. @-o-keyframes spin {
  248. 0% {
  249. -o-transform: rotate(0deg);
  250. }
  251. 100% {
  252. -o-transform: rotate(359deg);
  253. }
  254. }
  255. @-ms-keyframes spin {
  256. 0% {
  257. -ms-transform: rotate(0deg);
  258. }
  259. 100% {
  260. -ms-transform: rotate(359deg);
  261. }
  262. }
  263. @keyframes spin {
  264. 0% {
  265. transform: rotate(0deg);
  266. }
  267. 100% {
  268. transform: rotate(359deg);
  269. }
  270. }
  271. @-moz-document url-prefix() {
  272. .icon-spin {
  273. height: .9em;
  274. }
  275. .btn .icon-spin {
  276. height: auto;
  277. }
  278. .icon-spin.icon-large {
  279. height: 1.25em;
  280. }
  281. .btn .icon-spin.icon-large {
  282. height: .75em;
  283. }
  284. }
  285. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  286. readers do not read off random characters that represent icons */
  287. .icon-glass:before {
  288. content: "\f000";
  289. }
  290. .icon-music:before {
  291. content: "\f001";
  292. }
  293. .icon-search:before {
  294. content: "\f002";
  295. }
  296. .icon-envelope:before {
  297. content: "\f003";
  298. }
  299. .icon-heart:before {
  300. content: "\f004";
  301. }
  302. .icon-star:before {
  303. content: "\f005";
  304. }
  305. .icon-star-empty:before {
  306. content: "\f006";
  307. }
  308. .icon-user:before {
  309. content: "\f007";
  310. }
  311. .icon-film:before {
  312. content: "\f008";
  313. }
  314. .icon-th-large:before {
  315. content: "\f009";
  316. }
  317. .icon-th:before {
  318. content: "\f00a";
  319. }
  320. .icon-th-list:before {
  321. content: "\f00b";
  322. }
  323. .icon-ok:before {
  324. content: "\f00c";
  325. }
  326. .icon-remove:before {
  327. content: "\f00d";
  328. }
  329. .icon-zoom-in:before {
  330. content: "\f00e";
  331. }
  332. .icon-zoom-out:before {
  333. content: "\f010";
  334. }
  335. .icon-off:before {
  336. content: "\f011";
  337. }
  338. .icon-signal:before {
  339. content: "\f012";
  340. }
  341. .icon-cog:before {
  342. content: "\f013";
  343. }
  344. .icon-trash:before {
  345. content: "\f014";
  346. }
  347. .icon-home:before {
  348. content: "\f015";
  349. }
  350. .icon-file:before {
  351. content: "\f016";
  352. }
  353. .icon-time:before {
  354. content: "\f017";
  355. }
  356. .icon-road:before {
  357. content: "\f018";
  358. }
  359. .icon-download-alt:before {
  360. content: "\f019";
  361. }
  362. .icon-download:before {
  363. content: "\f01a";
  364. }
  365. .icon-upload:before {
  366. content: "\f01b";
  367. }
  368. .icon-inbox:before {
  369. content: "\f01c";
  370. }
  371. .icon-play-circle:before {
  372. content: "\f01d";
  373. }
  374. .icon-repeat:before {
  375. content: "\f01e";
  376. }
  377. /* \f020 doesn't work in Safari. all shifted one down */
  378. .icon-refresh:before {
  379. content: "\f021";
  380. }
  381. .icon-list-alt:before {
  382. content: "\f022";
  383. }
  384. .icon-lock:before {
  385. content: "\f023";
  386. }
  387. .icon-flag:before {
  388. content: "\f024";
  389. }
  390. .icon-headphones:before {
  391. content: "\f025";
  392. }
  393. .icon-volume-off:before {
  394. content: "\f026";
  395. }
  396. .icon-volume-down:before {
  397. content: "\f027";
  398. }
  399. .icon-volume-up:before {
  400. content: "\f028";
  401. }
  402. .icon-qrcode:before {
  403. content: "\f029";
  404. }
  405. .icon-barcode:before {
  406. content: "\f02a";
  407. }
  408. .icon-tag:before {
  409. content: "\f02b";
  410. }
  411. .icon-tags:before {
  412. content: "\f02c";
  413. }
  414. .icon-book:before {
  415. content: "\f02d";
  416. }
  417. .icon-bookmark:before {
  418. content: "\f02e";
  419. }
  420. .icon-print:before {
  421. content: "\f02f";
  422. }
  423. .icon-camera:before {
  424. content: "\f030";
  425. }
  426. .icon-font:before {
  427. content: "\f031";
  428. }
  429. .icon-bold:before {
  430. content: "\f032";
  431. }
  432. .icon-italic:before {
  433. content: "\f033";
  434. }
  435. .icon-text-height:before {
  436. content: "\f034";
  437. }
  438. .icon-text-width:before {
  439. content: "\f035";
  440. }
  441. .icon-align-left:before {
  442. content: "\f036";
  443. }
  444. .icon-align-center:before {
  445. content: "\f037";
  446. }
  447. .icon-align-right:before {
  448. content: "\f038";
  449. }
  450. .icon-align-justify:before {
  451. content: "\f039";
  452. }
  453. .icon-list:before {
  454. content: "\f03a";
  455. }
  456. .icon-indent-left:before {
  457. content: "\f03b";
  458. }
  459. .icon-indent-right:before {
  460. content: "\f03c";
  461. }
  462. .icon-facetime-video:before {
  463. content: "\f03d";
  464. }
  465. .icon-picture:before {
  466. content: "\f03e";
  467. }
  468. .icon-pencil:before {
  469. content: "\f040";
  470. }
  471. .icon-map-marker:before {
  472. content: "\f041";
  473. }
  474. .icon-adjust:before {
  475. content: "\f042";
  476. }
  477. .icon-tint:before {
  478. content: "\f043";
  479. }
  480. .icon-edit:before {
  481. content: "\f044";
  482. }
  483. .icon-share:before {
  484. content: "\f045";
  485. }
  486. .icon-check:before {
  487. content: "\f046";
  488. }
  489. .icon-move:before {
  490. content: "\f047";
  491. }
  492. .icon-step-backward:before {
  493. content: "\f048";
  494. }
  495. .icon-fast-backward:before {
  496. content: "\f049";
  497. }
  498. .icon-backward:before {
  499. content: "\f04a";
  500. }
  501. .icon-play:before {
  502. content: "\f04b";
  503. }
  504. .icon-pause:before {
  505. content: "\f04c";
  506. }
  507. .icon-stop:before {
  508. content: "\f04d";
  509. }
  510. .icon-forward:before {
  511. content: "\f04e";
  512. }
  513. .icon-fast-forward:before {
  514. content: "\f050";
  515. }
  516. .icon-step-forward:before {
  517. content: "\f051";
  518. }
  519. .icon-eject:before {
  520. content: "\f052";
  521. }
  522. .icon-chevron-left:before {
  523. content: "\f053";
  524. }
  525. .icon-chevron-right:before {
  526. content: "\f054";
  527. }
  528. .icon-plus-sign:before {
  529. content: "\f055";
  530. }
  531. .icon-minus-sign:before {
  532. content: "\f056";
  533. }
  534. .icon-remove-sign:before {
  535. content: "\f057";
  536. }
  537. .icon-ok-sign:before {
  538. content: "\f058";
  539. }
  540. .icon-question-sign:before {
  541. content: "\f059";
  542. }
  543. .icon-info-sign:before {
  544. content: "\f05a";
  545. }
  546. .icon-screenshot:before {
  547. content: "\f05b";
  548. }
  549. .icon-remove-circle:before {
  550. content: "\f05c";
  551. }
  552. .icon-ok-circle:before {
  553. content: "\f05d";
  554. }
  555. .icon-ban-circle:before {
  556. content: "\f05e";
  557. }
  558. .icon-arrow-left:before {
  559. content: "\f060";
  560. }
  561. .icon-arrow-right:before {
  562. content: "\f061";
  563. }
  564. .icon-arrow-up:before {
  565. content: "\f062";
  566. }
  567. .icon-arrow-down:before {
  568. content: "\f063";
  569. }
  570. .icon-share-alt:before,
  571. .icon-mail-forward:before {
  572. content: "\f064";
  573. }
  574. .icon-resize-full:before {
  575. content: "\f065";
  576. }
  577. .icon-resize-small:before {
  578. content: "\f066";
  579. }
  580. .icon-plus:before {
  581. content: "\f067";
  582. }
  583. .icon-minus:before {
  584. content: "\f068";
  585. }
  586. .icon-asterisk:before {
  587. content: "\f069";
  588. }
  589. .icon-exclamation-sign:before {
  590. content: "\f06a";
  591. }
  592. .icon-gift:before {
  593. content: "\f06b";
  594. }
  595. .icon-leaf:before {
  596. content: "\f06c";
  597. }
  598. .icon-fire:before {
  599. content: "\f06d";
  600. }
  601. .icon-eye-open:before {
  602. content: "\f06e";
  603. }
  604. .icon-eye-close:before {
  605. content: "\f070";
  606. }
  607. .icon-warning-sign:before {
  608. content: "\f071";
  609. }
  610. .icon-plane:before {
  611. content: "\f072";
  612. }
  613. .icon-calendar:before {
  614. content: "\f073";
  615. }
  616. .icon-random:before {
  617. content: "\f074";
  618. }
  619. .icon-comment:before {
  620. content: "\f075";
  621. }
  622. .icon-magnet:before {
  623. content: "\f076";
  624. }
  625. .icon-chevron-up:before {
  626. content: "\f077";
  627. }
  628. .icon-chevron-down:before {
  629. content: "\f078";
  630. }
  631. .icon-retweet:before {
  632. content: "\f079";
  633. }
  634. .icon-shopping-cart:before {
  635. content: "\f07a";
  636. }
  637. .icon-folder-close:before {
  638. content: "\f07b";
  639. }
  640. .icon-folder-open:before {
  641. content: "\f07c";
  642. }
  643. .icon-resize-vertical:before {
  644. content: "\f07d";
  645. }
  646. .icon-resize-horizontal:before {
  647. content: "\f07e";
  648. }
  649. .icon-bar-chart:before {
  650. content: "\f080";
  651. }
  652. .icon-twitter-sign:before {
  653. content: "\f081";
  654. }
  655. .icon-facebook-sign:before {
  656. content: "\f082";
  657. }
  658. .icon-camera-retro:before {
  659. content: "\f083";
  660. }
  661. .icon-key:before {
  662. content: "\f084";
  663. }
  664. .icon-cogs:before {
  665. content: "\f085";
  666. }
  667. .icon-comments:before {
  668. content: "\f086";
  669. }
  670. .icon-thumbs-up:before {
  671. content: "\f087";
  672. }
  673. .icon-thumbs-down:before {
  674. content: "\f088";
  675. }
  676. .icon-star-half:before {
  677. content: "\f089";
  678. }
  679. .icon-heart-empty:before {
  680. content: "\f08a";
  681. }
  682. .icon-signout:before {
  683. content: "\f08b";
  684. }
  685. .icon-linkedin-sign:before {
  686. content: "\f08c";
  687. }
  688. .icon-pushpin:before {
  689. content: "\f08d";
  690. }
  691. .icon-external-link:before {
  692. content: "\f08e";
  693. }
  694. .icon-signin:before {
  695. content: "\f090";
  696. }
  697. .icon-trophy:before {
  698. content: "\f091";
  699. }
  700. .icon-github-sign:before {
  701. content: "\f092";
  702. }
  703. .icon-upload-alt:before {
  704. content: "\f093";
  705. }
  706. .icon-lemon:before {
  707. content: "\f094";
  708. }
  709. .icon-phone:before {
  710. content: "\f095";
  711. }
  712. .icon-check-empty:before {
  713. content: "\f096";
  714. }
  715. .icon-bookmark-empty:before {
  716. content: "\f097";
  717. }
  718. .icon-phone-sign:before {
  719. content: "\f098";
  720. }
  721. .icon-twitter:before {
  722. content: "\f099";
  723. }
  724. .icon-facebook:before {
  725. content: "\f09a";
  726. }
  727. .icon-github:before {
  728. content: "\f09b";
  729. }
  730. .icon-unlock:before {
  731. content: "\f09c";
  732. }
  733. .icon-credit-card:before {
  734. content: "\f09d";
  735. }
  736. .icon-rss:before {
  737. content: "\f09e";
  738. }
  739. .icon-hdd:before {
  740. content: "\f0a0";
  741. }
  742. .icon-bullhorn:before {
  743. content: "\f0a1";
  744. }
  745. .icon-bell:before {
  746. content: "\f0a2";
  747. }
  748. .icon-certificate:before {
  749. content: "\f0a3";
  750. }
  751. .icon-hand-right:before {
  752. content: "\f0a4";
  753. }
  754. .icon-hand-left:before {
  755. content: "\f0a5";
  756. }
  757. .icon-hand-up:before {
  758. content: "\f0a6";
  759. }
  760. .icon-hand-down:before {
  761. content: "\f0a7";
  762. }
  763. .icon-circle-arrow-left:before {
  764. content: "\f0a8";
  765. }
  766. .icon-circle-arrow-right:before {
  767. content: "\f0a9";
  768. }
  769. .icon-circle-arrow-up:before {
  770. content: "\f0aa";
  771. }
  772. .icon-circle-arrow-down:before {
  773. content: "\f0ab";
  774. }
  775. .icon-globe:before {
  776. content: "\f0ac";
  777. }
  778. .icon-wrench:before {
  779. content: "\f0ad";
  780. }
  781. .icon-tasks:before {
  782. content: "\f0ae";
  783. }
  784. .icon-filter:before {
  785. content: "\f0b0";
  786. }
  787. .icon-briefcase:before {
  788. content: "\f0b1";
  789. }
  790. .icon-fullscreen:before {
  791. content: "\f0b2";
  792. }
  793. .icon-group:before {
  794. content: "\f0c0";
  795. }
  796. .icon-link:before {
  797. content: "\f0c1";
  798. }
  799. .icon-cloud:before {
  800. content: "\f0c2";
  801. }
  802. .icon-beaker:before {
  803. content: "\f0c3";
  804. }
  805. .icon-cut:before {
  806. content: "\f0c4";
  807. }
  808. .icon-copy:before {
  809. content: "\f0c5";
  810. }
  811. .icon-paper-clip:before {
  812. content: "\f0c6";
  813. }
  814. .icon-save:before {
  815. content: "\f0c7";
  816. }
  817. .icon-sign-blank:before {
  818. content: "\f0c8";
  819. }
  820. .icon-reorder:before {
  821. content: "\f0c9";
  822. }
  823. .icon-list-ul:before {
  824. content: "\f0ca";
  825. }
  826. .icon-list-ol:before {
  827. content: "\f0cb";
  828. }
  829. .icon-strikethrough:before {
  830. content: "\f0cc";
  831. }
  832. .icon-underline:before {
  833. content: "\f0cd";
  834. }
  835. .icon-table:before {
  836. content: "\f0ce";
  837. }
  838. .icon-magic:before {
  839. content: "\f0d0";
  840. }
  841. .icon-truck:before {
  842. content: "\f0d1";
  843. }
  844. .icon-pinterest:before {
  845. content: "\f0d2";
  846. }
  847. .icon-pinterest-sign:before {
  848. content: "\f0d3";
  849. }
  850. .icon-google-plus-sign:before {
  851. content: "\f0d4";
  852. }
  853. .icon-google-plus:before {
  854. content: "\f0d5";
  855. }
  856. .icon-money:before {
  857. content: "\f0d6";
  858. }
  859. .icon-caret-down:before {
  860. content: "\f0d7";
  861. }
  862. .icon-caret-up:before {
  863. content: "\f0d8";
  864. }
  865. .icon-caret-left:before {
  866. content: "\f0d9";
  867. }
  868. .icon-caret-right:before {
  869. content: "\f0da";
  870. }
  871. .icon-columns:before {
  872. content: "\f0db";
  873. }
  874. .icon-sort:before {
  875. content: "\f0dc";
  876. }
  877. .icon-sort-down:before {
  878. content: "\f0dd";
  879. }
  880. .icon-sort-up:before {
  881. content: "\f0de";
  882. }
  883. .icon-envelope-alt:before {
  884. content: "\f0e0";
  885. }
  886. .icon-linkedin:before {
  887. content: "\f0e1";
  888. }
  889. .icon-undo:before {
  890. content: "\f0e2";
  891. }
  892. .icon-legal:before {
  893. content: "\f0e3";
  894. }
  895. .icon-dashboard:before {
  896. content: "\f0e4";
  897. }
  898. .icon-comment-alt:before {
  899. content: "\f0e5";
  900. }
  901. .icon-comments-alt:before {
  902. content: "\f0e6";
  903. }
  904. .icon-bolt:before {
  905. content: "\f0e7";
  906. }
  907. .icon-sitemap:before {
  908. content: "\f0e8";
  909. }
  910. .icon-umbrella:before {
  911. content: "\f0e9";
  912. }
  913. .icon-paste:before {
  914. content: "\f0ea";
  915. }
  916. .icon-lightbulb:before {
  917. content: "\f0eb";
  918. }
  919. .icon-exchange:before {
  920. content: "\f0ec";
  921. }
  922. .icon-cloud-download:before {
  923. content: "\f0ed";
  924. }
  925. .icon-cloud-upload:before {
  926. content: "\f0ee";
  927. }
  928. .icon-user-md:before {
  929. content: "\f0f0";
  930. }
  931. .icon-stethoscope:before {
  932. content: "\f0f1";
  933. }
  934. .icon-suitcase:before {
  935. content: "\f0f2";
  936. }
  937. .icon-bell-alt:before {
  938. content: "\f0f3";
  939. }
  940. .icon-coffee:before {
  941. content: "\f0f4";
  942. }
  943. .icon-food:before {
  944. content: "\f0f5";
  945. }
  946. .icon-file-alt:before {
  947. content: "\f0f6";
  948. }
  949. .icon-building:before {
  950. content: "\f0f7";
  951. }
  952. .icon-hospital:before {
  953. content: "\f0f8";
  954. }
  955. .icon-ambulance:before {
  956. content: "\f0f9";
  957. }
  958. .icon-medkit:before {
  959. content: "\f0fa";
  960. }
  961. .icon-fighter-jet:before {
  962. content: "\f0fb";
  963. }
  964. .icon-beer:before {
  965. content: "\f0fc";
  966. }
  967. .icon-h-sign:before {
  968. content: "\f0fd";
  969. }
  970. .icon-plus-sign-alt:before {
  971. content: "\f0fe";
  972. }
  973. .icon-double-angle-left:before {
  974. content: "\f100";
  975. }
  976. .icon-double-angle-right:before {
  977. content: "\f101";
  978. }
  979. .icon-double-angle-up:before {
  980. content: "\f102";
  981. }
  982. .icon-double-angle-down:before {
  983. content: "\f103";
  984. }
  985. .icon-angle-left:before {
  986. content: "\f104";
  987. }
  988. .icon-angle-right:before {
  989. content: "\f105";
  990. }
  991. .icon-angle-up:before {
  992. content: "\f106";
  993. }
  994. .icon-angle-down:before {
  995. content: "\f107";
  996. }
  997. .icon-desktop:before {
  998. content: "\f108";
  999. }
  1000. .icon-laptop:before {
  1001. content: "\f109";
  1002. }
  1003. .icon-tablet:before {
  1004. content: "\f10a";
  1005. }
  1006. .icon-mobile-phone:before {
  1007. content: "\f10b";
  1008. }
  1009. .icon-circle-blank:before {
  1010. content: "\f10c";
  1011. }
  1012. .icon-quote-left:before {
  1013. content: "\f10d";
  1014. }
  1015. .icon-quote-right:before {
  1016. content: "\f10e";
  1017. }
  1018. .icon-spinner:before {
  1019. content: "\f110";
  1020. }
  1021. .icon-circle:before {
  1022. content: "\f111";
  1023. }
  1024. .icon-reply:before,
  1025. .icon-mail-reply:before {
  1026. content: "\f112";
  1027. }
  1028. .icon-github-alt:before {
  1029. content: "\f113";
  1030. }
  1031. .icon-folder-close-alt:before {
  1032. content: "\f114";
  1033. }
  1034. .icon-folder-open-alt:before {
  1035. content: "\f115";
  1036. }
  1037. .icon-expand-alt:before {
  1038. content: "\f116";
  1039. }
  1040. .icon-collapse-alt:before {
  1041. content: "\f117";
  1042. }
  1043. .icon-smile:before {
  1044. content: "\f118";
  1045. }
  1046. .icon-frown:before {
  1047. content: "\f119";
  1048. }
  1049. .icon-meh:before {
  1050. content: "\f11a";
  1051. }
  1052. .icon-gamepad:before {
  1053. content: "\f11b";
  1054. }
  1055. .icon-keyboard:before {
  1056. content: "\f11c";
  1057. }
  1058. .icon-flag-alt:before {
  1059. content: "\f11d";
  1060. }
  1061. .icon-flag-checkered:before {
  1062. content: "\f11e";
  1063. }
  1064. .icon-terminal:before {
  1065. content: "\f120";
  1066. }
  1067. .icon-code:before {
  1068. content: "\f121";
  1069. }
  1070. .icon-reply-all:before {
  1071. content: "\f122";
  1072. }
  1073. .icon-mail-reply-all:before {
  1074. content: "\f122";
  1075. }
  1076. .icon-star-half-empty:before {
  1077. content: "\f123";
  1078. }