stipe 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/README.md +13 -0
  2. data/lib/stipe.rb +4 -0
  3. data/stylesheets/stipe/_buttons.scss +0 -0
  4. data/stylesheets/stipe/_color.scss +7 -0
  5. data/stylesheets/stipe/_forms.scss +24 -0
  6. data/stylesheets/stipe/_gradients.scss +11 -0
  7. data/stylesheets/stipe/_grid.scss +59 -0
  8. data/stylesheets/stipe/_media.scss +14 -0
  9. data/stylesheets/stipe/_stipe.scss +13 -0
  10. data/stylesheets/stipe/_typography.scss +44 -0
  11. data/stylesheets/stipe/buttons/_extends.scss +13 -0
  12. data/stylesheets/stipe/buttons/doc-src/buttons.md +3 -0
  13. data/stylesheets/stipe/buttons/lib/_cupid-green.scss +54 -0
  14. data/stylesheets/stipe/buttons/lib/_minimal.scss +36 -0
  15. data/stylesheets/stipe/color/_color_math.scss +61 -0
  16. data/stylesheets/stipe/color/_default_color_pallet.scss +56 -0
  17. data/stylesheets/stipe/color/_extends.scss +222 -0
  18. data/stylesheets/stipe/color/_grayscale_math.scss +10 -0
  19. data/stylesheets/stipe/forms/_default.scss +11 -0
  20. data/stylesheets/stipe/forms/_extends.scss +103 -0
  21. data/stylesheets/stipe/forms/_mixins.scss +32 -0
  22. data/stylesheets/stipe/gradients/_extends.scss +48 -0
  23. data/stylesheets/stipe/gradients/mixins/_area_51.scss +53 -0
  24. data/stylesheets/stipe/gradients/mixins/_linear_gradient_bkgimage.scss +43 -0
  25. data/stylesheets/stipe/grid/_extends.scss +221 -0
  26. data/stylesheets/stipe/grid/_mixins.scss +66 -0
  27. data/stylesheets/stipe/grid/lib/_grid_background.scss +10 -0
  28. data/stylesheets/stipe/grid/lib/_grid_margin.scss +23 -0
  29. data/stylesheets/stipe/grid/lib/_grid_placement.scss +66 -0
  30. data/stylesheets/stipe/grid/lib/_push_logic.scss +52 -0
  31. data/stylesheets/stipe/grid/lib/_the_grid.scss +98 -0
  32. data/stylesheets/stipe/resets/_eric_meyer.scss +48 -0
  33. data/stylesheets/stipe/resets/_toadstool.scss +212 -0
  34. data/stylesheets/stipe/stipe/_extends.scss +42 -0
  35. data/stylesheets/stipe/stipe/_mixins.scss +291 -0
  36. data/stylesheets/stipe/toadstool/_buttons.scss +29 -0
  37. data/stylesheets/stipe/toadstool/_config.scss +228 -0
  38. data/stylesheets/stipe/toadstool/_design.scss +52 -0
  39. data/stylesheets/stipe/toadstool/_forms.scss +19 -0
  40. data/stylesheets/stipe/toadstool/_grids.scss +93 -0
  41. data/stylesheets/stipe/toadstool/_modules.scss +3 -0
  42. data/stylesheets/stipe/toadstool/_typography.scss +109 -0
  43. data/stylesheets/stipe/toadstool/_ui_manifest.scss +39 -0
  44. data/stylesheets/stipe/toadstool/_ui_patterns.scss +2 -0
  45. data/stylesheets/stipe/toadstool/_web_fonts.scss +32 -0
  46. data/stylesheets/stipe/toadstool/modules/_footer.scss +6 -0
  47. data/stylesheets/stipe/toadstool/modules/_header.scss +41 -0
  48. data/stylesheets/stipe/toadstool/modules/_main_nav.scss +46 -0
  49. data/stylesheets/stipe/toadstool/ui_patterns/_emBox.scss +16 -0
  50. data/stylesheets/stipe/toadstool/ui_patterns/_prettify.scss +118 -0
  51. data/stylesheets/stipe/typography/_default.scss +66 -0
  52. data/stylesheets/stipe/typography/_extends.scss +86 -0
  53. data/stylesheets/stipe/typography/_functions.scss +22 -0
  54. data/stylesheets/stipe/typography/_mixins.scss +105 -0
  55. data/stylesheets/stipe/typography/web_fonts/_font_awesome.scss +4 -0
  56. data/stylesheets/stipe/typography/web_fonts/_font_awesome_pua.scss +231 -0
  57. data/stylesheets/stipe/typography/web_fonts/_zocial.scss +3 -0
  58. data/stylesheets/stipe/typography/web_fonts/_zocial_characters.scss +54 -0
  59. metadata +135 -0
