charcoalcms 0.0.2 → 0.0.3
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.
- data/Rakefile +8 -0
 - data/scss/_charcoal.scss +23 -0
 - data/scss/charcoal/_core.functions.scss +560 -0
 - data/scss/charcoal/_responsive-grid.scss +92 -0
 - metadata +38 -17
 
    
        data/Rakefile
    ADDED
    
    
    
        data/scss/_charcoal.scss
    ADDED
    
    | 
         @@ -0,0 +1,23 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // This is your framework's main stylesheet. Use it to import all default modules.
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            /**
         
     | 
| 
      
 4 
     | 
    
         
            +
            * @tags: sass mixins library | Compass | http://compass-style.org
         
     | 
| 
      
 5 
     | 
    
         
            +
            * @use in: _var-project.scss
         
     | 
| 
      
 6 
     | 
    
         
            +
            */
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            @import "compass/css3";
         
     | 
| 
      
 9 
     | 
    
         
            +
            @import "compass/reset";
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            /**
         
     | 
| 
      
 14 
     | 
    
         
            +
            * @tags: responsive grid || _resonsive-grid.scss || Skeleton 960 | Skeleton 1200 | Responsify
         
     | 
| 
      
 15 
     | 
    
         
            +
            */
         
     | 
| 
      
 16 
     | 
    
         
            +
            @import "charcoal/_responsive-grid";
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            /**
         
     | 
| 
      
 21 
     | 
    
         
            +
            * @tags:	core mixins library
         
     | 
| 
      
 22 
     | 
    
         
            +
            */
         
     | 
| 
      
 23 
     | 
    
         
            +
            @import "charcoal/_core.functions";
         
     | 
| 
         @@ -0,0 +1,560 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            @include responsive($responsive);
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            /**
         
     | 
| 
      
 6 
     | 
    
         
            +
            * @file _core.functions.scss
         
     | 
| 
      
 7 
     | 
    
         
            +
            *
         
     | 
| 
      
 8 
     | 
    
         
            +
            * @copyright (c) Locomotive 2013
         
     | 
| 
      
 9 
     | 
    
         
            +
            * @author Nicolas Poliquin <nic@locomotive.ca>
         
     | 
| 
      
 10 
     | 
    
         
            +
            * @version @Wed Mar  6 11:45:56 EST 2013
         
     | 
| 
      
 11 
     | 
    
         
            +
            * @since Version 2013-01-07
         
     | 
| 
      
 12 
     | 
    
         
            +
            * @license (c) Locomotive 2013
         
     | 
| 
      
 13 
     | 
    
         
            +
            */
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            /*  =========
         
     | 
| 
      
 18 
     | 
    
         
            +
              MIXIN
         
     | 
| 
      
 19 
     | 
    
         
            +
            =========
         
     | 
| 
      
 20 
     | 
    
         
            +
            */
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            /**
         
     | 
| 
      
 23 
     | 
    
         
            +
            * @tags: media queries
         
     | 
| 
      
 24 
     | 
    
         
            +
            * @mixin: @include media-querie(value) { attribut }
         
     | 
| 
      
 25 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 26 
     | 
    
         
            +
            * .selector @include media-querie(320px) { width: 60%; }; }
         
     | 
| 
      
 27 
     | 
    
         
            +
            */
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            @mixin media-querie($value, $operator: 'min-width', $query: 'screen') {
         
     | 
| 
      
 30 
     | 
    
         
            +
            	@media #{$query} and (#{$operator}: #{$value}px) {
         
     | 
| 
      
 31 
     | 
    
         
            +
            		@content;
         
     | 
| 
      
 32 
     | 
    
         
            +
            	}
         
     | 
| 
      
 33 
     | 
    
         
            +
            }
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            @mixin media-querie-max($value, $operator: 'max-width', $query: 'screen') {
         
     | 
| 
      
 36 
     | 
    
         
            +
            	@media #{$query} and (#{$operator}: #{$value}px) {
         
     | 
| 
      
 37 
     | 
    
         
            +
            		@content;
         
     | 
| 
      
 38 
     | 
    
         
            +
            	}
         
     | 
| 
      
 39 
     | 
    
         
            +
            }
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            @mixin media-querie-minmax($value-min, $value-max, $operator: 'min-width', $operator2: 'max-width', $query: 'screen') {
         
     | 
| 
      
 42 
     | 
    
         
            +
            	@media #{$query} and (#{$operator}: #{$value-min}px) and (#{$operator2}: #{$value-max}px) {
         
     | 
| 
      
 43 
     | 
    
         
            +
            		@content;
         
     | 
| 
      
 44 
     | 
    
         
            +
            	}
         
     | 
| 
      
 45 
     | 
    
         
            +
            }
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            /**
         
     | 
| 
      
 48 
     | 
    
         
            +
            * @tags: position
         
     | 
| 
      
 49 
     | 
    
         
            +
            * @mixin: @include position();
         
     | 
| 
      
 50 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 51 
     | 
    
         
            +
            * .selector { @include position(absolute, 0, 0, 0, 0); }
         
     | 
| 
      
 52 
     | 
    
         
            +
            */
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            @mixin position ($type, $top, $right, $bottom, $left) {
         
     | 
| 
      
 55 
     | 
    
         
            +
            	position: 	$type;
         
     | 
| 
      
 56 
     | 
    
         
            +
                top: 		$top;
         
     | 
| 
      
 57 
     | 
    
         
            +
                right: 		$right;
         
     | 
| 
      
 58 
     | 
    
         
            +
                bottom: 	$bottom;
         
     | 
| 
      
 59 
     | 
    
         
            +
                left: 		$left;
         
     | 
| 
      
 60 
     | 
    
         
            +
            }
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            /**
         
     | 
| 
      
 64 
     | 
    
         
            +
            * @tags: custom size
         
     | 
| 
      
 65 
     | 
    
         
            +
            * @mixin: @include size();
         
     | 
| 
      
 66 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 67 
     | 
    
         
            +
            * .selector { @include size(104, 104); }
         
     | 
| 
      
 68 
     | 
    
         
            +
            */
         
     | 
| 
      
 69 
     | 
    
         
            +
            @mixin size($height, $width) {
         
     | 
| 
      
 70 
     | 
    
         
            +
            	height: #{$height}px;
         
     | 
| 
      
 71 
     | 
    
         
            +
            	width:	#{$width}px;
         
     | 
| 
      
 72 
     | 
    
         
            +
            }
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
            /**
         
     | 
| 
      
 77 
     | 
    
         
            +
            * @tags: backgroundimage
         
     | 
| 
      
 78 
     | 
    
         
            +
            * @for: Load background image
         
     | 
| 
      
 79 
     | 
    
         
            +
            * @mixin: @include backgroundimage();
         
     | 
| 
      
 80 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 81 
     | 
    
         
            +
            * .selector { @include backgroundimage(bckg-btn-dwlmenu, png); }
         
     | 
| 
      
 82 
     | 
    
         
            +
            */
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
            @mixin backgroundimage($name, $ext, $pos:top left, $repeat: no-repeat, $bgcolor:transparent) {
         
     | 
| 
      
 85 
     | 
    
         
            +
              background: url('get-asset-images?a=#{$name}.#{$ext}') $pos $repeat $bgcolor;
         
     | 
| 
      
 86 
     | 
    
         
            +
              //background: image-url('#{$name}.#{$ext}') $pos $repeat $bgcolor;
         
     | 
| 
      
 87 
     | 
    
         
            +
            }
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
            /**
         
     | 
| 
      
 93 
     | 
    
         
            +
            * @tags: image height
         
     | 
| 
      
 94 
     | 
    
         
            +
            * @for: Grab the height of the image in your CSS
         
     | 
| 
      
 95 
     | 
    
         
            +
            * @library: Compass Image Helper || http://compass-style.org/reference/compass/helpers/urls/
         
     | 
| 
      
 96 
     | 
    
         
            +
            * @mixin: @include image-height();
         
     | 
| 
      
 97 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 98 
     | 
    
         
            +
            * .selector { @include image-height(img-name, png); }
         
     | 
| 
      
 99 
     | 
    
         
            +
            */
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
            @mixin image-height($name, $ext) {
         
     | 
| 
      
 102 
     | 
    
         
            +
            	height: 	image-height('#{$name}.#{$ext}');
         
     | 
| 
      
 103 
     | 
    
         
            +
            }
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            /**
         
     | 
| 
      
 108 
     | 
    
         
            +
            * @tags: image width
         
     | 
| 
      
 109 
     | 
    
         
            +
            * @for: Grab the width of the image in your CSS
         
     | 
| 
      
 110 
     | 
    
         
            +
            * @library: Compass Image Helper || http://compass-style.org/reference/compass/helpers/urls/
         
     | 
| 
      
 111 
     | 
    
         
            +
            * @mixin: @include image-width();
         
     | 
| 
      
 112 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 113 
     | 
    
         
            +
            * .selector { @include image-width(img-name, png); }
         
     | 
| 
      
 114 
     | 
    
         
            +
            */
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
            @mixin image-width($name, $ext) {
         
     | 
| 
      
 117 
     | 
    
         
            +
            	width: 	image-width('#{$name}.#{$ext}');
         
     | 
| 
      
 118 
     | 
    
         
            +
            }
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 121 
     | 
    
         
            +
             
     | 
| 
      
 122 
     | 
    
         
            +
            /**
         
     | 
| 
      
 123 
     | 
    
         
            +
            * @tags: image size
         
     | 
| 
      
 124 
     | 
    
         
            +
            * @for: Grab the height/width of the image in your CSS
         
     | 
| 
      
 125 
     | 
    
         
            +
            * @library: Compass Image Helper || http://compass-style.org/reference/compass/helpers/urls/
         
     | 
| 
      
 126 
     | 
    
         
            +
            * @mixin: @include image-size();
         
     | 
| 
      
 127 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 128 
     | 
    
         
            +
            * .selector { @include image-size(img-name, png); }
         
     | 
| 
      
 129 
     | 
    
         
            +
            */
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
            @mixin image-size($name, $ext) {
         
     | 
| 
      
 132 
     | 
    
         
            +
            	height: image-height('#{$name}.#{$ext}');
         
     | 
| 
      
 133 
     | 
    
         
            +
            	width: 	image-width('#{$name}.#{$ext}');
         
     | 
| 
      
 134 
     | 
    
         
            +
            }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 137 
     | 
    
         
            +
             
     | 
