font-awesome-sass-mixins 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +34 -0
- data/Gemfile +1 -0
- data/LICENSE +22 -0
- data/README.md +2 -0
- data/Rakefile +0 -0
- data/font-awesome-sass-mixins.gemspec +18 -0
- data/lib/font-awesome-sass-mixins.rb +33 -0
- data/lib/sass/_extends.sass +1105 -0
- data/lib/sass/_manifest.sass +2 -0
- data/lib/sass/_mixins.sass +3 -0
- data/test/font-awesome-sass-mixins-test.rb +0 -0
- data/update.sh +50 -0
- metadata +70 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cf94d1581c063be834ab4230b530fbe44cfee5f7
|
4
|
+
data.tar.gz: a4ca76d84ea55250fd1948c4298ba436c3f23f05
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5a8332ea57bcb587b3977278a0420b01f0db44c9150b96fcbcdd25a7b6460c87758e751da394d4c5b861ab8f90d38c108ee2790f8ee90ed38a100003b43344ce
|
7
|
+
data.tar.gz: 8e03cb431968e0a1051e48c30a17f4d12ec723fb7351ee51b300d2dae1139e972c6ade4c90408f49c1255129bf95f296b215f50a6cf5ec9dc7cd3997805374c0
|
data/.gitignore
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/test/tmp/
|
9
|
+
/test/version_tmp/
|
10
|
+
/tmp/
|
11
|
+
|
12
|
+
## Specific to RubyMotion:
|
13
|
+
.dat*
|
14
|
+
.repl_history
|
15
|
+
build/
|
16
|
+
|
17
|
+
## Documentation cache and generated files:
|
18
|
+
/.yardoc/
|
19
|
+
/_yardoc/
|
20
|
+
/doc/
|
21
|
+
/rdoc/
|
22
|
+
|
23
|
+
## Environment normalisation:
|
24
|
+
/.bundle/
|
25
|
+
/lib/bundler/man/
|
26
|
+
|
27
|
+
# for a library or gem, you might want to ignore these files since the code is
|
28
|
+
# intended to run in multiple environments; otherwise, check them in:
|
29
|
+
# Gemfile.lock
|
30
|
+
# .ruby-version
|
31
|
+
# .ruby-gemset
|
32
|
+
|
33
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
34
|
+
.rvmrc
|
data/Gemfile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
source 'http://rubygems.org'
|
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Peter M. Elias
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/README.md
ADDED
data/Rakefile
ADDED
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'font-awesome-sass-mixins'
|
3
|
+
s.version = '0.1.1'
|
4
|
+
s.platform = Gem::Platform::RUBY
|
5
|
+
s.licenses = ['MIT']
|
6
|
+
s.summary = 'Font Awesome SASS mixins for pure SASS usage.'
|
7
|
+
s.description = ''
|
8
|
+
s.author = 'Peter M. Elias'
|
9
|
+
s.authors = ['Peter M. Elias']
|
10
|
+
s.email = 'petermelias@gmail.com'
|
11
|
+
s.homepage = 'https://github.com/petermelias/font-awesome-sass-mixins'
|
12
|
+
|
13
|
+
s.files = `git ls-files`.split("\n")
|
14
|
+
s.test_files = `git ls-files -- test/*`.split("\n")
|
15
|
+
s.require_paths = ['lib']
|
16
|
+
|
17
|
+
s.add_runtime_dependency 'sass', '~> 3.2'
|
18
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module FontAwesomeSassMixins
|
2
|
+
module Sass
|
3
|
+
class << self
|
4
|
+
def load!
|
5
|
+
load_sass
|
6
|
+
end
|
7
|
+
|
8
|
+
def gem_path
|
9
|
+
@gem_path ||= File.expand_path('..', File.dirname(__FILE__))
|
10
|
+
end
|
11
|
+
|
12
|
+
def lib_path
|
13
|
+
@lib_path ||= File.join(gem_path, 'lib')
|
14
|
+
end
|
15
|
+
|
16
|
+
def sass_path
|
17
|
+
@sass_path ||= File.join(lib_path, 'sass')
|
18
|
+
end
|
19
|
+
|
20
|
+
def manifest_file
|
21
|
+
@manifest ||= File.join(sass_path, '_manifest.sass')
|
22
|
+
end
|
23
|
+
|
24
|
+
def load_sass
|
25
|
+
require 'sass'
|
26
|
+
|
27
|
+
::Sass.load_paths << manifest_file
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
FontAwesomeSassMixins::Sass.load!
|
@@ -0,0 +1,1105 @@
|
|
1
|
+
%fa-base-styles
|
2
|
+
display: inline-block
|
3
|
+
font: normal normal normal 14px/1 FontAwesome
|
4
|
+
font-size: inherit
|
5
|
+
text-rendering: auto
|
6
|
+
-webkit-font-smoothing: antialiased
|
7
|
+
-moz-osx-font-smoothing: grayscale
|
8
|
+
%fa-icon-adjust
|
9
|
+
content: "\f042"
|
10
|
+
%fa-icon-adn
|
11
|
+
content: "\f170"
|
12
|
+
%fa-icon-align-center
|
13
|
+
content: "\f037"
|
14
|
+
%fa-icon-align-justify
|
15
|
+
content: "\f039"
|
16
|
+
%fa-icon-align-left
|
17
|
+
content: "\f036"
|
18
|
+
%fa-icon-align-right
|
19
|
+
content: "\f038"
|
20
|
+
%fa-icon-ambulance
|
21
|
+
content: "\f0f9"
|
22
|
+
%fa-icon-anchor
|
23
|
+
content: "\f13d"
|
24
|
+
%fa-icon-android
|
25
|
+
content: "\f17b"
|
26
|
+
%fa-icon-angellist
|
27
|
+
content: "\f209"
|
28
|
+
%fa-icon-angle-double-down
|
29
|
+
content: "\f103"
|
30
|
+
%fa-icon-angle-double-left
|
31
|
+
content: "\f100"
|
32
|
+
%fa-icon-angle-double-right
|
33
|
+
content: "\f101"
|
34
|
+
%fa-icon-angle-double-up
|
35
|
+
content: "\f102"
|
36
|
+
%fa-icon-angle-down
|
37
|
+
content: "\f107"
|
38
|
+
%fa-icon-angle-left
|
39
|
+
content: "\f104"
|
40
|
+
%fa-icon-angle-right
|
41
|
+
content: "\f105"
|
42
|
+
%fa-icon-angle-up
|
43
|
+
content: "\f106"
|
44
|
+
%fa-icon-apple
|
45
|
+
content: "\f179"
|
46
|
+
%fa-icon-archive
|
47
|
+
content: "\f187"
|
48
|
+
%fa-icon-area-chart
|
49
|
+
content: "\f1fe"
|
50
|
+
%fa-icon-arrow-circle-down
|
51
|
+
content: "\f0ab"
|
52
|
+
%fa-icon-arrow-circle-left
|
53
|
+
content: "\f0a8"
|
54
|
+
%fa-icon-arrow-circle-o-down
|
55
|
+
content: "\f01a"
|
56
|
+
%fa-icon-arrow-circle-o-left
|
57
|
+
content: "\f190"
|
58
|
+
%fa-icon-arrow-circle-o-right
|
59
|
+
content: "\f18e"
|
60
|
+
%fa-icon-arrow-circle-o-up
|
61
|
+
content: "\f01b"
|
62
|
+
%fa-icon-arrow-circle-right
|
63
|
+
content: "\f0a9"
|
64
|
+
%fa-icon-arrow-circle-up
|
65
|
+
content: "\f0aa"
|
66
|
+
%fa-icon-arrow-down
|
67
|
+
content: "\f063"
|
68
|
+
%fa-icon-arrow-left
|
69
|
+
content: "\f060"
|
70
|
+
%fa-icon-arrow-right
|
71
|
+
content: "\f061"
|
72
|
+
%fa-icon-arrow-up
|
73
|
+
content: "\f062"
|
74
|
+
%fa-icon-arrows
|
75
|
+
content: "\f047"
|
76
|
+
%fa-icon-arrows-alt
|
77
|
+
content: "\f0b2"
|
78
|
+
%fa-icon-arrows-h
|
79
|
+
content: "\f07e"
|
80
|
+
%fa-icon-arrows-v
|
81
|
+
content: "\f07d"
|
82
|
+
%fa-icon-asterisk
|
83
|
+
content: "\f069"
|
84
|
+
%fa-icon-at
|
85
|
+
content: "\f1fa"
|
86
|
+
%fa-icon-automobile
|
87
|
+
content: "\f1b9"
|
88
|
+
%fa-icon-backward
|
89
|
+
content: "\f04a"
|
90
|
+
%fa-icon-ban
|
91
|
+
content: "\f05e"
|
92
|
+
%fa-icon-bank
|
93
|
+
content: "\f19c"
|
94
|
+
%fa-icon-bar-chart
|
95
|
+
content: "\f080"
|
96
|
+
%fa-icon-bar-chart-o
|
97
|
+
content: "\f080"
|
98
|
+
%fa-icon-barcode
|
99
|
+
content: "\f02a"
|
100
|
+
%fa-icon-bars
|
101
|
+
content: "\f0c9"
|
102
|
+
%fa-icon-beer
|
103
|
+
content: "\f0fc"
|
104
|
+
%fa-icon-behance
|
105
|
+
content: "\f1b4"
|
106
|
+
%fa-icon-behance-square
|
107
|
+
content: "\f1b5"
|
108
|
+
%fa-icon-bell
|
109
|
+
content: "\f0f3"
|
110
|
+
%fa-icon-bell-o
|
111
|
+
content: "\f0a2"
|
112
|
+
%fa-icon-bell-slash
|
113
|
+
content: "\f1f6"
|
114
|
+
%fa-icon-bell-slash-o
|
115
|
+
content: "\f1f7"
|
116
|
+
%fa-icon-bicycle
|
117
|
+
content: "\f206"
|
118
|
+
%fa-icon-binoculars
|
119
|
+
content: "\f1e5"
|
120
|
+
%fa-icon-birthday-cake
|
121
|
+
content: "\f1fd"
|
122
|
+
%fa-icon-bitbucket
|
123
|
+
content: "\f171"
|
124
|
+
%fa-icon-bitbucket-square
|
125
|
+
content: "\f172"
|
126
|
+
%fa-icon-bitcoin
|
127
|
+
content: "\f15a"
|
128
|
+
%fa-icon-bold
|
129
|
+
content: "\f032"
|
130
|
+
%fa-icon-bolt
|
131
|
+
content: "\f0e7"
|
132
|
+
%fa-icon-bomb
|
133
|
+
content: "\f1e2"
|
134
|
+
%fa-icon-book
|
135
|
+
content: "\f02d"
|
136
|
+
%fa-icon-bookmark
|
137
|
+
content: "\f02e"
|
138
|
+
%fa-icon-bookmark-o
|
139
|
+
content: "\f097"
|
140
|
+
%fa-icon-briefcase
|
141
|
+
content: "\f0b1"
|
142
|
+
%fa-icon-btc
|
143
|
+
content: "\f15a"
|
144
|
+
%fa-icon-bug
|
145
|
+
content: "\f188"
|
146
|
+
%fa-icon-building
|
147
|
+
content: "\f1ad"
|
148
|
+
%fa-icon-building-o
|
149
|
+
content: "\f0f7"
|
150
|
+
%fa-icon-bullhorn
|
151
|
+
content: "\f0a1"
|
152
|
+
%fa-icon-bullseye
|
153
|
+
content: "\f140"
|
154
|
+
%fa-icon-bus
|
155
|
+
content: "\f207"
|
156
|
+
%fa-icon-cab
|
157
|
+
content: "\f1ba"
|
158
|
+
%fa-icon-calculator
|
159
|
+
content: "\f1ec"
|
160
|
+
%fa-icon-calendar
|
161
|
+
content: "\f073"
|
162
|
+
%fa-icon-calendar-o
|
163
|
+
content: "\f133"
|
164
|
+
%fa-icon-camera
|
165
|
+
content: "\f030"
|
166
|
+
%fa-icon-camera-retro
|
167
|
+
content: "\f083"
|
168
|
+
%fa-icon-car
|
169
|
+
content: "\f1b9"
|
170
|
+
%fa-icon-caret-down
|
171
|
+
content: "\f0d7"
|
172
|
+
%fa-icon-caret-left
|
173
|
+
content: "\f0d9"
|
174
|
+
%fa-icon-caret-right
|
175
|
+
content: "\f0da"
|
176
|
+
%fa-icon-caret-square-o-down
|
177
|
+
content: "\f150"
|
178
|
+
%fa-icon-caret-square-o-left
|
179
|
+
content: "\f191"
|
180
|
+
%fa-icon-caret-square-o-right
|
181
|
+
content: "\f152"
|
182
|
+
%fa-icon-caret-square-o-up
|
183
|
+
content: "\f151"
|
184
|
+
%fa-icon-caret-up
|
185
|
+
content: "\f0d8"
|
186
|
+
%fa-icon-cc
|
187
|
+
content: "\f20a"
|
188
|
+
%fa-icon-cc-amex
|
189
|
+
content: "\f1f3"
|
190
|
+
%fa-icon-cc-discover
|
191
|
+
content: "\f1f2"
|
192
|
+
%fa-icon-cc-mastercard
|
193
|
+
content: "\f1f1"
|
194
|
+
%fa-icon-cc-paypal
|
195
|
+
content: "\f1f4"
|
196
|
+
%fa-icon-cc-stripe
|
197
|
+
content: "\f1f5"
|
198
|
+
%fa-icon-cc-visa
|
199
|
+
content: "\f1f0"
|
200
|
+
%fa-icon-certificate
|
201
|
+
content: "\f0a3"
|
202
|
+
%fa-icon-chain
|
203
|
+
content: "\f0c1"
|
204
|
+
%fa-icon-chain-broken
|
205
|
+
content: "\f127"
|
206
|
+
%fa-icon-check
|
207
|
+
content: "\f00c"
|
208
|
+
%fa-icon-check-circle
|
209
|
+
content: "\f058"
|
210
|
+
%fa-icon-check-circle-o
|
211
|
+
content: "\f05d"
|
212
|
+
%fa-icon-check-square
|
213
|
+
content: "\f14a"
|
214
|
+
%fa-icon-check-square-o
|
215
|
+
content: "\f046"
|
216
|
+
%fa-icon-chevron-circle-down
|
217
|
+
content: "\f13a"
|
218
|
+
%fa-icon-chevron-circle-left
|
219
|
+
content: "\f137"
|
220
|
+
%fa-icon-chevron-circle-right
|
221
|
+
content: "\f138"
|
222
|
+
%fa-icon-chevron-circle-up
|
223
|
+
content: "\f139"
|
224
|
+
%fa-icon-chevron-down
|
225
|
+
content: "\f078"
|
226
|
+
%fa-icon-chevron-left
|
227
|
+
content: "\f053"
|
228
|
+
%fa-icon-chevron-right
|
229
|
+
content: "\f054"
|
230
|
+
%fa-icon-chevron-up
|
231
|
+
content: "\f077"
|
232
|
+
%fa-icon-child
|
233
|
+
content: "\f1ae"
|
234
|
+
%fa-icon-circle
|
235
|
+
content: "\f111"
|
236
|
+
%fa-icon-circle-o
|
237
|
+
content: "\f10c"
|
238
|
+
%fa-icon-circle-o-notch
|
239
|
+
content: "\f1ce"
|
240
|
+
%fa-icon-circle-thin
|
241
|
+
content: "\f1db"
|
242
|
+
%fa-icon-clipboard
|
243
|
+
content: "\f0ea"
|
244
|
+
%fa-icon-clock-o
|
245
|
+
content: "\f017"
|
246
|
+
%fa-icon-close
|
247
|
+
content: "\f00d"
|
248
|
+
%fa-icon-cloud
|
249
|
+
content: "\f0c2"
|
250
|
+
%fa-icon-cloud-download
|
251
|
+
content: "\f0ed"
|
252
|
+
%fa-icon-cloud-upload
|
253
|
+
content: "\f0ee"
|
254
|
+
%fa-icon-cny
|
255
|
+
content: "\f157"
|
256
|
+
%fa-icon-code
|
257
|
+
content: "\f121"
|
258
|
+
%fa-icon-code-fork
|
259
|
+
content: "\f126"
|
260
|
+
%fa-icon-codepen
|
261
|
+
content: "\f1cb"
|
262
|
+
%fa-icon-coffee
|
263
|
+
content: "\f0f4"
|
264
|
+
%fa-icon-cog
|
265
|
+
content: "\f013"
|
266
|
+
%fa-icon-cogs
|
267
|
+
content: "\f085"
|
268
|
+
%fa-icon-columns
|
269
|
+
content: "\f0db"
|
270
|
+
%fa-icon-comment
|
271
|
+
content: "\f075"
|
272
|
+
%fa-icon-comment-o
|
273
|
+
content: "\f0e5"
|
274
|
+
%fa-icon-comments
|
275
|
+
content: "\f086"
|
276
|
+
%fa-icon-comments-o
|
277
|
+
content: "\f0e6"
|
278
|
+
%fa-icon-compass
|
279
|
+
content: "\f14e"
|
280
|
+
%fa-icon-compress
|
281
|
+
content: "\f066"
|
282
|
+
%fa-icon-copy
|
283
|
+
content: "\f0c5"
|
284
|
+
%fa-icon-copyright
|
285
|
+
content: "\f1f9"
|
286
|
+
%fa-icon-credit-card
|
287
|
+
content: "\f09d"
|
288
|
+
%fa-icon-crop
|
289
|
+
content: "\f125"
|
290
|
+
%fa-icon-crosshairs
|
291
|
+
content: "\f05b"
|
292
|
+
%fa-icon-css3
|
293
|
+
content: "\f13c"
|
294
|
+
%fa-icon-cube
|
295
|
+
content: "\f1b2"
|
296
|
+
%fa-icon-cubes
|
297
|
+
content: "\f1b3"
|
298
|
+
%fa-icon-cut
|
299
|
+
content: "\f0c4"
|
300
|
+
%fa-icon-cutlery
|
301
|
+
content: "\f0f5"
|
302
|
+
%fa-icon-dashboard
|
303
|
+
content: "\f0e4"
|
304
|
+
%fa-icon-database
|
305
|
+
content: "\f1c0"
|
306
|
+
%fa-icon-dedent
|
307
|
+
content: "\f03b"
|
308
|
+
%fa-icon-delicious
|
309
|
+
content: "\f1a5"
|
310
|
+
%fa-icon-desktop
|
311
|
+
content: "\f108"
|
312
|
+
%fa-icon-deviantart
|
313
|
+
content: "\f1bd"
|
314
|
+
%fa-icon-digg
|
315
|
+
content: "\f1a6"
|
316
|
+
%fa-icon-dollar
|
317
|
+
content: "\f155"
|
318
|
+
%fa-icon-dot-circle-o
|
319
|
+
content: "\f192"
|
320
|
+
%fa-icon-download
|
321
|
+
content: "\f019"
|
322
|
+
%fa-icon-dribbble
|
323
|
+
content: "\f17d"
|
324
|
+
%fa-icon-dropbox
|
325
|
+
content: "\f16b"
|
326
|
+
%fa-icon-drupal
|
327
|
+
content: "\f1a9"
|
328
|
+
%fa-icon-edit
|
329
|
+
content: "\f044"
|
330
|
+
%fa-icon-eject
|
331
|
+
content: "\f052"
|
332
|
+
%fa-icon-ellipsis-h
|
333
|
+
content: "\f141"
|
334
|
+
%fa-icon-ellipsis-v
|
335
|
+
content: "\f142"
|
336
|
+
%fa-icon-empire
|
337
|
+
content: "\f1d1"
|
338
|
+
%fa-icon-envelope
|
339
|
+
content: "\f0e0"
|
340
|
+
%fa-icon-envelope-o
|
341
|
+
content: "\f003"
|
342
|
+
%fa-icon-envelope-square
|
343
|
+
content: "\f199"
|
344
|
+
%fa-icon-eraser
|
345
|
+
content: "\f12d"
|
346
|
+
%fa-icon-eur
|
347
|
+
content: "\f153"
|
348
|
+
%fa-icon-euro
|
349
|
+
content: "\f153"
|
350
|
+
%fa-icon-exchange
|
351
|
+
content: "\f0ec"
|
352
|
+
%fa-icon-exclamation
|
353
|
+
content: "\f12a"
|
354
|
+
%fa-icon-exclamation-circle
|
355
|
+
content: "\f06a"
|
356
|
+
%fa-icon-exclamation-triangle
|
357
|
+
content: "\f071"
|
358
|
+
%fa-icon-expand
|
359
|
+
content: "\f065"
|
360
|
+
%fa-icon-external-link
|
361
|
+
content: "\f08e"
|
362
|
+
%fa-icon-external-link-square
|
363
|
+
content: "\f14c"
|
364
|
+
%fa-icon-eye
|
365
|
+
content: "\f06e"
|
366
|
+
%fa-icon-eye-slash
|
367
|
+
content: "\f070"
|
368
|
+
%fa-icon-eyedropper
|
369
|
+
content: "\f1fb"
|
370
|
+
%fa-icon-facebook
|
371
|
+
content: "\f09a"
|
372
|
+
%fa-icon-facebook-square
|
373
|
+
content: "\f082"
|
374
|
+
%fa-icon-fast-backward
|
375
|
+
content: "\f049"
|
376
|
+
%fa-icon-fast-forward
|
377
|
+
content: "\f050"
|
378
|
+
%fa-icon-fax
|
379
|
+
content: "\f1ac"
|
380
|
+
%fa-icon-female
|
381
|
+
content: "\f182"
|
382
|
+
%fa-icon-fighter-jet
|
383
|
+
content: "\f0fb"
|
384
|
+
%fa-icon-file
|
385
|
+
content: "\f15b"
|
386
|
+
%fa-icon-file-archive-o
|
387
|
+
content: "\f1c6"
|
388
|
+
%fa-icon-file-audio-o
|
389
|
+
content: "\f1c7"
|
390
|
+
%fa-icon-file-code-o
|
391
|
+
content: "\f1c9"
|
392
|
+
%fa-icon-file-excel-o
|
393
|
+
content: "\f1c3"
|
394
|
+
%fa-icon-file-image-o
|
395
|
+
content: "\f1c5"
|
396
|
+
%fa-icon-file-movie-o
|
397
|
+
content: "\f1c8"
|
398
|
+
%fa-icon-file-o
|
399
|
+
content: "\f016"
|
400
|
+
%fa-icon-file-pdf-o
|
401
|
+
content: "\f1c1"
|
402
|
+
%fa-icon-file-photo-o
|
403
|
+
content: "\f1c5"
|
404
|
+
%fa-icon-file-picture-o
|
405
|
+
content: "\f1c5"
|
406
|
+
%fa-icon-file-powerpoint-o
|
407
|
+
content: "\f1c4"
|
408
|
+
%fa-icon-file-sound-o
|
409
|
+
content: "\f1c7"
|
410
|
+
%fa-icon-file-text
|
411
|
+
content: "\f15c"
|
412
|
+
%fa-icon-file-text-o
|
413
|
+
content: "\f0f6"
|
414
|
+
%fa-icon-file-video-o
|
415
|
+
content: "\f1c8"
|
416
|
+
%fa-icon-file-word-o
|
417
|
+
content: "\f1c2"
|
418
|
+
%fa-icon-file-zip-o
|
419
|
+
content: "\f1c6"
|
420
|
+
%fa-icon-files-o
|
421
|
+
content: "\f0c5"
|
422
|
+
%fa-icon-film
|
423
|
+
content: "\f008"
|
424
|
+
%fa-icon-filter
|
425
|
+
content: "\f0b0"
|
426
|
+
%fa-icon-fire
|
427
|
+
content: "\f06d"
|
428
|
+
%fa-icon-fire-extinguisher
|
429
|
+
content: "\f134"
|
430
|
+
%fa-icon-flag
|
431
|
+
content: "\f024"
|
432
|
+
%fa-icon-flag-checkered
|
433
|
+
content: "\f11e"
|
434
|
+
%fa-icon-flag-o
|
435
|
+
content: "\f11d"
|
436
|
+
%fa-icon-flash
|
437
|
+
content: "\f0e7"
|
438
|
+
%fa-icon-flask
|
439
|
+
content: "\f0c3"
|
440
|
+
%fa-icon-flickr
|
441
|
+
content: "\f16e"
|
442
|
+
%fa-icon-floppy-o
|
443
|
+
content: "\f0c7"
|
444
|
+
%fa-icon-folder
|
445
|
+
content: "\f07b"
|
446
|
+
%fa-icon-folder-o
|
447
|
+
content: "\f114"
|
448
|
+
%fa-icon-folder-open
|
449
|
+
content: "\f07c"
|
450
|
+
%fa-icon-folder-open-o
|
451
|
+
content: "\f115"
|
452
|
+
%fa-icon-font
|
453
|
+
content: "\f031"
|
454
|
+
%fa-icon-forward
|
455
|
+
content: "\f04e"
|
456
|
+
%fa-icon-foursquare
|
457
|
+
content: "\f180"
|
458
|
+
%fa-icon-frown-o
|
459
|
+
content: "\f119"
|
460
|
+
%fa-icon-futbol-o
|
461
|
+
content: "\f1e3"
|
462
|
+
%fa-icon-gamepad
|
463
|
+
content: "\f11b"
|
464
|
+
%fa-icon-gavel
|
465
|
+
content: "\f0e3"
|
466
|
+
%fa-icon-gbp
|
467
|
+
content: "\f154"
|
468
|
+
%fa-icon-ge
|
469
|
+
content: "\f1d1"
|
470
|
+
%fa-icon-gear
|
471
|
+
content: "\f013"
|
472
|
+
%fa-icon-gears
|
473
|
+
content: "\f085"
|
474
|
+
%fa-icon-gift
|
475
|
+
content: "\f06b"
|
476
|
+
%fa-icon-git
|
477
|
+
content: "\f1d3"
|
478
|
+
%fa-icon-git-square
|
479
|
+
content: "\f1d2"
|
480
|
+
%fa-icon-github
|
481
|
+
content: "\f09b"
|
482
|
+
%fa-icon-github-alt
|
483
|
+
content: "\f113"
|
484
|
+
%fa-icon-github-square
|
485
|
+
content: "\f092"
|
486
|
+
%fa-icon-gittip
|
487
|
+
content: "\f184"
|
488
|
+
%fa-icon-glass
|
489
|
+
content: "\f000"
|
490
|
+
%fa-icon-globe
|
491
|
+
content: "\f0ac"
|
492
|
+
%fa-icon-google
|
493
|
+
content: "\f1a0"
|
494
|
+
%fa-icon-google-plus
|
495
|
+
content: "\f0d5"
|
496
|
+
%fa-icon-google-plus-square
|
497
|
+
content: "\f0d4"
|
498
|
+
%fa-icon-google-wallet
|
499
|
+
content: "\f1ee"
|
500
|
+
%fa-icon-graduation-cap
|
501
|
+
content: "\f19d"
|
502
|
+
%fa-icon-group
|
503
|
+
content: "\f0c0"
|
504
|
+
%fa-icon-h-square
|
505
|
+
content: "\f0fd"
|
506
|
+
%fa-icon-hacker-news
|
507
|
+
content: "\f1d4"
|
508
|
+
%fa-icon-hand-o-down
|
509
|
+
content: "\f0a7"
|
510
|
+
%fa-icon-hand-o-left
|
511
|
+
content: "\f0a5"
|
512
|
+
%fa-icon-hand-o-right
|
513
|
+
content: "\f0a4"
|
514
|
+
%fa-icon-hand-o-up
|
515
|
+
content: "\f0a6"
|
516
|
+
%fa-icon-hdd-o
|
517
|
+
content: "\f0a0"
|
518
|
+
%fa-icon-header
|
519
|
+
content: "\f1dc"
|
520
|
+
%fa-icon-headphones
|
521
|
+
content: "\f025"
|
522
|
+
%fa-icon-heart
|
523
|
+
content: "\f004"
|
524
|
+
%fa-icon-heart-o
|
525
|
+
content: "\f08a"
|
526
|
+
%fa-icon-history
|
527
|
+
content: "\f1da"
|
528
|
+
%fa-icon-home
|
529
|
+
content: "\f015"
|
530
|
+
%fa-icon-hospital-o
|
531
|
+
content: "\f0f8"
|
532
|
+
%fa-icon-html5
|
533
|
+
content: "\f13b"
|
534
|
+
%fa-icon-ils
|
535
|
+
content: "\f20b"
|
536
|
+
%fa-icon-image
|
537
|
+
content: "\f03e"
|
538
|
+
%fa-icon-inbox
|
539
|
+
content: "\f01c"
|
540
|
+
%fa-icon-indent
|
541
|
+
content: "\f03c"
|
542
|
+
%fa-icon-info
|
543
|
+
content: "\f129"
|
544
|
+
%fa-icon-info-circle
|
545
|
+
content: "\f05a"
|
546
|
+
%fa-icon-inr
|
547
|
+
content: "\f156"
|
548
|
+
%fa-icon-instagram
|
549
|
+
content: "\f16d"
|
550
|
+
%fa-icon-institution
|
551
|
+
content: "\f19c"
|
552
|
+
%fa-icon-ioxhost
|
553
|
+
content: "\f208"
|
554
|
+
%fa-icon-italic
|
555
|
+
content: "\f033"
|
556
|
+
%fa-icon-joomla
|
557
|
+
content: "\f1aa"
|
558
|
+
%fa-icon-jpy
|
559
|
+
content: "\f157"
|
560
|
+
%fa-icon-jsfiddle
|
561
|
+
content: "\f1cc"
|
562
|
+
%fa-icon-key
|
563
|
+
content: "\f084"
|
564
|
+
%fa-icon-keyboard-o
|
565
|
+
content: "\f11c"
|
566
|
+
%fa-icon-krw
|
567
|
+
content: "\f159"
|
568
|
+
%fa-icon-language
|
569
|
+
content: "\f1ab"
|
570
|
+
%fa-icon-laptop
|
571
|
+
content: "\f109"
|
572
|
+
%fa-icon-lastfm
|
573
|
+
content: "\f202"
|
574
|
+
%fa-icon-lastfm-square
|
575
|
+
content: "\f203"
|
576
|
+
%fa-icon-leaf
|
577
|
+
content: "\f06c"
|
578
|
+
%fa-icon-legal
|
579
|
+
content: "\f0e3"
|
580
|
+
%fa-icon-lemon-o
|
581
|
+
content: "\f094"
|
582
|
+
%fa-icon-level-down
|
583
|
+
content: "\f149"
|
584
|
+
%fa-icon-level-up
|
585
|
+
content: "\f148"
|
586
|
+
%fa-icon-life-bouy
|
587
|
+
content: "\f1cd"
|
588
|
+
%fa-icon-life-buoy
|
589
|
+
content: "\f1cd"
|
590
|
+
%fa-icon-life-ring
|
591
|
+
content: "\f1cd"
|
592
|
+
%fa-icon-life-saver
|
593
|
+
content: "\f1cd"
|
594
|
+
%fa-icon-lightbulb-o
|
595
|
+
content: "\f0eb"
|
596
|
+
%fa-icon-line-chart
|
597
|
+
content: "\f201"
|
598
|
+
%fa-icon-link
|
599
|
+
content: "\f0c1"
|
600
|
+
%fa-icon-linkedin
|
601
|
+
content: "\f0e1"
|
602
|
+
%fa-icon-linkedin-square
|
603
|
+
content: "\f08c"
|
604
|
+
%fa-icon-linux
|
605
|
+
content: "\f17c"
|
606
|
+
%fa-icon-list
|
607
|
+
content: "\f03a"
|
608
|
+
%fa-icon-list-alt
|
609
|
+
content: "\f022"
|
610
|
+
%fa-icon-list-ol
|
611
|
+
content: "\f0cb"
|
612
|
+
%fa-icon-list-ul
|
613
|
+
content: "\f0ca"
|
614
|
+
%fa-icon-location-arrow
|
615
|
+
content: "\f124"
|
616
|
+
%fa-icon-lock
|
617
|
+
content: "\f023"
|
618
|
+
%fa-icon-long-arrow-down
|
619
|
+
content: "\f175"
|
620
|
+
%fa-icon-long-arrow-left
|
621
|
+
content: "\f177"
|
622
|
+
%fa-icon-long-arrow-right
|
623
|
+
content: "\f178"
|
624
|
+
%fa-icon-long-arrow-up
|
625
|
+
content: "\f176"
|
626
|
+
%fa-icon-magic
|
627
|
+
content: "\f0d0"
|
628
|
+
%fa-icon-magnet
|
629
|
+
content: "\f076"
|
630
|
+
%fa-icon-mail-forward
|
631
|
+
content: "\f064"
|
632
|
+
%fa-icon-mail-reply
|
633
|
+
content: "\f112"
|
634
|
+
%fa-icon-mail-reply-all
|
635
|
+
content: "\f122"
|
636
|
+
%fa-icon-male
|
637
|
+
content: "\f183"
|
638
|
+
%fa-icon-map-marker
|
639
|
+
content: "\f041"
|
640
|
+
%fa-icon-maxcdn
|
641
|
+
content: "\f136"
|
642
|
+
%fa-icon-meanpath
|
643
|
+
content: "\f20c"
|
644
|
+
%fa-icon-medkit
|
645
|
+
content: "\f0fa"
|
646
|
+
%fa-icon-meh-o
|
647
|
+
content: "\f11a"
|
648
|
+
%fa-icon-microphone
|
649
|
+
content: "\f130"
|
650
|
+
%fa-icon-microphone-slash
|
651
|
+
content: "\f131"
|
652
|
+
%fa-icon-minus
|
653
|
+
content: "\f068"
|
654
|
+
%fa-icon-minus-circle
|
655
|
+
content: "\f056"
|
656
|
+
%fa-icon-minus-square
|
657
|
+
content: "\f146"
|
658
|
+
%fa-icon-minus-square-o
|
659
|
+
content: "\f147"
|
660
|
+
%fa-icon-mobile
|
661
|
+
content: "\f10b"
|
662
|
+
%fa-icon-mobile-phone
|
663
|
+
content: "\f10b"
|
664
|
+
%fa-icon-money
|
665
|
+
content: "\f0d6"
|
666
|
+
%fa-icon-moon-o
|
667
|
+
content: "\f186"
|
668
|
+
%fa-icon-mortar-board
|
669
|
+
content: "\f19d"
|
670
|
+
%fa-icon-music
|
671
|
+
content: "\f001"
|
672
|
+
%fa-icon-navicon
|
673
|
+
content: "\f0c9"
|
674
|
+
%fa-icon-newspaper-o
|
675
|
+
content: "\f1ea"
|
676
|
+
%fa-icon-openid
|
677
|
+
content: "\f19b"
|
678
|
+
%fa-icon-outdent
|
679
|
+
content: "\f03b"
|
680
|
+
%fa-icon-pagelines
|
681
|
+
content: "\f18c"
|
682
|
+
%fa-icon-paint-brush
|
683
|
+
content: "\f1fc"
|
684
|
+
%fa-icon-paper-plane
|
685
|
+
content: "\f1d8"
|
686
|
+
%fa-icon-paper-plane-o
|
687
|
+
content: "\f1d9"
|
688
|
+
%fa-icon-paperclip
|
689
|
+
content: "\f0c6"
|
690
|
+
%fa-icon-paragraph
|
691
|
+
content: "\f1dd"
|
692
|
+
%fa-icon-paste
|
693
|
+
content: "\f0ea"
|
694
|
+
%fa-icon-pause
|
695
|
+
content: "\f04c"
|
696
|
+
%fa-icon-paw
|
697
|
+
content: "\f1b0"
|
698
|
+
%fa-icon-paypal
|
699
|
+
content: "\f1ed"
|
700
|
+
%fa-icon-pencil
|
701
|
+
content: "\f040"
|
702
|
+
%fa-icon-pencil-square
|
703
|
+
content: "\f14b"
|
704
|
+
%fa-icon-pencil-square-o
|
705
|
+
content: "\f044"
|
706
|
+
%fa-icon-phone
|
707
|
+
content: "\f095"
|
708
|
+
%fa-icon-phone-square
|
709
|
+
content: "\f098"
|
710
|
+
%fa-icon-photo
|
711
|
+
content: "\f03e"
|
712
|
+
%fa-icon-picture-o
|
713
|
+
content: "\f03e"
|
714
|
+
%fa-icon-pie-chart
|
715
|
+
content: "\f200"
|
716
|
+
%fa-icon-pied-piper
|
717
|
+
content: "\f1a7"
|
718
|
+
%fa-icon-pied-piper-alt
|
719
|
+
content: "\f1a8"
|
720
|
+
%fa-icon-pinterest
|
721
|
+
content: "\f0d2"
|
722
|
+
%fa-icon-pinterest-square
|
723
|
+
content: "\f0d3"
|
724
|
+
%fa-icon-plane
|
725
|
+
content: "\f072"
|
726
|
+
%fa-icon-play
|
727
|
+
content: "\f04b"
|
728
|
+
%fa-icon-play-circle
|
729
|
+
content: "\f144"
|
730
|
+
%fa-icon-play-circle-o
|
731
|
+
content: "\f01d"
|
732
|
+
%fa-icon-plug
|
733
|
+
content: "\f1e6"
|
734
|
+
%fa-icon-plus
|
735
|
+
content: "\f067"
|
736
|
+
%fa-icon-plus-circle
|
737
|
+
content: "\f055"
|
738
|
+
%fa-icon-plus-square
|
739
|
+
content: "\f0fe"
|
740
|
+
%fa-icon-plus-square-o
|
741
|
+
content: "\f196"
|
742
|
+
%fa-icon-power-off
|
743
|
+
content: "\f011"
|
744
|
+
%fa-icon-print
|
745
|
+
content: "\f02f"
|
746
|
+
%fa-icon-puzzle-piece
|
747
|
+
content: "\f12e"
|
748
|
+
%fa-icon-qq
|
749
|
+
content: "\f1d6"
|
750
|
+
%fa-icon-qrcode
|
751
|
+
content: "\f029"
|
752
|
+
%fa-icon-question
|
753
|
+
content: "\f128"
|
754
|
+
%fa-icon-question-circle
|
755
|
+
content: "\f059"
|
756
|
+
%fa-icon-quote-left
|
757
|
+
content: "\f10d"
|
758
|
+
%fa-icon-quote-right
|
759
|
+
content: "\f10e"
|
760
|
+
%fa-icon-ra
|
761
|
+
content: "\f1d0"
|
762
|
+
%fa-icon-random
|
763
|
+
content: "\f074"
|
764
|
+
%fa-icon-rebel
|
765
|
+
content: "\f1d0"
|
766
|
+
%fa-icon-recycle
|
767
|
+
content: "\f1b8"
|
768
|
+
%fa-icon-reddit
|
769
|
+
content: "\f1a1"
|
770
|
+
%fa-icon-reddit-square
|
771
|
+
content: "\f1a2"
|
772
|
+
%fa-icon-refresh
|
773
|
+
content: "\f021"
|
774
|
+
%fa-icon-remove
|
775
|
+
content: "\f00d"
|
776
|
+
%fa-icon-renren
|
777
|
+
content: "\f18b"
|
778
|
+
%fa-icon-reorder
|
779
|
+
content: "\f0c9"
|
780
|
+
%fa-icon-repeat
|
781
|
+
content: "\f01e"
|
782
|
+
%fa-icon-reply
|
783
|
+
content: "\f112"
|
784
|
+
%fa-icon-reply-all
|
785
|
+
content: "\f122"
|
786
|
+
%fa-icon-retweet
|
787
|
+
content: "\f079"
|
788
|
+
%fa-icon-rmb
|
789
|
+
content: "\f157"
|
790
|
+
%fa-icon-road
|
791
|
+
content: "\f018"
|
792
|
+
%fa-icon-rocket
|
793
|
+
content: "\f135"
|
794
|
+
%fa-icon-rotate-left
|
795
|
+
content: "\f0e2"
|
796
|
+
%fa-icon-rotate-right
|
797
|
+
content: "\f01e"
|
798
|
+
%fa-icon-rouble
|
799
|
+
content: "\f158"
|
800
|
+
%fa-icon-rss
|
801
|
+
content: "\f09e"
|
802
|
+
%fa-icon-rss-square
|
803
|
+
content: "\f143"
|
804
|
+
%fa-icon-rub
|
805
|
+
content: "\f158"
|
806
|
+
%fa-icon-ruble
|
807
|
+
content: "\f158"
|
808
|
+
%fa-icon-rupee
|
809
|
+
content: "\f156"
|
810
|
+
%fa-icon-save
|
811
|
+
content: "\f0c7"
|
812
|
+
%fa-icon-scissors
|
813
|
+
content: "\f0c4"
|
814
|
+
%fa-icon-search
|
815
|
+
content: "\f002"
|
816
|
+
%fa-icon-search-minus
|
817
|
+
content: "\f010"
|
818
|
+
%fa-icon-search-plus
|
819
|
+
content: "\f00e"
|
820
|
+
%fa-icon-send
|
821
|
+
content: "\f1d8"
|
822
|
+
%fa-icon-send-o
|
823
|
+
content: "\f1d9"
|
824
|
+
%fa-icon-share
|
825
|
+
content: "\f064"
|
826
|
+
%fa-icon-share-alt
|
827
|
+
content: "\f1e0"
|
828
|
+
%fa-icon-share-alt-square
|
829
|
+
content: "\f1e1"
|
830
|
+
%fa-icon-share-square
|
831
|
+
content: "\f14d"
|
832
|
+
%fa-icon-share-square-o
|
833
|
+
content: "\f045"
|
834
|
+
%fa-icon-shekel
|
835
|
+
content: "\f20b"
|
836
|
+
%fa-icon-sheqel
|
837
|
+
content: "\f20b"
|
838
|
+
%fa-icon-shield
|
839
|
+
content: "\f132"
|
840
|
+
%fa-icon-shopping-cart
|
841
|
+
content: "\f07a"
|
842
|
+
%fa-icon-sign-in
|
843
|
+
content: "\f090"
|
844
|
+
%fa-icon-sign-out
|
845
|
+
content: "\f08b"
|
846
|
+
%fa-icon-signal
|
847
|
+
content: "\f012"
|
848
|
+
%fa-icon-sitemap
|
849
|
+
content: "\f0e8"
|
850
|
+
%fa-icon-skype
|
851
|
+
content: "\f17e"
|
852
|
+
%fa-icon-slack
|
853
|
+
content: "\f198"
|
854
|
+
%fa-icon-sliders
|
855
|
+
content: "\f1de"
|
856
|
+
%fa-icon-slideshare
|
857
|
+
content: "\f1e7"
|
858
|
+
%fa-icon-smile-o
|
859
|
+
content: "\f118"
|
860
|
+
%fa-icon-soccer-ball-o
|
861
|
+
content: "\f1e3"
|
862
|
+
%fa-icon-sort
|
863
|
+
content: "\f0dc"
|
864
|
+
%fa-icon-sort-alpha-asc
|
865
|
+
content: "\f15d"
|
866
|
+
%fa-icon-sort-alpha-desc
|
867
|
+
content: "\f15e"
|
868
|
+
%fa-icon-sort-amount-asc
|
869
|
+
content: "\f160"
|
870
|
+
%fa-icon-sort-amount-desc
|
871
|
+
content: "\f161"
|
872
|
+
%fa-icon-sort-asc
|
873
|
+
content: "\f0de"
|
874
|
+
%fa-icon-sort-desc
|
875
|
+
content: "\f0dd"
|
876
|
+
%fa-icon-sort-down
|
877
|
+
content: "\f0dd"
|
878
|
+
%fa-icon-sort-numeric-asc
|
879
|
+
content: "\f162"
|
880
|
+
%fa-icon-sort-numeric-desc
|
881
|
+
content: "\f163"
|
882
|
+
%fa-icon-sort-up
|
883
|
+
content: "\f0de"
|
884
|
+
%fa-icon-soundcloud
|
885
|
+
content: "\f1be"
|
886
|
+
%fa-icon-space-shuttle
|
887
|
+
content: "\f197"
|
888
|
+
%fa-icon-spinner
|
889
|
+
content: "\f110"
|
890
|
+
%fa-icon-spoon
|
891
|
+
content: "\f1b1"
|
892
|
+
%fa-icon-spotify
|
893
|
+
content: "\f1bc"
|
894
|
+
%fa-icon-square
|
895
|
+
content: "\f0c8"
|
896
|
+
%fa-icon-square-o
|
897
|
+
content: "\f096"
|
898
|
+
%fa-icon-stack-exchange
|
899
|
+
content: "\f18d"
|
900
|
+
%fa-icon-stack-overflow
|
901
|
+
content: "\f16c"
|
902
|
+
%fa-icon-star
|
903
|
+
content: "\f005"
|
904
|
+
%fa-icon-star-half
|
905
|
+
content: "\f089"
|
906
|
+
%fa-icon-star-half-empty
|
907
|
+
content: "\f123"
|
908
|
+
%fa-icon-star-half-full
|
909
|
+
content: "\f123"
|
910
|
+
%fa-icon-star-half-o
|
911
|
+
content: "\f123"
|
912
|
+
%fa-icon-star-o
|
913
|
+
content: "\f006"
|
914
|
+
%fa-icon-steam
|
915
|
+
content: "\f1b6"
|
916
|
+
%fa-icon-steam-square
|
917
|
+
content: "\f1b7"
|
918
|
+
%fa-icon-step-backward
|
919
|
+
content: "\f048"
|
920
|
+
%fa-icon-step-forward
|
921
|
+
content: "\f051"
|
922
|
+
%fa-icon-stethoscope
|
923
|
+
content: "\f0f1"
|
924
|
+
%fa-icon-stop
|
925
|
+
content: "\f04d"
|
926
|
+
%fa-icon-strikethrough
|
927
|
+
content: "\f0cc"
|
928
|
+
%fa-icon-stumbleupon
|
929
|
+
content: "\f1a4"
|
930
|
+
%fa-icon-stumbleupon-circle
|
931
|
+
content: "\f1a3"
|
932
|
+
%fa-icon-subscript
|
933
|
+
content: "\f12c"
|
934
|
+
%fa-icon-suitcase
|
935
|
+
content: "\f0f2"
|
936
|
+
%fa-icon-sun-o
|
937
|
+
content: "\f185"
|
938
|
+
%fa-icon-superscript
|
939
|
+
content: "\f12b"
|
940
|
+
%fa-icon-support
|
941
|
+
content: "\f1cd"
|
942
|
+
%fa-icon-table
|
943
|
+
content: "\f0ce"
|
944
|
+
%fa-icon-tablet
|
945
|
+
content: "\f10a"
|
946
|
+
%fa-icon-tachometer
|
947
|
+
content: "\f0e4"
|
948
|
+
%fa-icon-tag
|
949
|
+
content: "\f02b"
|
950
|
+
%fa-icon-tags
|
951
|
+
content: "\f02c"
|
952
|
+
%fa-icon-tasks
|
953
|
+
content: "\f0ae"
|
954
|
+
%fa-icon-taxi
|
955
|
+
content: "\f1ba"
|
956
|
+
%fa-icon-tencent-weibo
|
957
|
+
content: "\f1d5"
|
958
|
+
%fa-icon-terminal
|
959
|
+
content: "\f120"
|
960
|
+
%fa-icon-text-height
|
961
|
+
content: "\f034"
|
962
|
+
%fa-icon-text-width
|
963
|
+
content: "\f035"
|
964
|
+
%fa-icon-th
|
965
|
+
content: "\f00a"
|
966
|
+
%fa-icon-th-large
|
967
|
+
content: "\f009"
|
968
|
+
%fa-icon-th-list
|
969
|
+
content: "\f00b"
|
970
|
+
%fa-icon-thumb-tack
|
971
|
+
content: "\f08d"
|
972
|
+
%fa-icon-thumbs-down
|
973
|
+
content: "\f165"
|
974
|
+
%fa-icon-thumbs-o-down
|
975
|
+
content: "\f088"
|
976
|
+
%fa-icon-thumbs-o-up
|
977
|
+
content: "\f087"
|
978
|
+
%fa-icon-thumbs-up
|
979
|
+
content: "\f164"
|
980
|
+
%fa-icon-ticket
|
981
|
+
content: "\f145"
|
982
|
+
%fa-icon-times
|
983
|
+
content: "\f00d"
|
984
|
+
%fa-icon-times-circle
|
985
|
+
content: "\f057"
|
986
|
+
%fa-icon-times-circle-o
|
987
|
+
content: "\f05c"
|
988
|
+
%fa-icon-tint
|
989
|
+
content: "\f043"
|
990
|
+
%fa-icon-toggle-down
|
991
|
+
content: "\f150"
|
992
|
+
%fa-icon-toggle-left
|
993
|
+
content: "\f191"
|
994
|
+
%fa-icon-toggle-off
|
995
|
+
content: "\f204"
|
996
|
+
%fa-icon-toggle-on
|
997
|
+
content: "\f205"
|
998
|
+
%fa-icon-toggle-right
|
999
|
+
content: "\f152"
|
1000
|
+
%fa-icon-toggle-up
|
1001
|
+
content: "\f151"
|
1002
|
+
%fa-icon-trash
|
1003
|
+
content: "\f1f8"
|
1004
|
+
%fa-icon-trash-o
|
1005
|
+
content: "\f014"
|
1006
|
+
%fa-icon-tree
|
1007
|
+
content: "\f1bb"
|
1008
|
+
%fa-icon-trello
|
1009
|
+
content: "\f181"
|
1010
|
+
%fa-icon-trophy
|
1011
|
+
content: "\f091"
|
1012
|
+
%fa-icon-truck
|
1013
|
+
content: "\f0d1"
|
1014
|
+
%fa-icon-try
|
1015
|
+
content: "\f195"
|
1016
|
+
%fa-icon-tty
|
1017
|
+
content: "\f1e4"
|
1018
|
+
%fa-icon-tumblr
|
1019
|
+
content: "\f173"
|
1020
|
+
%fa-icon-tumblr-square
|
1021
|
+
content: "\f174"
|
1022
|
+
%fa-icon-turkish-lira
|
1023
|
+
content: "\f195"
|
1024
|
+
%fa-icon-twitch
|
1025
|
+
content: "\f1e8"
|
1026
|
+
%fa-icon-twitter
|
1027
|
+
content: "\f099"
|
1028
|
+
%fa-icon-twitter-square
|
1029
|
+
content: "\f081"
|
1030
|
+
%fa-icon-umbrella
|
1031
|
+
content: "\f0e9"
|
1032
|
+
%fa-icon-underline
|
1033
|
+
content: "\f0cd"
|
1034
|
+
%fa-icon-undo
|
1035
|
+
content: "\f0e2"
|
1036
|
+
%fa-icon-university
|
1037
|
+
content: "\f19c"
|
1038
|
+
%fa-icon-unlink
|
1039
|
+
content: "\f127"
|
1040
|
+
%fa-icon-unlock
|
1041
|
+
content: "\f09c"
|
1042
|
+
%fa-icon-unlock-alt
|
1043
|
+
content: "\f13e"
|
1044
|
+
%fa-icon-unsorted
|
1045
|
+
content: "\f0dc"
|
1046
|
+
%fa-icon-upload
|
1047
|
+
content: "\f093"
|
1048
|
+
%fa-icon-usd
|
1049
|
+
content: "\f155"
|
1050
|
+
%fa-icon-user
|
1051
|
+
content: "\f007"
|
1052
|
+
%fa-icon-user-md
|
1053
|
+
content: "\f0f0"
|
1054
|
+
%fa-icon-users
|
1055
|
+
content: "\f0c0"
|
1056
|
+
%fa-icon-video-camera
|
1057
|
+
content: "\f03d"
|
1058
|
+
%fa-icon-vimeo-square
|
1059
|
+
content: "\f194"
|
1060
|
+
%fa-icon-vine
|
1061
|
+
content: "\f1ca"
|
1062
|
+
%fa-icon-vk
|
1063
|
+
content: "\f189"
|
1064
|
+
%fa-icon-volume-down
|
1065
|
+
content: "\f027"
|
1066
|
+
%fa-icon-volume-off
|
1067
|
+
content: "\f026"
|
1068
|
+
%fa-icon-volume-up
|
1069
|
+
content: "\f028"
|
1070
|
+
%fa-icon-warning
|
1071
|
+
content: "\f071"
|
1072
|
+
%fa-icon-wechat
|
1073
|
+
content: "\f1d7"
|
1074
|
+
%fa-icon-weibo
|
1075
|
+
content: "\f18a"
|
1076
|
+
%fa-icon-weixin
|
1077
|
+
content: "\f1d7"
|
1078
|
+
%fa-icon-wheelchair
|
1079
|
+
content: "\f193"
|
1080
|
+
%fa-icon-wifi
|
1081
|
+
content: "\f1eb"
|
1082
|
+
%fa-icon-windows
|
1083
|
+
content: "\f17a"
|
1084
|
+
%fa-icon-won
|
1085
|
+
content: "\f159"
|
1086
|
+
%fa-icon-wordpress
|
1087
|
+
content: "\f19a"
|
1088
|
+
%fa-icon-wrench
|
1089
|
+
content: "\f0ad"
|
1090
|
+
%fa-icon-xing
|
1091
|
+
content: "\f168"
|
1092
|
+
%fa-icon-xing-square
|
1093
|
+
content: "\f169"
|
1094
|
+
%fa-icon-yahoo
|
1095
|
+
content: "\f19e"
|
1096
|
+
%fa-icon-yelp
|
1097
|
+
content: "\f1e9"
|
1098
|
+
%fa-icon-yen
|
1099
|
+
content: "\f157"
|
1100
|
+
%fa-icon-youtube
|
1101
|
+
content: "\f167"
|
1102
|
+
%fa-icon-youtube-play
|
1103
|
+
content: "\f16a"
|
1104
|
+
%fa-icon-youtube-square
|
1105
|
+
content: "\f166"
|
File without changes
|
data/update.sh
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
BUILD_DIR="build"
|
4
|
+
BOWER_DIR="bower_components"
|
5
|
+
FA_DIR=$BOWER_DIR"/font-awesome"
|
6
|
+
SCSS_DIR=$FA_DIR"/scss"
|
7
|
+
VARIABLES_FILE=$SCSS_DIR"/_variables.scss"
|
8
|
+
CORE_FILE=$SCSS_DIR"/_core.scss"
|
9
|
+
PATH_FILE=$SCSS_DIR"/_path.scss"
|
10
|
+
OUTPUT_DIR="./lib/sass"
|
11
|
+
EXTEND_FILE=$OUTPUT_DIR"/_extends.sass"
|
12
|
+
|
13
|
+
function clean () {
|
14
|
+
mkdir -p ./$BUILD_DIR
|
15
|
+
rm -rf ./$BUILD_DIR/*
|
16
|
+
rm -rf ./$BOWER_DIR
|
17
|
+
rm $EXTEND_FILE
|
18
|
+
}
|
19
|
+
|
20
|
+
function cleanup () {
|
21
|
+
rm -rf $BOWER_DIR
|
22
|
+
rm -rf $BUILD_DIR
|
23
|
+
}
|
24
|
+
|
25
|
+
function fetch_font_awesome () {
|
26
|
+
bower install font-awesome
|
27
|
+
}
|
28
|
+
|
29
|
+
function convert_core_to_extend () {
|
30
|
+
echo '%fa-base-styles' >> $EXTEND_FILE
|
31
|
+
gawk -v output_file=$EXTEND_FILE '{ match($0, /(.*):(.*);/, arr)
|
32
|
+
if (!arr[0])
|
33
|
+
next
|
34
|
+
print arr[1] ":" arr[2] >> output_file }' $CORE_FILE
|
35
|
+
}
|
36
|
+
|
37
|
+
function convert_variables_to_extends () {
|
38
|
+
gawk -v output_file=$EXTEND_FILE '{ match($0, /(\$fa-var)-(.*): "(.*)";/, arr)
|
39
|
+
if (!arr[0])
|
40
|
+
next
|
41
|
+
print "%fa-icon-" arr[2] "\n" " content:" " " "\""arr[3]"\"" >> output_file }' $VARIABLES_FILE
|
42
|
+
}
|
43
|
+
|
44
|
+
# function make_font_face_definition () {} coming soon
|
45
|
+
|
46
|
+
clean
|
47
|
+
fetch_font_awesome
|
48
|
+
convert_core_to_extend
|
49
|
+
convert_variables_to_extends
|
50
|
+
cleanup
|
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: font-awesome-sass-mixins
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter M. Elias
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sass
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.2'
|
27
|
+
description: ''
|
28
|
+
email: petermelias@gmail.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- ".gitignore"
|
34
|
+
- Gemfile
|
35
|
+
- LICENSE
|
36
|
+
- README.md
|
37
|
+
- Rakefile
|
38
|
+
- font-awesome-sass-mixins.gemspec
|
39
|
+
- lib/font-awesome-sass-mixins.rb
|
40
|
+
- lib/sass/_extends.sass
|
41
|
+
- lib/sass/_manifest.sass
|
42
|
+
- lib/sass/_mixins.sass
|
43
|
+
- test/font-awesome-sass-mixins-test.rb
|
44
|
+
- update.sh
|
45
|
+
homepage: https://github.com/petermelias/font-awesome-sass-mixins
|
46
|
+
licenses:
|
47
|
+
- MIT
|
48
|
+
metadata: {}
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 2.4.5
|
66
|
+
signing_key:
|
67
|
+
specification_version: 4
|
68
|
+
summary: Font Awesome SASS mixins for pure SASS usage.
|
69
|
+
test_files:
|
70
|
+
- test/font-awesome-sass-mixins-test.rb
|