agric 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. data/README.md +1 -1
  2. data/{lib → app}/assets/fonts/agric.eot +0 -0
  3. data/app/assets/fonts/agric.svg +389 -0
  4. data/{lib → app}/assets/fonts/agric.ttf +0 -0
  5. data/{lib → app}/assets/fonts/agric.woff +0 -0
  6. data/{lib/agric/compass/stylesheets/agric/_core.scss → app/assets/stylesheets/agric/core.scss} +6 -6
  7. data/{lib/agric/compass/stylesheets/agric/_mixins.scss → app/assets/stylesheets/agric/mixins.scss} +6 -0
  8. data/app/assets/stylesheets/agric/paths.scss +11 -0
  9. data/lib/agric/version.rb +1 -1
  10. data/lib/agric.rb +0 -19
  11. metadata +39 -33
  12. data/.gitignore +0 -21
  13. data/Gemfile +0 -4
  14. data/Rakefile +0 -2
  15. data/agric.gemspec +0 -25
  16. data/lib/agric/compass/stylesheets/agric/_paths.scss +0 -11
  17. data/lib/agric/compiler/convert.pe +0 -7
  18. data/lib/agric/compiler/reference.yml +0 -379
  19. data/lib/agric/compiler/svgo.yml +0 -58
  20. data/lib/agric/compiler.rb +0 -234
  21. data/lib/agric/compiler_tasks.rb +0 -8
  22. data/lib/assets/fonts/agric.svg +0 -389
  23. data/lib/assets/stylesheets/agric.css.scss +0 -5
  24. data/src/002-agri/config.yml +0 -5
  25. data/src/002-agri/font.svg +0 -594
  26. data/src/003-ekylibre/config.yml +0 -5
  27. data/src/003-ekylibre/font.svg +0 -104
  28. data/src/004-ergolis/config.yml +0 -5
  29. data/src/004-ergolis/font.svg +0 -88
  30. /data/{lib/agric/compass/stylesheets/agric/_extras.scss → app/assets/stylesheets/agric/extras.scss} +0 -0
  31. /data/{lib/agric/compass/stylesheets/agric/_icons.scss → app/assets/stylesheets/agric/icons.scss} +0 -0
  32. /data/{lib/agric/compass/stylesheets/agric/_list.scss → app/assets/stylesheets/agric/list.scss} +0 -0
  33. /data/{lib/agric/compass/stylesheets/agric/_variables.scss → app/assets/stylesheets/agric/variables.scss} +0 -0
  34. /data/{lib/agric/compass/stylesheets/_agric.scss → app/assets/stylesheets/agric.scss} +0 -0
Binary file
Binary file
@@ -1,4 +1,4 @@
1
- /* FONT AWESOME CORE
1
+ /* AGRIC CORE
2
2
  * -------------------------- */
3
3
 
4
4
  [class^="icon-"],
@@ -74,7 +74,7 @@ a {
74
74
  .icon-border {
75
75
  border: solid 1px $agric-border-color;
76
76
  padding: .2em .25em .15em;
77
- @include border-radius(3px);
77
+ @include agric-border-radius(3px);
78
78
  }
79
79
 
80
80
  // Icon Sizes
@@ -84,21 +84,21 @@ a {
84
84
  font-size: 2em;
85
85
  &.icon-border {
86
86
  border-width: 2px;
87
- @include border-radius(4px);
87
+ @include agric-border-radius(4px);
88
88
  }
89
89
  }
90
90
  .icon-3x {
91
91
  font-size: 3em;
92
92
  &.icon-border {
93
93
  border-width: 3px;
94
- @include border-radius(5px);
94
+ @include agric-border-radius(5px);
95
95
  }
96
96
  }
97
97
  .icon-4x {
98
98
  font-size: 4em;
99
99
  &.icon-border {
100
100
  border-width: 4px;
101
- @include border-radius(6px);
101
+ @include agric-border-radius(6px);
102
102
  }
103
103
  }
104
104
 
@@ -106,7 +106,7 @@ a {
106
106
  font-size: 5em;
107
107
  &.icon-border {
108
108
  border-width: 5px;
109
- @include border-radius(7px);
109
+ @include agric-border-radius(7px);
110
110
  }
111
111
  }
112
112
 
@@ -41,4 +41,10 @@
41
41
  *line-height: #{$height / $base-font-size}em;
42
42
  }