| 
      
 138 
     | 
    
         
            +
            /**
         
     | 
| 
      
 139 
     | 
    
         
            +
            * @tags: center element horizontally in absolute position
         
     | 
| 
      
 140 
     | 
    
         
            +
            * @for: Grab the height/width of the image and add a value to the margin-left (half of the width)
         
     | 
| 
      
 141 
     | 
    
         
            +
            * @library: Compass Image Helper || http://compass-style.org/reference/compass/helpers/urls/
         
     | 
| 
      
 142 
     | 
    
         
            +
            * @mixin: @include center-absolute();
         
     | 
| 
      
 143 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 144 
     | 
    
         
            +
            * .selector { @include center-absolute(img-name, png); }
         
     | 
| 
      
 145 
     | 
    
         
            +
            */
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
            @mixin center-absolute($name, $ext, $repeat: no-repeat) {
         
     | 
| 
      
 148 
     | 
    
         
            +
            	position:	absolute;
         
     | 
| 
      
 149 
     | 
    
         
            +
            	left:		50%;
         
     | 
| 
      
 150 
     | 
    
         
            +
            	
         
     | 
| 
      
 151 
     | 
    
         
            +
            	margin-left: - image-width('#{$name}.#{$ext}') / 2;
         
     | 
| 
      
 152 
     | 
    
         
            +
            	height: image-height('#{$name}.#{$ext}');
         
     | 
| 
      
 153 
     | 
    
         
            +
            	width: 	image-width('#{$name}.#{$ext}');
         
     | 
| 
      
 154 
     | 
    
         
            +
            	
         
     | 
| 
      
 155 
     | 
    
         
            +
            	background:	image-url('#{$name}.#{$ext}') #{$repeat};
         
     | 
| 
      
 156 
     | 
    
         
            +
            }
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
            /**
         
     | 
| 
      
 161 
     | 
    
         
            +
            * @tags: prefix
         
     | 
| 
      
 162 
     | 
    
         
            +
            * @for: add prefix to your attribut
         
     | 
| 
      
 163 
     | 
    
         
            +
            * @mixin: @include prefixer();
         
     | 
| 
      
 164 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 165 
     | 
    
         
            +
            * .selector { @include prefixer(attribut, value, webkit ms moz o spec); } || @include prefixer(background-size, 100%, webkit ms moz o spec);
         
     | 
| 
      
 166 
     | 
    
         
            +
            */
         
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
            @mixin prefixer ($property, $value, $prefixes) {
         
     | 
| 
      
 169 
     | 
    
         
            +
             
     | 
| 
      
 170 
     | 
    
         
            +
              @each $prefix in $prefixes {
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
                @if $prefix == webkit {
         
     | 
| 
      
 173 
     | 
    
         
            +
                  -webkit-#{$property}: $value;
         
     | 
| 
      
 174 
     | 
    
         
            +
                }
         
     | 
| 
      
 175 
     | 
    
         
            +
                @else if $prefix == moz {
         
     | 
| 
      
 176 
     | 
    
         
            +
                  -moz-#{$property}: $value;
         
     | 
| 
      
 177 
     | 
    
         
            +
                }
         
     | 
| 
      
 178 
     | 
    
         
            +
                @else if $prefix == ms {
         
     | 
| 
      
 179 
     | 
    
         
            +
                  -ms-#{$property}: $value;
         
     | 
| 
      
 180 
     | 
    
         
            +
                }
         
     | 
| 
      
 181 
     | 
    
         
            +
                @else if $prefix == o {
         
     | 
| 
      
 182 
     | 
    
         
            +
                  -o-#{$property}: $value;
         
     | 
| 
      
 183 
     | 
    
         
            +
                }
         
     | 
| 
      
 184 
     | 
    
         
            +
                @else if $prefix == spec {
         
     | 
| 
      
 185 
     | 
    
         
            +
                  #{$property}: $value;
         
     | 
| 
      
 186 
     | 
    
         
            +
                }
         
     | 
| 
      
 187 
     | 
    
         
            +
                @else {
         
     | 
| 
      
 188 
     | 
    
         
            +
                  @warn "Unrecognized prefix: #{$prefix}";
         
     | 
| 
      
 189 
     | 
    
         
            +
                }
         
     | 
| 
      
 190 
     | 
    
         
            +
              }
         
     | 
| 
      
 191 
     | 
    
         
            +
            }
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
      
 193 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
            /**
         
     | 
| 
      
 196 
     | 
    
         
            +
            * @tags: prefix & suffix
         
     | 
| 
      
 197 
     | 
    
         
            +
            * @for: add prefix to your attribut
         
     | 
| 
      
 198 
     | 
    
         
            +
            * @mixin: @include prefix-suffix();
         
     | 
| 
      
 199 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 200 
     | 
    
         
            +
            * .selector { @include prefix-suffix(attribut, value, webkit ms moz o spec); } || @include prefixer(background-size, 100%, webkit ms moz o spec);
         
     | 
| 
      
 201 
     | 
    
         
            +
            */
         
     | 
| 
      
 202 
     | 
    
         
            +
             
     | 
| 
      
 203 
     | 
    
         
            +
            @mixin prefix-suffix ($property, $value, $prefixes) {
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
              @each $prefix in $prefixes {
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
                @if $prefix == webkit {
         
     | 
| 
      
 208 
     | 
    
         
            +
                  -webkit-#{$property}: -webkit-#{$value};
         
     | 
| 
      
 209 
     | 
    
         
            +
                }
         
     | 
| 
      
 210 
     | 
    
         
            +
                @else if $prefix == moz {
         
     | 
| 
      
 211 
     | 
    
         
            +
                  -moz-#{$property}: -moz-#{$value};
         
     | 
| 
      
 212 
     | 
    
         
            +
                }
         
     | 
| 
      
 213 
     | 
    
         
            +
                @else if $prefix == ms {
         
     | 
| 
      
 214 
     | 
    
         
            +
                  -ms-#{$property}: -ms-#{$value};
         
     | 
| 
      
 215 
     | 
    
         
            +
                }
         
     | 
| 
      
 216 
     | 
    
         
            +
                @else if $prefix == o {
         
     | 
| 
      
 217 
     | 
    
         
            +
                  -o-#{$property}: -o-#{$value};
         
     | 
| 
      
 218 
     | 
    
         
            +
                }
         
     | 
| 
      
 219 
     | 
    
         
            +
                @else if $prefix == spec {
         
     | 
| 
      
 220 
     | 
    
         
            +
                  #{$property}: #{$value};
         
     | 
| 
      
 221 
     | 
    
         
            +
                }
         
     | 
| 
      
 222 
     | 
    
         
            +
                @else {
         
     | 
| 
      
 223 
     | 
    
         
            +
                  @warn "Unrecognized prefix: #{$prefix}";
         
     | 
| 
      
 224 
     | 
    
         
            +
                }
         
     | 
| 
      
 225 
     | 
    
         
            +
              }
         
     | 
| 
      
 226 
     | 
    
         
            +
            }
         
     | 
| 
      
 227 
     | 
    
         
            +
             
     | 
| 
      
 228 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
            /**
         
     | 
| 
      
 231 
     | 
    
         
            +
            * @tags: suffix
         
     | 
| 
      
 232 
     | 
    
         
            +
            * @for: add suffix to your attribut
         
     | 
| 
      
 233 
     | 
    
         
            +
            * @mixin: @include suffix();
         
     | 
| 
      
 234 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 235 
     | 
    
         
            +
            * .selector { @include suffix(attribut, value, webkit ms moz o spec); } || @include suffix(background-size, 100%, webkit ms moz o spec);
         
     | 
| 
      
 236 
     | 
    
         
            +
            */
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
            @mixin suffix ($property, $value, $prefixes) {
         
     | 
| 
      
 239 
     | 
    
         
            +
             
     | 
| 
      
 240 
     | 
    
         
            +
              @each $prefix in $prefixes {
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
                @if $prefix == webkit {
         
     | 
| 
      
 243 
     | 
    
         
            +
                  #{$property}: -webkit-#{$value};
         
     | 
| 
      
 244 
     | 
    
         
            +
                }
         
     | 
| 
      
 245 
     | 
    
         
            +
                @else if $prefix == moz {
         
     | 
| 
      
 246 
     | 
    
         
            +
                  #{$property}: -moz-#{$value};
         
     | 
| 
      
 247 
     | 
    
         
            +
                }
         
     | 
| 
      
 248 
     | 
    
         
            +
                @else if $prefix == ms {
         
     | 
| 
      
 249 
     | 
    
         
            +
                  #{$property}: -ms-#{$value};
         
     | 
| 
      
 250 
     | 
    
         
            +
                }
         
     | 
| 
      
 251 
     | 
    
         
            +
                @else if $prefix == o {
         
     | 
| 
      
 252 
     | 
    
         
            +
                  #{$property}: -o-#{$value};
         
     | 
| 
      
 253 
     | 
    
         
            +
                }
         
     | 
| 
      
 254 
     | 
    
         
            +
                @else if $prefix == spec {
         
     | 
| 
      
 255 
     | 
    
         
            +
                  #{$property}: #{$value};
         
     | 
| 
      
 256 
     | 
    
         
            +
                }
         
     | 
| 
      
 257 
     | 
    
         
            +
                @else {
         
     | 
| 
      
 258 
     | 
    
         
            +
                  @warn "Unrecognized prefix: #{$prefix}";
         
     | 
| 
      
 259 
     | 
    
         
            +
                }
         
     | 
| 
      
 260 
     | 
    
         
            +
              }
         
     | 
| 
      
 261 
     | 
    
         
            +
            }
         
     | 
| 
      
 262 
     | 
    
         
            +
             
     | 
