sass-960gs 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/sass-960gs.rb ADDED
@@ -0,0 +1,8 @@
1
+ if defined? Rails
2
+ module Sass960gs
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
data/sass-960gs.gemspec CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sass-960gs}
5
- s.version = "0.0.3"
5
+ s.version = '0.1.0'
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
- s.authors = ["Łukasz Niemier"]
9
- s.date = %q{2012-03-19}
10
- s.description = %q{The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/}
8
+ s.authors = ['Łukasz Niemier']
9
+ s.date = '2012-03-19'
10
+ s.description = 'The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/'
11
11
  s.email = %w{lukasz@niemier.pl}
12
12
  s.has_rdoc = false
13
13
  s.files = `git ls-files`.split("\n")
@@ -1,4 +1,4 @@
1
- @include '960/variables';
1
+ @import 'variables';
2
2
 
3
3
  @mixin text($font-family: $ninesixty-font-family, $font-size: $ninesixty-font-size) {
4
4
  body {
@@ -12,10 +12,10 @@
12
12
  clear: both;
13
13
  height: 0; }
14
14
  h1 {
15
- font-size: 1.667px;
15
+ font-size: 1.667em;
16
16
  }
17
17
  h2 {
18
- font-size: 1.533px;
18
+ font-size: 1.533em;
19
19
  }
20
20
  h3 {
21
21
  font-size: 1.4em;
@@ -0,0 +1,5 @@
1
+ @import '960/fixed';
2
+ @import '960/text';
3
+
4
+ @include grid-system-complete;
5
+ @include text;
@@ -0,0 +1,5 @@
1
+ @import '960/fluid';
2
+ @import '960/text';
3
+
4
+ @include fluid-grid-system-complete;
5
+ @include text;
@@ -0,0 +1,3 @@
1
+ @import '960/fixed';
2
+ @import '960/fluid';
3
+ @import '960/text';
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.3
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-19 00:00:00.000000000Z
12
+ date: 2012-03-19 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: The 960 Grid System is an effort to streamline web development workflow
15
15
  by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/
@@ -23,12 +23,15 @@ files:
23
23
  - LICENSE.md
24
24
  - README.md
25
25
  - changelog.txt
26
+ - lib/sass-960gs.rb
26
27
  - sass-960gs.gemspec
27
- - vendor/assets/stylesheets/960/_fixed_grid.scss
28
- - vendor/assets/stylesheets/960/_fluid_grid.scss
28
+ - vendor/assets/stylesheets/960/_fixed.scss
29
+ - vendor/assets/stylesheets/960/_fluid.scss
29
30
  - vendor/assets/stylesheets/960/_text.scss
30
31
  - vendor/assets/stylesheets/960/_variables.scss
31
- - vendor/assets/stylesheets/_960.gs.scss
32
+ - vendor/assets/stylesheets/_960-fixed.scss
33
+ - vendor/assets/stylesheets/_960-fluid.scss
34
+ - vendor/assets/stylesheets/_960.scss
32
35
  homepage: https://github.com/Hauleth/sass-960gs
33
36
  licenses: []
34
37
  post_install_message:
@@ -49,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
52
  version: 1.3.5
50
53
  requirements: []
51
54
  rubyforge_project:
52
- rubygems_version: 1.8.18
55
+ rubygems_version: 1.8.24
53
56
  signing_key:
54
57
  specification_version: 3
55
58
  summary: Standalone SCSS port of 960.gs.
@@ -1,4 +0,0 @@
1
- @import '960/variables';
2
- @import '960/fixed_grid';
3
- @import '960/fluid_grid';
4
- @import '960/text';