43
43
  }
44
+ }
45
+
46
+ @mixin agric-border-radius($radius) {
47
+ -webkit-border-radius: $radius;
48
+ -moz-border-radius: $radius;
49
+ border-radius: $radius;
44
50
  }
@@ -0,0 +1,11 @@
1
+ /* Auto-generated. Nothing to touch */
2
+ @font-face {
3
+ font-family: 'Agric';
4
+ font-weight: normal;
5
+ font-style: normal;
6
+ src: font-url('agric.eot?v=1.0.0');
7
+ src: font-url('agric.eot?#iefix&v=1.0.0') format('embedded-opentype'),
8
+ font-url('agric.woff?v=1.0.0') format('woff'),
9
+ font-url('agric.ttf?v=1.0.0') format('truetype'),
10
+ font-url('agric.svg?v=1.0.0') format('svg');
11
+ }
data/lib/agric/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Agric
2
- VERSION = "0.1.0"
2
+ VERSION = "1.0.0"
3
3
  end
data/lib/agric.rb CHANGED
@@ -1,21 +1,2 @@
1
1
  require "agric/version"
2
2
  require "agric/engine" if defined?(::Rails)
3
- require 'compass'
4
- require 'pathname'
5
-
6
- module Agric
7
-
8
- def self.root
9
- Pathname.new(File.expand_path(__FILE__)).dirname.dirname
10
- end
11
-
12
- def self.compass_extension_path
13
- root.join("lib", "agric", "compass")
14
- end
15
-
16
-
17
- autoload :Compiler, 'agric/compiler'
18
- end
19
-
20
- # Compass registration
21
- Compass::Frameworks.register('agric', :path => Agric.compass_extension_path)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agric
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-27 00:00:00.000000000 Z
12
+ date: 2013-09-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -60,13 +60,16 @@ dependencies:
60
60
  - !ruby/object:Gem::Version
61
61
  version: 1.5.7
62
62
  - !ruby/object:Gem::Dependency
63
- name: compass
63
+ name: railties
64
64
  requirement: !ruby/object:Gem::Requirement
65
65
  none: false
66
66
  requirements:
67
67
  - - ! '>='
68
68
  - !ruby/object:Gem::Version
69
- version: 0.12.0
69
+ version: '3.2'
70
+ - - <
71
+ - !ruby/object:Gem::Version
72
+ version: '5.0'
70
73
  type: :runtime
71
74
  prerelease: false
72
75
  version_requirements: !ruby/object:Gem::Requirement
@@ -74,7 +77,26 @@ dependencies:
74
77
  requirements:
75
78
  - - ! '>='
76
79
  - !ruby/object:Gem::Version
77
- version: 0.12.0
80
+ version: '3.2'
81
+ - - <
82
+ - !ruby/object:Gem::Version
83
+ version: '5.0'
84
+ - !ruby/object:Gem::Dependency
85
+ name: sass-rails
86
+ requirement: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ type: :runtime
93
+ prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
78
100
  description: Agricultural font based on FontAwesome and Fontello tools
79
101
  email:
80
102
  - brice.texier@ekylibre.org
@@ -82,39 +104,23 @@ executables: []
82
104
  extensions: []
83
105
  extra_rdoc_files: []
84
106
  files:
85
- - .gitignore
86
- - Gemfile
87
107
  - LICENSE.txt
88
108
  - README.md