| 
      
 263 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
            /**
         
     | 
| 
      
 266 
     | 
    
         
            +
            * @tags: keyframes
         
     | 
| 
      
 267 
     | 
    
         
            +
            * @for: add suffix to your keyframes animation
         
     | 
| 
      
 268 
     | 
    
         
            +
            * @mixin: @include keyframe(animationName, webkit moz o ms spec);
         
     | 
| 
      
 269 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 270 
     | 
    
         
            +
            * .selector { @include keyframes(block1-visible, webkit ms moz o spec) {
         
     | 
| 
      
 271 
     | 
    
         
            +
            *		from, 0% {  }
         
     | 
| 
      
 272 
     | 
    
         
            +
            *		to { }
         
     | 
| 
      
 273 
     | 
    
         
            +
            *	}
         
     | 
| 
      
 274 
     | 
    
         
            +
            */
         
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
            @mixin keyframes ($property, $prefixes) {
         
     | 
| 
      
 277 
     | 
    
         
            +
             
     | 
| 
      
 278 
     | 
    
         
            +
              @each $prefix in $prefixes {
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
                @if $prefix == webkit {
         
     | 
| 
      
 281 
     | 
    
         
            +
                  @-webkit-keyframes #{$property} { @content; }
         
     | 
| 
      
 282 
     | 
    
         
            +
                }
         
     | 
| 
      
 283 
     | 
    
         
            +
                @else if $prefix == moz {
         
     | 
| 
      
 284 
     | 
    
         
            +
                  @-moz-keyframes #{$property} { @content; }
         
     | 
| 
      
 285 
     | 
    
         
            +
                }
         
     | 
| 
      
 286 
     | 
    
         
            +
                @else if $prefix == ms {
         
     | 
| 
      
 287 
     | 
    
         
            +
                  @-ms-keyframes #{$property} { @content; }
         
     | 
| 
      
 288 
     | 
    
         
            +
                }
         
     | 
| 
      
 289 
     | 
    
         
            +
                @else if $prefix == o {
         
     | 
| 
      
 290 
     | 
    
         
            +
                  @-o-keyframes #{$property} { @content; }
         
     | 
| 
      
 291 
     | 
    
         
            +
                }
         
     | 
| 
      
 292 
     | 
    
         
            +
                @else if $prefix == spec {
         
     | 
| 
      
 293 
     | 
    
         
            +
                  @keyframes #{$property} { @content; }
         
     | 
| 
      
 294 
     | 
    
         
            +
                }
         
     | 
| 
      
 295 
     | 
    
         
            +
                @else {
         
     | 
| 
      
 296 
     | 
    
         
            +
                  @warn "Unrecognized prefix: #{$prefix}";
         
     | 
| 
      
 297 
     | 
    
         
            +
                }
         
     | 
| 
      
 298 
     | 
    
         
            +
              }
         
     | 
| 
      
 299 
     | 
    
         
            +
            }
         
     | 
| 
      
 300 
     | 
    
         
            +
             
     | 
| 
      
 301 
     | 
    
         
            +
            @-webkit-keyframes opacityValue {
         
     | 
| 
      
 302 
     | 
    
         
            +
            }
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
      
 304 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 305 
     | 
    
         
            +
             
     | 
| 
      
 306 
     | 
    
         
            +
            /**
         
     | 
| 
      
 307 
     | 
    
         
            +
            * @tags: debug
         
     | 
| 
      
 308 
     | 
    
         
            +
            * @for: add red border to element
         
     | 
| 
      
 309 
     | 
    
         
            +
            * @mixin: @include debug();
         
     | 
| 
      
 310 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 311 
     | 
    
         
            +
            * .selector { @include debug(); }
         
     | 
| 
      
 312 
     | 
    
         
            +
            */
         
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
            //Help for debugging
         
     | 
| 
      
 315 
     | 
    
         
            +
            %debug {
         
     | 
| 
      
 316 
     | 
    
         
            +
            	border:	1px red dotted;
         
     | 
| 
      
 317 
     | 
    
         
            +
            }
         
     | 
| 
      
 318 
     | 
    
         
            +
             
     | 
| 
      
 319 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 320 
     | 
    
         
            +
             
     | 
| 
      
 321 
     | 
    
         
            +
            /**
         
     | 
| 
      
 322 
     | 
    
         
            +
            * @tags: css3 border radius
         
     | 
| 
      
 323 
     | 
    
         
            +
            * @mixin: @include rounded();
         
     | 
| 
      
 324 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 325 
     | 
    
         
            +
            * .selector { @include rounded(10px); }
         
     | 
| 
      
 326 
     | 
    
         
            +
            */
         
     | 
| 
      
 327 
     | 
    
         
            +
             
     | 
| 
      
 328 
     | 
    
         
            +
            @mixin rounded($value) {
         
     | 
| 
      
 329 
     | 
    
         
            +
              border-radius: $value;
         
     | 
| 
      
 330 
     | 
    
         
            +
              -moz-border-radius: $value;
         
     | 
| 
      
 331 
     | 
    
         
            +
              -webkit-border-radius: $value;
         
     | 
| 
      
 332 
     | 
    
         
            +
            }
         
     | 
| 
      
 333 
     | 
    
         
            +
             
     | 
| 
      
 334 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 335 
     | 
    
         
            +
             
     | 
| 
      
 336 
     | 
    
         
            +
            /**
         
     | 
| 
      
 337 
     | 
    
         
            +
            * @tags: css3 basic transition
         
     | 
| 
      
 338 
     | 
    
         
            +
            * @mixin: @include transition();
         
     | 
| 
      
 339 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 340 
     | 
    
         
            +
            * .selector { @include transition(0.3s); }
         
     | 
| 
      
 341 
     | 
    
         
            +
            */
         
     | 
| 
      
 342 
     | 
    
         
            +
             
     | 
| 
      
 343 
     | 
    
         
            +
            @mixin transition ($value) {
         
     | 
| 
      
 344 
     | 
    
         
            +
            	-webkit-transition: all $value ease;
         
     | 
| 
      
 345 
     | 
    
         
            +
            	-moz-transition: 	all $value ease;
         
     | 
| 
      
 346 
     | 
    
         
            +
            	-moz-transition:	all $value ease;
         
     | 
| 
      
 347 
     | 
    
         
            +
            	-ms-transition:		all $value ease;
         
     | 
| 
      
 348 
     | 
    
         
            +
            	-o-transition:		all $value ease;
         
     | 
| 
      
 349 
     | 
    
         
            +
            	transition:			all $value ease;
         
     | 
| 
      
 350 
     | 
    
         
            +
            }
         
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
      
 352 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 353 
     | 
    
         
            +
             
     | 
| 
      
 354 
     | 
    
         
            +
            /**
         
     | 
| 
      
 355 
     | 
    
         
            +
            * @tags: css3 basic animation
         
     | 
| 
      
 356 
     | 
    
         
            +
            * @mixin: @include animation();
         
     | 
| 
      
 357 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 358 
     | 
    
         
            +
            * .selector { @include animation(0.3s); }
         
     | 
| 
      
 359 
     | 
    
         
            +
            */
         
     | 
| 
      
 360 
     | 
    
         
            +
             
     | 
| 
      
 361 
     | 
    
         
            +
            @mixin animation ($value) {
         
     | 
| 
      
 362 
     | 
    
         
            +
            	-webkit-animation-duration: $value;
         
     | 
| 
      
 363 
     | 
    
         
            +
            	-moz-animation-duration: 	$value;
         
     | 
| 
      
 364 
     | 
    
         
            +
            	-ms-animation-duration: 	$value;
         
     | 
| 
      
 365 
     | 
    
         
            +
            	-o-animation-duration: 		$value;
         
     | 
| 
      
 366 
     | 
    
         
            +
            	animation-duration: 		$value;
         
     | 
| 
      
 367 
     | 
    
         
            +
            }
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 370 
     | 
    
         
            +
             
     | 
| 
      
 371 
     | 
    
         
            +
            /**
         
     | 
| 
      
 372 
     | 
    
         
            +
            * @tags: css3 custom transition
         
     | 
| 
      
 373 
     | 
    
         
            +
            * @mixin: @include animation();
         
     | 
| 
      
 374 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 375 
     | 
    
         
            +
            * .selector { @include custom-transition(0.3s); }
         
     | 
| 
      
 376 
     | 
    
         
            +
            */
         
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
            @mixin custom-transition {
         
     | 
| 
      
 379 
     | 
    
         
            +
            	-webkit-transition: all 800ms cubic-bezier(1.000, 0, 0.170, 0.995); /* older webkit */
         
     | 
| 
      
 380 
     | 
    
         
            +
            	-webkit-transition: all 800ms cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 381 
     | 
    
         
            +
            	   -moz-transition: all 800ms cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 382 
     | 
    
         
            +
            	    -ms-transition: all 800ms cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 383 
     | 
    
         
            +
            	     -o-transition: all 800ms cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 384 
     | 
    
         
            +
            	        transition: all 800ms cubic-bezier(1.000, -0.005, 0.170, 0.995); /* custom */
         
     | 
| 
      
 385 
     | 
    
         
            +
             
     | 
| 
      
 386 
     | 
    
         
            +
            	-webkit-transition-timing-function: cubic-bezier(1.000, 0, 0.170, 0.995); /* older webkit */
         
     | 
| 
      
 387 
     | 
    
         
            +
            	-webkit-transition-timing-function: cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 388 
     | 
    
         
            +
            	   -moz-transition-timing-function: cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 389 
     | 
    
         
            +
            	    -ms-transition-timing-function: cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 390 
     | 
    
         
            +
            	     -o-transition-timing-function: cubic-bezier(1.000, -0.005, 0.170, 0.995);
         
     | 
| 
      
 391 
     | 
    
         
            +
            	        transition-timing-function: cubic-bezier(1.000, -0.005, 0.170, 0.995); /* custom */
         
     | 
| 
      
 392 
     | 
    
         
            +
            }
         
     | 
| 
      
 393 
     | 
    
         
            +
             
     | 
| 
      
 394 
     | 
    
         
            +
            @mixin easeOutQuad ($value) {
         
     | 
| 
      
 395 
     | 
    
         
            +
            	-webkit-transition: all $value cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 396 
     | 
    
         
            +
            	   -moz-transition: all $value cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 397 
     | 
    
         
            +
            	    -ms-transition: all $value cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 398 
     | 
    
         
            +
            	     -o-transition: all $value cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 399 
     | 
    
         
            +
            	        transition: all $value cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
         
     | 
| 
      
 400 
     | 
    
         
            +
             
     | 
| 
      
 401 
     | 
    
         
            +
            	-webkit-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 402 
     | 
    
         
            +
            	   -moz-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 403 
     | 
    
         
            +
            	    -ms-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 404 
     | 
    
         
            +
            	     -o-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
         
     | 
| 
      
 405 
     | 
    
         
            +
            	        transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
         
     | 
| 
      
 406 
     | 
    
         
            +
            }
         
     | 
| 
      
 407 
     | 
    
         
            +
             
     | 
| 
      
 408 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 409 
     | 
    
         
            +
             
     | 
| 
      
 410 
     | 
    
         
            +
            /**
         
     | 
| 
      
 411 
     | 
    
         
            +
            * @tags: css3 transition delay
         
     | 
| 
      
 412 
     | 
    
         
            +
            * @mixin: @include delay();
         
     | 
| 
      
 413 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 414 
     | 
    
         
            +
            * .selector { @include delay(0.3s); }
         
     | 
| 
      
 415 
     | 
    
         
            +
            */
         
     | 
