font-awesome.scss 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /* Font Awesome
  2. the iconic font designed for use with Twitter Bootstrap
  3. -------------------------------------------------------
  4. The full suite of pictographic icons, examples, and documentation
  5. can be found at: http://fortawesome.github.com/Font-Awesome/
  6. License
  7. -------------------------------------------------------
  8. The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
  9. http://creativecommons.org/licenses/by/3.0/ A mention of
  10. 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
  11. source code is considered acceptable attribution (most common on the web).
  12. If human readable source code is not available to the end user, a mention in
  13. an 'About' or 'Credits' screen is considered acceptable (most common in desktop
  14. or mobile software).
  15. Contact
  16. -------------------------------------------------------
  17. Email: dave@davegandy.com
  18. Twitter: http://twitter.com/fortaweso_me
  19. Work: Lead Product Designer @ http://kyruus.com
  20. */
  21. @import "compass/css3/font-face";
  22. $fontAwesomePath: "../font/fontawesome-webfont" !default;
  23. @include font-face(
  24. 'FontAwesome',
  25. font-files(
  26. "#{$fontAwesomePath}.woff", woff,
  27. "#{$fontAwesomePath}.ttf", truetype,
  28. "#{$fontAwesomePath}.svg#FontAwesomeRegular", svg),
  29. '#{$fontAwesomePath}.eot',
  30. normal,
  31. normal);
  32. /* Font Awesome styles
  33. ------------------------------------------------------- */
  34. [class^="icon-"]:before,
  35. [class*=" icon-"]:before {
  36. font-family: FontAwesome;
  37. font-weight: normal;
  38. font-style: normal;
  39. display: inline-block;
  40. text-decoration: inherit;
  41. }
  42. a [class^="icon-"],
  43. a [class*=" icon-"] {
  44. display: inline-block;
  45. text-decoration: inherit;
  46. }
  47. /* makes the font 33% larger relative to the icon container */
  48. .icon-large:before {
  49. vertical-align: middle;
  50. font-size: 4/3em;
  51. }
  52. .btn, .nav-tabs {
  53. [class^="icon-"],
  54. [class*=" icon-"] {
  55. /* keeps button heights with and without icons the same */
  56. line-height: .9em;
  57. }
  58. }
  59. li {
  60. [class^="icon-"],
  61. [class*=" icon-"] {
  62. display: inline-block;
  63. width: 1.25em;
  64. text-align: center;
  65. }
  66. .icon-large:before,
  67. .icon-large:before {
  68. /* 1.5 increased font size for icon-large * 1.25 width */
  69. width: 1.5*1.25em;
  70. }
  71. }
  72. ul.icons {
  73. list-style-type: none;
  74. margin-left: 2em;
  75. text-indent: -.8em;
  76. li {
  77. [class^="icon-"],
  78. [class*=" icon-"] {
  79. width: .8em;
  80. }
  81. .icon-large:before,
  82. .icon-large:before {
  83. /* 1.5 increased font size for icon-large * 1.25 width */
  84. vertical-align: initial;
  85. // width: 1.5*1.25em;
  86. }
  87. }
  88. }
  89. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  90. readers do not read off random characters that represent icons */
  91. .icon-glass:before { content: "\f000"; }
  92. .icon-music:before { content: "\f001"; }
  93. .icon-search:before { content: "\f002"; }
  94. .icon-envelope:before { content: "\f003"; }
  95. .icon-heart:before { content: "\f004"; }
  96. .icon-star:before { content: "\f005"; }
  97. .icon-star-empty:before { content: "\f006"; }
  98. .icon-user:before { content: "\f007"; }
  99. .icon-film:before { content: "\f008"; }
  100. .icon-th-large:before { content: "\f009"; }
  101. .icon-th:before { content: "\f00a"; }
  102. .icon-th-list:before { content: "\f00b"; }
  103. .icon-ok:before { content: "\f00c"; }
  104. .icon-remove:before { content: "\f00d"; }
  105. .icon-zoom-in:before { content: "\f00e"; }
  106. .icon-zoom-out:before { content: "\f010"; }
  107. .icon-off:before { content: "\f011"; }
  108. .icon-signal:before { content: "\f012"; }
  109. .icon-cog:before { content: "\f013"; }
  110. .icon-trash:before { content: "\f014"; }
  111. .icon-home:before { content: "\f015"; }
  112. .icon-file:before { content: "\f016"; }
  113. .icon-time:before { content: "\f017"; }
  114. .icon-road:before { content: "\f018"; }
  115. .icon-download-alt:before { content: "\f019"; }
  116. .icon-download:before { content: "\f01a"; }
  117. .icon-upload:before { content: "\f01b"; }
  118. .icon-inbox:before { content: "\f01c"; }
  119. .icon-play-circle:before { content: "\f01d"; }
  120. .icon-repeat:before { content: "\f01e"; }
  121. /* \f020 doesn't work in Safari. all shifted one down */
  122. .icon-refresh:before { content: "\f021"; }
  123. .icon-list-alt:before { content: "\f022"; }
  124. .icon-lock:before { content: "\f023"; }
  125. .icon-flag:before { content: "\f024"; }
  126. .icon-headphones:before { content: "\f025"; }
  127. .icon-volume-off:before { content: "\f026"; }
  128. .icon-volume-down:before { content: "\f027"; }
  129. .icon-volume-up:before { content: "\f028"; }
  130. .icon-qrcode:before { content: "\f029"; }
  131. .icon-barcode:before { content: "\f02a"; }
  132. .icon-tag:before { content: "\f02b"; }
  133. .icon-tags:before { content: "\f02c"; }
  134. .icon-book:before { content: "\f02d"; }
  135. .icon-bookmark:before { content: "\f02e"; }
  136. .icon-print:before { content: "\f02f"; }
  137. .icon-camera:before { content: "\f030"; }
  138. .icon-font:before { content: "\f031"; }
  139. .icon-bold:before { content: "\f032"; }
  140. .icon-italic:before { content: "\f033"; }
  141. .icon-text-height:before { content: "\f034"; }
  142. .icon-text-width:before { content: "\f035"; }
  143. .icon-align-left:before { content: "\f036"; }
  144. .icon-align-center:before { content: "\f037"; }
  145. .icon-align-right:before { content: "\f038"; }
  146. .icon-align-justify:before { content: "\f039"; }
  147. .icon-list:before { content: "\f03a"; }
  148. .icon-indent-left:before { content: "\f03b"; }
  149. .icon-indent-right:before { content: "\f03c"; }
  150. .icon-facetime-video:before { content: "\f03d"; }
  151. .icon-picture:before { content: "\f03e"; }
  152. .icon-pencil:before { content: "\f040"; }
  153. .icon-map-marker:before { content: "\f041"; }
  154. .icon-adjust:before { content: "\f042"; }
  155. .icon-tint:before { content: "\f043"; }
  156. .icon-edit:before { content: "\f044"; }
  157. .icon-share:before { content: "\f045"; }
  158. .icon-check:before { content: "\f046"; }
  159. .icon-move:before { content: "\f047"; }
  160. .icon-step-backward:before { content: "\f048"; }
  161. .icon-fast-backward:before { content: "\f049"; }
  162. .icon-backward:before { content: "\f04a"; }
  163. .icon-play:before { content: "\f04b"; }
  164. .icon-pause:before { content: "\f04c"; }
  165. .icon-stop:before { content: "\f04d"; }
  166. .icon-forward:before { content: "\f04e"; }
  167. .icon-fast-forward:before { content: "\f050"; }
  168. .icon-step-forward:before { content: "\f051"; }
  169. .icon-eject:before { content: "\f052"; }
  170. .icon-chevron-left:before { content: "\f053"; }
  171. .icon-chevron-right:before { content: "\f054"; }
  172. .icon-plus-sign:before { content: "\f055"; }
  173. .icon-minus-sign:before { content: "\f056"; }
  174. .icon-remove-sign:before { content: "\f057"; }
  175. .icon-ok-sign:before { content: "\f058"; }
  176. .icon-question-sign:before { content: "\f059"; }
  177. .icon-info-sign:before { content: "\f05a"; }
  178. .icon-screenshot:before { content: "\f05b"; }
  179. .icon-remove-circle:before { content: "\f05c"; }
  180. .icon-ok-circle:before { content: "\f05d"; }
  181. .icon-ban-circle:before { content: "\f05e"; }
  182. .icon-arrow-left:before { content: "\f060"; }
  183. .icon-arrow-right:before { content: "\f061"; }
  184. .icon-arrow-up:before { content: "\f062"; }
  185. .icon-arrow-down:before { content: "\f063"; }
  186. .icon-share-alt:before { content: "\f064"; }
  187. .icon-resize-full:before { content: "\f065"; }
  188. .icon-resize-small:before { content: "\f066"; }
  189. .icon-plus:before { content: "\f067"; }
  190. .icon-minus:before { content: "\f068"; }
  191. .icon-asterisk:before { content: "\f069"; }
  192. .icon-exclamation-sign:before { content: "\f06a"; }
  193. .icon-gift:before { content: "\f06b"; }
  194. .icon-leaf:before { content: "\f06c"; }
  195. .icon-fire:before { content: "\f06d"; }
  196. .icon-eye-open:before { content: "\f06e"; }
  197. .icon-eye-close:before { content: "\f070"; }
  198. .icon-warning-sign:before { content: "\f071"; }
  199. .icon-plane:before { content: "\f072"; }
  200. .icon-calendar:before { content: "\f073"; }
  201. .icon-random:before { content: "\f074"; }
  202. .icon-comment:before { content: "\f075"; }
  203. .icon-magnet:before { content: "\f076"; }
  204. .icon-chevron-up:before { content: "\f077"; }
  205. .icon-chevron-down:before { content: "\f078"; }
  206. .icon-retweet:before { content: "\f079"; }
  207. .icon-shopping-cart:before { content: "\f07a"; }
  208. .icon-folder-close:before { content: "\f07b"; }
  209. .icon-folder-open:before { content: "\f07c"; }
  210. .icon-resize-vertical:before { content: "\f07d"; }
  211. .icon-resize-horizontal:before { content: "\f07e"; }
  212. .icon-bar-chart:before { content: "\f080"; }
  213. .icon-twitter-sign:before { content: "\f081"; }
  214. .icon-facebook-sign:before { content: "\f082"; }
  215. .icon-camera-retro:before { content: "\f083"; }
  216. .icon-key:before { content: "\f084"; }
  217. .icon-cogs:before { content: "\f085"; }
  218. .icon-comments:before { content: "\f086"; }
  219. .icon-thumbs-up:before { content: "\f087"; }
  220. .icon-thumbs-down:before { content: "\f088"; }
  221. .icon-star-half:before { content: "\f089"; }
  222. .icon-heart-empty:before { content: "\f08a"; }
  223. .icon-signout:before { content: "\f08b"; }
  224. .icon-linkedin-sign:before { content: "\f08c"; }
  225. .icon-pushpin:before { content: "\f08d"; }
  226. .icon-external-link:before { content: "\f08e"; }
  227. .icon-signin:before { content: "\f090"; }
  228. .icon-trophy:before { content: "\f091"; }
  229. .icon-github-sign:before { content: "\f092"; }
  230. .icon-upload-alt:before { content: "\f093"; }
  231. .icon-lemon:before { content: "\f094"; }
  232. .icon-phone:before { content: "\f095"; }
  233. .icon-check-empty:before { content: "\f096"; }
  234. .icon-bookmark-empty:before { content: "\f097"; }
  235. .icon-phone-sign:before { content: "\f098"; }
  236. .icon-twitter:before { content: "\f099"; }
  237. .icon-facebook:before { content: "\f09a"; }
  238. .icon-github:before { content: "\f09b"; }
  239. .icon-unlock:before { content: "\f09c"; }
  240. .icon-credit-card:before { content: "\f09d"; }
  241. .icon-rss:before { content: "\f09e"; }
  242. .icon-hdd:before { content: "\f0a0"; }
  243. .icon-bullhorn:before { content: "\f0a1"; }
  244. .icon-bell:before { content: "\f0a2"; }
  245. .icon-certificate:before { content: "\f0a3"; }
  246. .icon-hand-right:before { content: "\f0a4"; }
  247. .icon-hand-left:before { content: "\f0a5"; }
  248. .icon-hand-up:before { content: "\f0a6"; }
  249. .icon-hand-down:before { content: "\f0a7"; }
  250. .icon-circle-arrow-left:before { content: "\f0a8"; }
  251. .icon-circle-arrow-right:before { content: "\f0a9"; }
  252. .icon-circle-arrow-up:before { content: "\f0aa"; }
  253. .icon-circle-arrow-down:before { content: "\f0ab"; }
  254. .icon-globe:before { content: "\f0ac"; }
  255. .icon-wrench:before { content: "\f0ad"; }
  256. .icon-tasks:before { content: "\f0ae"; }
  257. .icon-filter:before { content: "\f0b0"; }
  258. .icon-briefcase:before { content: "\f0b1"; }
  259. .icon-fullscreen:before { content: "\f0b2"; }
  260. .icon-group:before { content: "\f0c0"; }
  261. .icon-link:before { content: "\f0c1"; }
  262. .icon-cloud:before { content: "\f0c2"; }
  263. .icon-beaker:before { content: "\f0c3"; }
  264. .icon-cut:before { content: "\f0c4"; }
  265. .icon-copy:before { content: "\f0c5"; }
  266. .icon-paper-clip:before { content: "\f0c6"; }
  267. .icon-save:before { content: "\f0c7"; }
  268. .icon-sign-blank:before { content: "\f0c8"; }
  269. .icon-reorder:before { content: "\f0c9"; }
  270. .icon-list-ul:before { content: "\f0ca"; }
  271. .icon-list-ol:before { content: "\f0cb"; }
  272. .icon-strikethrough:before { content: "\f0cc"; }
  273. .icon-underline:before { content: "\f0cd"; }
  274. .icon-table:before { content: "\f0ce"; }
  275. .icon-magic:before { content: "\f0d0"; }
  276. .icon-truck:before { content: "\f0d1"; }
  277. .icon-pinterest:before { content: "\f0d2"; }
  278. .icon-pinterest-sign:before { content: "\f0d3"; }
  279. .icon-google-plus-sign:before { content: "\f0d4"; }
  280. .icon-google-plus:before { content: "\f0d5"; }
  281. .icon-money:before { content: "\f0d6"; }
  282. .icon-caret-down:before { content: "\f0d7"; }
  283. .icon-caret-up:before { content: "\f0d8"; }
  284. .icon-caret-left:before { content: "\f0d9"; }
  285. .icon-caret-right:before { content: "\f0da"; }
  286. .icon-columns:before { content: "\f0db"; }
  287. .icon-sort:before { content: "\f0dc"; }
  288. .icon-sort-down:before { content: "\f0dd"; }
  289. .icon-sort-up:before { content: "\f0de"; }
  290. .icon-envelope-alt:before { content: "\f0e0"; }
  291. .icon-linkedin:before { content: "\f0e1"; }
  292. .icon-undo:before { content: "\f0e2"; }
  293. .icon-legal:before { content: "\f0e3"; }
  294. .icon-dashboard:before { content: "\f0e4"; }
  295. .icon-comment-alt:before { content: "\f0e5"; }
  296. .icon-comments-alt:before { content: "\f0e6"; }
  297. .icon-bolt:before { content: "\f0e7"; }
  298. .icon-sitemap:before { content: "\f0e8"; }
  299. .icon-umbrella:before { content: "\f0e9"; }
  300. .icon-paste:before { content: "\f0ea"; }
  301. .icon-user-md:before { content: "\f200"; }