compass-lucid-grid 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1 +1,30 @@
1
- #Yay!
1
+ #The Lucid Grid
2
+
3
+ Currently in early development. Comments/suggestions welcome!
4
+
5
+ ###Lucid is for developers who:
6
+
7
+ * Like lean stylesheets.
8
+ * Think using "alpha" and "omega" is a hacky solution.
9
+ * Hate fighting with gutters to get their layouts aligned.
10
+ * Want to apply borders and padding to grid elements without wrapping `<div>`s.
11
+ * Want a grid that plays nice with @media queries.
12
+
13
+ ###Developer's Notes:
14
+
15
+ * Lucid uses @extend internally to prevent the CSS duplication that can happen with too many @includes.
16
+ * Documenation is coming soon.
17
+
18
+ ###Instructions:
19
+
20
+ `(sudo) gem install compass-lucid-grid`
21
+
22
+ THEN
23
+
24
+ `cd your_existing_project`
25
+ `echo "require 'lucid'" >> config.rb`
26
+ `compass install -r lucid lucid`
27
+
28
+ OR
29
+
30
+ `compass create -r lucid --using lucid your_new_project`
@@ -11,7 +11,7 @@ $gu: $grid-inner-width / $grid-columns;
11
11
 
12
12
  // Grid Container
13
13
  // Applies the grid width and centering
14
- @mixin _grid-container($width: $grid-width, $centered: $grid-centering);
14
+ @mixin _grid-container($width: $grid-width, $centered: $grid-centering) {
15
15
  @if $centered == true {
16
16
  margin-left: auto;
17
17
  margin-right: auto;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-lucid-grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-05-21 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: compass
16
- requirement: &85923390 !ruby/object:Gem::Requirement
16
+ requirement: &77048470 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,8 +21,8 @@ dependencies:
21
21
  version: '0.11'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *85923390
25
- description: A Compass/SASS grid for people who love semantics.
24
+ version_requirements: *77048470
25
+ description: A Compass/SASS grid for developers who love semantics.
26
26
  email: yz@yifei.co
27
27
  executables: []
28
28
  extensions: []
@@ -35,7 +35,7 @@ files:
35
35
  - stylesheets/_lucid.scss
36
36
  - templates/project/manifest.rb
37
37
  - templates/project/_grid.scss
38
- homepage: http://yifei.co/lucid/
38
+ homepage: https://github.com/ezYZ/lucid
39
39
  licenses: []
40
40
  post_install_message:
41
41
  rdoc_options: []
@@ -58,5 +58,5 @@ rubyforge_project:
58
58
  rubygems_version: 1.8.3
59
59
  signing_key:
60
60
  specification_version: 3
61
- summary: A Compass/SASS grid for people who love semantics.
61
+ summary: A Compass/SASS grid for developers who love semantics.
62
62
  test_files: []