| 
      
 416 
     | 
    
         
            +
             
     | 
| 
      
 417 
     | 
    
         
            +
            @mixin delay ($value) {
         
     | 
| 
      
 418 
     | 
    
         
            +
            	transition-delay: $value;
         
     | 
| 
      
 419 
     | 
    
         
            +
            	-moz-transition-delay: $value; /* Firefox 4 */
         
     | 
| 
      
 420 
     | 
    
         
            +
            	-webkit-transition-delay: $value; /* Safari and Chrome */
         
     | 
| 
      
 421 
     | 
    
         
            +
            	-o-transition-delay: $value; /* Opera */
         
     | 
| 
      
 422 
     | 
    
         
            +
            }
         
     | 
| 
      
 423 
     | 
    
         
            +
             
     | 
| 
      
 424 
     | 
    
         
            +
            @mixin animation_delay ($value) {
         
     | 
| 
      
 425 
     | 
    
         
            +
            	animation-delay: $value;
         
     | 
| 
      
 426 
     | 
    
         
            +
            	-moz-animation-delay: $value; /* Firefox 4 */
         
     | 
| 
      
 427 
     | 
    
         
            +
            	-webkit-animation-delay: $value; /* Safari and Chrome */
         
     | 
| 
      
 428 
     | 
    
         
            +
            	-o-animation-delay: $value; /* Opera */
         
     | 
| 
      
 429 
     | 
    
         
            +
            }
         
     | 
| 
      
 430 
     | 
    
         
            +
             
     | 
| 
      
 431 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 432 
     | 
    
         
            +
             
     | 
| 
      
 433 
     | 
    
         
            +
            /**
         
     | 
| 
      
 434 
     | 
    
         
            +
            * @tags: include padding into the width & height of your element
         
     | 
| 
      
 435 
     | 
    
         
            +
            * @mixin: @include borderbox();
         
     | 
| 
      
 436 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 437 
     | 
    
         
            +
            * .selector { @include borderbox(); }
         
     | 
| 
      
 438 
     | 
    
         
            +
            */
         
     | 
| 
      
 439 
     | 
    
         
            +
             
     | 
| 
      
 440 
     | 
    
         
            +
            @mixin borderbox {
         
     | 
| 
      
 441 
     | 
    
         
            +
            	box-sizing: 		border-box;
         
     | 
| 
      
 442 
     | 
    
         
            +
            	-webkit-box-sizing:	border-box;
         
     | 
| 
      
 443 
     | 
    
         
            +
            	-moz-box-sizing: 	border-box;
         
     | 
| 
      
 444 
     | 
    
         
            +
            }
         
     | 
| 
      
 445 
     | 
    
         
            +
             
     | 
| 
      
 446 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 447 
     | 
    
         
            +
             
     | 
| 
      
 448 
     | 
    
         
            +
            /**
         
     | 
| 
      
 449 
     | 
    
         
            +
            * @tags: background opacity
         
     | 
| 
      
 450 
     | 
    
         
            +
            * @mixin: @include background-opacity();
         
     | 
| 
      
 451 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 452 
     | 
    
         
            +
            * .selector { @include background-opacity(#fff); } || .selector { @include background-opacity(#fff, 0.8); }
         
     | 
| 
      
 453 
     | 
    
         
            +
            */
         
     | 
| 
      
 454 
     | 
    
         
            +
             
     | 
| 
      
 455 
     | 
    
         
            +
            @mixin background-opacity($color, $opacity: 0.3) {
         
     | 
| 
      
 456 
     | 
    
         
            +
                background: $color; /* The Fallback */
         
     | 
| 
      
 457 
     | 
    
         
            +
                background: rgba($color, $opacity);
         
     | 
| 
      
 458 
     | 
    
         
            +
            }
         
     | 
| 
      
 459 
     | 
    
         
            +
             
     | 
| 
      
 460 
     | 
    
         
            +
             
     | 
| 
      
 461 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 462 
     | 
    
         
            +
             
     | 
| 
      
 463 
     | 
    
         
            +
            /*  =========
         
     | 
| 
      
 464 
     | 
    
         
            +
              FONT FACE
         
     | 
| 
      
 465 
     | 
    
         
            +
            =========
         
     | 
| 
      
 466 
     | 
    
         
            +
            */
         
     | 
| 
      
 467 
     | 
    
         
            +
             
     | 
| 
      
 468 
     | 
    
         
            +
            /**
         
     | 
| 
      
 469 
     | 
    
         
            +
            * @tags: grab every font-face file
         
     | 
| 
      
 470 
     | 
    
         
            +
            * @mixin: @include font-face();
         
     | 
| 
      
 471 
     | 
    
         
            +
            * @usage:
         
     | 
| 
      
 472 
     | 
    
         
            +
            * .selector { @include font-face(font-custom-name, '../dir/font-file-name'); } | @include font-face(avenir, '../fonts/avenir-next-lt-pro');
         
     | 
| 
      
 473 
     | 
    
         
            +
            */
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
            @mixin font-face($font-family, $file-path, $weight: normal, $style: normal ) {
         
     | 
| 
      
 476 
     | 
    
         
            +
              @font-face {
         
     | 
| 
      
 477 
     | 
    
         
            +
                font-family: $font-family;
         
     | 
| 
      
 478 
     | 
    
         
            +
                font-weight: $weight;
         
     | 
| 
      
 479 
     | 
    
         
            +
                font-style: $style;
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
                src: url('#{$file-path}.eot#iefix');
         
     | 
| 
      
 482 
     | 
    
         
            +
                	src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
         
     | 
| 
      
 483 
     | 
    
         
            +
                       url('#{$file-path}.woff') format('woff'),
         
     | 
| 
      
 484 
     | 
    
         
            +
                       url('#{$file-path}.ttf') format('truetype'),
         
     | 
| 
      
 485 
     | 
    
         
            +
                       url('#{$file-path}.svg##{$font-family}') format('svg');
         
     | 
| 
      
 486 
     | 
    
         
            +
              }
         
     | 
| 
      
 487 
     | 
    
         
            +
            }
         
     | 
| 
      
 488 
     | 
    
         
            +
             
     | 
| 
      
 489 
     | 
    
         
            +
            /*  =========
         
     | 
| 
      
 490 
     | 
    
         
            +
              TRIANGLE
         
     | 
| 
      
 491 
     | 
    
         
            +
            =========
         
     | 
| 
      
 492 
     | 
    
         
            +
            */
         
     | 
| 
      
 493 
     | 
    
         
            +
             
     | 
| 
      
 494 
     | 
    
         
            +
            @mixin triangle-up($value, $color) {
         
     | 
| 
      
 495 
     | 
    
         
            +
            	width: 		0; 
         
     | 
| 
      
 496 
     | 
    
         
            +
            	height: 	0; 
         
     | 
| 
      
 497 
     | 
    
         
            +
            	
         
     | 
| 
      
 498 
     | 
    
         
            +
            	border-left: 	$value solid transparent;
         
     | 
| 
      
 499 
     | 
    
         
            +
            	border-right: 	$value solid transparent;
         
     | 
| 
      
 500 
     | 
    
         
            +
            	border-bottom: 	$value solid $color;
         
     | 
| 
      
 501 
     | 
    
         
            +
            }
         
     | 
| 
      
 502 
     | 
    
         
            +
             
     | 
| 
      
 503 
     | 
    
         
            +
            @mixin triangle-right($value, $color) {
         
     | 
| 
      
 504 
     | 
    
         
            +
            	width: 		0; 
         
     | 
| 
      
 505 
     | 
    
         
            +
            	height: 	0; 
         
     | 
| 
      
 506 
     | 
    
         
            +
            	
         
     | 
| 
      
 507 
     | 
    
         
            +
            	border-left: 	$value solid transparent;
         
     | 
| 
      
 508 
     | 
    
         
            +
            	border-top: 	$value solid transparent;
         
     | 
| 
      
 509 
     | 
    
         
            +
            	border-bottom: 	$value solid $color;
         
     | 
| 
      
 510 
     | 
    
         
            +
            }
         
     | 
| 
      
 511 
     | 
    
         
            +
             
     | 
| 
      
 512 
     | 
    
         
            +
            @mixin triangle-down($value, $color) {
         
     | 
| 
      
 513 
     | 
    
         
            +
            	width: 		0; 
         
     | 
| 
      
 514 
     | 
    
         
            +
            	height: 	0; 
         
     | 
| 
      
 515 
     | 
    
         
            +
            	
         
     | 
| 
      
 516 
     | 
    
         
            +
            	border-left: 	$value solid transparent;
         
     | 
| 
      
 517 
     | 
    
         
            +
            	border-right: 	$value solid transparent;
         
     | 
| 
      
 518 
     | 
    
         
            +
            	border-top: 	$value solid $color;
         
     | 
| 
      
 519 
     | 
    
         
            +
            }
         
     | 
| 
      
 520 
     | 
    
         
            +
             
     | 
| 
      
 521 
     | 
    
         
            +
            @mixin triangle-left($value, $color) {
         
     | 
| 
      
 522 
     | 
    
         
            +
            	width: 		0; 
         
     | 
| 
      
 523 
     | 
    
         
            +
            	height: 	0; 
         
     | 
| 
      
 524 
     | 
    
         
            +
            	
         
     | 
| 
      
 525 
     | 
    
         
            +
            	border-top: 	$value solid transparent;
         
     | 
| 
      
 526 
     | 
    
         
            +
            	border-right: 	$value solid transparent;
         
     | 
| 
      
 527 
     | 
    
         
            +
            	border-bottom: 	$value solid $color;
         
     | 
| 
      
 528 
     | 
    
         
            +
            }
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            /**
         
     | 
| 
      
 531 
     | 
    
         
            +
            * @tags: ie js breakpoint fix
         
     | 
| 
      
 532 
     | 
    
         
            +
            * @format:
         
     | 
| 
      
 533 
     | 
    
         
            +
            * .selector(@mixin ie-grid(width:60%;));
         
     | 
| 
      
 534 
     | 
    
         
            +
            */
         
     | 
| 
      
 535 
     | 
    
         
            +
             
     | 
| 
      
 536 
     | 
    
         
            +
            @mixin ie-grid {
         
     | 
| 
      
 537 
     | 
    
         
            +
            	.is960 &,
         
     | 
| 
      
 538 
     | 
    
         
            +
            	.is1024 &,
         
     | 
| 
      
 539 
     | 
    
         
            +
            	.is1140 & {
         
     | 
| 
      
 540 
     | 
    
         
            +
            		@content;
         
     | 
| 
      
 541 
     | 
    
         
            +
            	}
         
     | 
| 
      
 542 
     | 
    
         
            +
            }
         
     | 
