font_awesome 0.0.1

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