89
- - Rakefile
90
- - agric.gemspec
109
+ - app/assets/fonts/agric.eot
110
+ - app/assets/fonts/agric.svg
111
+ - app/assets/fonts/agric.ttf
112
+ - app/assets/fonts/agric.woff
113
+ - app/assets/stylesheets/agric.scss
114
+ - app/assets/stylesheets/agric/core.scss
115
+ - app/assets/stylesheets/agric/extras.scss
116
+ - app/assets/stylesheets/agric/icons.scss
117
+ - app/assets/stylesheets/agric/list.scss
118
+ - app/assets/stylesheets/agric/mixins.scss
119
+ - app/assets/stylesheets/agric/paths.scss
120
+ - app/assets/stylesheets/agric/variables.scss
91
121
  - lib/agric.rb
92
- - lib/agric/compass/stylesheets/_agric.scss
93
- - lib/agric/compass/stylesheets/agric/_core.scss
94
- - lib/agric/compass/stylesheets/agric/_extras.scss
95
- - lib/agric/compass/stylesheets/agric/_icons.scss
96
- - lib/agric/compass/stylesheets/agric/_list.scss
97
- - lib/agric/compass/stylesheets/agric/_mixins.scss
98
- - lib/agric/compass/stylesheets/agric/_paths.scss
99
- - lib/agric/compass/stylesheets/agric/_variables.scss
100
- - lib/agric/compiler.rb
101
- - lib/agric/compiler/convert.pe
102
- - lib/agric/compiler/reference.yml
103
- - lib/agric/compiler/svgo.yml
104
- - lib/agric/compiler_tasks.rb
105
122
  - lib/agric/engine.rb
106
123
  - lib/agric/version.rb
107
- - lib/assets/fonts/agric.eot
108
- - lib/assets/fonts/agric.svg
109
- - lib/assets/fonts/agric.ttf
110
- - lib/assets/fonts/agric.woff
111
- - lib/assets/stylesheets/agric.css.scss
112
- - src/002-agri/config.yml
113
- - src/002-agri/font.svg
114
- - src/003-ekylibre/config.yml
115
- - src/003-ekylibre/font.svg
116
- - src/004-ergolis/config.yml
117
- - src/004-ergolis/font.svg
118
124
  homepage: https://github.com/ekylibre/agric
119
125
  licenses:
120
126
  - MIT
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- *~
2
- *.gem
3
- *.rbc
4
- .bundle
5
- .config
6
- .yardoc
7
- Gemfile.lock
8
- InstalledFiles
9
- _yardoc
10
- coverage
11
- doc/
12
- lib/bundler/man
13
- pkg
14
- rdoc
15
- spec/reports
16
- test/tmp
17
- test/version_tmp
18
- tmp
19
- config.yml
20
- node_modules
21
- src/001-awesome
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in agric.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "agric/compiler_tasks"
data/agric.gemspec DELETED
@@ -1,25 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'agric/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "agric"
8
- spec.version = Agric::VERSION
9
- spec.authors = ["Brice Texier"]
10
- spec.email = ["brice.texier@ekylibre.org"]
11
- spec.description = %q{Agricultural font based on FontAwesome and Fontello tools}
12
- spec.summary = %q{Agricultural font}
13
- spec.homepage = "https://github.com/ekylibre/agric"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake"
23
- spec.add_development_dependency "nokogiri", ">= 1.5.7"
24
- spec.add_dependency "compass", ">= 0.12.0"
25
- end
@@ -1,11 +0,0 @@
1
- /* Auto-generated. Nothing to touch */
2
- @font-face {
3
- font-family: 'Agric';
4
- font-weight: normal;
5
- font-style: normal;
6
- src: font-url('agric.eot?v=0.1.0');
7
- src: font-url('agric.eot?#iefix&v=0.1.0') format('embedded-opentype'),
8
- font-url('agric.woff?v=0.1.0') format('woff'),
9
- font-url('agric.ttf?v=0.1.0') format('truetype'),
10
- font-url('agric.svg?v=0.1.0') format('svg');
11
- }
@@ -1,7 +0,0 @@
1
- #!/usr/local/bin/fontforge
2
- # Quick and dirty hack: converts a font to truetype (.ttf)
3
- #Print("Opening "+$1);
4
- Open($1);
5
- # Print("Saving "+$1:r+"."+$2);
6
- Generate($1:r+"."+$2);
7
- Quit(0);
@@ -1,379 +0,0 @@
1
- # Auto-updated. Nothing to touch.
2
- 'adjust': 'f000'
3
- 'adn': 'f001'
4
- 'align-center': 'f002'
5
- 'align-justify': 'f003'
6
- 'align-left': 'f004'
7
- 'align-right': 'f005'
8
- 'ambulance': 'f006'
9
- 'anchor': 'f007'
10
- 'android': 'f008'
11
- 'angle-down': 'f009'
12
- 'angle-left': 'f00a'
13
- 'angle-right': 'f00b'
14
- 'angle-up': 'f00c'
15
- 'apple': 'f00d'
16
- 'archive': 'f00e'
17
- 'arrow-down': 'f00f'
18
- 'arrow-left': 'f010'
19
- 'arrow-right': 'f011'
20
- 'arrow-up': 'f012'
21
- 'asterisk': 'f013'
22
- 'backward': 'f014'
23
- 'ban-circle': 'f015'
24
- 'bar-chart': 'f016'
25
- 'barcode': 'f017'
26
- 'barn': 'f018'
27
- 'beaker': 'f019'
28
- 'beer': 'f01a'
29
- 'bell-alt': 'f01b'
30
- 'bell': 'f01c'
31
- 'bitbucket-sign': 'f01d'
32
- 'bitbucket': 'f01e'
33
- 'bold': 'f01f'
34
- 'bolt': 'f020'
35
- 'book-open': 'f021'
36
- 'book': 'f022'
37
- 'bookmark-empty': 'f023'
38
- 'bookmark': 'f024'
39
- 'briefcase': 'f025'
40
- 'btc': 'f026'
41
- 'bug': 'f027'
42
- 'building': 'f028'
43
- 'bullhorn': 'f029'
44
- 'bullseye': 'f02a'
45
- 'calendar-empty': 'f02b'
46
- 'calendar': 'f02c'
47
- 'camera-retro': 'f02d'
48
- 'camera': 'f02e'
49
- 'caret-down': 'f02f'
50
- 'caret-left': 'f030'
51
- 'caret-right': 'f031'
52
- 'caret-up': 'f032'
53
- 'certificate': 'f033'
54
- 'check-empty': 'f034'
55
- 'check-minus': 'f035'
56
- 'check-sign': 'f036'
57
- 'check': 'f037'
58
- 'chevron-down': 'f038'
59
- 'chevron-left': 'f039'
60
- 'chevron-right': 'f03a'
61
- 'chevron-sign-down': 'f03b'
62
- 'chevron-sign-left': 'f03c'
63
- 'chevron-sign-right': 'f03d'
64
- 'chevron-sign-up': 'f03e'
65
- 'chevron-up': 'f03f'
66
- 'circle-arrow-down': 'f040'
67
- 'circle-arrow-left': 'f041'
68
- 'circle-arrow-right': 'f042'
69
- 'circle-arrow-up': 'f043'
70
- 'circle-blank': 'f044'
71
- 'circle': 'f045'
72
- 'clock': 'f046'
73
- 'cloud-download': 'f047'
74
- 'cloud-upload': 'f048'
75
- 'cloud': 'f049'
76
- 'cny': 'f04a'
77
- 'code-fork': 'f04b'
78
- 'code': 'f04c'
79
- 'coffee': 'f04d'
80
- 'cog': 'f04e'
81
- 'cogs': 'f04f'
82
- 'collapse-alt': 'f050'
83
- 'collapse-top': 'f051'
84
- 'collapse': 'f052'
85
- 'columns': 'f053'
86
- 'comment-alt': 'f054'
87
- 'comment': 'f055'
88
- 'comments-alt': 'f056'
89
- 'comments': 'f057'
90
- 'compass': 'f058'
91
- 'copy': 'f059'
92
- 'cow': 'f05a'
93
- 'credit-card': 'f05b'
94
- 'crop': 'f05c'
95
- 'css3': 'f05d'
96
- 'cut': 'f05e'
97
- 'dashboard': 'f05f'
98
- 'desktop': 'f060'
99
- 'double-angle-down': 'f061'
100
- 'double-angle-left': 'f062'
101
- 'double-angle-right': 'f063'
102
- 'double-angle-up': 'f064'
103
- 'download-alt': 'f065'
104
- 'download': 'f066'
105
- 'dribble': 'f067'
106
- 'dropbox': 'f068'
107
- 'edit-sign': 'f069'
108
- 'edit': 'f06a'
109
- 'eject': 'f06b'
110
- 'ekylibre-alt': 'f06c'
111
- 'ekylibre': 'f06d'
112
- 'ellipsis-horizontal': 'f06e'
113
- 'ellipsis-vertical': 'f06f'
114
- 'envelope-alt': 'f070'
115
- 'envelope': 'f071'
116
- 'eraser': 'f072'
117
- 'ergolis': 'f073'
118
- 'eur': 'f074'
119
- 'exchange': 'f075'
120
- 'exclamation-sign': 'f076'
121
- 'exclamation': 'f077'
122
- 'expand-alt': 'f078'
123
- 'expand': 'f079'
124
- 'external-link-sign': 'f07a'
125
- 'external-link': 'f07b'
126
- 'eye-close': 'f07c'
127
- 'eye-open': 'f07d'
128
- 'facebook-sign': 'f07e'
129
- 'facebook': 'f07f'
130
- 'facetime-video': 'f080'
131
- 'fast-backward': 'f081'
132
- 'fast-forward': 'f082'
133
- 'female': 'f083'
134
- 'fighter-jet': 'f084'
135
- 'file-alt': 'f085'
136
- 'file-text-alt': 'f086'
137
- 'file-text': 'f087'
138
- 'file': 'f088'
139
- 'film': 'f089'
140
- 'filter': 'f08a'
141
- 'fire-extinguisher': 'f08b'
142
- 'fire': 'f08c'
143
- 'flag-alt': 'f08d'
144
- 'flag-checkered': 'f08e'
145
- 'flag': 'f08f'
146
- 'flickr': 'f090'
147
- 'folder-close-alt': 'f091'
148
- 'folder-close': 'f092'
149
- 'folder-open-alt': 'f093'
150
- 'folder-open': 'f094'
151
- 'font': 'f095'
152
- 'food': 'f096'
153
- 'forward': 'f097'
154
- 'foursquare': 'f098'
155
- 'frown': 'f099'
156
- 'fullscreen': 'f09a'
157
- 'gamepad': 'f09b'
158
- 'gbp': 'f09c'
159
- 'gift': 'f09d'
160
- 'github-alt': 'f09e'
161
- 'github-sign': 'f09f'
162
- 'github': 'f0a0'
163
- 'gittip': 'f0a1'
164
- 'glass': 'f0a2'
165
- 'globe': 'f0a3'
166
- 'google-plus-sign': 'f0a4'
167
- 'google-plus': 'f0a5'
168
- 'group': 'f0a6'
169
- 'h-sign': 'f0a7'
170
- 'hand-down': 'f0a8'
171
- 'hand-left': 'f0a9'
172
- 'hand-right': 'f0aa'
173
- 'hand-up': 'f0ab'
174
- 'hdd': 'f0ac'
175
- 'headphones': 'f0ad'
176
- 'heart-empty': 'f0ae'
177
- 'heart': 'f0af'
178
- 'home': 'f0b0'
179
- 'hospital': 'f0b1'
180
- 'html5': 'f0b2'
181
- 'inbox': 'f0b3'
182
- 'indent-left': 'f0b4'
183
- 'indent-right': 'f0b5'
184
- 'info-sign': 'f0b6'
185
- 'info': 'f0b7'
186
- 'inr': 'f0b8'
187
- 'instagram': 'f0b9'
188
- 'italic': 'f0ba'
189
- 'jpy': 'f0bb'
190
- 'key': 'f0bc'
191
- 'keyboard': 'f0bd'
192
- 'krw': 'f0be'
193
- 'laptop': 'f0c0'
194
- 'leaf': 'f0c1'
195
- 'legal': 'f0c2'
196
- 'lemon': 'f0c3'
197
- 'level-down': 'f0c4'
198
- 'level-up': 'f0c5'
199
- 'light-bulb': 'f0c6'
200
- 'link': 'f0c7'
201
- 'linkedin-sign': 'f0c8'
202
- 'linkedin': 'f0c9'
203
- 'linux': 'f0ca'
204
- 'list-alt': 'f0cb'
205
- 'list': 'f0cc'
206
- 'location-arrow': 'f0cd'
207
- 'lock': 'f0ce'
208
- 'long-arrow-down': 'f0cf'
209
- 'long-arrow-left': 'f0d0'
210
- 'long-arrow-right': 'f0d1'
211
- 'long-arrow-up': 'f0d2'
212
- 'magic': 'f0d3'
213
- 'magnet': 'f0d4'
214
- 'male': 'f0d5'
215
- 'map-marker': 'f0d6'
216
- 'mars': 'f0d7'
217
- 'matter': 'f0d8'
218
- 'maxcdn': 'f0d9'
219
- 'medkit': 'f0da'
220
- 'meh': 'f0db'
221
- 'microphone-off': 'f0dc'
222
- 'microphone': 'f0dd'
223
- 'minus-sign-alt': 'f0de'
224
- 'minus-sign': 'f0df'
225
- 'minus': 'f0e0'
226
- 'mobile-phone': 'f0e1'
227
- 'money': 'f0e2'
228
- 'moon': 'f0e3'
229
- 'move': 'f0e4'
230
- 'mushroom': 'f0e5'
231
- 'music': 'f0e6'
232
- 'no-mail': 'f0e7'
233
- 'off': 'f0e8'
234
- 'ok-circle': 'f0e9'
235
- 'ok-sign': 'f0ea'
236
- 'ok': 'f0eb'
237
- 'ol': 'f0ec'
238
- 'paper-clip': 'f0ed'
239
- 'paste': 'f0ee'
240
- 'pause': 'f0ef'
241
- 'pencil': 'f0f0'
242
- 'phone-sign': 'f0f1'
243
- 'phone': 'f0f2'
244
- 'picture': 'f0f3'
245
- 'pill': 'f0f4'
246
- 'pinterest-sign': 'f0f5'
247
- 'pinterest': 'f0f6'
248
- 'plane': 'f0f7'
249
- 'play-circle': 'f0f8'
250
- 'play-sign': 'f0f9'
251
- 'play': 'f0fa'
252
- 'plus-sign-alt': 'f0fb'
253
- 'plus-sign': 'f0fc'
254
- 'plus': 'f0fd'
255
- 'print': 'f0fe'
256
- 'pushpin': 'f0ff'
257
- 'puzzle-piece': 'f100'
258
- 'qrcode': 'f101'
259
- 'question-sign': 'f102'
260
- 'question': 'f103'
261
- 'quote-left': 'f104'
262
- 'quote-right': 'f105'
263
- 'random': 'f106'
264
- 'refresh': 'f107'
265
- 'remove-circle': 'f108'
266
- 'remove-sign': 'f109'
267
- 'remove': 'f10a'
268
- 'renren': 'f10b'
269
- 'reorder': 'f10c'
270
- 'repeat': 'f10d'
271
- 'reply-all': 'f10e'
272
- 'reply': 'f10f'
273
- 'resize-full': 'f110'
274
- 'resize-horizontal': 'f111'
275
- 'resize-small': 'f112'
276
- 'resize-vertical': 'f113'
277
- 'retweet': 'f114'
278
- 'road': 'f115'
279
- 'rocket': 'f116'
280
- 'rss-sign': 'f117'
281
- 'rss': 'f118'
282
- 'save': 'f119'
283
- 'screenshot': 'f11a'
284
- 'search': 'f11b'
285
- 'sex': 'f11c'
286
- 'share-alt': 'f11d'
287
- 'share-sign': 'f11e'
288
- 'share': 'f11f'
289
- 'shield': 'f120'
290
- 'shopping-cart': 'f121'
291
- 'sign-blank': 'f122'
292
- 'signal': 'f123'
293
- 'signin': 'f124'
294
- 'signout': 'f125'
295
- 'sitemap': 'f126'
296
- 'skype': 'f127'
297
- 'smile': 'f128'
298
- 'sort-by-alphabet-alt': 'f129'
299
- 'sort-by-alphabet': 'f12a'
300
- 'sort-by-attributes-alt': 'f12b'
301
- 'sort-by-attributes': 'f12c'
302
- 'sort-by-order-alt': 'f12d'
303
- 'sort-by-order': 'f12e'
304
- 'sort-down': 'f12f'
305
- 'sort-up': 'f130'
306
- 'sort': 'f131'
307
- 'spinner': 'f132'
308
- 'stackexchange': 'f133'
309
- 'star-empty': 'f134'
310
- 'star-half-empty': 'f135'
311
- 'star-half': 'f136'
312
- 'star': 'f137'
313
- 'step-backward': 'f138'
314
- 'step-forward': 'f139'
315
- 'stethoscope': 'f13a'
316
- 'stop': 'f13b'
317
- 'strikethrough': 'f13c'
318
- 'subscript': 'f13d'
319
- 'suitcase': 'f13e'
320
- 'sun': 'f13f'
321
- 'superscript': 'f140'
322
- 'table': 'f141'
323
- 'tablet': 'f142'
324
- 'tag': 'f143'
325
- 'tags': 'f144'
326
- 'tasks': 'f145'
327
- 'terminal': 'f146'
328
- 'text-height': 'f147'
329
- 'text-width': 'f148'
330
- 'th-large': 'f149'
331
- 'th-list': 'f14a'
332
- 'th': 'f14b'
333
- 'thumbs-down-alt': 'f14c'
334
- 'thumbs-down': 'f14d'
335
- 'thumbs-up-alt': 'f14e'
336
- 'thumbs-up': 'f14f'
337
- 'ticket': 'f150'
338
- 'time': 'f151'
339
- 'tint': 'f152'
340
- 'tractor': 'f153'
341
- 'trash': 'f154'
342
- 'trello': 'f155'
343
- 'trophy': 'f156'
344
- 'truck': 'f157'
345
- 'tumblr-sign': 'f158'
346
- 'tumblr': 'f159'
347
- 'twitter-sign': 'f15a'
348
- 'twitter': 'f15b'
349
- 'ul': 'f15c'
350
- 'umbrella': 'f15d'
351
- 'underline': 'f15e'
352
- 'undo': 'f15f'
353
- 'unlink': 'f160'
354
- 'unlock-alt': 'f161'
355
- 'unlock': 'f162'
356
- 'upload-alt': 'f163'
357
- 'upload': 'f164'
358
- 'usd': 'f165'
359
- 'user-md': 'f166'
360
- 'user': 'f167'
361
- 'venus': 'f168'
362
- 'vk': 'f169'
363
- 'volume-down': 'f16a'
364
- 'volume-off': 'f16b'
365
- 'volume-up': 'f16c'
366
- 'warning-sign': 'f16d'
367
- 'weibo': 'f16e'
368
- 'wheat': 'f16f'
369
- 'windows': 'f170'
370
- 'wrench': 'f171'
371
- 'xing-sign': 'f172'
372
- 'xing': 'f173'
373
- 'youtube-play': 'f174'
374
- 'youtube-sign': 'f175'
375
- 'youtube': 'f176'
376
- 'zoom-in': 'f177'
377
- 'zoom-out': 'f178'
378
- 'land-parcels': 'f179'
379
- 'tractor-carcass': 'f17a'