| 
      
 543 
     | 
    
         
            +
             
     | 
| 
      
 544 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 545 
     | 
    
         
            +
             
     | 
| 
      
 546 
     | 
    
         
            +
             
     | 
| 
      
 547 
     | 
    
         
            +
            /**
         
     | 
| 
      
 548 
     | 
    
         
            +
            * @tags: css3 circle
         
     | 
| 
      
 549 
     | 
    
         
            +
            * @extend: pager button
         
     | 
| 
      
 550 
     | 
    
         
            +
            * @format:
         
     | 
| 
      
 551 
     | 
    
         
            +
            * @include circle(width value, height value, background-color);
         
     | 
| 
      
 552 
     | 
    
         
            +
            */
         
     | 
| 
      
 553 
     | 
    
         
            +
             
     | 
| 
      
 554 
     | 
    
         
            +
            @mixin circle($circle-width, $circle-height, $color) {
         
     | 
| 
      
 555 
     | 
    
         
            +
            	width: 		$circle-width; 
         
     | 
| 
      
 556 
     | 
    
         
            +
            	height: 	$circle-height; 
         
     | 
| 
      
 557 
     | 
    
         
            +
            	background:	$color;
         
     | 
| 
      
 558 
     | 
    
         
            +
            	
         
     | 
| 
      
 559 
     | 
    
         
            +
            	@include border-radius($circle-width/2);
         
     | 
| 
      
 560 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -0,0 +1,92 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
            * Skeleton V1.1
         
     | 
| 
      
 3 
     | 
    
         
            +
            * Copyright 2011, Dave Gamache
         
     | 
| 
      
 4 
     | 
    
         
            +
            * www.getskeleton.com
         
     | 
| 
      
 5 
     | 
    
         
            +
            * Free to use under the MIT license.
         
     | 
| 
      
 6 
     | 
    
         
            +
            * http://www.opensource.org/licenses/mit-license.php
         
     | 
| 
      
 7 
     | 
    
         
            +
            * 8/17/2011
         
     | 
| 
      
 8 
     | 
    
         
            +
            */
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            /**
         
     | 
| 
      
 11 
     | 
    
         
            +
            * @tags: 	getskeleton variable
         
     | 
| 
      
 12 
     | 
    
         
            +
            * @extend: 	swap between 960 or 1200
         
     | 
| 
      
 13 
     | 
    
         
            +
            * @format:	$layout: 960;
         
     | 
| 
      
 14 
     | 
    
         
            +
            */
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            @mixin grid($grid) {
         
     | 
| 
      
 17 
     | 
    
         
            +
            	@if $grid == 960 {
         
     | 
| 
      
 18 
     | 
    
         
            +
            		/*
         
     | 
| 
      
 19 
     | 
    
         
            +
            		* Skeleton V1.1
         
     | 
| 
      
 20 
     | 
    
         
            +
            		* Copyright 2011, Dave Gamache
         
     | 
| 
      
 21 
     | 
    
         
            +
            		* www.getskeleton.com
         
     | 
| 
      
 22 
     | 
    
         
            +
            		* Free to use under the MIT license.
         
     | 
| 
      
 23 
     | 
    
         
            +
            		* http://www.opensource.org/licenses/mit-license.php
         
     | 
| 
      
 24 
     | 
    
         
            +
            		* 8/17/2011
         
     | 
| 
      
 25 
     | 
    
         
            +
            		*/
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            		.columns,.column{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;}.container{position:relative;width:960px;margin:0 auto;padding:0;}.container .column,.container .columns{float:left;display:inline;margin-left:10px;margin-right:10px;line-height:normal;}.row{margin-bottom:20px;}.column.alpha,.columns.alpha{margin-left:0;}.column.omega,.columns.omega{margin-right:0;}.container .one.column,.container .one.columns{width:40px;}.container .two.columns{width:100px;}.container .three.columns{width:160px;}.container .four.columns{width:220px;}.container .five.columns{width:280px;}.container .six.columns{width:340px;}.container .seven.columns{width:400px;}.container .eight.columns{width:460px;}.container .nine.columns{width:520px;}.container .ten.columns{width:580px;}.container .eleven.columns{width:640px;}.container .twelve.columns{width:700px;}.container .thirteen.columns{width:760px;}.container .fourteen.columns{width:820px;}.container .fifteen.columns{width:880px;}.container .sixteen.columns{width:940px;}.container .one-third.column{width:300px;}.container .two-thirds.column{width:620px;}.container .offset-by-one{padding-left:60px;}.container .offset-by-two{padding-left:120px;}.container .offset-by-three{padding-left:180px;}.container .offset-by-four{padding-left:240px;}.container .offset-by-five{padding-left:300px;}.container .offset-by-six{padding-left:360px;}.container .offset-by-seven{padding-left:420px;}.container .offset-by-eight{padding-left:480px;}.container .offset-by-nine{padding-left:540px;}.container .offset-by-ten{padding-left:600px;}.container .offset-by-eleven{padding-left:660px;}.container .offset-by-twelve{padding-left:720px;}.container .offset-by-thirteen{padding-left:780px;}.container .offset-by-fourteen{padding-left:840px;}.container .offset-by-fifteen{padding-left:900px;}@media only screen and(min-width:768px) and(max-width:959px){.container{width:768px;}.container .column,.container .columns{margin-left:10px;margin-right:10px;}.column.alpha,.columns.alpha{margin-left:0;margin-right:10px;}.column.omega,.columns.omega{margin-right:0;margin-left:10px;}.alpha.omega{margin-left:0;margin-right:0;}.container .one.column,.container .one.columns{width:28px;}.container .two.columns{width:76px;}.container .three.columns{width:124px;}.container .four.columns{width:172px;}.container .five.columns{width:220px;}.container .six.columns{width:268px;}.container .seven.columns{width:316px;}.container .eight.columns{width:364px;}.container .nine.columns{width:412px;}.container .ten.columns{width:460px;}.container .eleven.columns{width:508px;}.container .twelve.columns{width:556px;}.container .thirteen.columns{width:604px;}.container .fourteen.columns{width:652px;}.container .fifteen.columns{width:700px;}.container .sixteen.columns{width:748px;}.container .one-third.column{width:236px;}.container .two-thirds.column{width:492px;}.container .offset-by-one{padding-left:48px;}.container .offset-by-two{padding-left:96px;}.container .offset-by-three{padding-left:144px;}.container .offset-by-four{padding-left:192px;}.container .offset-by-five{padding-left:240px;}.container .offset-by-six{padding-left:288px;}.container .offset-by-seven{padding-left:336px;}.container .offset-by-eight{padding-left:384px;}.container .offset-by-nine{padding-left:432px;}.container .offset-by-ten{padding-left:480px;}.container .offset-by-eleven{padding-left:528px;}.container .offset-by-twelve{padding-left:576px;}.container .offset-by-thirteen{padding-left:624px;}.container .offset-by-fourteen{padding-left:672px;}.container .offset-by-fifteen{padding-left:720px;}}@media only screen and(max-width:767px){.container{width:90%;}.container .columns,.container .column{margin:0;}.container .one.column,.container .one.columns,.container .two.columns,.container .three.columns,.container .four.columns,.container .five.columns,.container .six.columns,.container .seven.columns,.container .eight.columns,.container .nine.columns,.container .ten.columns,.container .eleven.columns,.container .twelve.columns,.container .thirteen.columns,.container .fourteen.columns,.container .fifteen.columns,.container .sixteen.columns,.container .one-third.column,.container .two-thirds.column{width:90%;}.container .offset-by-one,.container .offset-by-two,.container .offset-by-three,.container .offset-by-four,.container .offset-by-five,.container .offset-by-six,.container .offset-by-seven,.container .offset-by-eight,.container .offset-by-nine,.container .offset-by-ten,.container .offset-by-eleven,.container .offset-by-twelve,.container .offset-by-thirteen,.container .offset-by-fourteen,.container .offset-by-fifteen{padding-left:0;}}@media only screen and(min-width:480px) and(max-width:767px){.container{width:90%;}.container .columns,.container .column{margin:0;}.container .one.column,.container .one.columns,.container .two.columns,.container .three.columns,.container .four.columns,.container .five.columns,.container .six.columns,.container .seven.columns,.container .eight.columns,.container .nine.columns,.container .ten.columns,.container .eleven.columns,.container .twelve.columns,.container .thirteen.columns,.container .fourteen.columns,.container .fifteen.columns,.container .sixteen.columns,.container .one-third.column,.container .two-thirds.column{width:90%;}}.container:after{content:"\0020";display:block;height:0;clear:both;visibility:hidden;}.clearfix:before,.clearfix:after,.row:before,.row:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:after,.clearfix:after{clear:both;}.row,.clearfix{zoom:1;}.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
         
     | 
| 
      
 28 
     | 
    
         
            +
            	}
         
     | 
| 
      
 29 
     | 
    
         
            +
            	@else if $grid == 1200 {
         
     | 
| 
      
 30 
     | 
    
         
            +
            		/*
         
     | 
| 
      
 31 
     | 
    
         
            +
            		* Skeleton V1.1
         
     | 
| 
      
 32 
     | 
    
         
            +
            		* Copyright 2011, Dave Gamache
         
     | 
| 
      
 33 
     | 
    
         
            +
            		* www.getskeleton.com
         
     | 
| 
      
 34 
     | 
    
         
            +
            		* Free to use under the MIT license.
         
     | 
| 
      
 35 
     | 
    
         
            +
            		* http://www.opensource.org/licenses/mit-license.php
         
     | 
| 
      
 36 
     | 
    
         
            +
            		* 8/17/2011
         
     | 
| 
      
 37 
     | 
    
         
            +
            		*/
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            		/*
         
     | 
| 
      
 40 
     | 
    
         
            +
            		Grid 1200px
         
     | 
| 
      
 41 
     | 
    
         
            +
            		Nicolas Poliquin
         
     | 
| 
      
 42 
     | 
    
         
            +
            		polikin.ca
         
     | 
| 
      
 43 
     | 
    
         
            +
            		*/
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            		/**
         
     | 
| 
      
 46 
     | 
    
         
            +
            		* @tags: 	reponsive grid | 1200px width
         
     | 
| 
      
 47 
     | 
    
         
            +
            		* @plugin: 	using syze plugins to fit into 1024/1140px resolution || https://github.com/rezitech/syze || syze.min.js (1KB)
         
     | 
| 
      
 48 
     | 
    
         
            +
            		* @format:
         
     | 
| 
      
 49 
     | 
    
         
            +
            		* syze.sizes(320, 480, 768, 960, 1024, 1140).names({ 320:'320', 480:'480', 768:'768', 960:'960', 1024:'1024', 1140:'1140' });
         
     | 
| 
      
 50 
     | 
    
         
            +
            		*/
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
            		.columns,.column{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-moz-transition:all .2s ease;-ms-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;}.cc .columns{clear:left;}.container{position:relative;width:1200px;margin:0 auto;padding:0;}.container .column,.container .columns{float:left;display:inline;margin-left:10px;margin-right:10px;}.row{margin-bottom:20px;}.column.alpha,.columns.alpha{margin-left:0;}.column.omega,.columns.omega{margin-right:0;}.container .one.column,.container .one.columns{width:55px;}.container .two.columns{width:120px;}.container .three.columns{width:205px;}.container .four.columns{width:280px;}.container .five.columns{width:355px;}.container .six.columns{width:430px;}.container .seven.columns{width:505px;}.container .eight.columns{width:580px;}.container .nine.columns{width:655px;}.container .ten.columns{width:730px;}.container .eleven.columns{width:805px;}.container .twelve.columns{width:880px;}.container .thirteen.columns{width:955px;}.container .fourteen.columns{width:1030px;}.container .fifteen.columns{width:1105px;}.container .sixteen.columns{width:1180px;}.container .one-third.column{width:380px;}.container .two-thirds.column{width:780px;}.container .offset-by-one{padding-left:75px;}.container .offset-by-two{padding-left:140px;}.container .offset-by-three{padding-left:225px;}.container .offset-by-four{padding-left:300px;}.container .offset-by-five{padding-left:375px;}.container .offset-by-six{padding-left:430px;}.container .offset-by-seven{padding-left:525px;}.container .offset-by-eight{padding-left:600px;}.container .offset-by-nine{padding-left:675px;}.container .offset-by-ten{padding-left:750px;}.container .offset-by-eleven{padding-left:825px;}.container .offset-by-twelve{padding-left:900px;}.container .offset-by-thirteen{padding-left:975px;}.container .offset-by-fourteen{padding-left:1050px;}.container .offset-by-fifteen{padding-left:1125px;}.container:after{content:"\0020";display:block;height:0;clear:both;visibility:hidden;}.is768 .container{width:768px;}.is768 .container .one.column,.is768 .container .one.columns{width:28px;}.is768 .container .two.columns{width:76px;}.is768 .container .three.columns{width:124px;}.is768 .container .four.columns{width:172px;}.is768 .container .five.columns{width:220px;}.is768 .container .six.columns{width:268px;}.is768 .container .seven.columns{width:316px;}.is768 .container .eight.columns{width:364px;}.is768 .container .nine.columns{width:412px;}.is768 .container .ten.columns{width:460px;}.is768 .container .eleven.columns{width:508px;}.is768 .container .twelve.columns{width:556px;}.is768 .container .thirteen.columns{width:604px;}.is768 .container .fourteen.columns{width:652px;}.is768 .container .fifteen.columns{width:700px;}.is768 .container .sixteen.columns{width:748px;}.is768 .container .one-third.column{width:236px;}.is768 .container .two-thirds.column{width:492px;}.is768 .container .offset-by-one{padding-left:48px;}.is768 .container .offset-by-two{padding-left:96px;}.is768 .container .offset-by-three{padding-left:144px;}.is768 .container .offset-by-four{padding-left:192px;}.is768 .container .offset-by-five{padding-left:240px;}.is768 .container .offset-by-six{padding-left:288px;}.is768 .container .offset-by-seven{padding-left:336px;}.is768 .container .offset-by-eight{padding-left:384px;}.is768 .container .offset-by-nine{padding-left:432px;}.is768 .container .offset-by-ten{padding-left:480px;}.is768 .container .offset-by-eleven{padding-left:528px;}.is768 .container .offset-by-twelve{padding-left:576px;}.is768 .container .offset-by-thirteen{padding-left:624px;}.is768 .container .offset-by-fourteen{padding-left:672px;}.is768 .container .offset-by-fifteen{padding-left:720px;}@media only screen and(min-width:768px) and(max-width:959px){.container{width:768px;}.container .one.column,.container .one.columns{width:28px;}.container .two.columns{width:76px;}.container .three.columns{width:124px;}.container .four.columns{width:172px;}.container .five.columns{width:220px;}.container .six.columns{width:268px;}.container .seven.columns{width:316px;}.container .eight.columns{width:364px;}.container .nine.columns{width:412px;}.container .ten.columns{width:460px;}.container .eleven.columns{width:508px;}.container .twelve.columns{width:556px;}.container .thirteen.columns{width:604px;}.container .fourteen.columns{width:652px;}.container .fifteen.columns{width:700px;}.container .sixteen.columns{width:748px;}.container .one-third.column{width:236px;}.container .two-thirds.column{width:492px;}.container .offset-by-one{padding-left:48px;}.container .offset-by-two{padding-left:96px;}.container .offset-by-three{padding-left:144px;}.container .offset-by-four{padding-left:192px;}.container .offset-by-five{padding-left:240px;}.container .offset-by-six{padding-left:288px;}.container .offset-by-seven{padding-left:336px;}.container .offset-by-eight{padding-left:384px;}.container .offset-by-nine{padding-left:432px;}.container .offset-by-ten{padding-left:480px;}.container .offset-by-eleven{padding-left:528px;}.container .offset-by-twelve{padding-left:576px;}.container .offset-by-thirteen{padding-left:624px;}.container .offset-by-fourteen{padding-left:672px;}.container .offset-by-fifteen{padding-left:720px;}}.is960 .container,.is1024 .container{width:960px;}.is960 .container .one.column,.is960 .container .one.columns{width:40px;}.is1024 .container .one.column,.is1024 .container .one.columns{width:40px;}.is960 .container .two.columns,.is1024 .container .two.columns{width:100px;}.is960 .container .three.columns,.is1024 .container .three.columns{width:160px;}.is960 .container .four.columns,.is1024 .container .four.columns{width:220px;}.is960 .container .five.columns,.is1024 .container .five.columns{width:280px;}.is960 .container .six.columns,.is1024 .container .six.columns{width:340px;}.is960 .container .seven.columns,.is1024 .container .seven.columns{width:400px;}.is960 .container .eight.columns,.is1024 .container .eight.columns{width:460px;}.is960 .container .nine.columns,.is1024 .container .nine.columns{width:520px;}.is960 .container .ten.columns,.is1024 .container .ten.columns{width:580px;}.is960 .container .eleven.columns,.is1024 .container .eleven.columns{width:640px;}.is960 .container .twelve.columns,.is1024 .container .twelve.columns{width:700px;}.is960 .container .thirteen.columns,.is1024 .container .thirteen.columns{width:760px;}.is960 .container .fourteen.columns,.is1024 .container .fourteen.columns{width:820px;}.is960 .container .fifteen.columns,.is1024 .container .fifteen.columns{width:880px;}.is960 .container .sixteen.columns,.is1024 .container .sixteen.columns{width:940px;}.is960 .container .one-third.column,.is1024 .container .one-third.column{width:300px;}.is960 .container .two-thirds.column,.is1024 .container .two-thirds.column{width:620px;}.is960 .container .offset-by-one,.is1024 .container .offset-by-one{padding-left:60px;}.is960 .container .offset-by-two,.is1024 .container .offset-by-two{padding-left:120px;}.is960 .container .offset-by-three,.is1024 .container .offset-by-three{padding-left:180px;}.is960 .container .offset-by-four,.is1024 .container .offset-by-four{padding-left:240px;}.is960 .container .offset-by-five,.is1024 .container .offset-by-five{padding-left:300px;}.is960 .container .offset-by-six,.is1024 .container .offset-by-six{padding-left:360px;}.is960 .container .offset-by-seven,.is1024 .container .offset-by-seven{padding-left:420px;}.is960 .container .offset-by-eight,.is1024 .container .offset-by-eight{padding-left:480px;}.is960 .container .offset-by-nine,.is1024 .container .offset-by-nine{padding-left:540px;}.is960 .container .offset-by-ten,.is1024 .container .offset-by-ten{padding-left:600px;}.is960 .container .offset-by-eleven,.is1024 .container .offset-by-eleven{padding-left:660px;}.is960 .container .offset-by-twelve,.is1024 .container .offset-by-twelve{padding-left:720px;}.is960 .container .offset-by-thirteen,.is1024 .container .offset-by-thirteen{padding-left:780px;}.is960 .container .offset-by-fourteen,.is1024 .container .offset-by-fourteen{padding-left:840px;}.is960 .container .offset-by-fifteen,.is1024 .container .offset-by-fifteen{padding-left:900px;}@media only screen and(min-width:960px) and(max-width:1199px){.container{width:960px;}.container .one.column,.container .one.columns{width:40px;}.container .two.columns{width:100px;}.container .three.columns{width:160px;}.container .four.columns{width:220px;}.container .five.columns{width:280px;}.container .six.columns{width:340px;}.container .seven.columns{width:400px;}.container .eight.columns{width:460px;}.container .nine.columns{width:520px;}.container .ten.columns{width:580px;}.container .eleven.columns{width:640px;}.container .twelve.columns{width:700px;}.container .thirteen.columns{width:760px;}.container .fourteen.columns{width:820px;}.container .fifteen.columns{width:880px;}.container .sixteen.columns{width:940px;}.container .one-third.column{width:300px;}.container .two-thirds.column{width:620px;}.container .offset-by-one{padding-left:60px;}.container .offset-by-two{padding-left:120px;}.container .offset-by-three{padding-left:180px;}.container .offset-by-four{padding-left:240px;}.container .offset-by-five{padding-left:300px;}.container .offset-by-six{padding-left:360px;}.container .offset-by-seven{padding-left:420px;}.container .offset-by-eight{padding-left:480px;}.container .offset-by-nine{padding-left:540px;}.container .offset-by-ten{padding-left:600px;}.container .offset-by-eleven{padding-left:660px;}.container .offset-by-twelve{padding-left:720px;}.container .offset-by-thirteen{padding-left:780px;}.container .offset-by-fourteen{padding-left:840px;}.container .offset-by-fifteen{padding-left:900px;}}.is320 .container{width:90%;}.is320 .container .columns,.is320 .container .column{margin:0;}.is320 .container .one.column,.is320 .container .one.columns{width:90%;}.is320 .container .two.columns,.is320 .container .three.columns,.is320 .container .four.columns,.is320 .container .five.columns,.is320 .container .six.columns,.is320 .container .seven.columns,.is320 .container .eight.columns,.is320 .container .nine.columns,.is320 .container .ten.columns,.is320 .container .eleven.columns,.is320 .container .twelve.columns,.is320 .container .thirteen.columns,.is320 .container .fourteen.columns,.is320 .container .fifteen.columns,.is320 .container .sixteen.columns,.is320 .container .one-third.column,.is320 .container .two-thirds.column{width:90%;}.is320 .container .offset-by-one,.is320 .container .offset-by-two,.is320 .container .offset-by-three,.is320 .container .offset-by-four,.is320 .container .offset-by-five,.is320 .container .offset-by-six,.is320 .container .offset-by-seven,.is320 .container .offset-by-eight,.is320 .container .offset-by-nine,.is320 .container .offset-by-ten,.is320 .container .offset-by-eleven,.is320 .container .offset-by-twelve,.is320 .container .offset-by-thirteen,.is320 .container .offset-by-fourteen,.is320 .container .offset-by-fifteen{padding-left:0;}@media only screen and(max-width:767px){.container{width:90%;}.container .columns,.container .column{margin:0;}.container .one.column,.container .one.columns{width:90%;}.container .two.columns,.container .three.columns,.container .four.columns,.container .five.columns,.container .six.columns,.container .seven.columns,.container .eight.columns,.container .nine.columns,.container .ten.columns,.container .eleven.columns,.container .twelve.columns,.container .thirteen.columns,.container .fourteen.columns,.container .fifteen.columns,.container .sixteen.columns,.container .one-third.column,.container .two-thirds.column{width:90%;}.container .offset-by-one,.container .offset-by-two,.container .offset-by-three,.container .offset-by-four,.container .offset-by-five,.container .offset-by-six,.container .offset-by-seven,.container .offset-by-eight,.container .offset-by-nine,.container .offset-by-ten,.container .offset-by-eleven,.container .offset-by-twelve,.container .offset-by-thirteen,.container .offset-by-fourteen,.container .offset-by-fifteen{padding-left:0;}}.is480 .container{width:90%;}.is480 .container .columns,.is480 .container .column{margin:0;}.is480 .container .one.column,.is480 .container .one.columns{width:90%;}.is480 .container .two.columns,.is480 .container .three.columns,.is480 .container .four.columns,.is480 .container .five.columns,.is480 .container .six.columns,.is480 .container .seven.columns,.is480 .container .eight.columns,.is480 .container .nine.columns,.is480 .container .ten.columns,.is480 .container .eleven.columns,.is480 .container .twelve.columns,.is480 .container .thirteen.columns,.is480 .container .fourteen.columns,.is480 .container .fifteen.columns,.is480 .container .sixteen.columns,.is480 .container .one-third.column,.is480 .container .two-thirds.column{width:90%;}@media only screen and(min-width:480px) and(max-width:767px){.container{width:90%;}.container .columns,.container .column{margin:0;}.container .one.column,.container .one.columns{width:90%;}.container .two.columns,.container .three.columns,.container .four.columns,.container .five.columns,.container .six.columns,.container .seven.columns,.container .eight.columns,.container .nine.columns,.container .ten.columns,.container .eleven.columns,.container .twelve.columns,.container .thirteen.columns,.container .fourteen.columns,.container .fifteen.columns,.container .sixteen.columns,.container .one-third.column,.container .two-thirds.column{width:90%;}}.clearfix:before,.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;clear:both;}.clearfix:after{clear:both;}.row,.clearfix{zoom:1;}.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
         
     | 
| 
      
 53 
     | 
    
         
            +
            	}@else if $grid == fluid {
         
     | 
| 
      
 54 
     | 
    
         
            +
            .one,.two,.three,.four,.five,.six,.seven,.eight,.nine,.ten,.eleven,.twelve,.thirteen,.fourteen,.fifteen,.sixteen,.one-third{float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.columns{margin-left:.75%}.one-third{width:32.4%}.one{width:4.84375%}.two{width:11.1875%}.three{width:17.53125%}.four{width:23.875%}.five{width:30.21875%}.six{width:36.5625%}.seven{width:42.90625%}.eight{width:49.25%}.nine{width:55.59375%}.ten{width:61.9375%}.eleven{width:68.28125%}.twelve{width:74.625%}.thirteen{width:80.96875%}.fourteen{width:87.3125%}.fifteen{width:93.65625%}.sixteen{width:90%}#container,.inner,.container{margin:0 auto}#container{clear:both;padding-top:20px}@media screen and (max-width:768px){.one,.two,.three,.four,.five,.six,.seven,.eight,.nine,.ten,.eleven,.twelve,.thirteen,.fourteen,.fifteen,.sixteen,.one-third{width:100%}#container,.inner,.container{width:100%;padding:0 5% 0 5%}}.cf{*zoom:1}
         
     | 
| 
      
 55 
     | 
    
         
            +
            	}@else if $grid == none {
         
     | 
| 
      
 56 
     | 
    
         
            +
            		/* no grid */
         
     | 
| 
      
 57 
     | 
    
         
            +
            	}
         
     | 
| 
      
 58 
     | 
    
         
            +
            }
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            /**
         
     | 
| 
      
 61 
     | 
    
         
            +
            * @tags: 	fixed grid
         
     | 
| 
      
 62 
     | 
    
         
            +
            */
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            @mixin fixed-grid($grid){
         
     | 
| 
      
 65 
     | 
    
         
            +
            	@if $grid == 960 {
         
     | 
| 
      
 66 
     | 
    
         
            +
            				.columns,.column{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;}.container{position:relative;width:960px;margin:0 auto;padding:0;}.container .column,.container .columns{float:left;display:inline;margin-left:10px;margin-right:10px;line-height:normal;}.row{margin-bottom:20px;}.column.alpha,.columns.alpha{margin-left:0;}.column.omega,.columns.omega{margin-right:0;}.container .one.column,.container .one.columns{width:40px;}.container .two.columns{width:100px;}.container .three.columns{width:160px;}.container .four.columns{width:220px;}.container .five.columns{width:280px;}.container .six.columns{width:340px;}.container .seven.columns{width:400px;}.container .eight.columns{width:460px;}.container .nine.columns{width:520px;}.container .ten.columns{width:580px;}.container .eleven.columns{width:640px;}.container .twelve.columns{width:700px;}.container .thirteen.columns{width:760px;}.container .fourteen.columns{width:820px;}.container .fifteen.columns{width:880px;}.container .sixteen.columns{width:940px;}.container .one-third.column{width:300px;}.container .two-thirds.column{width:620px;}.container .offset-by-one{padding-left:60px;}.container .offset-by-two{padding-left:120px;}.container .offset-by-three{padding-left:180px;}.container .offset-by-four{padding-left:240px;}.container .offset-by-five{padding-left:300px;}.container .offset-by-six{padding-left:360px;}.container .offset-by-seven{padding-left:420px;}.container .offset-by-eight{padding-left:480px;}.container .offset-by-nine{padding-left:540px;}.container .offset-by-ten{padding-left:600px;}.container .offset-by-eleven{padding-left:660px;}.container .offset-by-twelve{padding-left:720px;}.container .offset-by-thirteen{padding-left:780px;}.container .offset-by-fourteen{padding-left:840px;}.container .offset-by-fifteen{padding-left:900px;}.container:after{content:"\0020";display:block;height:0;clear:both;visibility:hidden;}.clearfix:before,.clearfix:after,.row:before,.row:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:after,.clearfix:after{clear:both;}.row,.clearfix{zoom:1;}.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.wrapper { overflow-x: auto; min-width: 960px;}
         
     | 
| 
      
 67 
     | 
    
         
            +
            	}@elseif $grid == 1200 {
         
     | 
| 
      
 68 
     | 
    
         
            +
            		.columns,.column{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-moz-transition:all .2s ease;-ms-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;}.cc .columns{clear:left;}.container{position:relative;width:1200px;margin:0 auto;padding:0;}.container .column,.container .columns{float:left;display:inline;margin-left:10px;margin-right:10px;}.row{margin-bottom:20px;}.column.alpha,.columns.alpha{margin-left:0;}.column.omega,.columns.omega{margin-right:0;}.container .one.column,.container .one.columns{width:55px;}.container .two.columns{width:120px;}.container .three.columns{width:205px;}.container .four.columns{width:280px;}.container .five.columns{width:355px;}.container .six.columns{width:430px;}.container .seven.columns{width:505px;}.container .eight.columns{width:580px;}.container .nine.columns{width:655px;}.container .ten.columns{width:730px;}.container .eleven.columns{width:805px;}.container .twelve.columns{width:880px;}.container .thirteen.columns{width:955px;}.container .fourteen.columns{width:1030px;}.container .fifteen.columns{width:1105px;}.container .sixteen.columns{width:1180px;}.container .one-third.column{width:380px;}.container .two-thirds.column{width:780px;}.container .offset-by-one{padding-left:75px;}.container .offset-by-two{padding-left:140px;}.container .offset-by-three{padding-left:225px;}.container .offset-by-four{padding-left:300px;}.container .offset-by-five{padding-left:375px;}.container .offset-by-six{padding-left:430px;}.container .offset-by-seven{padding-left:525px;}.container .offset-by-eight{padding-left:600px;}.container .offset-by-nine{padding-left:675px;}.container .offset-by-ten{padding-left:750px;}.container .offset-by-eleven{padding-left:825px;}.container .offset-by-twelve{padding-left:900px;}.container .offset-by-thirteen{padding-left:975px;}.container .offset-by-fourteen{padding-left:1050px;}.container .offset-by-fifteen{padding-left:1125px;}.container:after{content:"\0020";display:block;height:0;clear:both;visibility:hidden;}.clearfix:before,.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.row:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;clear:both;}.clearfix:after{clear:both;}.row,.clearfix{zoom:1;}.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}.is960 .container,.is1024 .container,.is1140 .container{width:960px;}.is960 .container .one.column,.is960 .container .one.columns,.is1024 .container .one.columns,.is1140 .container .one.columns{width:40px;}.is1024 .container .one.column,.is1024 .container .one.columns{width:40px;}.is960 .container .two.columns,.is1024 .container .two.columns,.is1140 .container .two.columns{width:100px;}.is960 .container .three.columns,.is1024 .container .three.columns,.is1140 .container .three.columns{width:160px;}.is960 .container .four.columns,.is1024 .container .four.columns,.is1140 .container .four.columns{width:220px;}.is960 .container .five.columns,.is1024 .container .five.columns,.is1140 .container .five.columns{width:280px;}.is960 .container .six.columns,.is1024 .container .six.columns,.is1140 .container .six.columns{width:340px;}.is960 .container .seven.columns,.is1024 .container .seven.columns,.is1140 .container .seven.columns{width:400px;}.is960 .container .eight.columns,.is1024 .container .eight.columns,.is1140 .container .eight.columns{width:460px;}.is960 .container .nine.columns,.is1024 .container .nine.columns,.is1140 .container .nine.columns{width:520px;}.is960 .container .ten.columns,.is1024 .container .ten.columns,.is1140 .container .ten.columns{width:580px;}.is960 .container .eleven.columns,.is1024 .container .eleven.columns,.is1140 .container .eleven.columns{width:640px;}.is960 .container .twelve.columns,.is1024 .container .twelve.columns,.is1140 .container .twelve.columns{width:700px;}.is960 .container .thirteen.columns,.is1024 .container .thirteen.columns,.is1140 .container .thirteen.columns{width:760px;}.is960 .container .fourteen.columns,.is1024 .container .fourteen.columns,.is1140 .container .fourteen.columns{width:820px;}.is960 .container .fifteen.columns,.is1024 .container .fifteen.columns,.is1140 .container .fifteen.columns{width:880px;}.is960 .container .sixteen.columns,.is1024 .container .sixteen.columns,.is1140 .container .sixteen.columns{width:940px;}.is960 .container .one-third.column,.is1024 .container .one-third.column,.is1140 .container .one-third.column{width:300px;}.is960 .container .two-thirds.column,.is1024 .container .two-thirds.column,.is1140 .container .two-thirds.column{width:620px;}.is960 .container .offset-by-one,.is1024 .container .offset-by-one,.is1140 .container .offset-by-one{padding-left:60px;}.is960 .container .offset-by-two,.is1024 .container .offset-by-two,.is1140 .container .offset-by-two{padding-left:120px;}.is960 .container .offset-by-three,.is1024 .container .offset-by-three,.is1140 .container .offset-by-three{padding-left:180px;}.is960 .container .offset-by-four,.is1024 .container .offset-by-four,.is1140 .container .offset-by-four{padding-left:240px;}.is960 .container .offset-by-five,.is1024 .container .offset-by-five,.is1140 .container .offset-by-five{padding-left:300px;}.is960 .container .offset-by-six,.is1024 .container .offset-by-six,.is1140 .container .offset-by-six{padding-left:360px;}.is960 .container .offset-by-seven,.is1024 .container .offset-by-seven,.is1140 .container .offset-by-seven{padding-left:420px;}.is960 .container .offset-by-eight,.is1024 .container .offset-by-eight,.is1140 .container .offset-by-eight{padding-left:480px;}.is960 .container .offset-by-nine,.is1024 .container .offset-by-nine,.is1140 .container .offset-by-nine{padding-left:540px;}.is960 .container .offset-by-ten,.is1024 .container .offset-by-ten,.is1140 .container .offset-by-ten{padding-left:600px;}.is960 .container .offset-by-eleven,.is1024 .container .offset-by-eleven,.is1140 .container .offset-by-eleven{padding-left:660px;}.is960 .container .offset-by-twelve,.is1024 .container .offset-by-twelve,.is1140 .container .offset-by-twelve{padding-left:720px;}.is960 .container .offset-by-thirteen,.is1024 .container .offset-by-thirteen,.is1140 .container .offset-by-thirteen{padding-left:780px;}.is960 .container .offset-by-fourteen,.is1024 .container .offset-by-fourteen,.is1140 .container .offset-by-fourteen{padding-left:840px;}.is960 .container .offset-by-fifteen,.is1024 .container .offset-by-fifteen,.is1140 .container .offset-by-fifteen{padding-left:900px;}.is768 .wrapper { min-width: 1200px; overflow-x: auto;}
         
     | 
| 
      
 69 
     | 
    
         
            +
            	}
         
     | 
