alexcabrera-graphpaper 0.2.11 → 0.2.12
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/README.markdown +1 -1
- data/VERSION.yml +1 -1
- data/graphpaper.gemspec +1 -1
- data/templates/project/manifest.rb +1 -1
- data/templates/project/partials/_base.sass +2 -2
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -43,7 +43,7 @@ To create your grid columns, mix +container into any element that will be
|
|
|
43
43
|
grouping columns and then use +column(n) to have an element span n-number of
|
|
44
44
|
columns.
|
|
45
45
|
|
|
46
|
-
The size of your columns and gutters can be defined in
|
|
46
|
+
The size of your columns and gutters can be defined in _config.sass.
|
|
47
47
|
Graphpaper defaults to the standard [Blueprint][] 960px grid.
|
|
48
48
|
|
|
49
49
|
Installing
|
data/VERSION.yml
CHANGED
data/graphpaper.gemspec
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
stylesheet 'partials/_base.sass'
|
|
2
|
-
stylesheet '
|
|
2
|
+
stylesheet '_config.sass'
|
|
3
3
|
stylesheet 'screen.sass', :media => 'screen, projection'
|
|
4
4
|
stylesheet 'print.sass', :media => 'print'
|
|
5
5
|
stylesheet 'ie.sass', :media => 'screen, projection', :condition => "lt IE 8"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
// +grid-container
|
|
24
24
|
//
|
|
25
25
|
// If you wish to align your grid container to the left of the page
|
|
26
|
-
// and add padding based on the values in
|
|
26
|
+
// and add padding based on the values in _config.sass,
|
|
27
27
|
// +grid-container has two vailable arguments.
|
|
28
28
|
//
|
|
29
29
|
// The first argument sets positioning of the grid. Graphpaper's
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
//
|
|
37
37
|
// Aligning the container to the left will automatically add a
|
|
38
38
|
// :padding-left property to the element equal to the value of
|
|
39
|
-
// !graphpaper_grid_padding in
|
|
39
|
+
// !graphpaper_grid_padding in _config.sass
|
|
40
40
|
//
|
|
41
41
|
// To disable the padding, add a second "false" argument to grid-container
|
|
42
42
|
//
|