middleman-gumby 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +43 -0
  6. data/Rakefile +1 -0
  7. data/lib/middleman/gumby.rb +17 -0
  8. data/lib/middleman/gumby/version.rb +5 -0
  9. data/middleman-gumby.gemspec +25 -0
  10. data/vendor/assets/fonts/icons/entypo.eot +0 -0
  11. data/vendor/assets/fonts/icons/entypo.ttf +0 -0
  12. data/vendor/assets/fonts/icons/entypo.woff +0 -0
  13. data/vendor/assets/javascripts/gumby/libs/gumby.init.js +47 -0
  14. data/vendor/assets/javascripts/gumby/libs/gumby.js +258 -0
  15. data/vendor/assets/javascripts/gumby/libs/gumby.min.js +1 -0
  16. data/vendor/assets/javascripts/gumby/libs/jquery-1.10.1.min.js +6 -0
  17. data/vendor/assets/javascripts/gumby/libs/jquery-1.10.1.min.map +1 -0
  18. data/vendor/assets/javascripts/gumby/libs/jquery-2.0.2.min.js +6 -0
  19. data/vendor/assets/javascripts/gumby/libs/jquery-2.0.2.min.map +1 -0
  20. data/vendor/assets/javascripts/gumby/libs/jquery.mobile.custom.min.js +3 -0
  21. data/vendor/assets/javascripts/gumby/libs/modernizr-2.6.2.min.js +4 -0
  22. data/vendor/assets/javascripts/gumby/libs/ui/gumby.checkbox.js +101 -0
  23. data/vendor/assets/javascripts/gumby/libs/ui/gumby.fixed.js +240 -0
  24. data/vendor/assets/javascripts/gumby/libs/ui/gumby.navbar.js +111 -0
  25. data/vendor/assets/javascripts/gumby/libs/ui/gumby.radiobtn.js +90 -0
  26. data/vendor/assets/javascripts/gumby/libs/ui/gumby.retina.js +81 -0
  27. data/vendor/assets/javascripts/gumby/libs/ui/gumby.skiplink.js +157 -0
  28. data/vendor/assets/javascripts/gumby/libs/ui/gumby.tabs.js +80 -0
  29. data/vendor/assets/javascripts/gumby/libs/ui/gumby.toggleswitch.js +264 -0
  30. data/vendor/assets/javascripts/gumby/libs/ui/jquery.validation.js +142 -0
  31. data/vendor/assets/javascripts/gumby/main.js +23 -0
  32. data/vendor/assets/javascripts/gumby/plugins.js +4 -0
  33. data/vendor/assets/javascripts/gumby/production.js +3 -0
  34. data/vendor/assets/sass/_base.scss +49 -0
  35. data/vendor/assets/sass/_custom.scss +1 -0
  36. data/vendor/assets/sass/_fonts.scss +28 -0
  37. data/vendor/assets/sass/_grid.scss +339 -0
  38. data/vendor/assets/sass/_shame.scss +36 -0
  39. data/vendor/assets/sass/_typography.scss +272 -0
  40. data/vendor/assets/sass/extensions/modular-scale/lib/modular-scale.rb +128 -0
  41. data/vendor/assets/sass/extensions/modular-scale/stylesheets/_modular-scale.scss +310 -0
  42. data/vendor/assets/sass/extensions/sassy-math/lib/sassy-math.rb +159 -0
  43. data/vendor/assets/sass/extensions/sassy-math/stylesheets/_math.scss +310 -0
  44. data/vendor/assets/sass/functions/_all.scss +25 -0
  45. data/vendor/assets/sass/functions/_breakpoints.scss +11 -0
  46. data/vendor/assets/sass/functions/_button-size.scss +44 -0
  47. data/vendor/assets/sass/functions/_clearfix.scss +25 -0
  48. data/vendor/assets/sass/functions/_em.scss +11 -0
  49. data/vendor/assets/sass/functions/_even.scss +10 -0
  50. data/vendor/assets/sass/functions/_fade.scss +20 -0
  51. data/vendor/assets/sass/functions/_fancytiles.scss +29 -0
  52. data/vendor/assets/sass/functions/_fixed.scss +21 -0
  53. data/vendor/assets/sass/functions/_forms.scss +18 -0
  54. data/vendor/assets/sass/functions/_grid-calc.scss +82 -0
  55. data/vendor/assets/sass/functions/_height-calc.scss +6 -0
  56. data/vendor/assets/sass/functions/_icons.scss +35 -0
  57. data/vendor/assets/sass/functions/_line-and-height.scss +7 -0
  58. data/vendor/assets/sass/functions/_palette.scss +76 -0
  59. data/vendor/assets/sass/functions/_responsivity.scss +34 -0
  60. data/vendor/assets/sass/functions/_semantic-grid.scss +170 -0
  61. data/vendor/assets/sass/functions/_shapes.scss +22 -0
  62. data/vendor/assets/sass/functions/_strip-units.scss +5 -0
  63. data/vendor/assets/sass/functions/_tooltips.scss +98 -0
  64. data/vendor/assets/sass/functions/_typography.scss +15 -0
  65. data/vendor/assets/sass/functions/_visibility.scss +17 -0
  66. data/vendor/assets/sass/gumby.scss +39 -0
  67. data/vendor/assets/sass/ui/_all.scss +11 -0
  68. data/vendor/assets/sass/ui/_buttons.scss +154 -0
  69. data/vendor/assets/sass/ui/_forms.scss +392 -0
  70. data/vendor/assets/sass/ui/_icons.scss +23 -0
  71. data/vendor/assets/sass/ui/_images.scss +23 -0
  72. data/vendor/assets/sass/ui/_labels.scss +87 -0
  73. data/vendor/assets/sass/ui/_navbar.scss +440 -0
  74. data/vendor/assets/sass/ui/_tables.scss +89 -0
  75. data/vendor/assets/sass/ui/_tabs.scss +156 -0
  76. data/vendor/assets/sass/ui/_toggles.scss +73 -0
  77. data/vendor/assets/sass/ui/_tooltips.scss +12 -0
  78. data/vendor/assets/sass/ui/_video.scss +24 -0
  79. data/vendor/assets/sass/var/_lists.scss +20 -0
  80. data/vendor/assets/sass/var/_settings.scss +169 -0
  81. data/vendor/assets/sass/var/icons/_entypo-icon-list.scss +286 -0
  82. data/vendor/assets/sass/var/icons/_entypo.scss +294 -0
  83. metadata +167 -0
