responsive-sass 0.1.0 → 0.1.1
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.mkdn +5 -2
- data/lib/responsive-sass/version.rb +1 -1
- data/responsive-sass.gemspec +1 -4
- metadata +4 -4
data/README.mkdn
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Responsive Sass - Compass plugin
|
|
2
2
|
====================
|
|
3
3
|
|
|
4
|
-
Responsive Sass mixins currently supports background image resizing, killing mobile zoom and works in all modern desktop/mobile browsers. Additional support
|
|
4
|
+
Responsive Sass mixins currently supports the Frameless grid, background image resizing, killing mobile zoom and works in all modern desktop/mobile browsers. Additional support
|
|
5
5
|
for Internet Explorer and older browsers is made possible with a small amount
|
|
6
6
|
of JavaScript using [Respond](http://github.com/scottjehl/Respond).
|
|
7
7
|
|
|
@@ -88,7 +88,7 @@ Column-widths in variables, in ems
|
|
|
88
88
|
$cols15: (15 * ($column + $gutter) - $gutter) / $em;
|
|
89
89
|
$cols16: (16 * ($column + $gutter) - $gutter) / $em;
|
|
90
90
|
|
|
91
|
-
Column-widths in a
|
|
91
|
+
Column-widths in a mixin, in ems
|
|
92
92
|
|
|
93
93
|
@mixin width ($cols:1) {
|
|
94
94
|
width: ($cols * ($column + $gutter) - $gutter) / $em;
|
|
@@ -141,3 +141,6 @@ All Rights Reserved.
|
|
|
141
141
|
Licensed under the [MIT license] (http://www.opensource.org/licenses/mit-license.php)
|
|
142
142
|
|
|
143
143
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
144
|
+
|
|
145
|
+
[Frameless Grid] (http://framelessgrid.com/) by [Joni Korpi] (http://jonikorpi.com) is licensed under
|
|
146
|
+
[CC0](http://creativecommons.org/publicdomain/zero/1.0/)
|
data/responsive-sass.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.version = Compass::Responsive::VERSION
|
|
8
8
|
s.authors = ["Nick Treadway"]
|
|
9
9
|
s.email = ["rnt@yeti-media.com"]
|
|
10
|
-
s.homepage = "http://github.com/
|
|
10
|
+
s.homepage = "http://ntreadway.github.com/responsive-sass/welcome"
|
|
11
11
|
s.summary = %q{Responsive Sass}
|
|
12
12
|
s.description = %q{Responsive Sass design using media queries for Compass.}
|
|
13
13
|
|
|
@@ -24,7 +24,4 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.rubygems_version = %q{1.3.6}
|
|
25
25
|
s.add_development_dependency("rake")
|
|
26
26
|
s.add_dependency("compass", [">= 0.11"])
|
|
27
|
-
# specify any dependencies here; for example:
|
|
28
|
-
# s.add_development_dependency "rspec"
|
|
29
|
-
# s.add_runtime_dependency "rest-client"
|
|
30
27
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: responsive-sass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Nick Treadway
|
|
@@ -67,7 +67,7 @@ files:
|
|
|
67
67
|
- stylesheets/_normalize.scss
|
|
68
68
|
- stylesheets/_responsive-sass.scss
|
|
69
69
|
- stylesheets/partials/_base.scss
|
|
70
|
-
homepage: http://github.com/
|
|
70
|
+
homepage: http://ntreadway.github.com/responsive-sass/welcome
|
|
71
71
|
licenses: []
|
|
72
72
|
|
|
73
73
|
post_install_message:
|