| 
      
 70 
     | 
    
         
            +
            }
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            /*****************/
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            /**
         
     | 
| 
      
 76 
     | 
    
         
            +
            * @tags: enable or disable responsive grid
         
     | 
| 
      
 77 
     | 
    
         
            +
            */
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            @mixin responsive($responsive) {
         
     | 
| 
      
 80 
     | 
    
         
            +
            	@if $responsive == true {
         
     | 
| 
      
 81 
     | 
    
         
            +
            		@include grid($layout); 
         
     | 
| 
      
 82 
     | 
    
         
            +
            	}@elseif $responsive == false {
         
     | 
| 
      
 83 
     | 
    
         
            +
            		@include fixed-grid($layout);
         
     | 
| 
      
 84 
     | 
    
         
            +
            	}
         
     | 
| 
      
 85 
     | 
    
         
            +
            	@elseif $responsive == fluid {
         
     | 
| 
      
 86 
     | 
    
         
            +
            		@include grid($layout);
         
     | 
| 
      
 87 
     | 
    
         
            +
            	}@elseif $responsive == none {
         
     | 
| 
      
 88 
     | 
    
         
            +
            		@include grid($layout);
         
     | 
| 
      
 89 
     | 
    
         
            +
            	}
         
     | 
| 
      
 90 
     | 
    
         
            +
            }
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
            /*****************/
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,16 +1,16 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: charcoalcms
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 25
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 0
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 0
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 9 
     | 
    
         
            +
              - 3
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 0.0.3
         
     | 
