gumby_on_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/javascripts/gumby/libs/extensions/gumby.comments.js +152 -0
  5. data/app/assets/javascripts/gumby/libs/extensions/gumby.fittext.js +126 -0
  6. data/app/assets/javascripts/gumby/libs/extensions/gumby.images.js +202 -0
  7. data/app/assets/javascripts/gumby/libs/extensions/gumby.inview.js +219 -0
  8. data/app/assets/javascripts/gumby/libs/extensions/gumby.parallax.js +106 -0
  9. data/app/assets/javascripts/gumby/libs/extensions/gumby.shuffle.js +198 -0
  10. data/app/assets/javascripts/gumby/libs/gumby.init.js +47 -0
  11. data/app/assets/javascripts/gumby/libs/gumby.js +258 -0
  12. data/app/assets/javascripts/gumby/libs/gumby.min.js +1 -0
  13. data/app/assets/javascripts/gumby/libs/jquery-1.10.1.min.js +6 -0
  14. data/app/assets/javascripts/gumby/libs/jquery-1.10.1.min.map +1 -0
  15. data/app/assets/javascripts/gumby/libs/jquery-2.0.2.min.js +6 -0
  16. data/app/assets/javascripts/gumby/libs/jquery-2.0.2.min.map +1 -0
  17. data/app/assets/javascripts/gumby/libs/jquery.mobile.custom.min.js +3 -0
  18. data/app/assets/javascripts/gumby/libs/modernizr-2.6.2.min.js +4 -0
  19. data/app/assets/javascripts/gumby/libs/ui/gumby.checkbox.js +101 -0
  20. data/app/assets/javascripts/gumby/libs/ui/gumby.fixed.js +240 -0
  21. data/app/assets/javascripts/gumby/libs/ui/gumby.navbar.js +115 -0
  22. data/app/assets/javascripts/gumby/libs/ui/gumby.radiobtn.js +90 -0
  23. data/app/assets/javascripts/gumby/libs/ui/gumby.retina.js +81 -0
  24. data/app/assets/javascripts/gumby/libs/ui/gumby.skiplink.js +157 -0
  25. data/app/assets/javascripts/gumby/libs/ui/gumby.tabs.js +80 -0
  26. data/app/assets/javascripts/gumby/libs/ui/gumby.toggleswitch.js +264 -0
  27. data/app/assets/javascripts/gumby/libs/ui/jquery.validation.js +142 -0
  28. data/app/assets/javascripts/gumby/main.js +23 -0
  29. data/app/assets/javascripts/gumby/plugins.js +4 -0
  30. data/app/assets/javascripts/gumby.all.js +19 -0
  31. data/app/assets/javascripts/gumby.js +13 -0
  32. data/app/assets/stylesheets/gumby/_base.scss +49 -0
  33. data/app/assets/stylesheets/gumby/_custom.scss +1 -0
  34. data/app/assets/stylesheets/gumby/_fonts.scss +28 -0
  35. data/app/assets/stylesheets/gumby/_grid.scss +339 -0
  36. data/app/assets/stylesheets/gumby/_parallax.scss +11 -0
  37. data/app/assets/stylesheets/gumby/_shame.scss +36 -0
  38. data/app/assets/stylesheets/gumby/_typography.scss +272 -0
  39. data/app/assets/stylesheets/gumby/extensions/modular-scale/lib/modular-scale.rb +128 -0
  40. data/app/assets/stylesheets/gumby/extensions/modular-scale/stylesheets/_modular-scale.scss +310 -0
  41. data/app/assets/stylesheets/gumby/extensions/sassy-math/lib/sassy-math.rb +159 -0
  42. data/app/assets/stylesheets/gumby/extensions/sassy-math/stylesheets/_math.scss +310 -0
  43. data/app/assets/stylesheets/gumby/functions/_all.scss +25 -0
  44. data/app/assets/stylesheets/gumby/functions/_breakpoints.scss +11 -0
  45. data/app/assets/stylesheets/gumby/functions/_button-size.scss +44 -0
  46. data/app/assets/stylesheets/gumby/functions/_clearfix.scss +25 -0
  47. data/app/assets/stylesheets/gumby/functions/_em.scss +11 -0
  48. data/app/assets/stylesheets/gumby/functions/_even.scss +10 -0
  49. data/app/assets/stylesheets/gumby/functions/_fade.scss +20 -0
  50. data/app/assets/stylesheets/gumby/functions/_fancytiles.scss +29 -0
  51. data/app/assets/stylesheets/gumby/functions/_fixed.scss +21 -0
  52. data/app/assets/stylesheets/gumby/functions/_forms.scss +18 -0
  53. data/app/assets/stylesheets/gumby/functions/_grid-calc.scss +82 -0
  54. data/app/assets/stylesheets/gumby/functions/_height-calc.scss +6 -0
  55. data/app/assets/stylesheets/gumby/functions/_icons.scss +35 -0
  56. data/app/assets/stylesheets/gumby/functions/_line-and-height.scss +7 -0
  57. data/app/assets/stylesheets/gumby/functions/_palette.scss +76 -0
  58. data/app/assets/stylesheets/gumby/functions/_responsivity.scss +34 -0
  59. data/app/assets/stylesheets/gumby/functions/_semantic-grid.scss +170 -0
  60. data/app/assets/stylesheets/gumby/functions/_shapes.scss +22 -0
  61. data/app/assets/stylesheets/gumby/functions/_strip-units.scss +5 -0
  62. data/app/assets/stylesheets/gumby/functions/_tooltips.scss +98 -0
  63. data/app/assets/stylesheets/gumby/functions/_typography.scss +15 -0
  64. data/app/assets/stylesheets/gumby/functions/_visibility.scss +17 -0
  65. data/app/assets/stylesheets/gumby/gumby.scss +39 -0
  66. data/app/assets/stylesheets/gumby/ui/_all.scss +11 -0
  67. data/app/assets/stylesheets/gumby/ui/_buttons.scss +154 -0
  68. data/app/assets/stylesheets/gumby/ui/_forms.scss +392 -0
  69. data/app/assets/stylesheets/gumby/ui/_icons.scss +23 -0
  70. data/app/assets/stylesheets/gumby/ui/_images.scss +23 -0
  71. data/app/assets/stylesheets/gumby/ui/_labels.scss +87 -0
  72. data/app/assets/stylesheets/gumby/ui/_navbar.scss +440 -0
  73. data/app/assets/stylesheets/gumby/ui/_tables.scss +89 -0
  74. data/app/assets/stylesheets/gumby/ui/_tabs.scss +156 -0
  75. data/app/assets/stylesheets/gumby/ui/_toggles.scss +73 -0
  76. data/app/assets/stylesheets/gumby/ui/_tooltips.scss +12 -0
  77. data/app/assets/stylesheets/gumby/ui/_video.scss +24 -0
  78. data/app/assets/stylesheets/gumby/var/_lists.scss +20 -0
  79. data/app/assets/stylesheets/gumby/var/_settings.scss +169 -0
  80. data/app/assets/stylesheets/gumby/var/icons/_entypo-icon-list.scss +286 -0
  81. data/app/assets/stylesheets/gumby/var/icons/_entypo.scss +294 -0
  82. data/app/assets/stylesheets/gumby.all.css.scss +20 -0
  83. data/app/assets/stylesheets/gumby.css.scss +37 -0
  84. data/app/controllers/gumby/application_controller.rb +4 -0
  85. data/app/helpers/gumby/application_helper.rb +4 -0
  86. data/app/views/layouts/gumby/application.html.erb +14 -0
  87. data/config/routes.rb +2 -0
  88. data/lib/gumby/engine.rb +10 -0
  89. data/lib/gumby/version.rb +3 -0
  90. data/lib/gumby.rb +4 -0
  91. data/lib/tasks/gumby_tasks.rake +20 -0
  92. data/public/fonts/gumby/icons/entypo.eot +0 -0
  93. data/public/fonts/gumby/icons/entypo.ttf +0 -0
  94. data/public/fonts/gumby/icons/entypo.woff +0 -0
  95. metadata +235 -0
