charcoalcms 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,288 @@
1
+ Susy Changelog
2
+ ==============
3
+
4
+ v1.0.8 [March 25, 2013]
5
+ -----------------------
6
+
7
+ * Fix more edge mixed-unit conflicts with `container-style: static`.
8
+
9
+ v1.0.7 [March 19, 2013]
10
+ -----------------------
11
+
12
+ * Fix edge-case where `$container-style` and `$container-width` cause conflict.
13
+
14
+ v1.0.6 [March 18, 2013]
15
+ -----------------------
16
+
17
+ * Add `isolate` and `isolate-grid` mixins.
18
+ * Add `bleed` mixin.
19
+ * Add `$style` argument to grid mixins.
20
+ * Fix documentation typos.
21
+ * Switch from `#` to `*` in legacy-ie hacks.
22
+
23
+ v1.0.5 [Nov 27, 2012]
24
+ ---------------------
25
+
26
+ * Add support for rem-units.
27
+ * Clean-up quoted arguments.
28
+ * Fix a few bugs related to the override settings.
29
+
30
+ v1.0.4 [Nov 3, 2012]
31
+ ---------------------
32
+
33
+ * Fix bug in nested mixins that adjust support (e.g. `nth-omeg` inside `at-breakpoint`).
34
+ * Remove non-ie experimental support in `at-breakpoint` ie-fallback output.
35
+
36
+ v1.0.3 [Oct 20, 2012]
37
+ ---------------------
38
+
39
+ * Fix Compass dependencies.
40
+
41
+ v1.0.2 [Oct 20, 2012]
42
+ ---------------------
43
+
44
+ * Fix a bug with `container-outer-width` ignoring `$columns` argument.
45
+ * Turn off legacy-ie support inside CSS3 selectors (`nth-omega` etc).
46
+
47
+ v1.0.1 [Sept 12, 2012]
48
+ ----------------------
49
+
50
+ * Fix a bug in the relationship between `$container-width` and `$border-box-sizing`,
51
+ so that grid-padding is subtracted from the width in certain cases.
52
+ * Reset right margin to `auto` rather than `0` with `remove-omega`.
53
+
54
+ v1.0 [Aug 14, 2012]
55
+ -------------------
56
+
57
+ This release is loaded with new features, but don't let that fool you. Susy
58
+ just became shockingly simple to use. See the [website][site] for details.
59
+
60
+ The gem name has changed from `compass-susy-plugin` to `susy`.
61
+ First uninstall the old gem, then install the new one.
62
+ If you have both gems installed, you will get errors.
63
+
64
+ [site]: http://susy.oddbird.net/
65
+
66
+ Semantics:
67
+
68
+ We re-arranged the code
69
+ in order to make the syntax simpler and more consistent:
70
+
71
+ * `$total-cols` is now `$total-columns`.
72
+ * `$col-width` is now `$column-width`.
73
+ * `$side-gutter-width` is now `$grid-padding`
74
+ and gets applied directly to the grid container.
75
+ * `un-column` & `reset-column` mixins have merged into `reset-columns`.
76
+ * `columns` has been renamed `span-columns` to resolve the conflict with CSS3 columns.
77
+ See other improvements to span-columns below.
78
+
79
+ We also removed several bothersome requirements:
80
+
81
+ * The `alpha` mixin is no longer needed. Ever.
82
+ * The `omega` no longer takes a `$context` argument.
83
+ * `full` has been removed entirely.
84
+ Elements will be full-width by default.
85
+ You can add `clear: both;` back in as needed.
86
+ * `side-gutter()` is no longer needed.
87
+ You can use the `$grid-padding` setting directly.
88
+
89
+ Upgrade:
90
+
91
+ That's all you need in order to upgrade from Susy 0.9.
92
+
93
+ 1. Uninstall and re-install the gem.
94
+ 2. Find and replace the semantic changes listed above.
95
+
96
+ You're done! Stop worrying about all that "nested vs. root" bullshit,
97
+ and start playing with the new toys!
98
+
99
+ If you use the `$from` directional arguments
100
+ directly in the `span-columns` mixin,
101
+ there may be one more change to make.
102
+ See below:
103
+
104
+ New Features:
105
+
106
+ * `span-columns` supports new features:
107
+ - "omega" can be applied directly through the `$columns` argument.
108
+ - Internal padding can be added through the `$padding` argument.
109
+ - This pushes the `$from` argument from third position into fourth.
110
+ * `at-breakpoint` allows you to change layouts at media breakpoints.
111
+ * `container` accepts multiple media-layout combinations as a shortcut.
112
+ * `layout` allows you to use a different layout at any time.
113
+ * `with-grid-settings` allows you to change any or all grid settings.
114
+ * `set-container-width` does what it says, without the other container code.
115
+ * `$breakpoint-media-output`, `$breakpoint-ie-output`, and `$breakpoint-raw-output`
116
+ settings help manage the different outputs from `at-breakpoint`
117
+ when you have IE-overrides living in a file of their own.
118
+ * `border-box-sizing` will apply the popular `* { box-sizing: border-box }`
119
+ universal box-model fix, as well as changing the Susy `$border-box-model` setting for you,
120
+ so Susy knows to adjust some math.
121
+ * The `space()` function can be used anywhere you need column+gutter math.
122
+ * `push`, `pull`, `pre`, `post`, and `squish` mixins help manage margins.
123
+ * use the `nth-omega` mixin to set omega on any nth-child, nth-of-type,
124
+ first, last, or only element.
125
+ * `remove-omega` and `remove-nth-omega` will remove
126
+ the omega-specific styles from an element.
127
+ * `$container-width` will override the width of your container
128
+ with any arbitrary length.
129
+ * `$container-style` will override the type of grid container
130
+ (magic, fluid, fixed, static, etc) to use.
131
+
132
+ v0.9 [Apr 25 2011]
133
+ ------------------
134
+
135
+ Everything here is about simplicity. Susy has scaled back to it's most basic
136
+ function: providing flexible grids. That is all.
137
+
138
+ Deprecated:
139
+
140
+ * The `susy/susy` import is deprecated in favor of simply importing `susy`.
141
+ * The `show-grid` import is deprecated in favor of CSS3 gradient-based
142
+ grid-images. You can now use the `susy-grid-background` mixin. See below.
143
+
144
+ Removed:
145
+
146
+ * Susy no longer imports all of compass.
147
+ * Susy no longer establishes your baseline and no longer provides a reset.
148
+ All of that is in the Compass core. You can (and should!) keep using them, but
149
+ you will need to import them from compass.
150
+
151
+ New:
152
+
153
+ * Use the `susy-grid-background` mixin on any `container` to display the grid.
154
+ This toggles on and off with the same controls that are used by the compass
155
+ grid-background module.
156
+
157
+ v0.9.beta.3 [Mar 16 2011]
158
+ -------------------------
159
+
160
+ Deprecated:
161
+
162
+ * The `susy/reset` import has been deprecated in favor of the Compass core `compass/reset` import.
163
+ * The `susy` mixin has been deprecated. If you plan to continue using vertical-rhythms, you should replace it with the `establish-baseline` mixin from the Compass Core.
164
+
165
+ Removed:
166
+
167
+ * The `vertical-rhythm` module has moved into compass core. The API remains the same, but if you were importing it directly, you will have to update that import. (`$px2em` was removed as part of this, but didn't make it into core).
168
+ * The `defaults` template has been removed as 'out-of-scope'. This will not effect upgrading in any way, but new projects will not get a template with default styles.
169
+
170
+ New Features:
171
+
172
+ * Susy now supports RTL grids and bi-directional sites using the `$from-direction` variable (default: left) and an optional additional from-direction argument on all affected mixins. Thanks to @bangpound for the initial implementation.
173
+ * Susy is now written in pure Sass! No extra Ruby functions included! Thanks to the Sass team for making it possible.
174
+
175
+ v0.8.1 [Sep 24 2010]
176
+ --------------------
177
+
178
+ * Fixed typos in tutorial and `_defaults.scss`
179
+
180
+ v0.8.0 [Aug 13 2010]
181
+ --------------------
182
+
183
+ Deprecated:
184
+
185
+ * The `skip-link` was deprecated as it doesn't belong in Susy.
186
+ * All the IE-specific mixins have been deprecated, along with the `$hacks` variable. Hacks are now used in the default mixins as per Compass.
187
+ * The `hide` mixin was deprecated in favor of the Compass code `hide-text` mixin.
188
+
189
+ Other Changes:
190
+
191
+ * `inline-block-list` will be moved to the compass core soon. In preparation, I've cleaned it up some. You can now apply a padding of "0" to override previous padding arguments. You can also use `inline-block-list-container` and `inline-block-list-item` as you would with the Compass `horizontal-list` mixins.
192
+ * The `$align` arguments have been removed from both the `susy` and `container` mixins. Text-alignment is no longer used or needed in achieving page centering. That was a cary-over from the IE5 Mac days.
193
+ * The `container` mixin now uses the `pie-clearfix` compass mixin to avoid setting the overflow to hidden.
194
+ * Default styles have been cleaned up to account for better font stacks and typography, html5 elements, vertically-rhythmed forms, expanded print styles, use of `@extend`, and overall simplification.
195
+
196
+ v0.7.0 [Jun 01 2010]
197
+ --------------------
198
+
199
+ * updated documentation
200
+
201
+ v0.7.0.rc2 [May 13 2010]
202
+ ------------------------
203
+
204
+ * Fixes a bug with grid.png and a typo in the readme. Nothing major here.
205
+
206
+ v0.7.0.rc1 [May 12 2010]
207
+ ------------------------
208
+
209
+ * template cleanup & simplification - no more pushing CSSEdit comments, etc.
210
+ * expanded base and defaults with better fonts & styles out-of-the-box
211
+ * expanded readme documentation. This will expand out into a larger docs/tutorial site in the next week.
212
+
213
+ v0.7.0.pre8 [Apr 20 2010]
214
+ -------------------------
215
+
216
+ * mostly syntax and gem cleanup
217
+ * added `un-column` mixin to reset elements previously declared as columns.
218
+ * added `rhythm` mixin as shortcut for leaders/trailers. accepts 4 args: leader, padding-leader, padding-trailer, trailer.
219
+ * added a warning on `alpha` to remind you that `alpha` is not needed at nested levels.
220
+
221
+ v0.7.0.pre7 [Apr 13 2010]
222
+ -------------------------
223
+
224
+ * *Requires HAML 3 and Compass 0.10.0.rc2*
225
+ * Internal syntax switched to scss. This will have little or no effect on users. You can still use Susy with either (Sass/Scss) syntax.
226
+ * `$default-rhythm-border-style` overrides default rhythm border styles
227
+ * Better handling of sub-pixel rounding for IE6
228
+
229
+ v0.7.0.pre6 [Mar 29 2010]
230
+ -------------------------
231
+
232
+ * Added `+h-borders()` shortcut for vertical_rhythm `+horizontal-borders()`
233
+ * Fixed vertical rhythm font-size typo (thanks @oscarduignan)
234
+ * Added to template styles, so susy is already in place from the start
235
+
236
+ v0.7.0.pre5 [Mar 19 2010]
237
+ -------------------------
238
+
239
+ * Expanded and adjusted `_vertical_rhythm.sass` in ways that are not entirely backwards compatible. Check the file for details.
240
+ * `_defaults.sass` is re-ordered from inline to block.
241
+ * `:focus` defaults cleaned up.
242
+ * README and docs updated.
243
+
244
+ v0.7.0.pre4 [Jan 20 2010]
245
+ -------------------------
246
+
247
+ Update: pre2 was missing a file in the manifest. Use pre4.
248
+
249
+ *Update:* Forgot to note one change: `+susy` is no longer assigned to the `body` tag, but instead at the top level of the document (not nested under anything).
250
+
251
+ Warning: This update is not backwards compatible. We've changed some things. You'll have to change some things. Our changes were fairly major in cleaning up the code - yours will be minor and also clean up some code.
252
+
253
+ Added:
254
+
255
+ * new `_vertical_rhythm.sass` (thanks to Chris Eppstein) provides better establishing of the baseline grid, as well as mixins to help you manage it.
256
+ * `!px2em` has replaced `px2em()` - see below.
257
+
258
+ Removed:
259
+
260
+ * `px2em()` has been removed and replaced with a simple variable `!px2em` which returns the size of one pixel relative to your basic em-height. Multiply against your desired px dimensions (i.e. `border-width = !px2em*5px` will output the em-equivalent of 5px).
261
+ * `!base_font_size_px` and `!base_line_height_px` have been replaced with `!base_font_size` and `!base_line_height` which take advantage of sass's built-in unit handling.
262
+ * `!grid_units` is not needed, as you can now declare your units directly in the other grid `_width` variables. Use any one type of units in declaring your grid. The units you use will be used in setting the container size.
263
+
264
+ Once you've upgraded, before you compile your files, make these changes:
265
+
266
+ * remove the "_px" from the font-size and line-height variables, and add "px" to their values.
267
+ * remove the `!grid_units` variable and add units to your grid variable values.
268
+ * find any uses of `px2em()` and replace them with something.
269
+ * enjoy!
270
+
271
+ v0.7.0.pre1 [Nov 30 2009]
272
+ -------------------------
273
+
274
+ Not a lot of new functionality here – it all moved over to Compass 0.10.0 – mostly just cleaning it up to match.
275
+
276
+ * simplified the default styles and gave them their own project template (‘_defaults.sass’).
277
+ * defaults not imported by ‘ie.sass’, as ‘ie.sass’ should be cascading on top of ‘screen.sass’ anyway
278
+ * changed the syntax to match CSS and Compass (‘property:’ replaces ‘:property’)
279
+ * added more inline documentation and brought tutorial up to date
280
+ * moved CSS3 module over to Compass
281
+ * import the compass HTML5 reset along with the normal reset by default (because Susy loves the future)
282
+ * little internal management fixes and so on and so on…
283
+
284
+ older…
285
+ -------
286
+
287
+ * not documented here.
288
+ * check the commit log.
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2012, Eric Meyer
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+
8
+ * Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above
11
+ copyright notice, this list of conditions and the following
12
+ disclaimer in the documentation and/or other materials provided
13
+ with the distribution.
14
+ * Neither the name of the author nor the names of other
15
+ contributors may be used to endorse or promote products derived
16
+ from this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,39 @@
1
+ CHANGELOG.mkdn
2
+ LICENSE.txt
3
+ Manifest
4
+ README.md
5
+ Rakefile
6
+ VERSION
7
+ lib/susy.rb
8
+ sass/_susy.scss
9
+ sass/susy/_background.scss
10
+ sass/susy/_functions.scss
11
+ sass/susy/_grid.scss
12
+ sass/susy/_isolation.scss
13
+ sass/susy/_margin.scss
14
+ sass/susy/_media.scss
15
+ sass/susy/_padding.scss
16
+ sass/susy/_settings.scss
17
+ sass/susy/_support.scss
18
+ sass/susy/_units.scss
19
+ susy.gemspec
20
+ templates/project/_base.scss
21
+ templates/project/manifest.rb
22
+ templates/project/screen.scss
23
+ test/config.rb
24
+ test/css/background.css
25
+ test/css/bleed.css
26
+ test/css/functions.css
27
+ test/css/grid.css
28
+ test/css/isolation.css
29
+ test/css/margin.css
30
+ test/css/media.css
31
+ test/css/padding.css
32
+ test/scss/background.scss
33
+ test/scss/bleed.scss
34
+ test/scss/functions.scss
35
+ test/scss/grid.scss
36
+ test/scss/isolation.scss
37
+ test/scss/margin.scss
38
+ test/scss/media.scss
39
+ test/scss/padding.scss
@@ -0,0 +1,121 @@
1
+ # Susy [a Compass plugin]
2
+
3
+ Susy is a semantic CSS grid system with a responsive twist.
4
+
5
+ The web is a responsive place,
6
+ from your lithe & lively development process
7
+ to your end user's super-tablet-multi-magic-lap-phone.
8
+ You need grids that are powerful, but custom;
9
+ reliable, but responsive.
10
+
11
+ Susy grids are fluid on the inside,
12
+ ready to respond at any moment,
13
+ but contained in the candy shell of your choice,
14
+ so they respond how and when and where you want them to.
15
+
16
+ This isn't another one-size-fits-all grid framework
17
+ that will make your sites look identical
18
+ and litter your markup with meaningless "col2of5" jargon.
19
+ We don't design your site or write your markup,
20
+ we just do the math and get out of your way.
21
+
22
+ ## Resources
23
+ - [Website](http://susy.oddbird.net)
24
+ - [Changelog](https://github.com/ericam/susy/blob/master/CHANGELOG.mkdn)
25
+ - [Tutorial](http://susy.oddbird.net/guides/getting-started/)
26
+ - [Reference](http://susy.oddbird.net/guides/reference/)
27
+ - [Sites using Susy](http://susy.oddbird.net/sites-using-susy/)
28
+ - [Twitter @CompassSusy](http://twitter.com/compasssusy/)
29
+
30
+ ## Contributing
31
+
32
+ We love contributions,
33
+ both as ideas and pull requests.
34
+ The core of Susy is all in the `/sass/` directory.
35
+
36
+ Once you make changes,
37
+ you can test them by building the gem
38
+ and installing it somewhere to test.
39
+ We also have unit tests that you can run.
40
+
41
+ ### Building the gem
42
+
43
+ You'll need Rake and Echoe installed:
44
+
45
+ ```bash
46
+ # command line
47
+ gem install rake
48
+ gem install echoe
49
+ ```
50
+
51
+ It might be helpful to bump the version number in `VERSION`,
52
+ but any changes you make there
53
+ should not be committed.
54
+
55
+ Then you can build:
56
+
57
+ ```bash
58
+ # command line
59
+ rake build
60
+ ```
61
+
62
+ Your new gem will appear in
63
+ a folder called `pkg`.
64
+ You can install it for testing
65
+ directly from there.
66
+
67
+ ```bash
68
+ # command line
69
+ gem install <path-to-file>
70
+ ```
71
+
72
+ ### Building the docs
73
+
74
+ If you are adding features
75
+ or changing how a current feature works,
76
+ your changes should be documented.
77
+ Or you might be helping us maintain the docs.
78
+ In either case,
79
+ you'll need to run the docs dev server
80
+ in order to see your changes.
81
+
82
+ In the `docs` folder:
83
+
84
+ ```bash
85
+ # command line
86
+ gem install bundler
87
+ bundle install
88
+ ```
89
+
90
+ The site is built with
91
+ [middleman](http://middlemanapp.com/).
92
+ To run the development server:
93
+
94
+ ```bash
95
+ # command line
96
+ middleman
97
+ ```
98
+
99
+ The server should now be running at `localhost:4567`.
100
+
101
+ Make any changes you need
102
+ under the `source` directory,
103
+ then commit your changes
104
+ and submit a pull request when you are done!
105
+
106
+ ### Tests
107
+
108
+ The tests we have are very basic at this point.
109
+ Simply go into the `test` directory
110
+ (with the latest Sass and Compass gems installed)
111
+ and run `compass compile --force`.
112
+
113
+ There should be no changes.
114
+ If there are changes,
115
+ go back and find what caused the change.
116
+ If the change was intentional,
117
+ simply commit the changed test files.
118
+ If it was not intentional,
119
+ go back and find what caused the problem.
120
+
121
+ Use `git diff` to see the changes.
data/Rakefile CHANGED
@@ -1,8 +1,19 @@
1
- require 'rake/testtask'
1
+ require 'fileutils'
2
+ require 'sass'
2
3
 
3
- Rake::TestTask.new do |t|
4
- t.libs << 'test'
5
- end
4
+ begin
5
+ require 'echoe'
6
+
7
+ Echoe.new('susy', open('VERSION').read) do |p|
8
+ p.summary = "Responsive grids for Compass."
9
+ p.description = "Susy grids are fluid on the inside, ready to respond at any moment, but contained in the candy shell of your choice, so they respond how and when and where you want them to. We don't design your site or dictate your markup, we just do the math and get out of your way."
10
+ p.url = "http://susy.oddbird.net/"
11
+ p.author = "Eric Meyer"
12
+ p.email = "eric@oddbird.net"
13
+ p.dependencies = ["compass >=0.12.2", "sass >=3.2.0"]
14
+ end
6
15
 
7
- desc "Run tests"
8
- task :default => :test
16
+ rescue LoadError => boom
17
+ puts "You are missing a dependency required for meta-operations on this gem."
18
+ puts "#{boom.to_s.capitalize}."
19
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.8
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "charcoalcms"
5
+ s.version = "0.0.6"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Nik | polikin.ca"]
9
+ s.date = "2013-06-10"
10
+ s.description = "charcoal grids are fluid on the inside, ready to respond at any moment, but contained in the candy shell of your choice, so they respond how and when and where you want them to. We don't design your site or dictate your markup, we just do the math and get out of your way."
11
+ s.email = "responsiveness@polikin.ca"
12
+ s.files = ["CHANGELOG.mkdn", "LICENSE.txt", "Manifest", "README.md", "Rakefile", "VERSION", "lib/charcoal.rb", "sass/_charcoal.scss", "sass/charcoal/_core.functions.scss", "sass/charcoal/_responsive-grid.scss", "charcoalcms.gemspec", "templates/project/_base.scss", "templates/project/manifest.rb", "templates/project/screen.scss", "test/config.rb", "test/css/background.css", "test/css/bleed.css", "test/css/functions.css", "test/css/grid.css", "test/css/isolation.css", "test/css/margin.css", "test/css/media.css", "test/css/padding.css", "test/scss/background.scss", "test/scss/bleed.scss", "test/scss/functions.scss", "test/scss/grid.scss", "test/scss/isolation.scss", "test/scss/margin.scss", "test/scss/media.scss", "test/scss/padding.scss"]
13
+ s.homepage = "http://polikin.ca"
14
+ s.require_paths = ["lib"]
15
+ s.rubyforge_project = "charcoalcms"
16
+ s.rubygems_version = "1.8.24"
17
+ s.summary = ""
18
+
19
+ if s.respond_to? :specification_version then
20
+ s.specification_version = 3
21
+
22
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
23
+ s.add_runtime_dependency(%q<compass>, [">= 0.12.2"])
24
+ s.add_runtime_dependency(%q<sass>, [">= 3.2.0"])
25
+ else
26
+ s.add_dependency(%q<compass>, [">= 0.12.2"])
27
+ s.add_dependency(%q<sass>, [">= 3.2.0"])
28
+ end
29
+ else
30
+ s.add_dependency(%q<compass>, [">= 0.12.2"])
31
+ s.add_dependency(%q<sass>, [">= 3.2.0"])
32
+ end
33
+ end
@@ -0,0 +1,4 @@
1
+ require 'compass'
2
+ Compass::Frameworks.register('charcoal',
3
+ :stylesheets_directory => File.join(File.dirname(__FILE__), '..', 'sass'),
4
+ :templates_directory => File.join(File.dirname(__FILE__), '..', 'templates'))
@@ -1,5 +1,3 @@
1
- /*****************/
2
-
3
1
  /**
4
2
  * @tags: responsive grid || _resonsive-grid.scss || Skeleton 960 | Skeleton 1200 | Responsify
5
3
  */
@@ -0,0 +1,14 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Basic Grid
8
+
9
+ $total-columns : 12;
10
+ $column-width : 4em;
11
+ $gutter-width : 1em;
12
+ $grid-padding : $gutter-width;
13
+
14
+ $show-grid-backgrounds : true;
@@ -0,0 +1,19 @@
1
+ stylesheet 'screen.scss', :media => "screen, projection"
2
+ stylesheet '_base.scss'
3
+
4
+ description "Susy: a flexible static/fluid/elastic grid system native to compass."
5
+
6
+ help %Q{
7
+ Please see the Susy website for all documentation and tutorials:
8
+
9
+ http://www.oddbird.net/susy
10
+ }
11
+
12
+ welcome_message %Q{
13
+ Please see the Susy website for all documentation and tutorials:
14
+
15
+ http://www.oddbird.net/susy
16
+
17
+ To get started, set up your grid in the base partial by following the inline instructions.
18
+ }
19
+
@@ -0,0 +1,12 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "base";
5
+
6
+ /* -------------------------------------------------------------------------*/
7
+ /* Layout */
8
+
9
+ .container {
10
+ @include container;
11
+ @include susy-grid-background;
12
+ }
@@ -0,0 +1,10 @@
1
+ # Compass CSS framework config file
2
+
3
+ project_type = :stand_alone
4
+ http_path = "/"
5
+ sass_dir = "scss"
6
+ css_dir = "css"
7
+ line_comments = false
8
+ preferred_syntax = :scss
9
+ output_style = :expanded
10
+ relative_assets = true
@@ -0,0 +1,16 @@
1
+ .background {
2
+ background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(100, 100, 225, 0.25)), color-stop(6.77966%, rgba(100, 100, 225, 0.25)), color-stop(6.77966%, rgba(0, 0, 0, 0)), color-stop(8.47458%, rgba(0, 0, 0, 0)), color-stop(8.47458%, rgba(100, 100, 225, 0.25)), color-stop(15.25424%, rgba(100, 100, 225, 0.25)), color-stop(15.25424%, rgba(0, 0, 0, 0)), color-stop(16.94915%, rgba(0, 0, 0, 0)), color-stop(16.94915%, rgba(100, 100, 225, 0.25)), color-stop(23.72881%, rgba(100, 100, 225, 0.25)), color-stop(23.72881%, rgba(0, 0, 0, 0)), color-stop(25.42373%, rgba(0, 0, 0, 0)), color-stop(25.42373%, rgba(100, 100, 225, 0.25)), color-stop(32.20339%, rgba(100, 100, 225, 0.25)), color-stop(32.20339%, rgba(0, 0, 0, 0)), color-stop(33.89831%, rgba(0, 0, 0, 0)), color-stop(33.89831%, rgba(100, 100, 225, 0.25)), color-stop(40.67797%, rgba(100, 100, 225, 0.25)), color-stop(40.67797%, rgba(0, 0, 0, 0)), color-stop(42.37288%, rgba(0, 0, 0, 0)), color-stop(42.37288%, rgba(100, 100, 225, 0.25)), color-stop(49.15254%, rgba(100, 100, 225, 0.25)), color-stop(49.15254%, rgba(0, 0, 0, 0)), color-stop(50.84746%, rgba(0, 0, 0, 0)), color-stop(50.84746%, rgba(100, 100, 225, 0.25)), color-stop(57.62712%, rgba(100, 100, 225, 0.25)), color-stop(57.62712%, rgba(0, 0, 0, 0)), color-stop(59.32203%, rgba(0, 0, 0, 0)), color-stop(59.32203%, rgba(100, 100, 225, 0.25)), color-stop(66.10169%, rgba(100, 100, 225, 0.25)), color-stop(66.10169%, rgba(0, 0, 0, 0)), color-stop(67.79661%, rgba(0, 0, 0, 0)), color-stop(67.79661%, rgba(100, 100, 225, 0.25)), color-stop(74.57627%, rgba(100, 100, 225, 0.25)), color-stop(74.57627%, rgba(0, 0, 0, 0)), color-stop(76.27119%, rgba(0, 0, 0, 0)), color-stop(76.27119%, rgba(100, 100, 225, 0.25)), color-stop(83.05085%, rgba(100, 100, 225, 0.25)), color-stop(83.05085%, rgba(0, 0, 0, 0)), color-stop(84.74576%, rgba(0, 0, 0, 0)), color-stop(84.74576%, rgba(100, 100, 225, 0.25)), color-stop(91.52542%, rgba(100, 100, 225, 0.25)), color-stop(91.52542%, rgba(0, 0, 0, 0)), color-stop(93.22034%, rgba(0, 0, 0, 0)), color-stop(93.22034%, rgba(100, 100, 225, 0.25)), color-stop(100.0%, rgba(100, 100, 225, 0.25)), color-stop(100.0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
3
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
4
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
5
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
6
+ background-image: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
7
+ background-position: left top;
8
+ -webkit-background-origin: content;
9
+ -moz-background-origin: content;
10
+ -ms-background-origin: content-box;
11
+ -o-background-origin: content-box;
12
+ background-origin: content-box;
13
+ -webkit-background-clip: content-box;
14
+ -moz-background-clip: content-box;
15
+ background-clip: content-box;
16
+ }
@@ -0,0 +1,20 @@
1
+ .bleed-columns {
2
+ margin-left: -25.42373%;
3
+ padding-left: 25.42373%;
4
+ margin-right: -25.42373%;
5
+ padding-right: 25.42373%;
6
+ }
7
+
8
+ .bleed-length {
9
+ margin-left: -3em;
10
+ padding-left: 3em;
11
+ margin-right: -3em;
12
+ padding-right: 3em;
13
+ }
14
+
15
+ .bleed-sides {
16
+ margin-top: -4%;
17
+ padding-top: 4%;
18
+ margin-bottom: -4%;
19
+ padding-bottom: 4%;
20
+ }
@@ -0,0 +1,7 @@
1
+ .container-outer-width-default {
2
+ width: 59em;
3
+ }
4
+
5
+ .container-outer-width-explicit {
6
+ width: 39em;
7
+ }
@@ -0,0 +1,134 @@
1
+ .container {
2
+ *zoom: 1;
3
+ max-width: 59em;
4
+ _width: 59em;
5
+ padding-left: 1em;
6
+ padding-right: 1em;
7
+ margin-left: auto;
8
+ margin-right: auto;
9
+ }
10
+ .container:after {
11
+ content: "";
12
+ display: table;
13
+ clear: both;
14
+ }
15
+
16
+ .complex-container {
17
+ *zoom: 1;
18
+ max-width: 59em;
19
+ _width: 59em;
20
+ padding-left: 1em;
21
+ padding-right: 1em;
22
+ margin-left: auto;
23
+ margin-right: auto;
24
+ }
25
+ .complex-container:after {
26
+ content: "";
27
+ display: table;
28
+ clear: both;
29
+ }
30
+ @media (min-width: 69em) {
31
+ .complex-container {
32
+ max-width: 69em;
33
+ }
34
+ }
35
+
36
+ .span-columns {
37
+ width: 49.15254%;
38
+ float: right;
39
+ margin-right: 0;
40
+ *margin-left: -1em;
41
+ display: inline;
42
+ }
43
+
44
+ .span-columns-with-padding {
45
+ padding-left: 1.69492%;
46
+ padding-right: 3.38983%;
47
+ width: 44.0678%;
48
+ float: right;
49
+ margin-right: 0;
50
+ *margin-left: -1em;
51
+ display: inline;
52
+ }
53
+
54
+ .reset-columns {
55
+ float: none;
56
+ width: auto;
57
+ margin-right: auto;
58
+ *margin-left: auto;
59
+ display: block;
60
+ }
61
+
62
+ .omega {
63
+ float: right;
64
+ margin-right: 0;
65
+ *margin-left: -1em;
66
+ display: inline;
67
+ }
68
+
69
+ .nth-omega:last-child {
70
+ float: right;
71
+ margin-right: 0;
72
+ }
73
+
74
+ .remove-omega {
75
+ float: left;
76
+ margin-right: 1.69492%;
77
+ *margin-left: auto;
78
+ }
79
+
80
+ .remove-nth-omega:last-child {
81
+ float: left;
82
+ margin-right: 1.69492%;
83
+ }
84
+
85
+ /* ---------------------------------------------------------------------------
86
+ /* Border-Box Sizing */
87
+ * {
88
+ -webkit-box-sizing: border-box;
89
+ -moz-box-sizing: border-box;
90
+ box-sizing: border-box;
91
+ }
92
+
93
+ .container {
94
+ *zoom: 1;
95
+ max-width: 61em;
96
+ _width: 61em;
97
+ padding-left: 1em;
98
+ padding-right: 1em;
99
+ margin-left: auto;
100
+ margin-right: auto;
101
+ }
102
+ .container:after {
103
+ content: "";
104
+ display: table;
105
+ clear: both;
106
+ }
107
+
108
+ .span-columns-with-padding {
109
+ padding-left: 1.69492%;
110
+ padding-right: 3.38983%;
111
+ width: 49.15254%;
112
+ float: right;
113
+ margin-right: 0;
114
+ *margin-left: -1em;
115
+ display: inline;
116
+ }
117
+
118
+ /* ---------------------------------------------------------------------------
119
+ /* Static output */
120
+ .static {
121
+ width: 9em;
122
+ float: left;
123
+ margin-right: 1em;
124
+ display: inline;
125
+ }
126
+
127
+ .force-fluid {
128
+ width: 15.25424%;
129
+ float: left;
130
+ margin-right: 1.69492%;
131
+ display: inline;
132
+ margin-left: 8.47458%;
133
+ margin-right: 8.47458%;
134
+ }
@@ -0,0 +1,25 @@
1
+ .isolate {
2
+ margin-right: -100%;
3
+ margin-left: 16.94915%;
4
+ }
5
+
6
+ .isolate-grid {
7
+ width: 24.05063%;
8
+ float: left;
9
+ margin-right: 1.26582%;
10
+ display: inline;
11
+ margin-right: -100%;
12
+ }
13
+ .isolate-grid:nth-child(4n + 1) {
14
+ margin-left: 0%;
15
+ clear: left;
16
+ }
17
+ .isolate-grid:nth-child(4n + 2) {
18
+ margin-left: 25.31646%;
19
+ }
20
+ .isolate-grid:nth-child(4n + 3) {
21
+ margin-left: 50.63291%;
22
+ }
23
+ .isolate-grid:nth-child(4n + 4) {
24
+ margin-left: 75.94937%;
25
+ }
@@ -0,0 +1,20 @@
1
+ .pre {
2
+ margin-left: 25.42373%;
3
+ }
4
+
5
+ .post {
6
+ margin-right: 33.89831%;
7
+ }
8
+
9
+ .push {
10
+ margin-left: 25.42373%;
11
+ }
12
+
13
+ .pull {
14
+ margin-left: -33.89831%;
15
+ }
16
+
17
+ .squish {
18
+ margin-left: 12.82051%;
19
+ margin-right: 25.64103%;
20
+ }
@@ -0,0 +1,101 @@
1
+ .layout {
2
+ *zoom: 1;
3
+ max-width: 19em;
4
+ _width: 19em;
5
+ padding-left: 1em;
6
+ padding-right: 1em;
7
+ margin-left: auto;
8
+ margin-right: auto;
9
+ }
10
+ .layout:after {
11
+ content: "";
12
+ display: table;
13
+ clear: both;
14
+ }
15
+
16
+ @media (min-width: 29em) {
17
+ .breakpoint .break6 {
18
+ max-width: 29em;
19
+ padding-left: 1em;
20
+ padding-right: 1em;
21
+ margin-left: auto;
22
+ margin-right: auto;
23
+ }
24
+ .breakpoint .break6:after {
25
+ content: "";
26
+ display: table;
27
+ clear: both;
28
+ }
29
+ .breakpoint .nth-omega:nth-child(3n) {
30
+ float: right;
31
+ margin-right: 0;
32
+ }
33
+ }
34
+ @media (min-width: 30em) and (max-width: 60em) {
35
+ .breakpoint .break60-8-30 {
36
+ max-width: 39em;
37
+ }
38
+ }
39
+ @media (min-width: 119em) {
40
+ .breakpoint .break-ltie9 {
41
+ max-width: 119em;
42
+ -webkit-border-radius: 5px;
43
+ -moz-border-radius: 5px;
44
+ -ms-border-radius: 5px;
45
+ -o-border-radius: 5px;
46
+ border-radius: 5px;
47
+ }
48
+ }
49
+ .lt-ie9 .breakpoint .break-ltie9 {
50
+ max-width: 119em;
51
+ _width: 119em;
52
+ *zoom: 1;
53
+ -ms-border-radius: 5px;
54
+ border-radius: 5px;
55
+ }
56
+
57
+ .with-settings6-3-2-1 {
58
+ *zoom: 1;
59
+ max-width: 28em;
60
+ _width: 28em;
61
+ padding-left: 1em;
62
+ padding-right: 1em;
63
+ margin-left: auto;
64
+ margin-right: auto;
65
+ }
66
+ .with-settings6-3-2-1:after {
67
+ content: "";
68
+ display: table;
69
+ clear: both;
70
+ }
71
+
72
+ .with-settings6-3r-2r-1r {
73
+ *zoom: 1;
74
+ max-width: 504px;
75
+ max-width: 28rem;
76
+ _width: 504px;
77
+ padding-left: 18px;
78
+ padding-left: 1rem;
79
+ padding-right: 18px;
80
+ padding-right: 1rem;
81
+ margin-left: auto;
82
+ margin-right: auto;
83
+ }
84
+ .with-settings6-3r-2r-1r:after {
85
+ content: "";
86
+ display: table;
87
+ clear: both;
88
+ }
89
+
90
+ @media (min-width: 33.75em) and (max-width: 67.5em) {
91
+ .break60r-8-30r {
92
+ max-width: 684px;
93
+ max-width: 38rem;
94
+ }
95
+ }
96
+ @media (min-width: 33.75em) and (max-width: 67.5em) {
97
+ .break60-8-30 {
98
+ max-width: 684px;
99
+ max-width: 38rem;
100
+ }
101
+ }
@@ -0,0 +1,12 @@
1
+ .prefix {
2
+ padding-left: 16.94915%;
3
+ }
4
+
5
+ .suffix {
6
+ padding-right: 22.72727%;
7
+ }
8
+
9
+ .pad {
10
+ padding-left: 20.40816%;
11
+ padding-right: 40.81633%;
12
+ }
@@ -0,0 +1,11 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Background
8
+
9
+ .background {
10
+ @include susy-grid-background;
11
+ }
@@ -0,0 +1,19 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Bleed
8
+
9
+ .bleed-columns {
10
+ @include bleed(3);
11
+ }
12
+
13
+ .bleed-length {
14
+ @include bleed(3em);
15
+ }
16
+
17
+ .bleed-sides {
18
+ @include bleed(4%, top bottom);
19
+ }
@@ -0,0 +1,15 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Functions
8
+
9
+ .container-outer-width-default {
10
+ width: container-outer-width();
11
+ }
12
+
13
+ .container-outer-width-explicit {
14
+ width: container-outer-width(8);
15
+ }
@@ -0,0 +1,77 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Grid
8
+
9
+ .container {
10
+ @include container;
11
+ }
12
+
13
+ .complex-container {
14
+ @include container($total-columns,14);
15
+ }
16
+
17
+ .span-columns {
18
+ @include span-columns(6 omega,12);
19
+ }
20
+
21
+ .span-columns-with-padding {
22
+ @include span-columns(6 omega,12,1 * $gutter-width 2 * $gutter-width);
23
+ }
24
+
25
+ .reset-columns {
26
+ @include reset-columns;
27
+ }
28
+
29
+ .omega {
30
+ @include omega;
31
+ }
32
+
33
+ .nth-omega {
34
+ @include nth-omega;
35
+ }
36
+
37
+ .remove-omega {
38
+ @include remove-omega;
39
+ }
40
+
41
+ .remove-nth-omega {
42
+ @include remove-nth-omega;
43
+ }
44
+
45
+ /* ---------------------------------------------------------------------------
46
+ /* Border-Box Sizing */
47
+
48
+ @include border-box-sizing;
49
+
50
+ .container {
51
+ @include container;
52
+ }
53
+
54
+ .span-columns-with-padding {
55
+ @include span-columns(6 omega,12,1 * $gutter-width 2 * $gutter-width);
56
+ }
57
+
58
+ // Reset $border-box-sizing so it doesn't have other effects
59
+ $border-box-sizing: false;
60
+
61
+ /* ---------------------------------------------------------------------------
62
+ /* Static output */
63
+
64
+ $container-style: static;
65
+
66
+ .static {
67
+ @include span-columns(2);
68
+ }
69
+
70
+ .force-fluid {
71
+ $container-width: 960px;
72
+ @include span-columns(2);
73
+ @include squish(1,1);
74
+ $container-width: false;
75
+ }
76
+
77
+ $container-style: magic;
@@ -0,0 +1,15 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Isolation
8
+
9
+ .isolate {
10
+ @include isolate(3);
11
+ }
12
+
13
+ .isolate-grid {
14
+ @include isolate-grid(4,16);
15
+ }
@@ -0,0 +1,27 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Margin
8
+
9
+ .pre {
10
+ @include pre(3);
11
+ }
12
+
13
+ .post {
14
+ @include post(4,12);
15
+ }
16
+
17
+ .push {
18
+ @include push(3);
19
+ }
20
+
21
+ .pull {
22
+ @include pull(4,12);
23
+ }
24
+
25
+ .squish {
26
+ @include squish(1,2,8);
27
+ }
@@ -0,0 +1,50 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+ @import "compass/css3/border-radius";
6
+
7
+ // ---------------------------------------------------------------------------
8
+ // Media
9
+
10
+ @include layout(4) {
11
+ .layout { @include container; }
12
+ }
13
+
14
+ .breakpoint{
15
+ @include at-breakpoint(6) {
16
+ .break6 { @include container; }
17
+ .nth-omega { @include nth-omega(3n); }
18
+ }
19
+
20
+ @include at-breakpoint(60em 8 30em) {
21
+ .break60-8-30 { @include set-container-width; }
22
+ }
23
+
24
+ @include at-breakpoint(24 lt-ie9) {
25
+ .break-ltie9 {
26
+ @include set-container-width;
27
+ @include has-layout; // test adjustments to experimental support
28
+ @include border-radius; // test adjustments to experimental support
29
+ }
30
+ }
31
+ }
32
+
33
+ @include with-grid-settings(6,3em,2em,1em) {
34
+ .with-settings6-3-2-1 { @include container; }
35
+ }
36
+
37
+ $base-font-size: 18px;
38
+
39
+ @include with-grid-settings(6,3rem,2rem,1rem) {
40
+ .with-settings6-3r-2r-1r { @include container; }
41
+
42
+ @include at-breakpoint(60rem 8 30rem) {
43
+ .break60r-8-30r { @include set-container-width; }
44
+ }
45
+ @include at-breakpoint(60em 8 30em) {
46
+ .break60-8-30 { @include set-container-width; }
47
+ }
48
+ }
49
+
50
+ $base-font-size: 16px;
@@ -0,0 +1,19 @@
1
+ // ---------------------------------------------------------------------------
2
+ // Imports
3
+
4
+ @import "../../sass/susy";
5
+
6
+ // ---------------------------------------------------------------------------
7
+ // Padding
8
+
9
+ .prefix {
10
+ @include prefix(2);
11
+ }
12
+
13
+ .suffix {
14
+ @include suffix(2,9);
15
+ }
16
+
17
+ .pad {
18
+ @include pad(2,4,10);
19
+ }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: charcoalcms
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Nik | polikin.ca
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: 3.2.0
50
50
  type: :runtime
51
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/)
52
+ description: charcoal grids are fluid on the inside, ready to respond at any moment, but contained in the candy shell of your choice, so they respond how and when and where you want them to. We don't design your site or dictate your markup, we just do the math and get out of your way.
53
53
  email: responsiveness@polikin.ca
54
54
  executables: []
55
55
 
@@ -58,11 +58,38 @@ extensions: []
58
58
  extra_rdoc_files: []
59
59
 
60
60
  files:
61
+ - CHANGELOG.mkdn
62
+ - LICENSE.txt
63
+ - Manifest
64
+ - README.md
61
65
  - Rakefile
62
- - scss/_charcoal.scss
63
- - scss/charcoal/_core.functions.scss
64
- - scss/charcoal/_responsive-grid.scss
65
- homepage: http://rubygems.org/gems/charcoalcms
66
+ - VERSION
67
+ - lib/charcoal.rb
68
+ - sass/_charcoal.scss
69
+ - sass/charcoal/_core.functions.scss
70
+ - sass/charcoal/_responsive-grid.scss
71
+ - charcoalcms.gemspec
72
+ - templates/project/_base.scss
73
+ - templates/project/manifest.rb
74
+ - templates/project/screen.scss
75
+ - test/config.rb
76
+ - test/css/background.css
77
+ - test/css/bleed.css
78
+ - test/css/functions.css
79
+ - test/css/grid.css
80
+ - test/css/isolation.css
81
+ - test/css/margin.css
82
+ - test/css/media.css
83
+ - test/css/padding.css
84
+ - test/scss/background.scss
85
+ - test/scss/bleed.scss
86
+ - test/scss/functions.scss
87
+ - test/scss/grid.scss
88
+ - test/scss/isolation.scss
89
+ - test/scss/margin.scss
90
+ - test/scss/media.scss
91
+ - test/scss/padding.scss
92
+ homepage: http://polikin.ca
66
93
  licenses: []
67
94
 
68
95
  post_install_message:
@@ -95,6 +122,6 @@ rubyforge_project: charcoalcms
95
122
  rubygems_version: 1.8.25
96
123
  signing_key:
97
124
  specification_version: 3
98
- summary: Sass/Compass mixins & Include responsive grid base on getskeleton
125
+ summary: ""
99
126
  test_files: []
100
127