sass-960gs 0.0.1 → 0.0.2
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.md +13 -4
- data/{stylesheets → app/assets/stylesheets}/960/_fixed_grid.scss +0 -0
- data/{stylesheets → app/assets/stylesheets}/960/_fluid_grid.scss +0 -0
- data/{stylesheets → app/assets/stylesheets}/960/_text.scss +1 -1
- data/{stylesheets → app/assets/stylesheets}/960/_variables.scss +0 -0
- data/app/assets/stylesheets/_960.scss +4 -0
- data/sass-960gs.gemspec +6 -6
- metadata +6 -6
- data/stylesheets/960/_grid.scss +0 -2
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
960 Grid System - Standalone
|
2
|
-
|
2
|
+
============================
|
3
3
|
|
4
4
|
960.gs is created by Nathan Smith. See the official site for more info: <http://960.gs/>
|
5
5
|
|
@@ -10,12 +10,21 @@ Install
|
|
10
10
|
|
11
11
|
gem install sass-960
|
12
12
|
|
13
|
-
Adding the 960
|
14
|
-
|
13
|
+
Adding the 960 to an existing project
|
14
|
+
=====================================
|
15
15
|
|
16
16
|
Then make sure you have imported the grid library into your core .sass or .scss file with:
|
17
17
|
|
18
|
-
@import '960
|
18
|
+
@import '960';
|
19
|
+
|
20
|
+
Adding the 960.gs to your Rails 3 assets pipeline
|
21
|
+
=================================================
|
22
|
+
|
23
|
+
In your `application.css` add
|
24
|
+
|
25
|
+
*= require 960
|
26
|
+
|
27
|
+
And be happy with your 960.gs layout.
|
19
28
|
|
20
29
|
Customizing your Grid System
|
21
30
|
============================
|
File without changes
|
File without changes
|
File without changes
|
data/sass-960gs.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{sass-960gs}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
|
8
8
|
s.authors = ["Chris Eppstein", "Matt Sanders", "Łukasz Niemier"]
|
@@ -13,11 +13,11 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.files = %w{
|
14
14
|
README.md
|
15
15
|
sass-960gs.gemspec
|
16
|
-
stylesheets/
|
17
|
-
stylesheets/960/_fixed_grid.scss
|
18
|
-
stylesheets/960/_fluid_grid.scss
|
19
|
-
stylesheets/960/_text.scss
|
20
|
-
stylesheets/960/_variables.scss
|
16
|
+
app/assets/stylesheets/_960.scss
|
17
|
+
app/assets/stylesheets/960/_fixed_grid.scss
|
18
|
+
app/assets/stylesheets/960/_fluid_grid.scss
|
19
|
+
app/assets/stylesheets/960/_text.scss
|
20
|
+
app/assets/stylesheets/960/_variables.scss
|
21
21
|
}
|
22
22
|
s.homepage = %q{https://github.com/Hauleth/sass-960gs}
|
23
23
|
s.rubygems_version = %q{1.3.6}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-960gs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -25,11 +25,11 @@ extra_rdoc_files: []
|
|
25
25
|
files:
|
26
26
|
- README.md
|
27
27
|
- sass-960gs.gemspec
|
28
|
-
- stylesheets/
|
29
|
-
- stylesheets/960/_fixed_grid.scss
|
30
|
-
- stylesheets/960/_fluid_grid.scss
|
31
|
-
- stylesheets/960/_text.scss
|
32
|
-
- stylesheets/960/_variables.scss
|
28
|
+
- app/assets/stylesheets/_960.scss
|
29
|
+
- app/assets/stylesheets/960/_fixed_grid.scss
|
30
|
+
- app/assets/stylesheets/960/_fluid_grid.scss
|
31
|
+
- app/assets/stylesheets/960/_text.scss
|
32
|
+
- app/assets/stylesheets/960/_variables.scss
|
33
33
|
homepage: https://github.com/Hauleth/sass-960gs
|
34
34
|
licenses: []
|
35
35
|
post_install_message:
|
data/stylesheets/960/_grid.scss
DELETED