@@ -0,0 +1,286 @@
1
+ $entypo-icons:
2
+ icon-note $entypo-icon-note,
3
+ icon-note-beamed $entypo-icon-note-beamed,
4
+ icon-music $entypo-icon-music,
5
+ icon-search $entypo-icon-search,
6
+ icon-flashlight $entypo-icon-flashlight,
7
+ icon-mail $entypo-icon-mail,
8
+ icon-heart $entypo-icon-heart,
9
+ icon-heart-empty $entypo-icon-heart-empty,
10
+ icon-star $entypo-icon-star,
11
+ icon-star-empty $entypo-icon-star-empty,
12
+ icon-user $entypo-icon-user,
13
+ icon-users $entypo-icon-users,
14
+ icon-user-add $entypo-icon-user-add,
15
+ icon-video $entypo-icon-video,
16
+ icon-picture $entypo-icon-picture,
17
+ icon-camera $entypo-icon-camera,
18
+ icon-layout $entypo-icon-layout,
19
+ icon-menu $entypo-icon-menu,
20
+ icon-check $entypo-icon-check,
21
+ icon-cancel $entypo-icon-cancel,
22
+ icon-cancel-circled $entypo-icon-cancel-circled,
23
+ icon-cancel-squared $entypo-icon-cancel-squared,
24
+ icon-plus $entypo-icon-plus,
25
+ icon-plus-circled $entypo-icon-plus-circled,
26
+ icon-plus-squared $entypo-icon-plus-squared,
27
+ icon-minus $entypo-icon-minus,
28
+ icon-minus-circled $entypo-icon-minus-circled,
29
+ icon-minus-squared $entypo-icon-minus-squared,
30
+ icon-help $entypo-icon-help,
31
+ icon-help-circled $entypo-icon-help-circled,
32
+ icon-info $entypo-icon-info,
33
+ icon-info-circled $entypo-icon-info-circled,
34
+ icon-back $entypo-icon-back,
35
+ icon-home $entypo-icon-home,
36
+ icon-link $entypo-icon-link,
37
+ icon-attach $entypo-icon-attach,
38
+ icon-lock $entypo-icon-lock,
39
+ icon-lock-open $entypo-icon-lock-open,
40
+ icon-eye $entypo-icon-eye,
41
+ icon-tag $entypo-icon-tag,
42
+ icon-bookmark $entypo-icon-bookmark,
43
+ icon-bookmarks $entypo-icon-bookmarks,
44
+ icon-flag $entypo-icon-flag,
45
+ icon-thumbs-up $entypo-icon-thumbs-up,
46
+ icon-thumbs-down $entypo-icon-thumbs-down,
47
+ icon-download $entypo-icon-download,
48
+ icon-upload $entypo-icon-upload,
49
+ icon-upload-cloud $entypo-icon-upload-cloud,
50
+ icon-reply $entypo-icon-reply,
51
+ icon-reply-all $entypo-icon-reply-all,
52
+ icon-forward $entypo-icon-forward,
53
+ icon-quote $entypo-icon-quote,
54
+ icon-code $entypo-icon-code,
55
+ icon-export $entypo-icon-export,
56
+ icon-pencil $entypo-icon-pencil,
57
+ icon-feather $entypo-icon-feather,
58
+ icon-print $entypo-icon-print,
59
+ icon-retweet $entypo-icon-retweet,
60
+ icon-keyboard $entypo-icon-keyboard,
61
+ icon-comment $entypo-icon-comment,
62
+ icon-chat $entypo-icon-chat,
63
+ icon-bell $entypo-icon-bell,
64
+ icon-attention $entypo-icon-attention,
65
+ icon-alert $entypo-icon-alert,
66
+ icon-vcard $entypo-icon-vcard,
67
+ icon-address $entypo-icon-address,
68
+ icon-location $entypo-icon-location,
69
+ icon-map $entypo-icon-map,
70
+ icon-direction $entypo-icon-direction,
71
+ icon-compass $entypo-icon-compass,
72
+ icon-cup $entypo-icon-cup,
73
+ icon-trash $entypo-icon-trash,
74
+ icon-doc $entypo-icon-doc,
75
+ icon-docs $entypo-icon-docs,
76
+ icon-doc-landscape $entypo-icon-doc-landscape,
77
+ icon-doc-text $entypo-icon-doc-text,
78
+ icon-doc-text-inv $entypo-icon-doc-text-inv,
79
+ icon-newspaper $entypo-icon-newspaper,
80
+ icon-book-open $entypo-icon-book-open,
81
+ icon-book $entypo-icon-book,
82
+ icon-folder $entypo-icon-folder,
83
+ icon-archive $entypo-icon-archive,
84
+ icon-box $entypo-icon-box,
85
+ icon-rss $entypo-icon-rss,
86
+ icon-phone $entypo-icon-phone,
87
+ icon-cog $entypo-icon-cog,
88
+ icon-tools $entypo-icon-tools,
89
+ icon-share $entypo-icon-share,
90
+ icon-shareable $entypo-icon-shareable,
91
+ icon-basket $entypo-icon-basket,
92
+ icon-bag $entypo-icon-bag,
93
+ icon-calendar $entypo-icon-calendar,
94
+ icon-login $entypo-icon-login,
95
+ icon-logout $entypo-icon-logout,
96
+ icon-mic $entypo-icon-mic,
97
+ icon-mute $entypo-icon-mute,
98
+ icon-sound $entypo-icon-sound,
99
+ icon-volume $entypo-icon-volume,
100
+ icon-clock $entypo-icon-clock,
101
+ icon-hourglass $entypo-icon-hourglass,
102
+ icon-lamp $entypo-icon-lamp,
103
+ icon-light-down $entypo-icon-light-down,
104
+ icon-light-up $entypo-icon-light-up,
105
+ icon-adjust $entypo-icon-adjust,
106
+ icon-block $entypo-icon-block,
107
+ icon-resize-full $entypo-icon-resize-full,
108
+ icon-resize-small $entypo-icon-resize-small,
109
+ icon-popup $entypo-icon-popup,
110
+ icon-publish $entypo-icon-publish,
111
+ icon-window $entypo-icon-window,
112
+ icon-arrow-combo $entypo-icon-arrow-combo,
113
+ icon-down-circled $entypo-icon-down-circled,
114
+ icon-left-circled $entypo-icon-left-circled,
115
+ icon-right-circled $entypo-icon-right-circled,
116
+ icon-up-circled $entypo-icon-up-circled,
117
+ icon-down-open $entypo-icon-down-open,
118
+ icon-left-open $entypo-icon-left-open,
119
+ icon-right-open $entypo-icon-right-open,
120
+ icon-up-open $entypo-icon-up-open,
121
+ icon-down-open-mini $entypo-icon-down-open-mini,
122
+ icon-left-open-mini $entypo-icon-left-open-mini,
123
+ icon-right-open-mini $entypo-icon-right-open-mini,
124
+ icon-up-open-mini $entypo-icon-up-open-mini,
125
+ icon-down-open-big $entypo-icon-down-open-big,
126
+ icon-left-open-big $entypo-icon-left-open-big,
127
+ icon-right-open-big $entypo-icon-right-open-big,
128
+ icon-up-open-big $entypo-icon-up-open-big,
129
+ icon-down $entypo-icon-down,
130
+ icon-arrow-left $entypo-icon-left,
131
+ icon-arrow-right $entypo-icon-right,
132
+ icon-up $entypo-icon-up,
133
+ icon-down-dir $entypo-icon-down-dir,
134
+ icon-left-dir $entypo-icon-left-dir,
135
+ icon-right-dir $entypo-icon-right-dir,
136
+ icon-up-dir $entypo-icon-up-dir,
137
+ icon-down-bold $entypo-icon-down-bold,
138
+ icon-left-bold $entypo-icon-left-bold,
139
+ icon-right-bold $entypo-icon-right-bold,
140
+ icon-up-bold $entypo-icon-up-bold,
141
+ icon-down-thin $entypo-icon-down-thin,
142
+ icon-left-thin $entypo-icon-left-thin,
143
+ icon-right-thin $entypo-icon-right-thin,
144
+ icon-up-thin $entypo-icon-up-thin,
145
+ icon-ccw $entypo-icon-ccw,
146
+ icon-cw $entypo-icon-cw,
147
+ icon-arrows-ccw $entypo-icon-arrows-ccw,
148
+ icon-level-down $entypo-icon-level-down,
149
+ icon-level-up $entypo-icon-level-up,
150
+ icon-shuffle $entypo-icon-shuffle,
151
+ icon-loop $entypo-icon-loop,
152
+ icon-switch $entypo-icon-switch,
153
+ icon-play $entypo-icon-play,
154
+ icon-stop $entypo-icon-stop,
155
+ icon-pause $entypo-icon-pause,
156
+ icon-record $entypo-icon-record,
157
+ icon-to-end $entypo-icon-to-end,
158
+ icon-to-start $entypo-icon-to-start,
159
+ icon-fast-forward $entypo-icon-fast-forward,
160
+ icon-fast-backward $entypo-icon-fast-backward,
161
+ icon-progress-0 $entypo-icon-progress-0,
162
+ icon-progress-1 $entypo-icon-progress-1,
163
+ icon-progress-2 $entypo-icon-progress-2,
164
+ icon-progress-3 $entypo-icon-progress-3,
165
+ icon-target $entypo-icon-target,
166
+ icon-palette $entypo-icon-palette,
167
+ icon-list $entypo-icon-list,
168
+ icon-list-add $entypo-icon-list-add,
169
+ icon-signal $entypo-icon-signal,
170
+ icon-trophy $entypo-icon-trophy,
171
+ icon-battery $entypo-icon-battery,
172
+ icon-back-in-time $entypo-icon-back-in-time,
173
+ icon-monitor $entypo-icon-monitor,
174
+ icon-mobile $entypo-icon-mobile,
175
+ icon-network $entypo-icon-network,
176
+ icon-cd $entypo-icon-cd,
177
+ icon-inbox $entypo-icon-inbox,
178
+ icon-install $entypo-icon-install,
179
+ icon-globe $entypo-icon-globe,
180
+ icon-cloud $entypo-icon-cloud,
181
+ icon-cloud-thunder $entypo-icon-cloud-thunder,
182
+ icon-flash $entypo-icon-flash,
183
+ icon-moon $entypo-icon-moon,
184
+ icon-flight $entypo-icon-flight,
185
+ icon-paper-plane $entypo-icon-paper-plane,
186
+ icon-leaf $entypo-icon-leaf,
187
+ icon-lifebuoy $entypo-icon-lifebuoy,
188
+ icon-mouse $entypo-icon-mouse,
189
+ icon-briefcase $entypo-icon-briefcase,
190
+ icon-suitcase $entypo-icon-suitcase,
191
+ icon-dot $entypo-icon-dot,
192
+ icon-dot-2 $entypo-icon-dot-2,
193
+ icon-dot-3 $entypo-icon-dot-3,
194
+ icon-brush $entypo-icon-brush,
195
+ icon-magnet $entypo-icon-magnet,
196
+ icon-infinity $entypo-icon-infinity,
197
+ icon-erase $entypo-icon-erase,
198
+ icon-chart-pie $entypo-icon-chart-pie,
199
+ icon-chart-line $entypo-icon-chart-line,
200
+ icon-chart-bar $entypo-icon-chart-bar,
201
+ icon-chart-area $entypo-icon-chart-area,
202
+ icon-tape $entypo-icon-tape,
203
+ icon-graduation-cap $entypo-icon-graduation-cap,
204
+ icon-language $entypo-icon-language,
205
+ icon-ticket $entypo-icon-ticket,
206
+ icon-water $entypo-icon-water,
207
+ icon-droplet $entypo-icon-droplet,
208
+ icon-air $entypo-icon-air,
209
+ icon-credit-card $entypo-icon-credit-card,
210
+ icon-floppy $entypo-icon-floppy,
211
+ icon-clipboard $entypo-icon-clipboard,
212
+ icon-megaphone $entypo-icon-megaphone,
213
+ icon-database $entypo-icon-database,
214
+ icon-drive $entypo-icon-drive,
215
+ icon-bucket $entypo-icon-bucket,
216
+ icon-thermometer $entypo-icon-thermometer,
217
+ icon-key $entypo-icon-key,
218
+ icon-flow-cascade $entypo-icon-flow-cascade,
219
+ icon-flow-branch $entypo-icon-flow-branch,
220
+ icon-flow-tree $entypo-icon-flow-tree,
221
+ icon-flow-line $entypo-icon-flow-line,
222
+ icon-flow-parallel $entypo-icon-flow-parallel,
223
+ icon-rocket $entypo-icon-rocket,
224
+ icon-gauge $entypo-icon-gauge,
225
+ icon-traffic-cone $entypo-icon-traffic-cone,
226
+ icon-cc $entypo-icon-cc,
227
+ icon-cc-by $entypo-icon-cc-by,
228
+ icon-cc-nc $entypo-icon-cc-nc,
229
+ icon-cc-nc-eu $entypo-icon-cc-nc-eu,
230
+ icon-cc-nc-jp $entypo-icon-cc-nc-jp,
231
+ icon-cc-sa $entypo-icon-cc-sa,
232
+ icon-cc-nd $entypo-icon-cc-nd,
233
+ icon-cc-pd $entypo-icon-cc-pd,
234
+ icon-cc-zero $entypo-icon-cc-zero,
235
+ icon-cc-share $entypo-icon-cc-share,
236
+ icon-cc-remix $entypo-icon-cc-remix,
237
+ icon-github $entypo-icon-github,
238
+ icon-github-circled $entypo-icon-github-circled,
239
+ icon-flickr $entypo-icon-flickr,
240
+ icon-flickr-circled $entypo-icon-flickr-circled,
241
+ icon-vimeo $entypo-icon-vimeo,
242
+ icon-vimeo-circled $entypo-icon-vimeo-circled,
243
+ icon-twitter $entypo-icon-twitter,
244
+ icon-twitter-circled $entypo-icon-twitter-circled,
245
+ icon-facebook $entypo-icon-facebook,
246
+ icon-facebook-circled $entypo-icon-facebook-circled,
247
+ icon-facebook-squared $entypo-icon-facebook-squared,
248
+ icon-gplus $entypo-icon-gplus,
249
+ icon-gplus-circled $entypo-icon-gplus-circled,
250
+ icon-pinterest $entypo-icon-pinterest,
251
+ icon-pinterest-circled $entypo-icon-pinterest-circled,
252
+ icon-tumblr $entypo-icon-tumblr,
253
+ icon-tumblr-circled $entypo-icon-tumblr-circled,
254
+ icon-linkedin $entypo-icon-linkedin,
255
+ icon-linkedin-circled $entypo-icon-linkedin-circled,
256
+ icon-dribbble $entypo-icon-dribbble,
257
+ icon-dribbble-circled $entypo-icon-dribbble-circled,
258
+ icon-stumbleupon $entypo-icon-stumbleupon,
259
+ icon-stumbleupon-circled $entypo-icon-stumbleupon-circled,
260
+ icon-lastfm $entypo-icon-lastfm,
261
+ icon-lastfm-circled $entypo-icon-lastfm-circled,
262
+ icon-rdio $entypo-icon-rdio,
263
+ icon-rdio-circled $entypo-icon-rdio-circled,
264
+ icon-spotify $entypo-icon-spotify,
265
+ icon-spotify-circled $entypo-icon-spotify-circled,
266
+ icon-qq $entypo-icon-qq,
267
+ icon-instagram $entypo-icon-instagram,
268
+ icon-dropbox $entypo-icon-dropbox,
269
+ icon-evernote $entypo-icon-evernote,
270
+ icon-flattr $entypo-icon-flattr,
271
+ icon-skype $entypo-icon-skype,
272
+ icon-skype-circled $entypo-icon-skype-circled,
273
+ icon-renren $entypo-icon-renren,
274
+ icon-sina-weibo $entypo-icon-sina-weibo,
275
+ icon-paypal $entypo-icon-paypal,
276
+ icon-picasa $entypo-icon-picasa,
277
+ icon-soundcloud $entypo-icon-soundcloud,
278
+ icon-mixi $entypo-icon-mixi,
279
+ icon-behance $entypo-icon-behance,
280
+ icon-google-circles $entypo-icon-google-circles,
281
+ icon-vkontakte $entypo-icon-vkontakte,
282
+ icon-smashing $entypo-icon-smashing,
283
+ icon-sweden $entypo-icon-sweden,
284
+ icon-db-shape $entypo-icon-db-shape,
285
+ icon-logo-db $entypo-icon-logo-db
286
+ ;
@@ -0,0 +1,294 @@
1
+ // Entypo Icon Charset
2
+
3
+ $entypo-icon-note: \266a; // \266a
4
+ $entypo-icon-note-beamed: \266b; // \266b
5
+ $entypo-icon-music: 🎵; // \1f3b5
6
+ $entypo-icon-search: 🔍; // \1f50d
7
+ $entypo-icon-flashlight: 🔦; // \1f526
8
+ $entypo-icon-mail: \2709; // \2709
9
+ $entypo-icon-heart: \2665; // \2665
10
+ $entypo-icon-heart-empty: \2661; // \2661
11
+ $entypo-icon-star: \2605; // \2605
12
+ $entypo-icon-star-empty: \2606; // \2606
13
+ $entypo-icon-user: 👤; // \1f464
14
+ $entypo-icon-users: 👥; // \1f465
15
+ $entypo-icon-user-add: \e700; // \e700
16
+ $entypo-icon-video: 🎬; // \1f3ac
17
+ $entypo-icon-picture: 🌄; // \1f304
18
+ $entypo-icon-camera: 📷; // \1f4f7
19
+ $entypo-icon-layout: \268f; // \268f
20
+ $entypo-icon-menu: \2630; // \2630
21
+ $entypo-icon-check: \2713; // \2713
22
+ $entypo-icon-cancel: \2715; // \2715
23
+ $entypo-icon-cancel-circled: \2716; // \2716
24
+ $entypo-icon-cancel-squared: \274e; // \274e
25
+ $entypo-icon-plus: \2b; // \2b
26
+ $entypo-icon-plus-circled: \2795; // \2795
27
+ $entypo-icon-plus-squared: \229e; // \229e
28
+ $entypo-icon-minus: \2d; // \2d
29
+ $entypo-icon-minus-circled: \2796; // \2796
30
+ $entypo-icon-minus-squared: \229f; // \229f
31
+ $entypo-icon-help: \2753; // \2753
32
+ $entypo-icon-help-circled: \e704; // \e704
33
+ $entypo-icon-info: \2139; // \2139
34
+ $entypo-icon-info-circled: \e705; // \e705
35
+ $entypo-icon-back: 🔙; // \1f519
36
+ $entypo-icon-home: \2302; // \2302
37
+ $entypo-icon-link: 🔗; // \1f517
38
+ $entypo-icon-attach: 📎; // \1f4ce
39
+ $entypo-icon-lock: 🔒; // \1f512
40
+ $entypo-icon-lock-open: 🔓; // \1f513
41
+ $entypo-icon-eye: \e70a; // \e70a
42
+ $entypo-icon-tag: \e70c; // \e70c
43
+ $entypo-icon-bookmark: 🔖; // \1f516
44
+ $entypo-icon-bookmarks: 📑; // \1f4d1
45
+ $entypo-icon-flag: \2691; // \2691
46
+ $entypo-icon-thumbs-up: 👍; // \1f44d
47
+ $entypo-icon-thumbs-down: 👎; // \1f44e
48
+ $entypo-icon-download: 📥; // \1f4e5
49
+ $entypo-icon-upload: 📤; // \1f4e4
50
+ $entypo-icon-upload-cloud: \e711; // \e711
51
+ $entypo-icon-reply: \e712; // \e712
52
+ $entypo-icon-reply-all: \e713; // \e713
53
+ $entypo-icon-forward: \27a6; // \27a6
54
+ $entypo-icon-quote: \275e; // \275e
55
+ $entypo-icon-code: \e714; // \e714
56
+ $entypo-icon-export: \e715; // \e715
57
+ $entypo-icon-pencil: \270e; // \270e
58
+ $entypo-icon-feather: \2712; // \2712
59
+ $entypo-icon-print: \e716; // \e716
60
+ $entypo-icon-retweet: \e717; // \e717
61
+ $entypo-icon-keyboard: \2328; // \2328
62
+ $entypo-icon-comment: \e718; // \e718
63
+ $entypo-icon-chat: \e720; // \e720
64
+ $entypo-icon-bell: 🔔; // \1f514
65
+ $entypo-icon-attention: \26a0; // \26a0
66
+ $entypo-icon-alert: 💥; // \1f4a5
67
+ $entypo-icon-vcard: \e722; // \e722
68
+ $entypo-icon-address: \e723; // \e723
69
+ $entypo-icon-location: \e724; // \e724
70
+ $entypo-icon-map: \e727; // \e727
71
+ $entypo-icon-direction: \27a2; // \27a2
72
+ $entypo-icon-compass: \e728; // \e728
73
+ $entypo-icon-cup: \2615; // \2615
74
+ $entypo-icon-trash: \e729; // \e729
75
+ $entypo-icon-doc: \e730; // \e730
76
+ $entypo-icon-docs: \e736; // \e736
77
+ $entypo-icon-doc-landscape: \e737; // \e737
78
+ $entypo-icon-doc-text: 📄; // \1f4c4
79
+ $entypo-icon-doc-text-inv: \e731; // \e731
80
+ $entypo-icon-newspaper: 📰; // \1f4f0
81
+ $entypo-icon-book-open: 📖; // \1f4d6
82
+ $entypo-icon-book: 📕; // \1f4d5
83
+ $entypo-icon-folder: 📁; // \1f4c1
84
+ $entypo-icon-archive: \e738; // \e738
85
+ $entypo-icon-box: 📦; // \1f4e6
86
+ $entypo-icon-rss: \e73a; // \e73a
87
+ $entypo-icon-phone: 📞; // \1f4de
88
+ $entypo-icon-cog: \2699; // \2699
89
+ $entypo-icon-tools: \2692; // \2692
90
+ $entypo-icon-share: \e73c; // \e73c
91
+ $entypo-icon-shareable: \e73e; // \e73e
92
+ $entypo-icon-basket: \e73d; // \e73d
93
+ $entypo-icon-bag: 👜; // \1f45c
94
+ $entypo-icon-calendar: 📅; // \1f4c5
95
+ $entypo-icon-login: \e740; // \e740
96
+ $entypo-icon-logout: \e741; // \e741
97
+ $entypo-icon-mic: 🎤; // \1f3a4
98
+ $entypo-icon-mute: 🔇; // \1f507
99
+ $entypo-icon-sound: 🔊; // \1f50a
100
+ $entypo-icon-volume: \e742; // \e742
101
+ $entypo-icon-clock: 🕔; // \1f554
102
+ $entypo-icon-hourglass: \23f3; // \23f3
103
+ $entypo-icon-lamp: 💡; // \1f4a1
104
+ $entypo-icon-light-down: 🔅; // \1f505
105
+ $entypo-icon-light-up: 🔆; // \1f506
106
+ $entypo-icon-adjust: \25d1; // \25d1
107
+ $entypo-icon-block: 🚫; // \1f6ab
108
+ $entypo-icon-resize-full: \e744; // \e744
109
+ $entypo-icon-resize-small: \e746; // \e746
110
+ $entypo-icon-popup: \e74c; // \e74c
111
+ $entypo-icon-publish: \e74d; // \e74d
112
+ $entypo-icon-window: \e74e; // \e74e
113
+ $entypo-icon-arrow-combo: \e74f; // \e74f
114
+ $entypo-icon-down-circled: \e758; // \e758
115
+ $entypo-icon-left-circled: \e759; // \e759
116
+ $entypo-icon-right-circled: \e75a; // \e75a
117
+ $entypo-icon-up-circled: \e75b; // \e75b
118
+ $entypo-icon-down-open: \e75c; // \e75c
119
+ $entypo-icon-left-open: \e75d; // \e75d
120
+ $entypo-icon-right-open: \e75e; // \e75e
121
+ $entypo-icon-up-open: \e75f; // \e75f
122
+ $entypo-icon-down-open-mini: \e760; // \e760
123
+ $entypo-icon-left-open-mini: \e761; // \e761
124
+ $entypo-icon-right-open-mini: \e762; // \e762
125
+ $entypo-icon-up-open-mini: \e763; // \e763
126
+ $entypo-icon-down-open-big: \e764; // \e764
127
+ $entypo-icon-left-open-big: \e765; // \e765
128
+ $entypo-icon-right-open-big: \e766; // \e766
129
+ $entypo-icon-up-open-big: \e767; // \e767
130
+ $entypo-icon-down: \2b07; // \2b07
131
+ $entypo-icon-left: \2b05; // \2b05
132
+ $entypo-icon-right: \27a1; // \27a1
133
+ $entypo-icon-up: \2b06; // \2b06
134
+ $entypo-icon-down-dir: \25be; // \25be
135
+ $entypo-icon-left-dir: \25c2; // \25c2
136
+ $entypo-icon-right-dir: \25b8; // \25b8
137
+ $entypo-icon-up-dir: \25b4; // \25b4
138
+ $entypo-icon-down-bold: \e4b0; // \e4b0
139
+ $entypo-icon-left-bold: \e4ad; // \e4ad
140
+ $entypo-icon-right-bold: \e4ae; // \e4ae
141
+ $entypo-icon-up-bold: \e4af; // \e4af
142
+ $entypo-icon-down-thin: \2193; // \2193
143
+ $entypo-icon-left-thin: \2190; // \2190
144
+ $entypo-icon-right-thin: \2192; // \2192
145
+ $entypo-icon-up-thin: \2191; // \2191
146
+ $entypo-icon-ccw: \27f2; // \27f2
147
+ $entypo-icon-cw: \27f3; // \27f3
148
+ $entypo-icon-arrows-ccw: 🔄; // \1f504
149
+ $entypo-icon-level-down: \21b3; // \21b3
150
+ $entypo-icon-level-up: \21b0; // \21b0
151
+ $entypo-icon-shuffle: 🔀; // \1f500
152
+ $entypo-icon-loop: 🔁; // \1f501
153
+ $entypo-icon-switch: \21c6; // \21c6
154
+ $entypo-icon-play: \25b6; // \25b6
155
+ $entypo-icon-stop: \25a0; // \25a0
156
+ $entypo-icon-pause: \2389; // \2389
157
+ $entypo-icon-record: \26ab; // \26ab
158
+ $entypo-icon-to-end: \23ed; // \23ed
159
+ $entypo-icon-to-start: \23ee; // \23ee
160
+ $entypo-icon-fast-forward: \23e9; // \23e9
161
+ $entypo-icon-fast-backward: \23ea; // \23ea
162
+ $entypo-icon-progress-0: \e768; // \e768
163
+ $entypo-icon-progress-1: \e769; // \e769
164
+ $entypo-icon-progress-2: \e76a; // \e76a
165
+ $entypo-icon-progress-3: \e76b; // \e76b
166
+ $entypo-icon-target: 🎯; // \1f3af
167
+ $entypo-icon-palette: 🎨; // \1f3a8
168
+ $entypo-icon-list: \e005; // \e005
169
+ $entypo-icon-list-add: \e003; // \e003
170
+ $entypo-icon-signal: 📶; // \1f4f6
171
+ $entypo-icon-trophy: 🏆; // \1f3c6
172
+ $entypo-icon-battery: 🔋; // \1f50b
173
+ $entypo-icon-back-in-time: \e771; // \e771
174
+ $entypo-icon-monitor: 💻; // \1f4bb
175
+ $entypo-icon-mobile: 📱; // \1f4f1
176
+ $entypo-icon-network: \e776; // \e776
177
+ $entypo-icon-cd: 💿; // \1f4bf
178
+ $entypo-icon-inbox: \e777; // \e777
179
+ $entypo-icon-install: \e778; // \e778
180
+ $entypo-icon-globe: 🌎; // \1f30e
181
+ $entypo-icon-cloud: \2601; // \2601
182
+ $entypo-icon-cloud-thunder: \26c8; // \26c8
183
+ $entypo-icon-flash: \26a1; // \26a1
184
+ $entypo-icon-moon: \263d; // \263d
185
+ $entypo-icon-flight: \2708; // \2708
186
+ $entypo-icon-paper-plane: \e79b; // \e79b
187
+ $entypo-icon-leaf: 🍂; // \1f342
188
+ $entypo-icon-lifebuoy: \e788; // \e788
189
+ $entypo-icon-mouse: \e789; // \e789
190
+ $entypo-icon-briefcase: 💼; // \1f4bc
191
+ $entypo-icon-suitcase: \e78e; // \e78e
192
+ $entypo-icon-dot: \e78b; // \e78b
193
+ $entypo-icon-dot-2: \e78c; // \e78c
194
+ $entypo-icon-dot-3: \e78d; // \e78d
195
+ $entypo-icon-brush: \e79a; // \e79a
196
+ $entypo-icon-magnet: \e7a1; // \e7a1
197
+ $entypo-icon-infinity: \221e; // \221e
198
+ $entypo-icon-erase: \232b; // \232b
199
+ $entypo-icon-chart-pie: \e751; // \e751
200
+ $entypo-icon-chart-line: 📈; // \1f4c8
201
+ $entypo-icon-chart-bar: 📊; // \1f4ca
202
+ $entypo-icon-chart-area: 🔾; // \1f53e
203
+ $entypo-icon-tape: \2707; // \2707
204
+ $entypo-icon-graduation-cap: 🎓; // \1f393
205
+ $entypo-icon-language: \e752; // \e752
206
+ $entypo-icon-ticket: 🎫; // \1f3ab
207
+ $entypo-icon-water: 💦; // \1f4a6
208
+ $entypo-icon-droplet: 💧; // \1f4a7
209
+ $entypo-icon-air: \e753; // \e753
210
+ $entypo-icon-credit-card: 💳; // \1f4b3
211
+ $entypo-icon-floppy: 💾; // \1f4be
212
+ $entypo-icon-clipboard: 📋; // \1f4cb
213
+ $entypo-icon-megaphone: 📣; // \1f4e3
214
+ $entypo-icon-database: \e754; // \e754
215
+ $entypo-icon-drive: \e755; // \e755
216
+ $entypo-icon-bucket: \e756; // \e756
217
+ $entypo-icon-thermometer: \e757; // \e757
218
+ $entypo-icon-key: 🔑; // \1f511
219
+ $entypo-icon-flow-cascade: \e790; // \e790
220
+ $entypo-icon-flow-branch: \e791; // \e791
221
+ $entypo-icon-flow-tree: \e792; // \e792
222
+ $entypo-icon-flow-line: \e793; // \e793
223
+ $entypo-icon-flow-parallel: \e794; // \e794
224
+ $entypo-icon-rocket: 🚀; // \1f680
225
+ $entypo-icon-gauge: \e7a2; // \e7a2
226
+ $entypo-icon-traffic-cone: \e7a3; // \e7a3
227
+ $entypo-icon-cc: \e7a5; // \e7a5
228
+ $entypo-icon-cc-by: \e7a6; // \e7a6
229
+ $entypo-icon-cc-nc: \e7a7; // \e7a7
230
+ $entypo-icon-cc-nc-eu: \e7a8; // \e7a8
231
+ $entypo-icon-cc-nc-jp: \e7a9; // \e7a9
232
+ $entypo-icon-cc-sa: \e7aa; // \e7aa
233
+ $entypo-icon-cc-nd: \e7ab; // \e7ab
234
+ $entypo-icon-cc-pd: \e7ac; // \e7ac
235
+ $entypo-icon-cc-zero: \e7ad; // \e7ad
236
+ $entypo-icon-cc-share: \e7ae; // \e7ae
237
+ $entypo-icon-cc-remix: \e7af; // \e7af
238
+ $entypo-icon-github: \f300; // \f300
239
+ $entypo-icon-github-circled: \f301; // \f301
240
+ $entypo-icon-flickr: \f303; // \f303
241
+ $entypo-icon-flickr-circled: \f304; // \f304
242
+ $entypo-icon-vimeo: \f306; // \f306
243
+ $entypo-icon-vimeo-circled: \f307; // \f307
244
+ $entypo-icon-twitter: \f309; // \f309
245
+ $entypo-icon-twitter-circled: \f30a; // \f30a
246
+ $entypo-icon-facebook: \f30c; // \f30c
247
+ $entypo-icon-facebook-circled: \f30d; // \f30d
248
+ $entypo-icon-facebook-squared: \f30e; // \f30e
249
+ $entypo-icon-gplus: \f30f; // \f30f
250
+ $entypo-icon-gplus-circled: \f310; // \f310
251
+ $entypo-icon-pinterest: \f312; // \f312
252
+ $entypo-icon-pinterest-circled: \f313; // \f313
253
+ $entypo-icon-tumblr: \f315; // \f315
254
+ $entypo-icon-tumblr-circled: \f316; // \f316
255
+ $entypo-icon-linkedin: \f318; // \f318
256
+ $entypo-icon-linkedin-circled: \f319; // \f319
257
+ $entypo-icon-dribbble: \f31b; // \f31b
258
+ $entypo-icon-dribbble-circled: \f31c; // \f31c
259
+ $entypo-icon-stumbleupon: \f31e; // \f31e
260
+ $entypo-icon-stumbleupon-circled: \f31f; // \f31f
261
+ $entypo-icon-lastfm: \f321; // \f321
262
+ $entypo-icon-lastfm-circled: \f322; // \f322
263
+ $entypo-icon-rdio: \f324; // \f324
264
+ $entypo-icon-rdio-circled: \f325; // \f325
265
+ $entypo-icon-spotify: \f327; // \f327
266
+ $entypo-icon-spotify-circled: \f328; // \f328
267
+ $entypo-icon-qq: \f32a; // \f32a
268
+ $entypo-icon-instagram: \f32d; // \f32d
269
+ $entypo-icon-dropbox: \f330; // \f330
270
+ $entypo-icon-evernote: \f333; // \f333
271
+ $entypo-icon-flattr: \f336; // \f336
272
+ $entypo-icon-skype: \f339; // \f339
273
+ $entypo-icon-skype-circled: \f33a; // \f33a
274
+ $entypo-icon-renren: \f33c; // \f33c
275
+ $entypo-icon-sina-weibo: \f33f; // \f33f
276
+ $entypo-icon-paypal: \f342; // \f342
277
+ $entypo-icon-picasa: \f345; // \f345
278
+ $entypo-icon-soundcloud: \f348; // \f348
279
+ $entypo-icon-mixi: \f34b; // \f34b
280
+ $entypo-icon-behance: \f34e; // \f34e
281
+ $entypo-icon-google-circles: \f351; // \f351
282
+ $entypo-icon-vkontakte: \f354; // \f354
283
+ $entypo-icon-smashing: \f357; // \f357
284
+ $entypo-icon-sweden: \f601; // \f601
285
+ $entypo-icon-db-shape: \f600; // \f600
286
+ $entypo-icon-logo-db: \f603; // \f603
287
+
288
+
289
+ // Grab the list of icons
290
+ @import "entypo-icon-list";
291
+
292
+
293
+
294
+