cimma 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/lib/cimma.rb +4 -0
  2. data/stylesheets/_cimma.scss +6 -0
  3. data/stylesheets/cimma/_baseline.scss +5 -0
  4. data/stylesheets/cimma/_util.scss +4 -0
  5. data/stylesheets/cimma/baseline/_core.scss +5 -0
  6. data/stylesheets/cimma/baseline/_forms.scss +2 -0
  7. data/stylesheets/cimma/baseline/_html5.scss +1 -0
  8. data/stylesheets/cimma/baseline/_lists.scss +1 -0
  9. data/stylesheets/cimma/baseline/_tables.scss +2 -0
  10. data/stylesheets/cimma/baseline/_typography.scss +4 -0
  11. data/stylesheets/cimma/baseline/forms/_core.scss +141 -0
  12. data/stylesheets/cimma/baseline/forms/_status-backgrounds.scss +20 -0
  13. data/stylesheets/cimma/baseline/html5/_core.scss +25 -0
  14. data/stylesheets/cimma/baseline/lists/_core.scss +11 -0
  15. data/stylesheets/cimma/baseline/tables/_adaptive.scss +83 -0
  16. data/stylesheets/cimma/baseline/tables/_core.scss +52 -0
  17. data/stylesheets/cimma/baseline/tables/_extra-wide.scss +9 -0
  18. data/stylesheets/cimma/baseline/typography/_annotations.scss +44 -0
  19. data/stylesheets/cimma/baseline/typography/_core.scss +51 -0
  20. data/stylesheets/cimma/baseline/typography/_headlines.scss +30 -0
  21. data/stylesheets/cimma/baseline/typography/_quotes.scss +17 -0
  22. data/stylesheets/cimma/misc/_effects.scss +32 -0
  23. data/stylesheets/cimma/widgets/_buttons.scss +196 -0
  24. data/stylesheets/cimma/widgets/_dialog-boxes.scss +129 -0
  25. data/stylesheets/cimma/widgets/_dialog-boxes2.scss +238 -0
  26. data/stylesheets/cimma/widgets/_dialog.scss +85 -0
  27. data/stylesheets/cimma/widgets/_font-awesome.scss +264 -0
  28. data/stylesheets/cimma/widgets/_test.scss +31 -0
  29. data/templates/dialog-boxes/example.scss +42 -0
  30. data/templates/dialog-boxes/example2.scss +29 -0
  31. data/templates/dialog-boxes/images/old/dialog-error.png +0 -0
  32. data/templates/dialog-boxes/images/old/dialog-info.png +0 -0
  33. data/templates/dialog-boxes/images/old/dialog-success.png +0 -0
  34. data/templates/dialog-boxes/images/old/dialog-validation.png +0 -0
  35. data/templates/dialog-boxes/images/old/dialog-warning.png +0 -0
  36. data/templates/dialog-boxes/images/spritemap - 1pt.svg +76 -0
  37. data/templates/dialog-boxes/images/spritemap.png +0 -0
  38. data/templates/dialog-boxes/images/spritemap.svg +73 -0
  39. data/templates/dialog-boxes/manifest.rb +7 -0
  40. data/templates/drop-menu/drop-menu.js +124 -0
  41. data/templates/drop-menu/manifest.rb +7 -0
  42. data/templates/forms/images/spritemap - Copy.svg +66 -0
  43. data/templates/forms/images/spritemap.svg +104 -0
  44. data/templates/forms/manifest.rb +7 -0
  45. data/templates/project/_cimma.scss +3 -0
  46. data/templates/project/_variables.scss +24 -0
  47. data/templates/project/manifest.rb +13 -0
  48. metadata +140 -0
