compass-blend-modes 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ # Make sure you list all the project template files here in the manifest.
2
+ stylesheet 'screen.scss', :media => 'screen, projection'
@@ -0,0 +1,11 @@
1
+ @import 'blend-modes';
2
+
3
+ // Solid background
4
+ .multiply {
5
+ background-color: blend-multiply(#7FFFD4, #DEB887);
6
+ }
7
+
8
+ // RGBa background
9
+ .multiply {
10
+ background-color: blend-multiply(rgba(#7FFFD4, 0.5), #DEB887);
11
+ }
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: compass-blend-modes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Grady Kuhnline
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: compass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Using standard color blending functions in Sass.
28
+ email:
29
+ - github@heygrady.net
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - .gitignore
35
+ - LICENSE
36
+ - README.md
37
+ - compass-blend-modes.gemspec
38
+ - example/config.rb
39
+ - example/i/colorblend.png
40
+ - example/i/colorburn.png
41
+ - example/i/colordodge.png
42
+ - example/i/darken.png
43
+ - example/i/difference.png
44
+ - example/i/dissolve.png
45
+ - example/i/divide.png
46
+ - example/i/exclusion.png
47
+ - example/i/hardlight.png
48
+ - example/i/hardmix.png
49
+ - example/i/hue.png
50
+ - example/i/lighten.png
51
+ - example/i/linearburn.png
52
+ - example/i/lineardodge.png
53
+ - example/i/linearlight.png
54
+ - example/i/luminosity.png
55
+ - example/i/multiply.png
56
+ - example/i/normal.png
57
+ - example/i/overlay.png
58
+ - example/i/pinlight.png
59
+ - example/i/saturation.png
60
+ - example/i/screen.png
61
+ - example/i/softlight.png
62
+ - example/i/subtract.png
63
+ - example/i/vividlight.png
64
+ - example/index.html
65
+ - example/js/blend-modes.js
66
+ - example/scss/styles.scss
67
+ - lib/compass-blend-modes.rb
68
+ - lib/compass/blend-modes.rb
69
+ - lib/compass/blend-modes/version.rb
70
+ - stylesheets/_blend-modes.scss
71
+ - templates/project/manifest.rb
72
+ - templates/project/screen.scss
73
+ homepage: https://github.com/heygrady/scss-blend-modes
74
+ licenses:
75
+ - MIT
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - '>='
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.0.0
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Using standard color blending functions in Sass.
97
+ test_files: []