handysass 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/stylesheets/handysass/mixins/_responsive.scss +21 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a711482313f79f21f8213576b20cf34aedf54a7
|
4
|
+
data.tar.gz: a937da74a7028681bb6b016ad8cbbb0ccfc7dfc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bce12d3010e29b711a3dd71f843e0cd337176908ba72a110804bedb443cfd2c0ea78e033023161b462d0a33c9940afb0faf0bcaae28b9627f7c7e1dfc847a15
|
7
|
+
data.tar.gz: bcd77134a4a038e64a000c558ef8274c1027d691bdc14e3264c99fe9606c2e7f6b39ec2d20785dee0886f24c08448f4ad5ff2a50e421acab8c26fe7ac02c47c1
|
@@ -9,6 +9,27 @@ $lg-screen: 1200px !default;
|
|
9
9
|
}
|
10
10
|
}
|
11
11
|
|
12
|
+
// Screen size setup.
|
13
|
+
//
|
14
|
+
// Pass the small, medium and large screen sizes to use.
|
15
|
+
// Pass 0 to use the default/previously set one.
|
16
|
+
//
|
17
|
+
// @param number $sm The small (e.g. tablet) screen width
|
18
|
+
// @param number $md The medium (e.g. laptop) screen width
|
19
|
+
// @param number $lg The large (e.g. desktop) screen width
|
20
|
+
|
21
|
+
@mixin screen-sizes($sm: 0, $md: 0, $lg: 0) {
|
22
|
+
@if $sm != 0{
|
23
|
+
$sm-screen: $sm !global;
|
24
|
+
}
|
25
|
+
@if $md != 0{
|
26
|
+
$md-screen: $md !global;
|
27
|
+
}
|
28
|
+
@if $lg != 0{
|
29
|
+
$lg-screen: $lg !global;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
12
33
|
// Add a screen @media rule for the specified min/max widths.
|
13
34
|
//
|
14
35
|
// Recommended use: keywork argument syntax, for consistency
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: handysass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doug Wollison
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0.11'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0.11'
|
27
27
|
description: A basic utility kit with handy mixins and classes for Compass.
|
@@ -53,17 +53,17 @@ require_paths:
|
|
53
53
|
- lib
|
54
54
|
required_ruby_version: !ruby/object:Gem::Requirement
|
55
55
|
requirements:
|
56
|
-
- -
|
56
|
+
- - ">="
|
57
57
|
- !ruby/object:Gem::Version
|
58
58
|
version: '0'
|
59
59
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- -
|
61
|
+
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
65
|
rubyforge_project:
|
66
|
-
rubygems_version: 2.0.
|
66
|
+
rubygems_version: 2.0.14
|
67
67
|
signing_key:
|
68
68
|
specification_version: 4
|
69
69
|
summary: A basic utility kit with handy mixins and classes for Compass.
|