gumby2-rails 0.0.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.
Files changed (72) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +29 -0
  5. data/Rakefile +1 -0
  6. data/gumby2-rails.gemspec +19 -0
  7. data/lib/gumby2-rails/version.rb +5 -0
  8. data/lib/gumby2-rails.rb +9 -0
  9. data/vendor/assets/.DS_Store +0 -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/js/libs/gumby.init.js +27 -0
  14. data/vendor/assets/js/libs/gumby.js +150 -0
  15. data/vendor/assets/js/libs/gumby.min.js +1 -0
  16. data/vendor/assets/js/libs/jquery-1.10.1.min.js +6 -0
  17. data/vendor/assets/js/libs/jquery-2.0.2.min.js +6 -0
  18. data/vendor/assets/js/libs/jquery.mobile.custom.min.js +3 -0
  19. data/vendor/assets/js/libs/modernizr-2.6.2.min.js +4 -0
  20. data/vendor/assets/js/libs/ui/gumby.checkbox.js +90 -0
  21. data/vendor/assets/js/libs/ui/gumby.fittext.js +107 -0
  22. data/vendor/assets/js/libs/ui/gumby.fixed.js +206 -0
  23. data/vendor/assets/js/libs/ui/gumby.navbar.js +115 -0
  24. data/vendor/assets/js/libs/ui/gumby.radiobtn.js +79 -0
  25. data/vendor/assets/js/libs/ui/gumby.retina.js +74 -0
  26. data/vendor/assets/js/libs/ui/gumby.skiplink.js +145 -0
  27. data/vendor/assets/js/libs/ui/gumby.tabs.js +71 -0
  28. data/vendor/assets/js/libs/ui/gumby.toggleswitch.js +203 -0
  29. data/vendor/assets/js/libs/ui/jquery.validation.js +138 -0
  30. data/vendor/assets/js/main.js +25 -0
  31. data/vendor/assets/js/plugins.js +8 -0
  32. data/vendor/assets/stylesheets/.DS_Store +0 -0
  33. data/vendor/assets/stylesheets/gumby.css +1876 -0
  34. data/vendor/assets/stylesheets/sass/_base.scss +71 -0
  35. data/vendor/assets/stylesheets/sass/_custom.scss +1 -0
  36. data/vendor/assets/stylesheets/sass/_fonts.scss +28 -0
  37. data/vendor/assets/stylesheets/sass/_grid.scss +273 -0
  38. data/vendor/assets/stylesheets/sass/_typography.scss +274 -0
  39. data/vendor/assets/stylesheets/sass/extensions/modular-scale/lib/modular-scale.rb +129 -0
  40. data/vendor/assets/stylesheets/sass/extensions/modular-scale/stylesheets/_modular-scale.scss +310 -0
  41. data/vendor/assets/stylesheets/sass/extensions/sassy-math/lib/sassy-math.rb +159 -0
  42. data/vendor/assets/stylesheets/sass/extensions/sassy-math/stylesheets/_math.scss +310 -0
  43. data/vendor/assets/stylesheets/sass/functions/_all.scss +15 -0
  44. data/vendor/assets/stylesheets/sass/functions/_breakpoints.scss +11 -0
  45. data/vendor/assets/stylesheets/sass/functions/_buttons.scss +44 -0
  46. data/vendor/assets/stylesheets/sass/functions/_clearfix.scss +25 -0
  47. data/vendor/assets/stylesheets/sass/functions/_forms.scss +18 -0
  48. data/vendor/assets/stylesheets/sass/functions/_grid-calc.scss +59 -0
  49. data/vendor/assets/stylesheets/sass/functions/_height-calc.scss +6 -0
  50. data/vendor/assets/stylesheets/sass/functions/_line-and-height.scss +7 -0
  51. data/vendor/assets/stylesheets/sass/functions/_responsivity.scss +34 -0
  52. data/vendor/assets/stylesheets/sass/functions/_semantic-grid.scss +187 -0
  53. data/vendor/assets/stylesheets/sass/functions/_strip-units.scss +5 -0
  54. data/vendor/assets/stylesheets/sass/functions/_typography.scss +15 -0
  55. data/vendor/assets/stylesheets/sass/functions/_visibility.scss +17 -0
  56. data/vendor/assets/stylesheets/sass/gumby.scss +37 -0
  57. data/vendor/assets/stylesheets/sass/ui/_all.scss +10 -0
  58. data/vendor/assets/stylesheets/sass/ui/_buttons.scss +151 -0
  59. data/vendor/assets/stylesheets/sass/ui/_forms.scss +379 -0
  60. data/vendor/assets/stylesheets/sass/ui/_icons.scss +37 -0
  61. data/vendor/assets/stylesheets/sass/ui/_images.scss +21 -0
  62. data/vendor/assets/stylesheets/sass/ui/_labels.scss +86 -0
  63. data/vendor/assets/stylesheets/sass/ui/_navbar.scss +417 -0
  64. data/vendor/assets/stylesheets/sass/ui/_tables.scss +87 -0
  65. data/vendor/assets/stylesheets/sass/ui/_tabs.scss +109 -0
  66. data/vendor/assets/stylesheets/sass/ui/_toggles.scss +69 -0
  67. data/vendor/assets/stylesheets/sass/ui/_video.scss +22 -0
  68. data/vendor/assets/stylesheets/sass/var/_lists.scss +20 -0
  69. data/vendor/assets/stylesheets/sass/var/_settings.scss +149 -0
  70. data/vendor/assets/stylesheets/sass/var/icons/_entypo-icon-list.scss +286 -0
  71. data/vendor/assets/stylesheets/sass/var/icons/_entypo.scss +294 -0
  72. metadata +116 -0