@@ -0,0 +1,238 @@
1
+ // --------------------------------------------------------------------------------
2
+ // Dialog boxes: attractive, scalable dialog boxes
3
+ // --------------------------------------------------------------------------------
4
+
5
+ // Spritemaps are assumed to be horizontal and the sprites are expected to be in the same order defined
6
+ // If you're using an SVG as a background, pass it as a list with a bitmap image placed last
7
+
8
+ @import "compass/css3/background-size";
9
+
10
+ // ---------- Color/image definitions
11
+ $dialog-namespace: d !default;
12
+ $dialog-icon-width: 24px !default;
13
+ $dialog-icon-height: 24px !default;
14
+ $dialog-padding: 1em !default;
15
+ $dialog-border: 2px solid !default;
16
+ $dialog-fc-multiplier: 1.4 !default;
17
+
18
+ // class name | color | bg-color | image
19
+ $dialog-attributes:
20
+ ( help #2E3192 #B9C2E1 url(icons/dialog-help.png) // yellow
21
+ , info #005FB4 #BDE5F8 url(icons/dialog-info.png) // blue
22
+ , success #6F7D03 #DFE5B0 url(icons/dialog-success.png) // green
23
+ , warning #A0410D #EFBBA0 url(icons/dialog-warning.png) // orange
24
+ , error #C41616 #F8AAAA url(icons/dialog-error.png) // red
25
+ ) !default;
26
+
27
+ // ---------- Container styling
28
+ @mixin dialog-box-simple($tag, $attributes: $dialog-attributes, $ns: $dialog-namespace) {
29
+ $collector: ();
30
+
31
+ @each $a in $attributes {
32
+ $name: nth($a, 1);
33
+ $color: nth($a, 2);
34
+ $bg: nth($a, 3);
35
+
36
+ $cur: append-selector("#{$tag}", ".#{$name}");
37
+
38
+ %#{$ns}-#{$name}-color {
39
+ @include dialog-common-color($color, $bg);
40
+ }
41
+
42
+ #{$cur} {
43
+ @extend %#{$ns}-#{$name}-color;
44
+ }
45
+
46
+ $collector: append($collector, $cur, comma);
47
+ }
48
+
49
+ #{$collector} {
50
+ @content;
51
+ }
52
+ }
53
+
54
+ @mixin dialog-box-sprite($spritemap, $container: (div, aside), $single: p, $attributes: $dialog-attributes, $ns: $dialog-namespace, $icon-width: $dialog-icon-width, $icon-height: $dialog-icon-height, $padding: $dialog-padding, $border: $dialog-border, $fc-multiplier: $dialog-fc-multiplier) {
55
+ $col-container: ();
56
+ $col-single: ();
57
+
58
+ $offset: 0;
59
+ @each $a in $attributes {
60
+ $name: nth($a, 1);
61
+ $color: nth($a, 2);
62
+ $bg: nth($a, 3);
63
+
64
+ %#{$ns}-#{$name}-color {
65
+ @include dialog-common-color($color, $bg, $border);
66
+ }
67
+
68
+ $cur-container: append-selector("#{$container}", ".#{$name}");
69
+ $cur-single: append-selector("#{$single}", ".#{$name}");
70
+
71
+ #{$cur-single}, #{$cur-container} {
72
+ @extend %#{$ns}-#{$name}-color;
73
+ }
74
+
75
+ #{$cur-single}, #{nest("#{$cur-container}", "> :first-child")} {
76
+ &:before {
77
+ background-position: $offset 0;
78
+ }
79
+ }
80
+
81
+ $col-container: append($col-container, $cur-container, comma);
82
+ $col-single: append($col-single, $cur-single, comma);
83
+ $offset: $offset - $icon-width;
84
+ }
85
+
86
+ #{$col-container} {
87
+ @include dialog-container-sprite($padding, $fc-multiplier);
88
+ }
89
+
90
+ #{$col-single} {
91
+ @include dialog-single-sprite($padding);
92
+ }
93
+
94
+ #{$col-container}, #{$col-single} {
95
+ @content;
96
+ }
97
+
98
+ #{nest("#{$col-container}", "> :first-child")}, #{$col-single} {
99
+ &:before {
100
+ @include dialog-icon-sprite($icon-width, $icon-height, length($dialog-attributes) * $icon-width $icon-height);
101
+ @if length($spritemap) > 1 {
102
+ // http://www.broken-links.com/2010/06/14/using-svg-in-backgrounds-with-png-fallback/
103
+ background-image: nth($spritemap, length($spritemap));
104
+ background-image: none, $spritemap; // hack to hide SVGs from IE
105
+ } @else {
106
+ background-image: $spritemap;
107
+ }
108
+ }
109
+ }
110
+ }
111
+
112
+ @mixin dialog-box-inline($container: (div, aside), $single: p, $attributes: $dialog-attributes, $ns: $dialog-namespace) {
113
+ $col-container: ();
114
+ $col-single: ();
115
+
116
+ @each $a in $attributes {
117
+ $name: nth($a, 1);
118
+ $color: nth($a, 2);
119
+ $bg: nth($a, 3);
120
+ $image: nth($a, 4);
121
+
122
+ %#{$ns}-#{$name}-color {
123
+ @include dialog-common-color($color, $bg, $border);
124
+ }
125
+
126
+ %#{$ns}-#{$name}-bg {
127
+ background-image: $image;
128
+ // possibly also add background-position here
129
+ }
130
+
131
+ $cur-container: append-selector("#{$container}", ".#{$name}");
132
+ $cur-single: append-selector("#{$single}", ".#{$name}");
133
+
134
+ #{$cur-single}, #{$cur-container} {
135
+ @extend %#{$ns}-#{$name}-color;
136
+ }
137
+
138
+ #{$cur-single}, #{nest("#{$cur-container}", "> :first-child")} {
139
+ background-image: $image;
140
+ }
141
+ $col-container: append($col-container, $cur-container, comma);
142
+ $col-single: append($col-single, $cur-single, comma);
143
+ }
144
+
145
+ #{$col-container} {
146
+ @include dialog-container-inline;
147
+ }
148
+
149
+ #{$col-single} {
150
+ @include dialog-single-inline;
151
+ }
152
+
153
+ #{$col-container}, #{$col-single} {
154
+ @content;
155
+ }
156
+
157
+ #{nest("#{$col-container}", "> :first-child")}, #{$col-single} {
158
+ @include dialog-icon-inline;
159
+ }
160
+ }
161
+
162
+ // -------------------------------------------------------------------------------- Common styling
163
+
164
+ @mixin dialog-single-common {
165
+ font-weight: bold;
166
+ }
167
+
168
+ @mixin dialog-container-common($fc-multiplier: $dialog-fc-multiplier) {
169
+ overflow: hidden;
170
+ > :first-child {
171
+ margin-top: 0;
172
+ font-size: $fc-multiplier * 1em;
173
+ line-height: 1em;
174
+ @content;
175
+ }
176
+ > :last-child { margin-bottom: 0 }
177
+ > * { color: inherit; position: relative; }
178
+ }
179
+
180
+ @mixin dialog-common-color($color, $bg, $border: $dialog-border) {
181
+ color: $color;
182
+ background-color: $bg;
183
+ // border: $border;
184
+ }
185
+
186
+ // -------------------------------------------------------------------------------- Spritemaps
187
+
188
+ @mixin dialog-icon-sprite($icon-width: $dialog-icon-width, $icon-height: $dialog-icon-height, $bg-size: length($dialog-attributes) * $dialog-icon-width $dialog-icon-height) {
189
+ content: " ";
190
+ text-indent: -10em;
191
+ display: inline-block;
192
+ width: $icon-width;
193
+ height: $icon-height;
194
+ vertical-align: middle;
195
+ background-repeat: no-repeat;
196
+ @include background-size($bg-size);
197
+ }
198
+
199
+ @mixin dialog-single-sprite($padding: $dialog-padding) {
200
+ @include dialog-single-common;
201
+ // padding-left: $padding;
202
+
203
+ &:before {
204
+ margin-right: $padding;
205
+ }
206
+ }
207
+
208
+ @mixin dialog-container-sprite($padding: $dialog-padding, $fc-multiplier: $dialog-fc-multiplier) {
209
+ @include dialog-container-common($fc-multiplier) {
210
+ &:before {
211
+ margin-right: $padding / $fc-multiplier;
212
+ }
213
+ }
214
+ }
215
+
216
+ // -------------------------------------------------------------------------------- Inline icons
217
+
218
+ @mixin dialog-icon-inline($icon-width: $dialog-icon-width, $icon-height: $dialog-icon-height) {
219
+ background-repeat: no-repeat;
220
+ @include background-size($icon-width $icon-height);
221
+ }
222
+
223
+ @mixin dialog-single-inline($icon-width: $dialog-icon-width, $padding: $dialog-padding) {
224
+ @include dialog-single-common;
225
+
226
+ @if (not comparabe($icon-width, $padding)) {
227
+ @warn "Icon width isn't comparable to the provided padding size, falling back on padding size";
228
+ }
229
+ padding-left: if(not comparabe($icon-width, $padding), $padding, $icon-width) + ($padding * 2);
230
+ background-position: $padding center;
231
+ }
232
+
233
+ @mixin dialog-container-inline($padding: $dialog-padding, $icon-width: $dialog-padding, $fc-multiplier: $dialog-fc-multiplier) {
234
+ @include dialog-container-common($fc-multiplier) {
235
+ padding-left: $icon-width + ($padding / $fc-multiplier);
236
+ background-position: left center;
237
+ }
238
+ }
@@ -0,0 +1,85 @@
1
+ @import "compass/utilities/color/contrast";
2
+
3
+ // ====================================================================================================
4
+ // | Colors
5
+ // ====================================================================================================
6
+
7
+ $background-color: white !default;
8
+ $foreground-color: black !default;
9
+
10
+ // name dark light
11
+ $dialog-help: #2E3192 #B9C2E1 !default; // purple
12
+ $dialog-info: #005FB4 #BDE5F8 !default; // blue
13
+ $dialog-success: #6F7D03 #DFE5B0 !default; // green
14
+ $dialog-warning: #A0410D #EFBBA0 !default; // orange
15
+ $dialog-error: #C41616 #F8AAAA !default; // red
16
+
17
+ $dialog-attributes:
18
+ ( help nth($dialog-help, 1) nth($dialog-help, 2)
19
+ , info nth($dialog-info, 1) nth($dialog-info, 2)
20
+ , success nth($dialog-success, 1) nth($dialog-success, 2)
21
+ , warning nth($dialog-warning, 1) nth($dialog-warning, 2)
22
+ , error nth($dialog-error, 1) nth($dialog-error, 2)
23
+ ) !default;
24
+
25
+ // ====================================================================================================
26
+ // | Extend Classes
27
+ // ====================================================================================================
28
+
29
+ @import "buttons";
30
+
31
+ @each $a in $dialog-attributes {
32
+ $name: nth($a, 1);
33
+ $color: nth($a, 2);
34
+ $bg: nth($a, 3);
35
+
36
+ // %dialog-colors.#{$name} {
37
+ // color: $color;
38
+ // background-color: $bg;
39
+ // }
40
+
41
+ %dialog-colors-inverted.#{$name} {
42
+ color: $bg;
43
+ background-color: $color;
44
+ }
45
+
46
+ %dialog-colors-light.#{$name} {
47
+ background-color: $bg;
48
+ color: contrast-color($color);
49
+ }
50
+
51
+ %dialog-colors-dark.#{$name} {
52
+ background-color: $color;
53
+ color: contrast-color($color);
54
+ }
55
+
56
+ %badge-colors.#{$name} {
57
+ background-color: $color;
58
+ color: $background-color;
59
+ }
60
+
61
+ %button-colors.#{$name} {
62
+ @include button($base: $bg) {
63
+ @include button-text($color, inset);
64
+
65
+ @include button-states;
66
+ }
67
+ }
68
+
69
+ %button-colors-inverted.#{$name} {
70
+ @include button($base: $color) {
71
+ @include button-text($bg, inset);
72
+
73
+ @include button-states;
74
+ }
75
+ }
76
+
77
+ %button-colors-faded.#{$name} {
78
+ @include button($base: fade($bg, 10%)) {
79
+ // @include button-text($color, inset);
80
+ color: #CCC;
81
+
82
+ @include button-states;
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,264 @@
1
+ // http://fortawesome.github.com/Font-Awesome/
2
+ // This file is compatible with FontAwesome 2.0
3
+
4
+ $font-path: 'fonts/' !default;
5
+
6
+ @font-face {
7
+ font-family: 'FontAwesome';
8
+ src: url(#{$font-path}fontawesome-webfont.eot);
9
+ src: url(#{$font-path}fontawesome-webfont.eot?#iefix) format('embedded-opentype'),
10
+ url(#{$font-path}fontawesome-webfont.woff) format('woff'),
11
+ url(#{$font-path}fontawesome-webfont.ttf) format('truetype'),
12
+ url(#{$font-path}fontawesome-webfont.svgz#FontAwesomeRegular) format('svg'),
13
+ url(#{$font-path}fontawesome-webfont.svg#FontAwesomeRegular) format('svg');
14
+ font-weight : normal;
15
+ font-style : normal;
16
+ }
17
+
18
+ // Icons must be a list of lists:
19
+ // ($style-name1 $icon-character1, $style-name2 $icon-character2)
20
+ @mixin awesome-icons($icons) {
21
+ *[class^="preicon"]:before {
22
+ font-family: FontAwesome;
23
+ padding-right: .25em;
24
+ }
25
+
26
+ *[class^="posticon"]:after {
27
+ font-family: FontAwesome;
28
+ padding-left: .25em;
29
+ }
30
+
31
+ @each $i in $icons {
32
+ .preicon-#{nth($i, 1)}:before, .posticon-#{nth($i, 1)}:after {
33
+ content: nth($i, 2);
34
+ }
35
+ }
36
+ }
37
+
38
+ $icon-glass: "\f000";
39
+ $icon-music: "\f001";
40
+ $icon-search: "\f002";
41
+ $icon-envelope: "\f003";
42
+ $icon-heart: "\f004";
43
+ $icon-star: "\f005";
44
+ $icon-star-empty: "\f006";
45
+ $icon-user: "\f007";
46
+ $icon-film: "\f008";
47
+ $icon-th-large: "\f009";
48
+ $icon-th: "\f00a";
49
+ $icon-th-list: "\f00b";
50
+ $icon-ok: "\f00c";
51
+ $icon-remove: "\f00d";
52
+ $icon-zoom-in: "\f00e";
53
+
54
+ $icon-zoom-out: "\f010";
55
+ $icon-off: "\f011";
56
+ $icon-signal: "\f012";
57
+ $icon-cog: "\f013";
58
+ $icon-trash: "\f014";
59
+ $icon-home: "\f015";
60
+ $icon-file: "\f016";
61
+ $icon-time: "\f017";
62
+ $icon-road: "\f018";
63
+ $icon-download-alt: "\f019";
64
+ $icon-download: "\f01a";
65
+ $icon-upload: "\f01b";
66
+ $icon-inbox: "\f01c";
67
+ $icon-play-circle: "\f01d";
68
+ $icon-repeat: "\f01e";
69
+
70
+ // \f020 doesn't work in Safari, all shifted one down
71
+ $icon-refresh: "\f021";
72
+ $icon-list-alt: "\f022";
73
+ $icon-lock: "\f023";
74
+ $icon-flag: "\f024";
75
+ $icon-headphones: "\f025";
76
+ $icon-volume-off: "\f026";
77
+ $icon-volume-down: "\f027";
78
+ $icon-volume-up: "\f028";
79
+ $icon-qrcode: "\f029";
80
+ $icon-barcode: "\f02a";
81
+ $icon-tag: "\f02b";
82
+ $icon-tags: "\f02c";
83
+ $icon-book: "\f02d";
84
+ $icon-bookmark: "\f02e";
85
+ $icon-print: "\f02f";
86
+
87
+ $icon-camera: "\f030";
88
+ $icon-font: "\f031";
89
+ $icon-bold: "\f032";
90
+ $icon-italic: "\f033";
91
+ $icon-text-height: "\f034";
92
+ $icon-text-width: "\f035";
93
+ $icon-align-left: "\f036";
94
+ $icon-align-center: "\f037";
95
+ $icon-align-right: "\f038";
96
+ $icon-align-justify: "\f039";
97
+ $icon-list: "\f03a";
98
+ $icon-indent-left: "\f03b";
99
+ $icon-indent-right: "\f03c";
100
+ $icon-facetime-video: "\f03d";
101
+ $icon-picture: "\f03e";
102
+
103
+ $icon-pencil: "\f040";
104
+ $icon-map-marker: "\f041";
105
+ $icon-adjust: "\f042";
106
+ $icon-tint: "\f043";
107
+ $icon-edit: "\f044";
108
+ $icon-share: "\f045";
109
+ $icon-check: "\f046";
110
+ $icon-move: "\f047";
111
+ $icon-step-backward: "\f048";
112
+ $icon-fast-backward: "\f049";
113
+ $icon-backward: "\f04a";
114
+ $icon-play: "\f04b";
115
+ $icon-pause: "\f04c";
116
+ $icon-stop: "\f04d";
117
+ $icon-forward: "\f04e";
118
+
119
+ $icon-fast-forward: "\f050";
120
+ $icon-step-forward: "\f051";
121
+ $icon-eject: "\f052";
122
+ $icon-chevron-left: "\f053";
123
+ $icon-chevron-right: "\f054";
124
+ $icon-plus-sign: "\f055";
125
+ $icon-minus-sign: "\f056";
126
+ $icon-remove-sign: "\f057";
127
+ $icon-ok-sign: "\f058";
128
+ $icon-question-sign: "\f059";
129
+ $icon-info-sign: "\f05a";
130
+ $icon-screenshot: "\f05b";
131
+ $icon-remove-circle: "\f05c";
132
+ $icon-ok-circle: "\f05d";
133
+ $icon-ban-circle: "\f05e";
134
+
135
+ $icon-arrow-left: "\f060";
136
+ $icon-arrow-right: "\f061";
137
+ $icon-arrow-up: "\f062";
138
+ $icon-arrow-down: "\f063";
139
+ $icon-share-alt: "\f064";
140
+ $icon-resize-full: "\f065";
141
+ $icon-resize-small: "\f066";
142
+ $icon-plus: "\f067";
143
+ $icon-minus: "\f068";
144
+ $icon-asterisk: "\f069";
145
+ $icon-exclamation-sign: "\f06a";
146
+ $icon-gift: "\f06b";
147
+ $icon-leaf: "\f06c";
148
+ $icon-fire: "\f06d";
149
+ $icon-eye-open: "\f06e";
150
+
151
+ $icon-eye-close: "\f070";
152
+ $icon-warning-sign: "\f071";
153
+ $icon-plane: "\f072";
154
+ $icon-calendar: "\f073";
155
+ $icon-random: "\f074";
156
+ $icon-exchange: $icon-random;
157
+ $icon-comment: "\f075";
158
+ $icon-magnet: "\f076";
159
+ $icon-chevron-up: "\f077";
160
+ $icon-chevron-down: "\f078";
161
+ $icon-retweet: "\f079";
162
+ $icon-shopping-cart: "\f07a";
163
+ $icon-folder-close: "\f07b";
164
+ $icon-folder-open: "\f07c";
165
+ $icon-resize-vertical: "\f07d";
166
+ $icon-resize-horizontal: "\f07e";
167
+
168
+ $icon-bar-chart: "\f080";
169
+ $icon-twitter-sign: "\f081";
170
+ $icon-facebook-sign: "\f082";
171
+ $icon-camera-retro: "\f083";
172
+ $icon-key: "\f084";
173
+ $icon-cogs: "\f085";
174
+ $icon-comments: "\f086";
175
+ $icon-thumbs-up: "\f087";
176
+ $icon-thumbs-down: "\f088";
177
+ $icon-star-half: "\f089";
178
+ $icon-heart-empty: "\f08a";
179
+ $icon-signout: "\f08b";
180
+ $icon-linkedin-sign: "\f08c";
181
+ $icon-pushpin: "\f08d";
182
+ $icon-external-link: "\f08e";
183
+
184
+ $icon-signin: "\f090";
185
+ $icon-trophy: "\f091";
186
+ $icon-github-sign: "\f092";
187
+ $icon-upload-alt: "\f093";
188
+ $icon-lemon: "\f094";
189
+ $icon-phone: "\f095";
190
+ $icon-check-empty: "\f096";
191
+ $icon-bookmark-empty: "\f097";
192
+ $icon-phone-sign: "\f098";
193
+ $icon-twitter: "\f099";
194
+ $icon-facebook: "\f09a";
195
+ $icon-github: "\f09b";
196
+ $icon-unlock: "\f09c";
197
+ $icon-credit-card: "\f09d";
198
+ $icon-rss: "\f09e";
199
+
200
+ $icon-hdd: "\f0a0";
201
+ $icon-bullhorn: "\f0a1";
202
+ $icon-bell: "\f0a2";
203
+ $icon-certificate: "\f0a3";
204
+ $icon-hand-right: "\f0a4";
205
+ $icon-hand-left: "\f0a5";
206
+ $icon-hand-up: "\f0a6";
207
+ $icon-hand-down: "\f0a7";
208
+ $icon-circle-arrow-left: "\f0a8";
209
+ $icon-circle-arrow-right: "\f0a9";
210
+ $icon-circle-arrow-up: "\f0aa";
211
+ $icon-circle-arrow-down: "\f0ab";
212
+ $icon-globe: "\f0ac";
213
+ $icon-wrench: "\f0ad";
214
+ $icon-tasks: "\f0ae";
215
+
216
+ $icon-filter: "\f0b0";
217
+ $icon-briefcase: "\f0b1";
218
+ $icon-fullscreen: "\f0b2";
219
+
220
+ $icon-group: "\f0c0";
221
+ $icon-link: "\f0c1";
222
+ $icon-cloud: "\f0c2";
223
+ $icon-beaker: "\f0c3";
224
+ $icon-cut: "\f0c4";
225
+ $icon-copy: "\f0c5";
226
+ $icon-paper-clip: "\f0c6";
227
+ $icon-save: "\f0c7";
228
+ $icon-sign-blank: "\f0c8";
229
+ $icon-reorder: "\f0c9";
230
+ $icon-list-ul: "\f0ca";
231
+ $icon-list-ol: "\f0cb";
232
+ $icon-strikethrough: "\f0cc";
233
+ $icon-underline: "\f0cd";
234
+ $icon-table: "\f0ce";
235
+
236
+ $icon-magic: "\f0d0";
237
+ $icon-truck: "\f0d1";
238
+ $icon-pinterest: "\f0d2";
239
+ $icon-pinterest-sign: "\f0d3";
240
+ $icon-google-plus-sign: "\f0d4";
241
+ $icon-google-plus: "\f0d5";
242
+ $icon-money: "\f0d6";
243
+ $icon-caret-down: "\f0d7";
244
+ $icon-caret-up: "\f0d8";
245
+ $icon-caret-left: "\f0d9";
246
+ $icon-caret-right: "\f0da";
247
+ $icon-columns: "\f0db";
248
+ $icon-sort: "\f0dc";
249
+ $icon-sort-down: "\f0dd";
250
+ $icon-sort-up: "\f0de";
251
+
252
+ $icon-envelope-alt: "\f0e0";
253
+ $icon-linkedin: "\f0e1";
254
+ $icon-undo: "\f0e2";
255
+ $icon-legal: "\f0e3";
256
+ $icon-dashboard: "\f0e4";
257
+ $icon-comment-alt: "\f0e5";
258
+ $icon-comments-alt: "\f0e6";
259
+ $icon-bolt: "\f0e7";
260
+ $icon-sitemap: "\f0e8";
261
+ $icon-umbrella: "\f0e9";
262
+ $icon-paste: "\f0ea";
263
+
264
+ $icon-user-md: "\f200";