| 
       11 
11 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
12 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
     | 
    
         
            -
            - Nik
         
     | 
| 
      
 13 
     | 
    
         
            +
            - Nik | polikin.ca
         
     | 
| 
       14 
14 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       15 
15 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
16 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
         @@ -25,24 +25,44 @@ dependencies: 
     | 
|
| 
       25 
25 
     | 
    
         
             
                requirements: 
         
     | 
| 
       26 
26 
     | 
    
         
             
                - - ">="
         
     | 
| 
       27 
27 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       28 
     | 
    
         
            -
                    hash:  
     | 
| 
      
 28 
     | 
    
         
            +
                    hash: 43
         
     | 
| 
       29 
29 
     | 
    
         
             
                    segments: 
         
     | 
| 
       30 
30 
     | 
    
         
             
                    - 0
         
     | 
| 
       31 
     | 
    
         
            -
                     
     | 
| 
      
 31 
     | 
    
         
            +
                    - 12
         
     | 
| 
      
 32 
     | 
    
         
            +
                    - 2
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 0.12.2
         
     | 
| 
       32 
34 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       33 
35 
     | 
    
         
             
              version_requirements: *id001
         
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
      
 36 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 37 
     | 
    
         
            +
              name: sass
         
     | 
| 
      
 38 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 39 
     | 
    
         
            +
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 40 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 41 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 42 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 43 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 44 
     | 
    
         
            +
                    hash: 15
         
     | 