@@ -0,0 +1,73 @@
1
+ /* Toggles */
2
+
3
+ .drawer {
4
+ position: relative;
5
+ width: 100%;
6
+ max-height: 0;
7
+ background: $drawer-background-color;
8
+ @include box-shadow(
9
+ inset $drawer-inner-shadow-x-offset #{-$drawer-inner-shadow-y-offset} $drawer-inner-shadow-blur $drawer-inner-shadow-color,
10
+ inset $drawer-inner-shadow-x-offset $drawer-inner-shadow-y-offset $drawer-inner-shadow-blur $drawer-inner-shadow-color);
11
+ ;
12
+ overflow: hidden;
13
+ @include transition-duration(.3s);
14
+ &.active {
15
+ height: auto;
16
+ max-height: 800px;
17
+ @include transition-duration(.5s);
18
+ }
19
+ }
20
+
21
+ .modal {
22
+ width: 100%;
23
+ height: 100%;
24
+ position: fixed;
25
+ top: 0;
26
+ left: 0;
27
+ z-index: 999999;
28
+ background: rgb(0, 0, 0);
29
+ background: $modal-overlay-color;
30
+ > .content {
31
+ width: 50%;
32
+ min-height: 50%;
33
+ max-height: 65%;
34
+ position: relative;
35
+ top: 25%;
36
+ margin: 0 auto;
37
+ padding: $gutter-in-px;
38
+ background: $modal-window-color;
39
+ z-index: 2;
40
+ overflow: auto;
41
+ @include respond(portrait-tablets) {
42
+ width: 80%;
43
+ min-height: 80%;
44
+ max-height: 80%;
45
+ top: 10%;
46
+ }
47
+ @include respond(all-phones) {
48
+ width: 92.5%;
49
+ min-height: 92.5%;
50
+ max-height: 92.5%;
51
+ top: 3.75%;
52
+ }
53
+ > .close {
54
+ position: absolute;
55
+ top: 10px;
56
+ right: 10px;
57
+ cursor: pointer;
58
+ z-index: 3;
59
+ }
60
+ }
61
+ &, > .content {
62
+ visibility: hidden;
63
+ @include opacity(0);
64
+ }
65
+ &.active {
66
+ @include transition-property(opacity);
67
+ @include transition-duration(.3s);
68
+ &, > .content {
69
+ visibility: visible;
70
+ @include opacity(1);
71
+ }
72
+ }
73
+ }
@@ -0,0 +1,12 @@
1
+ /* Tooltips */
2
+
3
+ .ttip {
4
+ @include tooltip($tt-min-width, $tt-bgcolor, $tt-position, $tt-align);
5
+ cursor: pointer;
6
+ }
7
+
8
+ .ttip:after, .ttip:before {
9
+ @include respond(portrait-tablets) {
10
+ display: none;
11
+ }
12
+ }
@@ -0,0 +1,24 @@
1
+ /* Video */
2
+
3
+ body .video {
4
+ width: 100%;
5
+ position: relative;
6
+ height: 0;
7
+ padding-bottom: 56.25%;
8
+ &.twitch, &.youtube.show_controls {
9
+ padding-top: 30px;
10
+ // Use .show_controls f you want the play/pause controls
11
+ // to show before the video plays, like on older youtube.
12
+ }
13
+ &.youtube, &.vimeo {
14
+ // Nothing goes here anymore. Both use overlay transports.
15
+ }
16
+ }
17
+
18
+ .video > video, .video > iframe, .video > object, .video > embed {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 100%;
23
+ height: 100%;
24
+ }
@@ -0,0 +1,20 @@
1
+ // Lists
2
+
3
+ // UI Coloring List
4
+ $ui-coloring:
5
+ primary $primary-color $primary-hover-color,
6
+ secondary $secondary-color $secondary-hover-color,
7
+ default $default-color $default-hover-color,
8
+ info $info-color $info-hover-color,
9
+ danger $danger-color $danger-hover-color,
10
+ warning $warning-color $warning-hover-color,
11
+ success $success-color $success-hover-color;
12
+
13
+ // UI Styling List
14
+ $styling: metro $metro-radius, pretty $button-radius;
15
+
16
+
17
+ // Form field types
18
+ $field-types: text, email, password, numeric, search, combined, prepend, append, double;
19
+
20
+ $field-sizes: xnarrow, narrow, normal, wide, xwide, xxwide;
@@ -0,0 +1,169 @@
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: 0; // 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
+ // Form Elements
120
+ $form-text-input-stroke: #ccc;
121
+ $form-text-input-background: $white;
122
+ $form-text-input-placeholder-color: $default-color;
123
+ $form-text-input-color: #555;
124
+
125
+ $form-select-stroke: #ccc;
126
+ $form-select-background: $white;
127
+ $form-select-color: #555;
128
+
129
+ // Tabs
130
+ $tab-height: 42px;
131
+
132
+ // Navigation
133
+ $navcontain-height: 80px; // makes space at the top of a document for when using a fixed nav
134
+
135
+ // Drawers & Modals
136
+ $modal-overlay-color: rgba(0, 0, 0, 0.8);
137
+ $modal-window-color: $white;
138
+ $drawer-background-color: #3e4144;
139
+ $drawer-inner-shadow-x-offset: 0;
140
+ $drawer-inner-shadow-y-offset: 2px;
141
+ $drawer-inner-shadow-blur: 5px;
142
+ $drawer-inner-shadow-color: #313436;
143
+
144
+ // Tables
145
+ $table-bgcolor: #fff;
146
+ $table-thead-bgcolor: $primary-color;
147
+ $table-row-first-cell-font-weight: bold;
148
+ $table-border-size: 1px;
149
+ $table-border-style: solid;
150
+ $table-border-color: #e5e5e5;
151
+ $table-cell-border-size: 1px;
152
+ $table-cell-border-color: #e5e5e5;
153
+ $table-cell-border-style: solid;
154
+ // .rounded
155
+ $table-border-radius: 4px;
156
+ // .striped
157
+ $table-stripe-bgcolor: #e5e5e5;
158
+
159
+ // Tooltips
160
+ $tt-min-width: 130px;
161
+ $tt-bgcolor: $primary-color;
162
+ $tt-position: top; // position: top / bottom / left / right
163
+ $tt-align: left; // text and caret alignment: left / right
164
+ $tt-pretty: yes; // yes = pretty / no = flat
165
+
166
+ // Floats
167
+ $default-float: left;
168
+ $switch-float: right;
169
+
@@ -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
+ ;