compass-h5bp 0.0.5 → 0.1.0
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/.gitignore +1 -0
- data/README.md +15 -9
- data/compass-h5bp.gemspec +2 -2
- data/lib/compass/h5bp/version.rb +2 -2
- data/stylesheets/_h5bp.scss +1 -3
- data/stylesheets/h5bp/_chromeframe.scss +2 -7
- data/stylesheets/h5bp/_helpers.scss +61 -12
- data/stylesheets/h5bp/_main.scss +83 -0
- data/stylesheets/h5bp/_media.scss +64 -12
- data/stylesheets/h5bp/_normalize.scss +333 -132
- data/test/project/sass/original.scss +210 -205
- data/test/project/sass/test.scss +10 -6
- metadata +20 -10
data/test/project/sass/test.scss
CHANGED
@@ -1,13 +1,17 @@
|
|
1
1
|
@import "h5bp";
|
2
2
|
|
3
|
-
@include h5bp-
|
4
|
-
@include h5bp-
|
3
|
+
@include h5bp-main;
|
4
|
+
@include h5bp-helpers;
|
5
|
+
|
5
6
|
|
6
7
|
@media only screen and (min-width: 35em) {
|
7
|
-
|
8
|
-
|
9
|
-
body { margin: 0; }
|
8
|
+
/* Style adjustments for viewports that meet the condition */
|
9
|
+
body { margin: 0; } //HACK
|
10
10
|
}
|
11
11
|
|
12
|
-
@
|
12
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
|
13
|
+
only screen and (min-resolution: 144dpi) {
|
14
|
+
/* Style adjustments for high resolution devices */
|
15
|
+
body { margin: 0; } //HACK
|
16
|
+
}
|
13
17
|
@include h5bp-media;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-h5bp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
13
|
-
default_executable:
|
12
|
+
date: 2012-11-29 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: compass
|
17
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
18
17
|
none: false
|
19
18
|
requirements:
|
20
19
|
- - ! '>='
|
@@ -22,9 +21,14 @@ dependencies:
|
|
22
21
|
version: '0'
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
|
-
version_requirements:
|
26
|
-
|
27
|
-
|
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 of Html5 mixins extracted from v4 of the Html5
|
31
|
+
Boilerplate project (h5bp.com) '
|
28
32
|
email:
|
29
33
|
- gumeson@gmail.com
|
30
34
|
executables: []
|
@@ -43,13 +47,13 @@ files:
|
|
43
47
|
- stylesheets/_h5bp.scss
|
44
48
|
- stylesheets/h5bp/_chromeframe.scss
|
45
49
|
- stylesheets/h5bp/_helpers.scss
|
50
|
+
- stylesheets/h5bp/_main.scss
|
46
51
|
- stylesheets/h5bp/_media.scss
|
47
52
|
- stylesheets/h5bp/_normalize.scss
|
48
53
|
- test/compass_h5bp_test.rb
|
49
54
|
- test/project/css/.gitkeep
|
50
55
|
- test/project/sass/original.scss
|
51
56
|
- test/project/sass/test.scss
|
52
|
-
has_rdoc: true
|
53
57
|
homepage: http://rubygems.org/gems/compass-h5bp
|
54
58
|
licenses: []
|
55
59
|
post_install_message:
|
@@ -62,18 +66,24 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
66
|
- - ! '>='
|
63
67
|
- !ruby/object:Gem::Version
|
64
68
|
version: '0'
|
69
|
+
segments:
|
70
|
+
- 0
|
71
|
+
hash: 1451010771291531907
|
65
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
73
|
none: false
|
67
74
|
requirements:
|
68
75
|
- - ! '>='
|
69
76
|
- !ruby/object:Gem::Version
|
70
77
|
version: '0'
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
hash: 1451010771291531907
|
71
81
|
requirements: []
|
72
82
|
rubyforge_project: compass-h5bp
|
73
|
-
rubygems_version: 1.
|
83
|
+
rubygems_version: 1.8.23
|
74
84
|
signing_key:
|
75
85
|
specification_version: 3
|
76
|
-
summary: Compass extension for Html5 Boilerplate
|
86
|
+
summary: Compass extension for Html5 Boilerplate v4.0
|
77
87
|
test_files:
|
78
88
|
- test/compass_h5bp_test.rb
|
79
89
|
- test/project/css/.gitkeep
|