compass-grid-plugin 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/README.md +88 -0
- data/compass-grid-plugin.gemspec +21 -0
- data/example/config.rb +27 -0
- data/example/css/example.css +97 -0
- data/example/css/media.css +618 -0
- data/example/css/percentage.css +544 -0
- data/example/css/test.css +113 -0
- data/example/example.html +40 -0
- data/example/i/dino-1.jpg +0 -0
- data/example/i/dino-2.png +0 -0
- data/example/media.html +67 -0
- data/example/percentage.html +430 -0
- data/example/scss/example.scss +55 -0
- data/example/scss/media.scss +347 -0
- data/example/scss/percentage.scss +68 -0
- data/example/scss/test.scss +30 -0
- data/example/test.html +216 -0
- data/lib/compass-grid.rb +5 -0
- data/lib/compass/grid.rb +7 -0
- data/lib/compass/grid/version.rb +5 -0
- data/stylesheets/_grid.scss +127 -0
- data/stylesheets/grid/_fluid.scss +131 -0
- data/templates/project/manifest.rb +17 -0
- data/templates/project/partials/_base.scss +7 -0
- data/templates/project/screen.scss +9 -0
- metadata +89 -0
@@ -0,0 +1,17 @@
|
|
1
|
+
description "Sass Grid based on the 1KB CSS Grid"
|
2
|
+
|
3
|
+
stylesheet 'screen.scss', :media => "screen, projection"
|
4
|
+
stylesheet 'partials/_base.scss'
|
5
|
+
|
6
|
+
help %Q{
|
7
|
+
Please see the website for all documentation and tutorials:
|
8
|
+
|
9
|
+
https://github.com/heygrady/1KB-SCSS-Grid
|
10
|
+
}
|
11
|
+
|
12
|
+
welcome_message %Q{
|
13
|
+
Please see the website for all documentation and tutorials:
|
14
|
+
|
15
|
+
https://github.com/heygrady/1KB-SCSS-Grid
|
16
|
+
|
17
|
+
}
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: compass-grid-plugin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Grady Kuhnline
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-20 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: compass
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Compass extension based on the 1KB CSS Grid designed to utilize Sass
|
31
|
+
and Compass to remove unnecessary classes from the HTML markup and make customization
|
32
|
+
easier.
|
33
|
+
email:
|
34
|
+
- github@heygrady.net
|
35
|
+
executables: []
|
36
|
+
extensions: []
|
37
|
+
extra_rdoc_files: []
|
38
|
+
files:
|
39
|
+
- .gitignore
|
40
|
+
- README.md
|
41
|
+
- compass-grid-plugin.gemspec
|
42
|
+
- example/config.rb
|
43
|
+
- example/css/example.css
|
44
|
+
- example/css/media.css
|
45
|
+
- example/css/percentage.css
|
46
|
+
- example/css/test.css
|
47
|
+
- example/example.html
|
48
|
+
- example/i/dino-1.jpg
|
49
|
+
- example/i/dino-2.png
|
50
|
+
- example/media.html
|
51
|
+
- example/percentage.html
|
52
|
+
- example/scss/example.scss
|
53
|
+
- example/scss/media.scss
|
54
|
+
- example/scss/percentage.scss
|
55
|
+
- example/scss/test.scss
|
56
|
+
- example/test.html
|
57
|
+
- lib/compass-grid.rb
|
58
|
+
- lib/compass/grid.rb
|
59
|
+
- lib/compass/grid/version.rb
|
60
|
+
- stylesheets/_grid.scss
|
61
|
+
- stylesheets/grid/_fluid.scss
|
62
|
+
- templates/project/manifest.rb
|
63
|
+
- templates/project/partials/_base.scss
|
64
|
+
- templates/project/screen.scss
|
65
|
+
homepage: https://github.com/heygrady/1KB-SCSS-Grid
|
66
|
+
licenses: []
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options: []
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
requirements: []
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 1.8.23
|
86
|
+
signing_key:
|
87
|
+
specification_version: 3
|
88
|
+
summary: Compass extension based on the 1KB CSS Grid
|
89
|
+
test_files: []
|