@@ -0,0 +1,16 @@
1
+ // UI pattern to support the visual em value of the view
2
+
3
+ .emBox {
4
+ position: fixed;
5
+ padding: em(5) em(10);
6
+ background: $bravo_gray;
7
+ color: $white;
8
+ font-weight: bold;
9
+ font-size: 1em;
10
+ bottom: 0;
11
+ left: 0;
12
+ border-radius: 0 em(5) 0 0;
13
+ .screen-width {
14
+ @extend %icon-fullscreen;
15
+ }
16
+ }
@@ -0,0 +1,118 @@
1
+ ///////////// prettify styles //////////////////
2
+ // ----------------------------------------
3
+ // *
4
+ // * Derived from einaros's Sons of Obsidian theme at
5
+ // * http://studiostyl.es/schemes/son-of-obsidian by
6
+ // * Alex Ford of CodeTunnel:
7
+ // * http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme
8
+ // *
9
+
10
+ .str
11
+ {
12
+ color: #EC7600;
13
+ }
14
+ .kwd
15
+ {
16
+ color: #9763C7;
17
+ }
18
+ .com
19
+ {
20
+ color: #93C763;
21
+ }
22
+ .typ
23
+ {
24
+ color: #678CB1;
25
+ }
26
+ .lit
27
+ {
28
+ color: #FACD22;
29
+ }
30
+ .pun
31
+ {
32
+ color: #F1F2F3;
33
+ }
34
+ .pln
35
+ {
36
+ color: #F1F2F3;
37
+ }
38
+ .tag
39
+ {
40
+ color: #8AC763;
41
+ }
42
+ .atn
43
+ {
44
+ color: #E0E2E4;
45
+ }
46
+ .atv
47
+ {
48
+ color: #EC7600;
49
+ }
50
+ .dec
51
+ {
52
+ color: purple;
53
+ }
54
+ pre.prettyprint
55
+ {
56
+ font-size: em(14);
57
+ @media #{$mobile} {
58
+ font-size: em(14);
59
+ }
60
+ }
61
+ ol.linenums
62
+ {
63
+ margin-top: 0;
64
+ margin-bottom: 0;
65
+ }
66
+ .example_code {
67
+ background: $bravo_gray;
68
+ @include border_radius(em(5));
69
+ padding: em(10) em(10) 0 em(20);
70
+ margin-bottom: em(20);
71
+ @include grid(6.125);
72
+ line-height: 1.5em;
73
+
74
+
75
+
76
+ @media #{$desktop} {
77
+ &:nth-of-type(odd) {
78
+ margin-left: 0;
79
+ }
80
+ &:nth-of-type(even) {
81
+ margin-right: 0;
82
+ }
83
+ }
84
+
85
+ @media #{$tablet_portrait} {
86
+ @include grid(10, $grid_context: 10);
87
+ padding-right: em(10);
88
+ }
89
+
90
+ @media #{$mobile} {
91
+ @include grid(4, $grid_context: 4);
92
+ padding-right: em(10);
93
+ }
94
+
95
+
96
+
97
+ p {
98
+ color: $fox_gray;
99
+ float: right;
100
+ margin: em(10) em(10) em(5) 0;
101
+ @media #{$mobile} {
102
+ margin-right: 0;
103
+ }
104
+ }
105
+ }
106
+
107
+ .instructional_example {
108
+ @extend .example_code;
109
+ background: transparent;
110
+ }
111
+
112
+ li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9
113
+ {
114
+ color: #555;
115
+ }
116
+ li.L1, li.L3, li.L5, li.L7, li.L9 {
117
+ background: #3F3F3F;
118
+ }
@@ -0,0 +1,66 @@
1
+ /* typography defauts */
2
+
3
+ html {
4
+ font: em($font_size, 16) $primary_font_family;
5
+ line-height: baseline($font_size);
6
+ color: $primary_text;
7
+ }
8
+
9
+ h1 {
10
+ //font-size: 2em; // user agent default
11
+ @extend %headings_1;
12
+ }
13
+
14
+ h2 {
15
+ //font-size: 1.5em; // user agent default
16
+ @extend %headings_2;
17
+ }
18
+
19
+ h3 {
20
+ //font-size: 1.17em; // user agent default
21
+ @extend %headings_3;
22
+ }
23
+
24
+ h4 {
25
+ //font-size: 1em; // user agent default
26
+ @extend %headings_4;
27
+ }
28
+
29
+ h5 {
30
+ //font-size: 0.83em; // user agent default
31
+ @extend %headings_5;
32
+ }
33
+
34
+ h6 {
35
+ //font-size: 0.75em; // user agent default
36
+ @extend %headings_6;
37
+ }
38
+
39
+ // Standard body text support
40
+ // --------------------------------
41
+ p {
42
+ margin-bottom: baseline-margin($font_size);
43
+ text-indent: 0;
44
+ }
45
+
46
+ b {
47
+ &:after {
48
+ content: " ";
49
+ }
50
+ }
51
+
52
+
53
+ // :link Pseudo-class is totally not necessary as I can tell
54
+ // code here to combat legacy code
55
+ a {
56
+ &:link {
57
+ color: $href_color;
58
+ text-decoration: none;
59
+ }
60
+ &:hover, &:active {
61
+ text-decoration: underline;
62
+ }
63
+ &:visited {
64
+ color: $href_color;
65
+ }
66
+ }
@@ -0,0 +1,86 @@
1
+ // Default silent classes. To use in your final CSS, use the following syntax:
2
+ // .foo {
3
+ // @extend %silent_class;
4
+ // }
5
+
6
+
7
+ /* Text classes */
8
+ %headings_1 {
9
+ @include heading();
10
+ }
11
+
12
+ %headings_2 {
13
+ @include heading($heading_2);
14
+ }
15
+
16
+ %headings_3 {
17
+ @include heading($heading_3);
18
+ }
19
+
20
+ %headings_4 {
21
+ @include heading($heading_4);
22
+ }
23
+
24
+ %headings_5 {
25
+ @include heading($heading_5);
26
+ }
27
+
28
+ %headings_6 {
29
+ @include heading($heading_6);
30
+ }
31
+
32
+
33
+ %small {
34
+ @include small;
35
+ }
36
+
37
+ %medium {
38
+ @include medium;
39
+ }
40
+
41
+ %large {
42
+ @include large;
43
+ }
44
+
45
+
46
+
47
+
48
+
49
+ /* Font family classes */
50
+ %primary_font_family {
51
+ font-family: $primary_font_family;
52
+ }
53
+
54
+ %secondary_font_family {
55
+ font-family: $secondary_font_family;
56
+ }
57
+
58
+ %heading_font_family {
59
+ font-family: $heading_font_family;
60
+ }
61
+
62
+
63
+
64
+
65
+
66
+ /* Hide Text, Kellum Method */
67
+ %hide_text {
68
+ @include hide_text;
69
+ }
70
+
71
+
72
+
73
+
74
+ /* Standard content block styling */
75
+ %bulleted_list {
76
+ @include bulleted_list;
77
+ }
78
+
79
+ %content_block {
80
+ @extend %standard_block_spacing;
81
+ float: left;
82
+ @extend %bulleted_list;
83
+ }
84
+
85
+
86
+
@@ -0,0 +1,22 @@
1
+
2
+ // General font size function that will convert intigers into em values
3
+ // font-size: em(12);
4
+ @function em($target, $context: $font_size) {
5
+ @return ($target / $context) * 1em;
6
+ }
7
+
8
+ @function rem($target, $context: $font_size) {
9
+ @return ($target / $context) * 1rem;
10
+ }
11
+
12
+ // Baseline height calculations
13
+ // line-height: baseline($baseline_size);
14
+ @function baseline($baseline_size) {
15
+ @return ($line / $baseline_size) * ceil($baseline_size / $line) * 1em;
16
+ }
17
+
18
+ // Baseline margin calculations
19
+ // margin-bottom: baseline-margin($baseline_size);
20
+ @function baseline-margin($baseline_size) {
21
+ @return ($line / $baseline_size) * 1em;
22
+ }
@@ -0,0 +1,105 @@
1
+ // Toadstool core v0.0.0.1
2
+ // This document is not to be edited as it will be versioned
3
+ // -----------------------------------------------------------------
4
+
5
+
6
+ // All google font includes are placed in the RESET.SCSS file
7
+ // -----------------------------------------------------------
8
+ //@import "../config_files/text";
9
+
10
+
11
+ //////// heading text mixin //////////
12
+ // ------------------------------------------------
13
+ @mixin heading ($heading_size, $heading_font_family, $heading_color, $heading_font_weight) {
14
+ font-size: em($heading_size);
15
+ line-height: baseline($heading_size);
16
+ margin-bottom: baseline-margin($heading_size);
17
+ color: $heading_color;
18
+ font-weight: $heading_font_weight;
19
+ font-family: $heading_font_family;
20
+ }
21
+
22
+
23
+ /////// text arguments w/baseline rythem //////////
24
+ // -----------------------------------------------------
25
+ @mixin text ($baseline_size, $margin: auto) {
26
+ font-size: em($baseline_size);
27
+ line-height: baseline($baseline_size);
28
+
29
+ @if $margin == auto {
30
+ margin-bottom: baseline-margin($baseline_size);
31
+ }
32
+ @else if $margin == 0 {
33
+ margin-bottom: 0;
34
+ }
35
+ }
36
+
37
+
38
+
39
+ //////// standard text mixins //////////
40
+ // ------------------------------------------------
41
+ @mixin small ($baseline_size: $small_point_size) {
42
+ @include text($baseline_size);
43
+ }
44
+
45
+ @mixin medium ($baseline_size: $font_size) {
46
+ @include text($baseline_size);
47
+ }
48
+
49
+ @mixin large ($baseline_size: $large_point_size) {
50
+ @include text($baseline_size);
51
+ }
52
+
53
+
54
+
55
+
56
+ ////////// Standard bulleted list //////////////
57
+ // --------------------------------------------
58
+ @mixin bulleted_list {
59
+ ul {
60
+ list-style: disc;
61
+ margin: 0 0 1.5em em(20);
62
+ &:last-child {
63
+ margin-bottom: 0;
64
+ }
65
+ }
66
+ li {
67
+ float: none;
68
+ margin-bottom: 1em;
69
+ &:last-child {
70
+ margin-bottom: 0;
71
+ }
72
+ }
73
+ }
74
+
75
+
76
+ ////////// @font-face builder //////////////
77
+ // --------------------------------------------
78
+ $webfont_font_family: zocial !default;
79
+ $webfont-file: zocial-regular-webfont !default;
80
+ $webfont_weight: normal !default;
81
+ $webfont_style: normal !default;
82
+
83
+
84
+ @mixin font-face($font_family: $webfont_font_family, $font-file: $webfont-file, $font_weight: $webfont_weight, $font_style: $webfont_style ) {
85
+ font-family: '#{$font_family}';
86
+ font-style: $font_style;
87
+ font-weight: $font_weight;
88
+ src: url('#{$webfont_directory}#{$font-file}.eot');
89
+ src: url('#{$webfont_directory}#{$font-file}.eot?#iefix') format('embedded-opentype'),
90
+ url('#{$webfont_directory}#{$font-file}.woff') format('woff'),
91
+ url('#{$webfont_directory}#{$font-file}.ttf') format('truetype'),
92
+ url('#{$webfont_directory}#{$font-file}.svg#ZocialRegular') format('svg');
93
+ }
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
@@ -0,0 +1,4 @@
1
+ @font-face {
2
+ @include font-face (FontAwesome, fontawesome-webfont);
3
+ }
4
+
@@ -0,0 +1,231 @@
1
+ //* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
2
+ // readers do not read off random characters that represent icons */
3
+ %font_awesome { font-family: 'FontAwesome'; }
4
+
5
+
6
+ %icon-glass:before { content: "\f000"; @extend %font_awesome; }
7
+ %icon-music:before { content: "\f001"; @extend %font_awesome; }
8
+ %icon-search:before { content: "\f002"; @extend %font_awesome; }
9
+ %icon-envelope:before { content: "\f003"; @extend %font_awesome; }
10
+ %icon-heart:before { content: "\f004"; @extend %font_awesome; }
11
+ %icon-star:before { content: "\f005"; @extend %font_awesome; }
12
+ %icon-star-empty:before { content: "\f006"; @extend %font_awesome; }
13
+ %icon-user:before { content: "\f007"; @extend %font_awesome; }
14
+ %icon-film:before { content: "\f008"; @extend %font_awesome; }
15
+ %icon-th-large:before { content: "\f009"; @extend %font_awesome; }
16
+ %icon-th:before { content: "\f00a"; @extend %font_awesome; }
17
+ %icon-th-list:before { content: "\f00b"; @extend %font_awesome; }
18
+ %icon-ok:before { content: "\f00c"; @extend %font_awesome; }
19
+ %icon-remove:before { content: "\f00d"; @extend %font_awesome; }
20
+ %icon-zoom-in:before { content: "\f00e"; @extend %font_awesome; }
21
+
22
+ %icon-zoom-out:before { content: "\f010"; @extend %font_awesome; }
23
+ %icon-off:before { content: "\f011"; @extend %font_awesome; }
24
+ %icon-signal:before { content: "\f012"; @extend %font_awesome; }
25
+ %icon-cog:before { content: "\f013"; @extend %font_awesome; }
26
+ %icon-trash:before { content: "\f014"; @extend %font_awesome; }
27
+ %icon-home:before { content: "\f015"; @extend %font_awesome; }
28
+ %icon-file:before { content: "\f016"; @extend %font_awesome; }
29
+ %icon-time:before { content: "\f017"; @extend %font_awesome; }
30
+ %icon-road:before { content: "\f018"; @extend %font_awesome; }
31
+ %icon-download-alt:before { content: "\f019"; @extend %font_awesome; }
32
+ %icon-download:before { content: "\f01a"; @extend %font_awesome; }
33
+ %icon-upload:before { content: "\f01b"; @extend %font_awesome; }
34
+ %icon-inbox:before { content: "\f01c"; @extend %font_awesome; }
35
+ %icon-play-circle:before { content: "\f01d"; @extend %font_awesome; }
36
+ %icon-repeat:before { content: "\f01e"; @extend %font_awesome; }
37
+
38
+ //* \f020 is not a valid unicode character% all shifted one down */
39
+ %icon-refresh:before { content: "\f021"; @extend %font_awesome; }
40
+ %icon-list-alt:before { content: "\f022"; @extend %font_awesome; }
41
+ %icon-lock:before { content: "\f023"; @extend %font_awesome; }
42
+ %icon-flag:before { content: "\f024"; @extend %font_awesome; }
43
+ %icon-headphones:before { content: "\f025"; @extend %font_awesome; }
44
+ %icon-volume-off:before { content: "\f026"; @extend %font_awesome; }
45
+ %icon-volume-down:before { content: "\f027"; @extend %font_awesome; }
46
+ %icon-volume-up:before { content: "\f028"; @extend %font_awesome; }
47
+ %icon-qrcode:before { content: "\f029"; @extend %font_awesome; }
48
+ %icon-barcode:before { content: "\f02a"; @extend %font_awesome; }
49
+ %icon-tag:before { content: "\f02b"; @extend %font_awesome; }
50
+ %icon-tags:before { content: "\f02c"; @extend %font_awesome; }
51
+ %icon-book:before { content: "\f02d"; @extend %font_awesome; }
52
+ %icon-bookmark:before { content: "\f02e"; @extend %font_awesome; }
53
+ %icon-print:before { content: "\f02f"; @extend %font_awesome; }
54
+
55
+ %icon-camera:before { content: "\f030"; @extend %font_awesome; }
56
+ %icon-font:before { content: "\f031"; @extend %font_awesome; }
57
+ %icon-bold:before { content: "\f032"; @extend %font_awesome; }
58
+ %icon-italic:before { content: "\f033"; @extend %font_awesome; }
59
+ %icon-text-height:before { content: "\f034"; @extend %font_awesome; }
60
+ %icon-text-width:before { content: "\f035"; @extend %font_awesome; }
61
+ %icon-align-left:before { content: "\f036"; @extend %font_awesome; }
62
+ %icon-align-center:before { content: "\f037"; @extend %font_awesome; }
63
+ %icon-align-right:before { content: "\f038"; @extend %font_awesome; }
64
+ %icon-align-justify:before { content: "\f039"; @extend %font_awesome; }
65
+ %icon-list:before { content: "\f03a"; @extend %font_awesome; }
66
+ %icon-indent-left:before { content: "\f03b"; @extend %font_awesome; }
67
+ %icon-indent-right:before { content: "\f03c"; @extend %font_awesome; }
68
+ %icon-facetime-video:before { content: "\f03d"; @extend %font_awesome; }
69
+ %icon-picture:before { content: "\f03e"; @extend %font_awesome; }
70
+
71
+ %icon-pencil:before { content: "\f040"; @extend %font_awesome; }
72
+ %icon-map-marker:before { content: "\f041"; @extend %font_awesome; }
73
+ %icon-adjust:before { content: "\f042"; @extend %font_awesome; }
74
+ %icon-tint:before { content: "\f043"; @extend %font_awesome; }
75
+ %icon-edit:before { content: "\f044"; @extend %font_awesome; }
76
+ %icon-share:before { content: "\f045"; @extend %font_awesome; }
77
+ %icon-check:before { content: "\f046"; @extend %font_awesome; }
78
+ %icon-move:before { content: "\f047"; @extend %font_awesome; }
79
+ %icon-step-backward:before { content: "\f048"; @extend %font_awesome; }
80
+ %icon-fast-backward:before { content: "\f049"; @extend %font_awesome; }
81
+ %icon-backward:before { content: "\f04a"; @extend %font_awesome; }
82
+ %icon-play:before { content: "\f04b"; @extend %font_awesome; }
83
+ %icon-pause:before { content: "\f04c"; @extend %font_awesome; }
84
+ %icon-stop:before { content: "\f04d"; @extend %font_awesome; }
85
+ %icon-forward:before { content: "\f04e"; @extend %font_awesome; }
86
+
87
+ %icon-fast-forward:before { content: "\f050"; @extend %font_awesome; }
88
+ %icon-step-forward:before { content: "\f051"; @extend %font_awesome; }
89
+ %icon-eject:before { content: "\f052"; @extend %font_awesome; }
90
+ %icon-chevron-left:before { content: "\f053"; @extend %font_awesome; }
91
+ %icon-chevron-right:before { content: "\f054"; @extend %font_awesome; }
92
+ %icon-plus-sign:before { content: "\f055"; @extend %font_awesome; }
93
+ %icon-minus-sign:before { content: "\f056"; @extend %font_awesome; }
94
+ %icon-remove-sign:before { content: "\f057"; @extend %font_awesome; }
95
+ %icon-ok-sign:before { content: "\f058"; @extend %font_awesome; }
96
+ %icon-question-sign:before { content: "\f059"; @extend %font_awesome; }
97
+ %icon-info-sign:before { content: "\f05a"; @extend %font_awesome; }
98
+ %icon-screenshot:before { content: "\f05b"; @extend %font_awesome; }
99
+ %icon-remove-circle:before { content: "\f05c"; @extend %font_awesome; }
100
+ %icon-ok-circle:before { content: "\f05d"; @extend %font_awesome; }
101
+ %icon-ban-circle:before { content: "\f05e"; @extend %font_awesome; }
102
+
103
+ %icon-arrow-left:before { content: "\f060"; @extend %font_awesome; }
104
+ %icon-arrow-right:before { content: "\f061"; @extend %font_awesome; }
105
+ %icon-arrow-up:before { content: "\f062"; @extend %font_awesome; }
106
+ %icon-arrow-down:before { content: "\f063"; @extend %font_awesome; }
107
+ %icon-share-alt:before { content: "\f064"; @extend %font_awesome; }
108
+ %icon-resize-full:before { content: "\f065"; @extend %font_awesome; }
109
+ %icon-resize-small:before { content: "\f066"; @extend %font_awesome; }
110
+ %icon-plus:before { content: "\f067"; @extend %font_awesome; }
111
+ %icon-minus:before { content: "\f068"; @extend %font_awesome; }
112
+ %icon-asterisk:before { content: "\f069"; @extend %font_awesome; }
113
+ %icon-exclamation-sign:before { content: "\f06a"; @extend %font_awesome; }
114
+ %icon-gift:before { content: "\f06b"; @extend %font_awesome; }
115
+ %icon-leaf:before { content: "\f06c"; @extend %font_awesome; }
116
+ %icon-fire:before { content: "\f06d"; @extend %font_awesome; }
117
+ %icon-eye-open:before { content: "\f06e"; @extend %font_awesome; }
118
+
119
+ %icon-eye-close:before { content: "\f070"; @extend %font_awesome; }
120
+ %icon-warning-sign:before { content: "\f071"; @extend %font_awesome; }
121
+ %icon-plane:before { content: "\f072"; @extend %font_awesome; }
122
+ %icon-calendar:before { content: "\f073"; @extend %font_awesome; }
123
+ %icon-random:before { content: "\f074"; @extend %font_awesome; }
124
+ %icon-comment:before { content: "\f075"; @extend %font_awesome; }
125
+ %icon-magnet:before { content: "\f076"; @extend %font_awesome; }
126
+ %icon-chevron-up:before { content: "\f077"; @extend %font_awesome; }
127
+ %icon-chevron-down:before { content: "\f078"; @extend %font_awesome; }
128
+ %icon-retweet:before { content: "\f079"; @extend %font_awesome; }
129
+ %icon-shopping-cart:before { content: "\f07a"; @extend %font_awesome; }
130
+ %icon-folder-close:before { content: "\f07b"; @extend %font_awesome; }
131
+ %icon-folder-open:before { content: "\f07c"; @extend %font_awesome; }
132
+ %icon-resize-vertical:before { content: "\f07d"; @extend %font_awesome; }
133
+ %icon-resize-horizontal:before { content: "\f07e"; @extend %font_awesome; }
134
+
135
+ %icon-bar-chart:before { content: "\f080"; @extend %font_awesome; }
136
+ %icon-twitter-sign:before { content: "\f081"; @extend %font_awesome; }
137
+ %icon-facebook-sign:before { content: "\f082"; @extend %font_awesome; }
138
+ %icon-camera-retro:before { content: "\f083"; @extend %font_awesome; }
139
+ %icon-key:before { content: "\f084"; @extend %font_awesome; }
140
+ %icon-cogs:before { content: "\f085"; @extend %font_awesome; }
141
+ %icon-comments:before { content: "\f086"; @extend %font_awesome; }
142
+ %icon-thumbs-up:before { content: "\f087"; @extend %font_awesome; }
143
+ %icon-thumbs-down:before { content: "\f088"; @extend %font_awesome; }
144
+ %icon-star-half:before { content: "\f089"; @extend %font_awesome; }
145
+ %icon-heart-empty:before { content: "\f08a"; @extend %font_awesome; }
146
+ %icon-signout:before { content: "\f08b"; @extend %font_awesome; }
147
+ %icon-linkedin-sign:before { content: "\f08c"; @extend %font_awesome; }
148
+ %icon-pushpin:before { content: "\f08d"; @extend %font_awesome; }
149
+ %icon-external-link:before { content: "\f08e"; @extend %font_awesome; }
150
+
151
+ %icon-signin:before { content: "\f090"; @extend %font_awesome; }
152
+ %icon-trophy:before { content: "\f091"; @extend %font_awesome; }
153
+ %icon-github-sign:before { content: "\f092"; @extend %font_awesome; }
154
+ %icon-upload-alt:before { content: "\f093"; @extend %font_awesome; }
155
+ %icon-lemon:before { content: "\f094"; @extend %font_awesome; }
156
+ %icon-phone:before { content: "\f095"; @extend %font_awesome; }
157
+ %icon-check-empty:before { content: "\f096"; @extend %font_awesome; }
158
+ %icon-bookmark-empty:before { content: "\f097"; @extend %font_awesome; }
159
+ %icon-phone-sign:before { content: "\f098"; @extend %font_awesome; }
160
+ %icon-twitter:before { content: "\f099"; @extend %font_awesome; }
161
+ %icon-facebook:before { content: "\f09a"; @extend %font_awesome; }
162
+ %icon-github:before { content: "\f09b"; @extend %font_awesome; }
163
+ %icon-unlock:before { content: "\f09c"; @extend %font_awesome; }
164
+ %icon-credit-card:before { content: "\f09d"; @extend %font_awesome; }
165
+ %icon-rss:before { content: "\f09e"; @extend %font_awesome; }
166
+
167
+ %icon-hdd:before { content: "\f0a0"; @extend %font_awesome; }
168
+ %icon-bullhorn:before { content: "\f0a1"; @extend %font_awesome; }
169
+ %icon-bell:before { content: "\f0a2"; @extend %font_awesome; }
170
+ %icon-certificate:before { content: "\f0a3"; @extend %font_awesome; }
171
+ %icon-hand-right:before { content: "\f0a4"; @extend %font_awesome; }
172
+ %icon-hand-left:before { content: "\f0a5"; @extend %font_awesome; }
173
+ %icon-hand-up:before { content: "\f0a6"; @extend %font_awesome; }
174
+ %icon-hand-down:before { content: "\f0a7"; @extend %font_awesome; }
175
+ %icon-circle-arrow-left:before { content: "\f0a8"; @extend %font_awesome; }
176
+ %icon-circle-arrow-right:before { content: "\f0a9"; @extend %font_awesome; }
177
+ %icon-circle-arrow-up:before { content: "\f0aa"; @extend %font_awesome; }
178
+ %icon-circle-arrow-down:before { content: "\f0ab"; @extend %font_awesome; }
179
+ %icon-globe:before { content: "\f0ac"; @extend %font_awesome; }
180
+ %icon-wrench:before { content: "\f0ad"; @extend %font_awesome; }
181
+ %icon-tasks:before { content: "\f0ae"; @extend %font_awesome; }
182
+
183
+ %icon-filter:before { content: "\f0b0"; @extend %font_awesome; }
184
+ %icon-briefcase:before { content: "\f0b1"; @extend %font_awesome; }
185
+ %icon-fullscreen:before { content: "\f0b2"; @extend %font_awesome; }
186
+
187
+ %icon-group:before { content: "\f0c0"; @extend %font_awesome; }
188
+ %icon-link:before { content: "\f0c1"; @extend %font_awesome; }
189
+ %icon-cloud:before { content: "\f0c2"; @extend %font_awesome; }
190
+ %icon-beaker:before { content: "\f0c3"; @extend %font_awesome; }
191
+ %icon-cut:before { content: "\f0c4"; @extend %font_awesome; }
192
+ %icon-copy:before { content: "\f0c5"; @extend %font_awesome; }
193
+ %icon-paper-clip:before { content: "\f0c6"; @extend %font_awesome; }
194
+ %icon-save:before { content: "\f0c7"; @extend %font_awesome; }
195
+ %icon-sign-blank:before { content: "\f0c8"; @extend %font_awesome; }
196
+ %icon-reorder:before { content: "\f0c9"; @extend %font_awesome; }
197
+ %icon-list-ul:before { content: "\f0ca"; @extend %font_awesome; }
198
+ %icon-list-ol:before { content: "\f0cb"; @extend %font_awesome; }
199
+ %icon-strikethrough:before { content: "\f0cc"; @extend %font_awesome; }
200
+ %icon-underline:before { content: "\f0cd"; @extend %font_awesome; }
201
+ %icon-table:before { content: "\f0ce"; @extend %font_awesome; }
202
+
203
+ %icon-magic:before { content: "\f0d0"; @extend %font_awesome; }
204
+ %icon-truck:before { content: "\f0d1"; @extend %font_awesome; }
205
+ %icon-pinterest:before { content: "\f0d2"; @extend %font_awesome; }
206
+ %icon-pinterest-sign:before { content: "\f0d3"; @extend %font_awesome; }
207
+ %icon-google-plus-sign:before { content: "\f0d4"; @extend %font_awesome; }
208
+ %icon-google-plus:before { content: "\f0d5"; @extend %font_awesome; }
209
+ %icon-money:before { content: "\f0d6"; @extend %font_awesome; }
210
+ %icon-caret-down:before { content: "\f0d7"; @extend %font_awesome; }
211
+ %icon-caret-up:before { content: "\f0d8"; @extend %font_awesome; }
212
+ %icon-caret-left:before { content: "\f0d9"; @extend %font_awesome; }
213
+ %icon-caret-right:before { content: "\f0da"; @extend %font_awesome; }
214
+ %icon-columns:before { content: "\f0db"; @extend %font_awesome; }
215
+ %icon-sort:before { content: "\f0dc"; @extend %font_awesome; }
216
+ %icon-sort-down:before { content: "\f0dd"; @extend %font_awesome; }
217
+ %icon-sort-up:before { content: "\f0de"; @extend %font_awesome; }
218
+
219
+ %icon-envelope-alt:before { content: "\f0e0"; @extend %font_awesome; }
220
+ %icon-linkedin:before { content: "\f0e1"; @extend %font_awesome; }
221
+ %icon-undo:before { content: "\f0e2"; @extend %font_awesome; }
222
+ %icon-legal:before { content: "\f0e3"; @extend %font_awesome; }
223
+ %icon-dashboard:before { content: "\f0e4"; @extend %font_awesome; }
224
+ %icon-comment-alt:before { content: "\f0e5"; @extend %font_awesome; }
225
+ %icon-comments-alt:before { content: "\f0e6"; @extend %font_awesome; }
226
+ %icon-bolt:before { content: "\f0e7"; @extend %font_awesome; }
227
+ %icon-sitemap:before { content: "\f0e8"; @extend %font_awesome; }
228
+ %icon-umbrella:before { content: "\f0e9"; @extend %font_awesome; }
229
+ %icon-paste:before { content: "\f0ea"; @extend %font_awesome; }
230
+
231
+ %icon-user-md:before { content: "\f200"; @extend %font_awesome; }