@@ -0,0 +1,149 @@
1
+ // Welcome to Gumby 2.0 Settings.
2
+ // Happy Tinkering!
3
+
4
+
5
+ // Grid Settings
6
+ $row-max-width: 940px !default; // 940px
7
+ $gutter-in-px: 20px !default; // 20px
8
+ $cols: 12 !default; // 12 Column Default Grid
9
+ $hybrid: 16 !default; // 16 Column Default Hybrid Grid
10
+
11
+ // Responsiveness Settings
12
+ $min-device-width: 320px; // iPhone Portrait
13
+ $tablet-device-width: 768px; // iPad Portrait
14
+ $document-width: $row-max-width; // Default Document
15
+ $max-device-width: 2880px; // Max Document Size
16
+
17
+ // Spacing
18
+ $nav-distance: 0px; // Navigation distance from the top of the viewport
19
+
20
+ // Typography
21
+ $font-family: "Open Sans";
22
+ $font-style-italic: italic;
23
+ $icons: entypo;
24
+ $font-smoothing: antialiased;
25
+
26
+ // Font Weights
27
+ $font-weight-bold: 700;
28
+ $font-weight-semibold: 600;
29
+ $font-weight-medium: 400;
30
+ $font-weight-regular: 400;
31
+ $font-weight-light: 300;
32
+ $font-weight-thin: 300;
33
+
34
+ $header-font-weight: $font-weight-thin;
35
+ $body-font-weight: $font-weight-regular;
36
+ $type-font-weight: $font-weight-regular;
37
+ $link-font-weight: $font-weight-regular;
38
+ $button-font-weight: $font-weight-semibold;
39
+ $tabs-font-weight: $font-weight-semibold;
40
+
41
+ // Vertical Rhythm Spacing
42
+ $base-line-height: ms(1) !default;
43
+ $rhythm-spacing: .168;
44
+ $rhythm-height: .711;
45
+
46
+ // Modular Scale Settings
47
+ // http://www.modularscale.com by Tim Brown
48
+ // https://github.com/scottkellum/modular-scale
49
+ $ratio: golden(); // Ratio for Modular Scale
50
+ $base-font-size: 16px !default;
51
+ $importantNum: 78px !default;
52
+ $base-size: $base-font-size $importantNum;
53
+ // Gumby Default Scale Values: 16, 18, 26, 30, 42, 48, 68, 78, 110, 126;
54
+
55
+ // Sizing
56
+ $xsmall: ms(-2);
57
+ $small: ms(-1);
58
+ $norm: ms(0); // $base-font-size (16px == default)
59
+ $med: ms(1);
60
+ $large: ms(2);
61
+ $larger: ms(3);
62
+ $xlarge: ms(4);
63
+ $xxlarge: ms(5);
64
+ $xxxlarge: ms(6);
65
+ $reallybig: ms(8);
66
+ $tremendous: ms(9);
67
+ $absurd: ms(10);
68
+
69
+ // Typography Colors
70
+ $header-font-color: #444444 !default;
71
+ $header-link-color: #d04526 !default;
72
+ $header-link-hover-color: #c03d20 !default;
73
+ $body-font-color: #555555 !default;
74
+ $body-link-color: #d04526 !default;
75
+ $body-link-hover-color: #c03d20 !default;
76
+
77
+ // User Interface Colors
78
+ $global-bg-color: #fff;
79
+ $navbar-color: #4a4d50;
80
+ $navbar-link-color: #fff;
81
+
82
+ $primary-color: #3085d6;
83
+ $secondary-color: #42a35a;
84
+ $default-color: #f2f2f2;
85
+ $info-color: #4a4d50;
86
+ $danger-color: #ca3838;
87
+ $warning-color: #f6b83f;
88
+ $success-color: #58c026;
89
+
90
+ $primary-hover-color: #58b2fa;
91
+ $secondary-hover-color: #6dbb80;
92
+ $default-hover-color: #ffffff;
93
+ $info-hover-color: #868d92;
94
+ $danger-hover-color: #f14f4f;
95
+ $warning-hover-color: #fdd27f;
96
+ $success-hover-color: #66d92f;
97
+
98
+ $horizontal-rule-color: #ccc !default;
99
+
100
+ $black: #000;
101
+ $white: #fff;
102
+
103
+ // Borders
104
+ $button-radius: 4px !default;
105
+ $metro-radius: 0 !default;
106
+ $bigger-radius: 8px;
107
+
108
+ // Buttons
109
+ // Font Sizing
110
+ $xlarge-button-font-size: $larger;
111
+ $large-button-font-size: $large;
112
+ $medium-button-font-size: $norm;
113
+ $small-button-font-size: $small;
114
+ // Padding
115
+ $default-button-padding: $med;
116
+ // Height
117
+ $default-button-height: 36px;
118
+
119
+ // Tabs
120
+ $tab-height: 42px;
121
+
122
+ // Drawers & Modals
123
+ $modal-overlay-color: rgba(0, 0, 0, 0.8);
124
+ $modal-window-color: $white;
125
+ $drawer-background-color: #3e4144;
126
+ $drawer-inner-shadow-x-offset: 0;
127
+ $drawer-inner-shadow-y-offset: 2px;
128
+ $drawer-inner-shadow-blur: 5px;
129
+ $drawer-inner-shadow-color: #313436;
130
+
131
+ // Tables
132
+ $table-bgcolor: #fff;
133
+ $table-thead-bgcolor: $primary-color;
134
+ $table-row-first-cell-font-weight: bold;
135
+ $table-border-size: 1px;
136
+ $table-border-style: solid;
137
+ $table-border-color: #e5e5e5;
138
+ $table-cell-border-size: 1px;
139
+ $table-cell-border-color: #e5e5e5;
140
+ $table-cell-border-style: solid;
141
+ // .rounded
142
+ $table-border-radius: 4px;
143
+ // .striped
144
+ $table-stripe-bgcolor: #e5e5e5;
145
+
146
+ // Floats
147
+ $default-float: left;
148
+ $switch-float: right;
149
+
@@ -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
+ ;