entypo-rails 1.0.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZmExZWQ0YmFjYWRlMzU0NmM4NjZjNDAzOTg2YjZmMjc3OWIyZDk1Mg==
5
+ data.tar.gz: !binary |-
6
+ NzNhNjk3YzhhOTkwYzYzM2JiMjM1YmVjZDMyYjI0NTFmYjhkMjEyOQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ YTY0YzU3NjZjYTQ5YjJiNGU2OGFlNDJiN2Q1MjJkNzM0YWY0MWE3MjhhMWQ2
10
+ MmMwY2U5YzY4N2EyZGE3Mjc3YjQ2MGQzMDZjZDY5ZmJjMmYxNWE3OTg2Mzc4
11
+ YjczODdkODQxYmQ1YzdiMTk0YzAwNDFjZDI2ODJjOTg5Zjc0Njk=
12
+ data.tar.gz: !binary |-
13
+ NGViNjA0ODQ2YTdlNmUzZmFmN2E0ZTQ4NTU0NTYwZGQyOTVhMDNlNDMzYzE2
14
+ NDY3YzZmYWMxNjZkMzNjYTc3NTEzZDUzNmU3MTg1NjI3MmI2ZjllOWU4NjMy
15
+ YTQxNDc5YWQxODI4ODI5YzI5ZjIyNGIwNmJhY2M4ZDQ0ZmYwMWU=
data/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
+ .DS_Store
6
7
  Gemfile.lock
7
8
  InstalledFiles
8
9
  _yardoc
@@ -17,4 +18,4 @@ test/version_tmp
17
18
  tmp
18
19
  .buildpath
19
20
  .project
20
- .settings
21
+ .settings
data/README.md CHANGED
@@ -35,8 +35,9 @@ Either use the provided mappings, based on `icons-...` and the `:before`:
35
35
  This is cool <i class="icon-thumbs-up"></i>.
36
36
  ```
37
37
 
38
- or just include the entypo and entypo-social font faces and do the font face
39
- mappings yourself, see http://www.entypo.com/characters/ for possible characters:
38
+ or just include the entypo font face and do the mappings yourself, go to
39
+ http://localhost:3000/_entypo/charmap in your browser for a list of all
40
+ unicode codepoints and CSS classes.
40
41
 
41
42
  ```scss
42
43
  // application.css[.scss]
@@ -53,6 +54,21 @@ i.cool:before { content: "\1F44D"; }
53
54
  This is cool <i class="cool"></i>.