| 
      
 45 
     | 
    
         
            +
                    segments: 
         
     | 
| 
      
 46 
     | 
    
         
            +
                    - 3
         
     | 
| 
      
 47 
     | 
    
         
            +
                    - 2
         
     | 
| 
      
 48 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 49 
     | 
    
         
            +
                    version: 3.2.0
         
     | 
| 
      
 50 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 51 
     | 
    
         
            +
              version_requirements: *id002
         
     | 
| 
      
 52 
     | 
    
         
            +
            description: Sass/Compass mixins & Include responsive grid base on getskeleton html/css structure || 960 (http://getskeleton.com/) or 1200 (https://github.com/theresponsiveness/GetSkeleton1200) || Fluid (http://app.responsify.it/)
         
     | 
| 
      
 53 
     | 
    
         
            +
            email: responsiveness@polikin.ca
         
     | 
| 
       37 
54 
     | 
    
         
             
            executables: []
         
     | 
| 
       38 
55 
     | 
    
         | 
| 
       39 
56 
     | 
    
         
             
            extensions: []
         
     | 
| 
       40 
57 
     | 
    
         | 
| 
       41 
58 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       42 
59 
     | 
    
         | 
| 
       43 
     | 
    
         
            -
            files:  
     | 
| 
       44 
     | 
    
         
            -
             
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
      
 60 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 61 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 62 
     | 
    
         
            +
            - scss/_charcoal.scss
         
     | 
| 
      
 63 
     | 
    
         
            +
            - scss/charcoal/_core.functions.scss
         
     | 
| 
      
 64 
     | 
    
         
            +
            - scss/charcoal/_responsive-grid.scss
         
     | 
| 
      
 65 
     | 
    
         
            +
            homepage: http://rubygems.org/gems/charcoalcms
         
     | 
| 
       46 
66 
     | 
    
         
             
            licenses: []
         
     | 
| 
       47 
67 
     | 
    
         | 
| 
       48 
68 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
         @@ -64,16 +84,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       64 
84 
     | 
    
         
             
              requirements: 
         
     | 
| 
       65 
85 
     | 
    
         
             
              - - ">="
         
     | 
| 
       66 
86 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
       67 
     | 
    
         
            -
                  hash:  
     | 
| 
      
 87 
     | 
    
         
            +
                  hash: 11
         
     | 
| 
       68 
88 
     | 
    
         
             
                  segments: 
         
     | 
| 
       69 
     | 
    
         
            -
                  -  
     | 
| 
       70 
     | 
    
         
            -
                   
     | 
| 
      
 89 
     | 
    
         
            +
                  - 1
         
     | 
| 
      
 90 
     | 
    
         
            +
                  - 2
         
     | 
| 
      
 91 
     | 
    
         
            +
                  version: "1.2"
         
     | 
| 
       71 
92 
     | 
    
         
             
            requirements: []
         
     | 
| 
       72 
93 
     | 
    
         | 
| 
       73 
     | 
    
         
            -
            rubyforge_project: 
         
     | 
| 
      
 94 
     | 
    
         
            +
            rubyforge_project: charcoalcms
         
     | 
| 
       74 
95 
     | 
    
         
             
            rubygems_version: 1.8.25
         
     | 
| 
       75 
96 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       76 
97 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       77 
     | 
    
         
            -
            summary:  
     | 
| 
      
 98 
     | 
    
         
            +
            summary: Sass/Compass mixins & Include responsive grid base on getskeleton
         
     | 
| 
       78 
99 
     | 
    
         
             
            test_files: []
         
     | 
| 
       79 
100 
     | 
    
         |