54
55
  ```
55
56
 
57
+ ## Changes
58
+
59
+ _2.0.0_
60
+
61
+ - **Breaking**: combined entyo and entypo social font, so `entypo-social` font family no longer exists
62
+ - #2, #3, fixed display issues on Opera
63
+
64
+ _1.0.2_
65
+
66
+ - Bugfix release for Rails asset pipeline
67
+
68
+ _1.0.0_
69
+
70
+ - Initial release, with entypo fonts from 2012-10-31
71
+
56
72
  ## Contributing
57
73
 
58
74
  1. Fork it
@@ -0,0 +1,12 @@
1
+ require 'entypo-rails'
2
+ require 'entypo/charmap'
3
+
4
+ module Entypo
5
+
6
+ class CharmapController < ApplicationController
7
+ def index
8
+ @icons = Entypo::Charmap.icons
9
+ render action: 'index', layout: false
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,4 @@
1
+ # Enable charmap in development mode, also makes it simpler to test it
2
+ Rails.application.routes.draw do
3
+ get '_entypo/charmap', :to => 'entypo/charmap#index' if Rails.env.development?
4
+ end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/entypo-rails/version', __FILE__)
2
+ require File.expand_path('../lib/entypo/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["Lukas Westermann", "Marco Pluess"]
@@ -10,12 +10,14 @@ Gem::Specification.new do |gem|
10
10
 
11
11
  gem.licenses = ['MIT', 'CC BY 3.0', 'SIL Open Font License']
12
12
 
13
- gem.files = `git ls-files`.split($\)
14
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.files = %w{.gitignore Gemfile Rakefile README.md LICENSE entypo-rails.gemspec} + Dir['**/*.{rb,scss,eot,svg,ttf,woff}']
14
+ gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
15
15
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
+
16
17
  gem.name = "entypo-rails"
17
18
  gem.require_paths = ["lib"]
18
19
  gem.version = Entypo::VERSION
19
20
 
20
- gem.add_dependency "railties", "~> 3.1"
21
+ gem.required_ruby_version = '>= 1.9'
22
+ gem.add_dependency "railties", ">= 3.1", "<= 5"
21
23
  end
@@ -0,0 +1,9 @@
1
+ @font-face {
2
+ font-family: 'entypo';
3
+ src: font-url('entypo.eot');
4
+ src: font-url('entypo.eot?#iefix') format('embedded-opentype'),
5
+ font-url('entypo.woff') format('woff'),
6
+ font-url('entypo.ttf') format('truetype'),
7
+ font-url('entypo.svg#entypo') format('svg');
8
+ font-weight: normal; font-style: normal;
9
+ }
@@ -10,294 +10,294 @@
10
10
  text-align: center;
11
11
  }
12
12
 
13
- [class^="icon-social-"], [class*=" icon-social-"] {
14
- font-family: entypo-social;
15
- }
16
-
17
13
  /* main icon map */
18
- .icon-phone:before { content: "📞"; } /* U+1F4DE - &#128222; */
19
- .icon-mobile:before { content: "📱"; } /* U+1F4F1 - &#128241; */
20
- .icon-mouse:before { content: ""; } /* U+E789 - &#59273; */
21
- .icon-address:before { content: ""; } /* U+E723 - &#59171; */
22
- .icon-mail:before { content: "✉"; } /* U+2709 - &#9993; */
23
- .icon-paper-plane:before { content: "🔿"; } /* U+1F53F - &#128319; */
24
- .icon-pencil:before { content: "✎"; } /* U+270E - &#9998; */
25
- .icon-feather:before { content: "✒"; } /* U+2712 - &#10002; */
26
- .icon-attach:before { content: "📎"; } /* U+1F4CE - &#128206; */
27
- .icon-inbox:before { content: ""; } /* U+E777 - &#59255; */
28
- .icon-reply:before { content: ""; } /* U+E712 - &#59154; */
29
- .icon-reply-all:before { content: ""; } /* U+E713 - &#59155; */
30
- .icon-forward:before { content: "➦"; } /* U+27A6 - &#10150; */
31
- .icon-user:before { content: "👤"; } /* U+1F464 - &#128100; */
32
- .icon-users:before { content: "👥"; } /* U+1F465 - &#128101; */
33
- .icon-add-user:before { content: ""; } /* U+E700 - &#59136; */
34
- .icon-vcard:before { content: ""; } /* U+E722 - &#59170; */
35
- .icon-export:before { content: ""; } /* U+E715 - &#59157; */
36
- .icon-location:before { content: ""; } /* U+E724 - &#59172; */
37
- .icon-map:before { content: ""; } /* U+E727 - &#59175; */
38
- .icon-compass:before { content: ""; } /* U+E728 - &#59176; */
39
- .icon-direction:before { content: "➢"; } /* U+27A2 - &#10146; */
40
- .icon-hair-cross:before { content: "🎯"; } /* U+1F3AF - &#127919; */
41
- .icon-share:before { content: ""; } /* U+E73C - &#59196; */
42
- .icon-shareable:before { content: ""; } /* U+E73E - &#59198; */
43
- .icon-heart:before { content: "♥"; } /* U+2665 - &amp;hearts; */
44
- .icon-heart-empty:before { content: "♡"; } /* U+2661 - &#9825; */
45
- .icon-star:before { content: "★"; } /* U+2605 - &#9733; */
46
- .icon-star-empty:before { content: "☆"; } /* U+2606 - &#9734; */
47
- .icon-thumbs-up:before { content: "👍"; } /* U+1F44D - &#128077; */
48
- .icon-thumbs-down:before { content: "👎"; } /* U+1F44E - &#128078; */
49
- .icon-chat:before { content: ""; } /* U+E720 - &#59168; */
50
- .icon-comment:before { content: ""; } /* U+E718 - &#59160; */
51
- .icon-quote:before { content: "❞"; } /* U+275E - &#10078; */
52
- .icon-home:before { content: "⌂"; } /* U+2302 - &#8962; */
53
- .icon-popup:before { content: ""; } /* U+E74C - &#59212; */
54
- .icon-search:before { content: "🔍"; } /* U+1F50D - &#128269; */
55
- .icon-flashlight:before { content: "🔦"; } /* U+1F526 - &#128294; */
56
- .icon-print:before { content: ""; } /* U+E716 - &#59158; */
57
- .icon-bell:before { content: "🔔"; } /* U+1F514 - &#128276; */
58
- .icon-link:before { content: "🔗"; } /* U+1F517 - &#128279; */
59
- .icon-flag:before { content: "⚑"; } /* U+2691 - &#9873; */
60
- .icon-cog:before { content: "⚙"; } /* U+2699 - &#9881; */
61
- .icon-tools:before { content: "⚒"; } /* U+2692 - &#9874; */
62
- .icon-trophy:before { content: "🏆"; } /* U+1F3C6 - &#127942; */
63
- .icon-tag:before { content: ""; } /* U+E70C - &#59148; */
64
- .icon-camera:before { content: "📷"; } /* U+1F4F7 - &#128247; */
65
- .icon-megaphone:before { content: "📣"; } /* U+1F4E3 - &#128227; */
66
- .icon-moon:before { content: "☽"; } /* U+263D - &#9789; */
67
- .icon-palette:before { content: "🎨"; } /* U+1F3A8 - &#127912; */
68
- .icon-leaf:before { content: "🍂"; } /* U+1F342 - &#127810; */
69
- .icon-note:before { content: "♪"; } /* U+266A - &#9834; */
70
- .icon-beamed-note:before { content: "♫"; } /* U+266B - &#9835; */
71
- .icon-new:before { content: "💥"; } /* U+1F4A5 - &#128165; */
72
- .icon-graduation-cap:before { content: "🎓"; } /* U+1F393 - &#127891; */
73
- .icon-book:before { content: "📕"; } /* U+1F4D5 - &#128213; */
74
- .icon-newspaper:before { content: "📰"; } /* U+1F4F0 - &#128240; */
75
- .icon-bag:before { content: "👜"; } /* U+1F45C - &#128092; */
76
- .icon-airplane:before { content: "✈"; } /* U+2708 - &#9992; */
77
- .icon-lifebuoy:before { content: ""; } /* U+E788 - &#59272; */
78
- .icon-eye:before { content: ""; } /* U+E70A - &#59146; */
79
- .icon-clock:before { content: " 🕔 "; } /* U+1F554 - &#128340; */
80
- .icon-mic:before { content: "🎤"; } /* U+1F3A4 - &#127908; */
81
- .icon-calendar:before { content: "📅"; } /* U+1F4C5 - &#128197; */
82
- .icon-flash:before { content: "⚡"; } /* U+26A1 - &#9889; */
83
- .icon-thunder-cloud:before { content: "⛈"; } /* U+26C8 - &#9928; */
84
- .icon-droplet:before { content: "💧"; } /* U+1F4A7 - &#128167; */
85
- .icon-cd:before { content: "💿"; } /* U+1F4BF - &#128191; */
86
- .icon-briefcase:before { content: "💼"; } /* U+1F4BC - &#128188; */
87
- .icon-air:before { content: "💨"; } /* U+1F4A8 - &#128168; */
88
- .icon-hourglass:before { content: "⏳"; } /* U+23F3 - &#9203; */
89
- .icon-gauge:before { content: "🛇"; } /* U+1F6C7 - &#128711; */
90
- .icon-language:before { content: "🎔"; } /* U+1F394 - &#127892; */
91
- .icon-network:before { content: ""; } /* U+E776 - &#59254; */
92
- .icon-key:before { content: "🔑"; } /* U+1F511 - &#128273; */
93
- .icon-battery:before { content: "🔋"; } /* U+1F50B - &#128267; */
94
- .icon-bucket:before { content: "📾"; } /* U+1F4FE - &#128254; */
95
- .icon-magnet:before { content: ""; } /* U+E7A1 - &#59297; */
96
- .icon-drive:before { content: "📽"; } /* U+1F4FD - &#128253; */
97
- .icon-cup:before { content: "☕"; } /* U+2615 - &#9749; */
98
- .icon-rocket:before { content: "🚀"; } /* U+1F680 - &#128640; */
99
- .icon-brush:before { content: ""; } /* U+E79A - &#59290; */
100
- .icon-suitcase:before { content: "🛆"; } /* U+1F6C6 - &#128710; */
101
- .icon-traffic-cone:before { content: "🛈"; } /* U+1F6C8 - &#128712; */
102
- .icon-globe:before { content: "🌎"; } /* U+1F30E - &#127758; */
103
- .icon-keyboard:before { content: "⌨"; } /* U+2328 - &#9000; */
104
- .icon-browser:before { content: ""; } /* U+E74E - &#59214; */
105
- .icon-publish:before { content: ""; } /* U+E74D - &#59213; */
106
- .icon-progress-3:before { content: ""; } /* U+E76B - &#59243; */
107
- .icon-progress-2:before { content: ""; } /* U+E76A - &#59242; */
108
- .icon-progress-1:before { content: ""; } /* U+E769 - &#59241; */
109
- .icon-progress-0:before { content: ""; } /* U+E768 - &#59240; */
110
- .icon-light-down:before { content: "🔅"; } /* U+1F505 - &#128261; */
111
- .icon-light-up:before { content: "🔆"; } /* U+1F506 - &#128262; */
112
- .icon-adjust:before { content: "◑"; } /* U+25D1 - &#9681; */
113
- .icon-code:before { content: ""; } /* U+E714 - &#59156; */
114
- .icon-monitor:before { content: "💻"; } /* U+1F4BB - &#128187; */
115
- .icon-infinity:before { content: "∞"; } /* U+221E - &amp;infin; */
116
- .icon-light-bulb:before { content: "💡"; } /* U+1F4A1 - &#128161; */
117
- .icon-credit-card:before { content: "💳"; } /* U+1F4B3 - &#128179; */
118
- .icon-database:before { content: "📸"; } /* U+1F4F8 - &#128248; */
119
- .icon-voicemail:before { content: "✇"; } /* U+2707 - &#9991; */
120
- .icon-clipboard:before { content: "📋"; } /* U+1F4CB - &#128203; */
121
- .icon-cart:before { content: ""; } /* U+E73D - &#59197; */
122
- .icon-box:before { content: "📦"; } /* U+1F4E6 - &#128230; */
123
- .icon-ticket:before { content: "🎫"; } /* U+1F3AB - &#127915; */
124
- .icon-rss:before { content: ""; } /* U+E73A - &#59194; */
125
- .icon-signal:before { content: "📶"; } /* U+1F4F6 - &#128246; */
126
- .icon-thermometer:before { content: "📿"; } /* U+1F4FF - &#128255; */
127
- .icon-water:before { content: "💦"; } /* U+1F4A6 - &#128166; */
128
- .icon-sweden:before { content: ""; } /* U+F601 - &#62977; */
129
- .icon-line-graph:before { content: "📈"; } /* U+1F4C8 - &#128200; */
130
- .icon-pie-chart:before { content: "◴"; } /* U+25F4 - &#9716; */
131
- .icon-bar-graph:before { content: "📊"; } /* U+1F4CA - &#128202; */
132
- .icon-area-graph:before { content: "🔾"; } /* U+1F53E - &#128318; */
133
- .icon-lock:before { content: "🔒"; } /* U+1F512 - &#128274; */
134
- .icon-lock-open:before { content: "🔓"; } /* U+1F513 - &#128275; */
135
- .icon-logout:before { content: ""; } /* U+E741 - &#59201; */
136
- .icon-login:before { content: ""; } /* U+E740 - &#59200; */
137
- .icon-check:before { content: "✓"; } /* U+2713 - &#10003; */
138
- .icon-cross:before { content: "❌"; } /* U+274C - &#10060; */
139
- .icon-squared-minus:before { content: "⊟"; } /* U+229F - &#8863; */
140
- .icon-squared-plus:before { content: "⊞"; } /* U+229E - &#8862; */
141
- .icon-squared-cross:before { content: "❎"; } /* U+274E - &#10062; */
142
- .icon-circled-minus:before { content: "⊖"; } /* U+2296 - &#8854; */
143
- .icon-circled-plus:before { content: "⊕"; } /* U+2295 - &amp;oplus; */
144
- .icon-circled-cross:before { content: "✖"; } /* U+2716 - &#10006; */
145
- .icon-minus:before { content: "➖"; } /* U+2796 - &#10134; */
146
- .icon-plus:before { content: "➕"; } /* U+2795 - &#10133; */
147
- .icon-erase:before { content: "⌫"; } /* U+232B - &#9003; */
148
- .icon-block:before { content: "🚫"; } /* U+1F6AB - &#128683; */
149
- .icon-info:before { content: "ℹ"; } /* U+2139 - &#8505; */
150
- .icon-circled-info:before { content: ""; } /* U+E705 - &#59141; */
151
- .icon-help:before { content: "❓"; } /* U+2753 - &#10067; */
152
- .icon-circled-help:before { content: ""; } /* U+E704 - &#59140; */
153
- .icon-warning:before { content: "⚠"; } /* U+26A0 - &#9888; */
154
- .icon-cycle:before { content: "🔄"; } /* U+1F504 - &#128260; */
155
- .icon-cw:before { content: "⟳"; } /* U+27F3 - &#10227; */
156
- .icon-ccw:before { content: "⟲"; } /* U+27F2 - &#10226; */
157
- .icon-shuffle:before { content: "🔀"; } /* U+1F500 - &#128256; */
158
- .icon-back:before { content: "🔙"; } /* U+1F519 - &#128281; */
159
- .icon-level-down:before { content: "↳"; } /* U+21B3 - &#8627; */
160
- .icon-retweet:before { content: ""; } /* U+E717 - &#59159; */
161
- .icon-loop:before { content: "🔁"; } /* U+1F501 - &#128257; */
162
- .icon-back-in-time:before { content: ""; } /* U+E771 - &#59249; */
163
- .icon-level-up:before { content: "↰"; } /* U+21B0 - &#8624; */
164
- .icon-switch:before { content: "⇆"; } /* U+21C6 - &#8646; */
165
- .icon-numbered-list:before { content: ""; } /* U+E005 - &#57349; */
166
- .icon-add-to-list:before { content: ""; } /* U+E003 - &#57347; */
167
- .icon-layout:before { content: "⚏"; } /* U+268F - &#9871; */
168
- .icon-list:before { content: "☰"; } /* U+2630 - &#9776; */
169
- .icon-text-doc:before { content: "📄"; } /* U+1F4C4 - &#128196; */
170
- .icon-text-doc-inverted:before { content: ""; } /* U+E731 - &#59185; */
171
- .icon-doc:before { content: ""; } /* U+E730 - &#59184; */
172
- .icon-docs:before { content: ""; } /* U+E736 - &#59190; */
173
- .icon-landscape-doc:before { content: ""; } /* U+E737 - &#59191; */
174
- .icon-picture:before { content: "🌄"; } /* U+1F304 - &#127748; */
175
- .icon-video:before { content: "🎬"; } /* U+1F3AC - &#127916; */
176
- .icon-music:before { content: "🎵"; } /* U+1F3B5 - &#127925; */
177
- .icon-folder:before { content: "📁"; } /* U+1F4C1 - &#128193; */
178
- .icon-archive:before { content: "  "; } /* U+E800 - &#59392; */
179
- .icon-trash:before { content: ""; } /* U+E729 - &#59177; */
180
- .icon-upload:before { content: "📤"; } /* U+1F4E4 - &#128228; */
181
- .icon-download:before { content: "📥"; } /* U+1F4E5 - &#128229; */
182
- .icon-save:before { content: "💾"; } /* U+1F4BE - &#128190; */
183
- .icon-install:before { content: ""; } /* U+E778 - &#59256; */
184
- .icon-cloud:before { content: "☁"; } /* U+2601 - &#9729; */
185
- .icon-upload-cloud:before { content: ""; } /* U+E711 - &#59153; */
186
- .icon-bookmark:before { content: "🔖"; } /* U+1F516 - &#128278; */
187
- .icon-bookmarks:before { content: "📑"; } /* U+1F4D1 - &#128209; */
188
- .icon-open-book:before { content: "📖"; } /* U+1F4D6 - &#128214; */
189
- .icon-play:before { content: "▶"; } /* U+25B6 - &#9654; */
190
- .icon-paus:before { content: "‖"; } /* U+2016 - &#8214; */
191
- .icon-record:before { content: "●"; } /* U+25CF - &#9679; */
192
- .icon-stop:before { content: "■"; } /* U+25A0 - &#9632; */
193
- .icon-ff:before { content: "⏩"; } /* U+23E9 - &#9193; */
194
- .icon-fb:before { content: "⏪"; } /* U+23EA - &#9194; */
195
- .icon-to-start:before { content: "⏮"; } /* U+23EE - &#9198; */
196
- .icon-to-end:before { content: "⏭"; } /* U+23ED - &#9197; */
197
- .icon-resize-full:before { content: ""; } /* U+E744 - &#59204; */
198
- .icon-resize-small:before { content: ""; } /* U+E746 - &#59206; */
199
- .icon-volume:before { content: "⏷"; } /* U+23F7 - &#9207; */
200
- .icon-sound:before { content: "🔊"; } /* U+1F50A - &#128266; */
201
- .icon-mute:before { content: "🔇"; } /* U+1F507 - &#128263; */
202
- .icon-flow-cascade:before { content: "🕨"; } /* U+1F568 - &#128360; */
203
- .icon-flow-branch:before { content: "🕩"; } /* U+1F569 - &#128361; */
204
- .icon-flow-tree:before { content: "🕪"; } /* U+1F56A - &#128362; */
205
- .icon-flow-line:before { content: "🕫"; } /* U+1F56B - &#128363; */
206
- .icon-flow-parallel:before { content: "🕬"; } /* U+1F56C - &#128364; */
207
- .icon-left-bold:before { content: ""; } /* U+E4AD - &#58541; */
208
- .icon-down-bold:before { content: ""; } /* U+E4B0 - &#58544; */
209
- .icon-up-bold:before { content: ""; } /* U+E4AF - &#58543; */
210
- .icon-right-bold:before { content: ""; } /* U+E4AE - &#58542; */
211
- .icon-left:before { content: "⬅"; } /* U+2B05 - &#11013; */
212
- .icon-down:before { content: "⬇"; } /* U+2B07 - &#11015; */
213
- .icon-up:before { content: "⬆"; } /* U+2B06 - &#11014; */
214
- .icon-right:before { content: "➡"; } /* U+27A1 - &#10145; */
215
- .icon-circled-left:before { content: ""; } /* U+E759 - &#59225; */
216
- .icon-circled-down:before { content: ""; } /* U+E758 - &#59224; */
217
- .icon-circled-up:before { content: ""; } /* U+E75B - &#59227; */
218
- .icon-circled-right:before { content: ""; } /* U+E75A - &#59226; */
219
- .icon-triangle-left:before { content: "◂"; } /* U+25C2 - &#9666; */
220
- .icon-triangle-down:before { content: "▾"; } /* U+25BE - &#9662; */
221
- .icon-triangle-up:before { content: "▴"; } /* U+25B4 - &#9652; */
222
- .icon-triangle-right:before { content: "▸"; } /* U+25B8 - &#9656; */
223
- .icon-chevron-left:before { content: ""; } /* U+E75D - &#59229; */
224
- .icon-chevron-down:before { content: ""; } /* U+E75C - &#59228; */
225
- .icon-chevron-up:before { content: ""; } /* U+E75F - &#59231; */
226
- .icon-chevron-right:before { content: ""; } /* U+E75E - &#59230; */
227
- .icon-chevron-small-left:before { content: ""; } /* U+E761 - &#59233; */
228
- .icon-chevron-small-down:before { content: ""; } /* U+E760 - &#59232; */
229
- .icon-chevron-small-up:before { content: ""; } /* U+E763 - &#59235; */
230
- .icon-chevron-small-right:before { content: ""; } /* U+E762 - &#59234; */
231
- .icon-chevron-thin-left:before { content: ""; } /* U+E765 - &#59237; */
232
- .icon-chevron-thin-down:before { content: ""; } /* U+E764 - &#59236; */
233
- .icon-chevron-thin-up:before { content: ""; } /* U+E767 - &#59239; */
234
- .icon-chevron-thin-right:before { content: ""; } /* U+E766 - &#59238; */
235
- .icon-left-thin:before { content: "←"; } /* U+2190 - &amp;larr; */
236
- .icon-down-thin:before { content: "↓"; } /* U+2193 - &amp;darr; */
237
- .icon-up-thin:before { content: "↑"; } /* U+2191 - &amp;uarr; */
238
- .icon-right-thin:before { content: "→"; } /* U+2192 - &amp;rarr; */
239
- .icon-arrow-combo:before { content: ""; } /* U+E74F - &#59215; */
240
- .icon-three-dots:before { content: "⏶"; } /* U+23F6 - &#9206; */
241
- .icon-two-dots:before { content: "⏵"; } /* U+23F5 - &#9205; */
242
- .icon-dot:before { content: "⏴"; } /* U+23F4 - &#9204; */
243
- .icon-cc:before { content: "🕅"; } /* U+1F545 - &#128325; */
244
- .icon-cc-by:before { content: "🕆"; } /* U+1F546 - &#128326; */
245
- .icon-cc-nc:before { content: "🕇"; } /* U+1F547 - &#128327; */
246
- .icon-cc-nc-eu:before { content: "🕈"; } /* U+1F548 - &#128328; */
247
- .icon-cc-nc-jp:before { content: "🕉"; } /* U+1F549 - &#128329; */
248
- .icon-cc-sa:before { content: "🕊"; } /* U+1F54A - &#128330; */
249
- .icon-cc-nd:before { content: "🕋"; } /* U+1F54B - &#128331; */
250
- .icon-cc-pd:before { content: "🕌"; } /* U+1F54C - &#128332; */
251
- .icon-cc-zero:before { content: "🕍"; } /* U+1F54D - &#128333; */
252
- .icon-cc-share:before { content: "🕎"; } /* U+1F54E - &#128334; */
253
- .icon-cc-remix:before { content: "🕏"; } /* U+1F54F - &#128335; */
254
- .icon-db-logo:before { content: "🗹"; } /* U+1F5F9 - &#128505; */
255
- .icon-db-shape:before { content: "🗺"; } /* U+1F5FA - &#128506; */
14
+ .icon-phone:before { content: '📞'; } /* 1f4de */
15
+ .icon-mobile:before { content: '📱'; } /* 1f4f1 */
16
+ .icon-mouse:before { content: '\e789'; } /* e789 */
17
+ .icon-address:before { content: '\e723'; } /* e723 */
18
+ .icon-mail:before { content: '\2709'; } /* 2709 */
19
+ .icon-paper-plane:before { content: '\e79b'; } /* e79b */
20
+ .icon-pencil:before { content: '\270e'; } /* 270e */
21
+ .icon-feather:before { content: '\2712'; } /* 2712 */
22
+ .icon-attach:before { content: '📎'; } /* 1f4ce */
23
+ .icon-inbox:before { content: '\e777'; } /* e777 */
24
+ .icon-reply:before { content: '\e712'; } /* e712 */
25
+ .icon-reply-all:before { content: '\e713'; } /* e713 */
26
+ .icon-forward:before { content: '\27a6'; } /* 27a6 */
27
+ .icon-user:before { content: '👤'; } /* 1f464 */
28
+ .icon-users:before { content: '👥'; } /* 1f465 */
29
+ .icon-add-user:before { content: '\e700'; } /* e700 */
30
+ .icon-vcard:before { content: '\e722'; } /* e722 */
31
+ .icon-export:before { content: '\e715'; } /* e715 */
32
+ .icon-location:before { content: '\e724'; } /* e724 */
33
+ .icon-map:before { content: '\e727'; } /* e727 */
34
+ .icon-compass:before { content: '\e728'; } /* e728 */
35
+ .icon-direction:before { content: '\27a2'; } /* 27a2 */
36
+ .icon-share:before { content: '\e73c'; } /* e73c */
37
+ .icon-shareable:before { content: '\e73e'; } /* e73e */
38
+ .icon-heart:before { content: '\2665'; } /* 2665 */
39
+ .icon-heart-empty:before { content: '\2661'; } /* 2661 */
40
+ .icon-star:before { content: '\2605'; } /* 2605 */
41
+ .icon-star-empty:before { content: '\2606'; } /* 2606 */
42
+ .icon-thumbs-up:before { content: '👍'; } /* 1f44d */
43
+ .icon-thumbs-down:before { content: '👎'; } /* 1f44e */
44
+ .icon-chat:before { content: '\e720'; } /* e720 */
45
+ .icon-comment:before { content: '\e718'; } /* e718 */
46
+ .icon-quote:before { content: '\275e'; } /* 275e */
47
+ .icon-home:before { content: '\2302'; } /* 2302 */
48
+ .icon-popup:before { content: '\e74c'; } /* e74c */
49
+ .icon-search:before { content: '🔍'; } /* 1f50d */
50
+ .icon-flashlight:before { content: '🔦'; } /* 1f526 */
51
+ .icon-print:before { content: '\e716'; } /* e716 */
52
+ .icon-bell:before { content: '🔔'; } /* 1f514 */
53
+ .icon-link:before { content: '🔗'; } /* 1f517 */
54
+ .icon-flag:before { content: '\2691'; } /* 2691 */
55
+ .icon-cog:before { content: '\2699'; } /* 2699 */
56
+ .icon-tools:before { content: '\2692'; } /* 2692 */
57
+ .icon-trophy:before { content: '🏆'; } /* 1f3c6 */
58
+ .icon-tag:before { content: '\e70c'; } /* e70c */
59
+ .icon-camera:before { content: '📷'; } /* 1f4f7 */
60
+ .icon-megaphone:before { content: '📣'; } /* 1f4e3 */
61
+ .icon-moon:before { content: '\263d'; } /* 263d */
62
+ .icon-palette:before { content: '🎨'; } /* 1f3a8 */
63
+ .icon-leaf:before { content: '🍂'; } /* 1f342 */
64
+ .icon-note:before { content: '\266a'; } /* 266a */
65
+ .icon-beamed-note:before { content: '\266b'; } /* 266b */
66
+ .icon-graduation-cap:before { content: '🎓'; } /* 1f393 */
67
+ .icon-book:before { content: '📕'; } /* 1f4d5 */
68
+ .icon-newspaper:before { content: '📰'; } /* 1f4f0 */
69
+ .icon-bag:before { content: '👜'; } /* 1f45c */
70
+ .icon-lifebuoy:before { content: '\e788'; } /* e788 */
71
+ .icon-eye:before { content: '\e70a'; } /* e70a */
72
+ .icon-clock:before { content: '🕔'; } /* 1f554 */
73
+ .icon-mic:before { content: '🎤'; } /* 1f3a4 */
74
+ .icon-calendar:before { content: '📅'; } /* 1f4c5 */
75
+ .icon-flash:before { content: '\26a1'; } /* 26a1 */
76
+ .icon-thunder-cloud:before { content: '\26c8'; } /* 26c8 */
77
+ .icon-droplet:before { content: '💧'; } /* 1f4a7 */
78
+ .icon-cd:before { content: '💿'; } /* 1f4bf */
79
+ .icon-briefcase:before { content: '💼'; } /* 1f4bc */
80
+ .icon-air:before { content: '\e753'; } /* e753 */
81
+ .icon-hourglass:before { content: '\23f3'; } /* 23f3 */
82
+ .icon-gauge:before { content: '\e7a2'; } /* e7a2 */
83
+ .icon-language:before { content: '\e752'; } /* e752 */
84
+ .icon-network:before { content: '\e776'; } /* e776 */
85
+ .icon-key:before { content: '🔑'; } /* 1f511 */
86
+ .icon-battery:before { content: '🔋'; } /* 1f50b */
87
+ .icon-bucket:before { content: '\e756'; } /* e756 */
88
+ .icon-magnet:before { content: '\e7a1'; } /* e7a1 */
89
+ .icon-drive:before { content: '\e755'; } /* e755 */
90
+ .icon-cup:before { content: '\2615'; } /* 2615 */
91
+ .icon-rocket:before { content: '🚀'; } /* 1f680 */
92
+ .icon-brush:before { content: '\e79a'; } /* e79a */
93
+ .icon-suitcase:before { content: '\e78e'; } /* e78e */
94
+ .icon-traffic-cone:before { content: '\e7a3'; } /* e7a3 */
95
+ .icon-globe:before { content: '🌎'; } /* 1f30e */
96
+ .icon-keyboard:before { content: '\2328'; } /* 2328 */
97
+ .icon-publish:before { content: '\e74d'; } /* e74d */
98
+ .icon-progress-3:before { content: '\e76b'; } /* e76b */
99
+ .icon-progress-2:before { content: '\e76a'; } /* e76a */
100
+ .icon-progress-1:before { content: '\e769'; } /* e769 */
101
+ .icon-progress-0:before { content: '\e768'; } /* e768 */
102
+ .icon-light-down:before { content: '🔅'; } /* 1f505' */
103
+ .icon-light-up:before { content: '🔆'; } /* 1f506 */
104
+ .icon-adjust:before { content: '\25d1'; } /* 25d1 */
105
+ .icon-code:before { content: '\e714'; } /* e714 */
106
+ .icon-monitor:before { content: '💻'; } /* 1f4bb */
107
+ .icon-infinity:before { content: '\221e'; } /* 221e */
108
+ .icon-credit-card:before { content: '💳'; } /* 1f4b3 */
109
+ .icon-database:before { content: '\e754'; } /* e754 */
110
+ .icon-clipboard:before { content: '📋'; } /* 1f4cb */
111
+ .icon-box:before { content: '📦'; } /* 1f4e6 */
112
+ .icon-ticket:before { content: '🎫'; } /* 1f3ab */
113
+ .icon-rss:before { content: '\e73a'; } /* e73a */
114
+ .icon-signal:before { content: '📶'; } /* 1f4f6 */
115
+ .icon-thermometer:before { content: '\e757'; } /* e757 */
116
+ .icon-water:before { content: '💦'; } /* 1f4a6 */
117
+ .icon-sweden:before { content: '\f601'; } /* f601 */
118
+ .icon-lock:before { content: '🔒'; } /* 1f512 */
119
+ .icon-lock-open:before { content: '🔓'; } /* 1f513 */
120
+ .icon-logout:before { content: '\e741'; } /* e741 */
121
+ .icon-login:before { content: '\e740'; } /* e740 */
122
+ .icon-check:before { content: '\2713'; } /* 2713 */
123
+ .icon-squared-plus:before { content: '\229e'; } /* 229e */
124
+ .icon-squared-minus:before { content: '\229f'; } /* 229f */
125
+ .icon-circled-plus:before { content: '\2795'; } /* 2795 */
126
+ .icon-circled-minus:before { content: '\2796'; } /* 2796 */
127
+ .icon-plus:before { content: '\2b'; } /* 2b */
128
+ .icon-minus:before { content: '\2d'; } /* 2d */
129
+ .icon-erase:before { content: '\232b'; } /* 232b */
130
+ .icon-block:before { content: '🚫'; } /* 1f6ab */
131
+ .icon-info:before { content: '\2139'; } /* 2139 */
132
+ .icon-circled-info:before { content: '\e705'; } /* e705 */
133
+ .icon-help:before { content: '\2753'; } /* 2753 */
134
+ .icon-circled-help:before { content: '\e704'; } /* e704 */
135
+ .icon-ccw:before { content: '\27f2'; } /* 27f2 */
136
+ .icon-cw:before { content: '\27f3'; } /* 27f3 */
137
+ .icon-shuffle:before { content: '🔀'; } /* 1f500 */
138
+ .icon-back:before { content: '🔙'; } /* 1f519 */
139
+ .icon-level-up:before { content: '\21b0'; } /* 21b0 */
140
+ .icon-level-down:before { content: '\21b3'; } /* 21b3 */
141
+ .icon-retweet:before { content: '\e717'; } /* e717 */
142
+ .icon-loop:before { content: '🔁'; } /* 1f501 */
143
+ .icon-back-in-time:before { content: '\e771'; } /* e771 */
144
+ .icon-switch:before { content: '\21c6'; } /* 21c6 */
145
+ .icon-layout:before { content: '\268f'; } /* 268f */
146
+ .icon-list:before { content: '\2630'; } /* 2630 */
147
+ .icon-doc:before { content: '\e730'; } /* e730 */
148
+ .icon-docs:before { content: '\e736'; } /* e736 */
149
+ .icon-text-doc-inverted:before { content: '\e731'; } /* e731 */
150
+ .icon-landscape-doc:before { content: '\e737'; } /* e737 */
151
+ .icon-picture:before { content: '🌄'; } /* 1f304 */
152
+ .icon-video:before { content: '🎬'; } /* 1f3ac */
153
+ .icon-music:before { content: '🎵'; } /* 1f3b5 */
154
+ .icon-folder:before { content: '📁'; } /* 1f4c1 */
155
+ .icon-archive:before { content: '\e738'; } /* e738 */
156
+ .icon-trash:before { content: '\e729'; } /* e729 */
157
+ .icon-upload:before { content: '📤'; } /* 1f4e4 */
158
+ .icon-download:before { content: '📥'; } /* 1f4e5 */
159
+ .icon-install:before { content: '\e778'; } /* e778 */
160
+ .icon-cloud:before { content: '\2601'; } /* 2601 */
161
+ .icon-upload-cloud:before { content: '\e711'; } /* e711 */
162
+ .icon-bookmark:before { content: '🔖'; } /* 1f516 */
163
+ .icon-bookmarks:before { content: '📑'; } /* 1f4d1 */
164
+ .icon-play:before { content: '\25b6'; } /* 25b6 */
165
+ .icon-paus:before { content: '\2389'; } /* 2389 */
166
+ .icon-record:before { content: '\26ab'; } /* 26ab */
167
+ .icon-stop:before { content: '\25a0'; } /* 25a0 */
168
+ .icon-to-end:before { content: '\23ed'; } /* 23ed */
169
+ .icon-to-start:before { content: '\23ee'; } /* 23ee */
170
+ .icon-resize-full:before { content: '\e744'; } /* e744 */
171
+ .icon-resize-small:before { content: '\e746'; } /* e746 */
172
+ .icon-volume:before { content: '\e742'; } /* e742 */
173
+ .icon-sound:before { content: '🔊'; } /* 1f50a */
174
+ .icon-mute:before { content: '🔇'; } /* 1f507 */
175
+ .icon-flow-cascade:before { content: '\e790'; } /* e790 */
176
+ .icon-flow-branch:before { content: '\e791'; } /* e791 */
177
+ .icon-flow-tree:before { content: '\e792'; } /* e792 */
178
+ .icon-flow-line:before { content: '\e793'; } /* e793 */
179
+ .icon-flow-parallel:before { content: '\e794'; } /* e794 */
180
+ .icon-left-bold:before { content: '\e4ad'; } /* e4ad */
181
+ .icon-right-bold:before { content: '\e4ae'; } /* e4ae */
182
+ .icon-up-bold:before { content: '\e4af'; } /* e4af */
183
+ .icon-down-bold:before { content: '\e4b0'; } /* e4b0 */
184
+ .icon-left:before { content: '\261c'; } /* 261c */
185
+ .icon-up:before { content: '\261d'; } /* 261d */
186
+ .icon-right:before { content: '\261e'; } /* 261e */
187
+ .icon-down:before { content: '\261f'; } /* 261f */
188
+ .icon-circled-down:before { content: '\e758'; } /* e758 */
189
+ .icon-circled-left:before { content: '\e759'; } /* e759 */
190
+ .icon-circled-right:before { content: '\e75a'; } /* e75a */
191
+ .icon-circled-up:before { content: '\e75b'; } /* e75b */
192
+ .icon-left-thin:before { content: '\2190'; } /* 2190 */
193
+ .icon-up-thin:before { content: '\2191'; } /* 2191 */
194
+ .icon-right-thin:before { content: '\2192'; } /* 2192 */
195
+ .icon-down-thin:before { content: '\2193'; } /* 2193 */
196
+ .icon-arrow-combo:before { content: '\e74f'; } /* e74f */
197
+ .icon-dot:before { content: '\e78b'; } /* e78b */
198
+ .icon-two-dots:before { content: '\e78c'; } /* e78c */
199
+ .icon-three-dots:before { content: '\e78d'; } /* e78d */
200
+ .icon-cc:before { content: '\e7a5'; } /* e7a5 */
201
+ .icon-cc-by:before { content: '\e7a6'; } /* e7a6 */
202
+ .icon-cc-nc:before { content: '\e7a7'; } /* e7a7 */
203
+ .icon-cc-nc-eu:before { content: '\e7a8'; } /* e7a8 */
204
+ .icon-cc-nc-jp:before { content: '\e7a9'; } /* e7a9 */
205
+ .icon-cc-sa:before { content: '\e7aa'; } /* e7aa */
206
+ .icon-cc-nd:before { content: '\e7ab'; } /* e7ab */
207
+ .icon-cc-pd:before { content: '\e7ac'; } /* e7ac */
208
+ .icon-cc-zero:before { content: '\e7ad'; } /* e7ad */
209
+ .icon-cc-share:before { content: '\e7ae'; } /* e7ae */
210
+ .icon-cc-remix:before { content: '\e7af'; } /* e7af */
211
+ .icon-db-logo:before { content: '\f603'; } /* f603 */
212
+ .icon-db-shape:before { content: '\f600'; } /* f600 */
213
+ .icon-save:before { content: '💾'; } /* 1f4be */
214
+ .icon-ff:before { content: '\23e9'; } /* 23e9 */
215
+ .icon-fb:before { content: '\23ea'; } /* 23ea */
216
+ .icon-pie-chart:before { content: '\e751'; } /* e751 */
217
+ .icon-line-graph:before { content: '📈'; } /* 1f4c8 */
218
+ .icon-bar-graph:before { content: '📊'; } /* 1f4ca */
219
+ .icon-area-graph:before { content: '🔾'; } /* 1f53e */
220
+ .icon-chevron-down:before { content: '\e75c'; } /* e75c */
221
+ .icon-chevron-left:before { content: '\e75d'; } /* e75d */
222
+ .icon-chevron-right:before { content: '\e75e'; } /* e75e */
223
+ .icon-chevron-up:before { content: '\e75f'; } /* e75f */
224
+ .icon-chevron-small-down:before { content: '\e760'; } /* e760 */
225
+ .icon-chevron-small-left:before { content: '\e761'; } /* e761 */
226
+ .icon-chevron-small-right:before { content: '\e762'; } /* e762 */
227
+ .icon-chevron-small-up:before { content: '\e763'; } /* e763 */
228
+ .icon-chevron-thin-down:before { content: '\e764'; } /* e764 */
229
+ .icon-chevron-thin-left:before { content: '\e765'; } /* e765 */
230
+ .icon-chevron-thin-right:before { content: '\e766'; } /* e766 */
231
+ .icon-chevron-thin-up:before { content: '\e767'; } /* e767 */
232
+ .icon-text-doc:before { content: '📄'; } /* 1f4c4 */
233
+ .icon-open-book:before { content: '📖'; } /* 1f4d6 */
234
+ .icon-voicemail:before { content: '\2707'; } /* 2707 */
235
+ .icon-triangle-right:before { content: '\25b8'; } /* 25b8 */
236
+ .icon-triangle-up:before { content: '\25b4'; } /* 25b4 */
237
+ .icon-triangle-down:before { content: '\25be'; } /* 25be */
238
+ .icon-triangle-left:before { content: '\25c2'; } /* 25c2 */
239
+ .icon-airplane:before { content: '\2708'; } /* 2708 */
240
+ .icon-light-bulb:before { content: '💡'; } /* 1f4a1 */
241
+ .icon-add-to-list:before { content: '\e003'; } /* e003 */
242
+ .icon-browser:before { content: '\e74e'; } /* e74e */
243
+ .icon-cart:before { content: '\e73d'; } /* e73d */
244
+ .icon-cross-hair:before { content: '🎯'; } /* 1f3af */
245
+ .icon-squared-cross:before { content: '\274e'; } /* 274e */
246
+ .icon-circled-cross:before { content: '\2716'; } /* 2716 */
247
+ .icon-warning:before { content: '\26a0'; } /* 26a0 */
248
+ .icon-cross:before { content: '\2715'; } /* 2715 */
249
+ .icon-new:before { content: '💥'; } /* 1f4a5 */
250
+ .icon-cycle:before { content: '🔄'; } /* 1f504 */
251
+ .icon-numbered-list:before { content: '\e005'; } /* e005 */
252
+ .icon-right-1:before { content: '\27a1'; } /* 27a1 */
253
+ .icon-left-1:before { content: '\2b05'; } /* 2b05 */
254
+ .icon-up-1:before { content: '\2b06'; } /* 2b06 */
255
+ .icon-down-1:before { content: '\2b07'; } /* 2b07 */
256
256
 
257
257
  /* social extention map */
258
- .icon-social-github:before { content: ""; } /* U+F300 - &#62208; */
259
- .icon-social-c-github:before { content: ""; } /* U+F301 - &#62209; */
260
- .icon-social-flickr:before { content: ""; } /* U+F303 - &#62211; */
261
- .icon-social-c-flickr:before { content: ""; } /* U+F304 - &#62212; */
262
- .icon-social-vimeo:before { content: ""; } /* U+F306 - &#62214; */
263
- .icon-social-c-vimeo:before { content: ""; } /* U+F307 - &#62215; */
264
- .icon-social-twitter:before { content: ""; } /* U+F309 - &#62217; */
265
- .icon-social-c-twitter:before { content: ""; } /* U+F30A - &#62218; */
266
- .icon-social-facebook:before { content: ""; } /* U+F30C - &#62220; */
267
- .icon-social-c-facebook:before { content: ""; } /* U+F30D - &#62221; */
268
- .icon-social-s-facebook:before { content: ""; } /* U+F30E - &#62222; */
269
- .icon-social-google+:before { content: ""; } /* U+F30F - &#62223; */
270
- .icon-social-c-google+:before { content: ""; } /* U+F310 - &#62224; */
271
- .icon-social-pinterest:before { content: ""; } /* U+F312 - &#62226; */
272
- .icon-social-c-pinterest:before { content: ""; } /* U+F313 - &#62227; */
273
- .icon-social-tumblr:before { content: ""; } /* U+F315 - &#62229; */
274
- .icon-social-c-tumblr:before { content: ""; } /* U+F316 - &#62230; */
275
- .icon-social-linkedin:before { content: ""; } /* U+F318 - &#62232; */
276
- .icon-social-c-linkedin:before { content: ""; } /* U+F319 - &#62233; */
277
- .icon-social-dribbble:before { content: ""; } /* U+F31B - &#62235; */
278
- .icon-social-c-dribbble:before { content: ""; } /* U+F31C - &#62236; */
279
- .icon-social-stumbleupon:before { content: ""; } /* U+F31E - &#62238; */
280
- .icon-social-c-stumbleupon:before { content: ""; } /* U+F31F - &#62239; */
281
- .icon-social-lastfm:before { content: ""; } /* U+F321 - &#62241; */
282
- .icon-social-c-lastfm:before { content: ""; } /* U+F322 - &#62242; */
283
- .icon-social-rdio:before { content: ""; } /* U+F324 - &#62244; */
284
- .icon-social-c-rdio:before { content: ""; } /* U+F325 - &#62245; */
285
- .icon-social-spotify:before { content: ""; } /* U+F327 - &#62247; */
286
- .icon-social-c-spotify:before { content: ""; } /* U+F328 - &#62248; */
287
- .icon-social-qq:before { content: ""; } /* U+F32A - &#62250; */
288
- .icon-social-instagram:before { content: ""; } /* U+F32D - &#62253; */
289
- .icon-social-dropbox:before { content: ""; } /* U+F330 - &#62256; */
290
- .icon-social-evernote:before { content: ""; } /* U+F333 - &#62259; */
291
- .icon-social-flattr:before { content: ""; } /* U+F336 - &#62262; */
292
- .icon-social-skype:before { content: ""; } /* U+F339 - &#62265; */
293
- .icon-social-c-skype:before { content: ""; } /* U+F33A - &#62266; */
294
- .icon-social-renren:before { content: ""; } /* U+F33C - &#62268; */
295
- .icon-social-sina-weibo:before { content: ""; } /* U+F33F - &#62271; */
296
- .icon-social-paypal:before { content: ""; } /* U+F342 - &#62274; */
297
- .icon-social-picasa:before { content: ""; } /* U+F345 - &#62277; */
298
- .icon-social-soundcloud:before { content: ""; } /* U+F348 - &#62280; */
299
- .icon-social-mixi:before { content: ""; } /* U+F34B - &#62283; */
300
- .icon-social-behance:before { content: ""; } /* U+F34E - &#62286; */
301
- .icon-social-google-circles:before { content: ""; } /* U+F351 - &#62289; */
302
- .icon-social-vk:before { content: ""; } /* U+F354 - &#62292; */
303
- .icon-social-smashing:before { content: ""; } /* U+F357 - &#62295; */
258
+ .icon-social-github:before { content: '\f300'; } /* f300 */
259
+ .icon-social-social-c-github:before { content: '\f301'; } /* f301 */
260
+ .icon-social-flickr:before { content: '\f303'; } /* f303 */
261
+ .icon-social-c-flickr:before { content: '\f304'; } /* f304 */
262
+ .icon-social-vimeo:before { content: '\f306'; } /* f306 */
263
+ .icon-social-c-vimeo:before { content: '\f307'; } /* f307 */
264
+ .icon-social-twitter:before { content: '\f309'; } /* f309 */
265
+ .icon-social-c-twitter:before { content: '\f30a'; } /* f30a */
266
+ .icon-social-facebook:before { content: '\f30c'; } /* f30c */
267
+ .icon-social-c-facebook:before { content: '\f30d'; } /* f30d */
268
+ .icon-social-s-facebook:before { content: '\f30e'; } /* f30e */
269
+ .icon-social-google+:before { content: '\f30f'; } /* f30f */
270
+ .icon-social-c-google+:before { content: '\f310'; } /* f310 */
271
+ .icon-social-pinterest:before { content: '\f312'; } /* f312 */
272
+ .icon-social-c-pinterest:before { content: '\f313'; } /* f313 */
273
+ .icon-social-tumblr:before { content: '\f315'; } /* f315 */
274
+ .icon-social-c-tumblr:before { content: '\f316'; } /* f316 */
275
+ .icon-social-linkedin:before { content: '\f318'; } /* f318 */
276
+ .icon-social-c-linkedin:before { content: '\f319'; } /* f319 */
277
+ .icon-social-dribbble:before { content: '\f31b'; } /* f31b */
278
+ .icon-social-c-dribbble:before { content: '\f31c'; } /* f31c */
279
+ .icon-social-stumbleupon:before { content: '\f31e'; } /* f31e */
280
+ .icon-social-c-stumbleupon:before { content: '\f31f'; } /* f31f */
281
+ .icon-social-lastfm:before { content: '\f321'; } /* f321 */
282
+ .icon-social-c-lastfm:before { content: '\f322'; } /* f322 */
283
+ .icon-social-rdio:before { content: '\f324'; } /* f324 */
284
+ .icon-social-c-rdio:before { content: '\f325'; } /* f325 */
285
+ .icon-social-spotify:before { content: '\f327'; } /* f327 */
286
+ .icon-social-c-spotify:before { content: '\f328'; } /* f328 */
287
+ .icon-social-qq:before { content: '\f32a'; } /* f32a */
288
+ .icon-social-instagram:before { content: '\f32d'; } /* f32d */
289
+ .icon-social-dropbox:before { content: '\f330'; } /* f330 */
290
+ .icon-social-evernote:before { content: '\f333'; } /* f333 */
291
+ .icon-social-flattr:before { content: '\f336'; } /* f336 */
292
+ .icon-social-skype:before { content: '\f339'; } /* f339 */
293
+ .icon-social-c-skype:before { content: '\f33a'; } /* f33a */
294
+ .icon-social-renren:before { content: '\f33c'; } /* f33c */
295
+ .icon-social-sina-weibo:before { content: '\f33f'; } /* f33f */
296
+ .icon-social-paypal:before { content: '\f342'; } /* f342 */
297
+ .icon-social-picasa:before { content: '\f345'; } /* f345 */
298
+ .icon-social-soundcloud:before { content: '\f348'; } /* f348 */
299
+ .icon-social-mixi:before { content: '\f34b'; } /* f34b */
300
+ .icon-social-behance:before { content: '\f34e'; } /* f34e */
301
+ .icon-social-google-circles:before { content: '\f351'; } /* f351 */
302
+ .icon-social-vk:before { content: '\f354'; } /* f354 */
303
+ .icon-social-smashing:before { content: '\f357'; } /* f357 */