Skip to content

Commit

Permalink
added license info
Browse files Browse the repository at this point in the history
  • Loading branch information
timhettler committed Nov 1, 2013
1 parent 7142437 commit 893e99e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ require './lib/compass-photoshop-gradient-overlay'

Gem::Specification.new do |s|
# Release Specific Information
s.version = "2.0.0"
s.date = "2013-10-07"
s.version = "2.0.1"
s.date = "2013-11-01"

# Gem Details
s.name = "compass-photoshop-gradient-overlay"
Expand All @@ -12,6 +12,7 @@ Gem::Specification.new do |s|
s.authors = ["Tim Hettler"]
s.email = ["me+github@timhettler.com"]
s.homepage = "https://github.com/timhettler/compass-photoshop-gradient-overlay"
s.license = 'MIT'

# Gem Files

Expand Down
8 changes: 8 additions & 0 deletions stylesheets/compass-photoshop-gradient-overlay.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,11 @@ body {
background-image: -o-linear-gradient(90deg, #ff0000 0%, #ffa500 20%, #ffff00 40%, #008000 60%, #0000ff 80%, #ee82ee 100%);
background-image: linear-gradient(0deg, #ff0000 0%, #ffa500 20%, #ffff00 40%, #008000 60%, #0000ff 80%, #ee82ee 100%);
}

/* line 94, ../sass/compass-photoshop-gradient-overlay.scss */
.complex-gradient {
background-image: -webkit-linear-gradient(180deg, rgba(255, 0, 0, 0.75) 25%, rgba(255, 165, 0, 0.75) 35%, rgba(255, 255, 0, 0.75) 45%, rgba(0, 128, 0, 0.75) 55.0%, rgba(0, 0, 255, 0.75) 65%, rgba(238, 130, 238, 0.75) 75%);
background-image: -moz-linear-gradient(180deg, rgba(255, 0, 0, 0.75) 25%, rgba(255, 165, 0, 0.75) 35%, rgba(255, 255, 0, 0.75) 45%, rgba(0, 128, 0, 0.75) 55.0%, rgba(0, 0, 255, 0.75) 65%, rgba(238, 130, 238, 0.75) 75%);
background-image: -o-linear-gradient(180deg, rgba(255, 0, 0, 0.75) 25%, rgba(255, 165, 0, 0.75) 35%, rgba(255, 255, 0, 0.75) 45%, rgba(0, 128, 0, 0.75) 55.0%, rgba(0, 0, 255, 0.75) 65%, rgba(238, 130, 238, 0.75) 75%);
background-image: linear-gradient(-90deg, rgba(255, 0, 0, 0.75) 25%, rgba(255, 165, 0, 0.75) 35%, rgba(255, 255, 0, 0.75) 45%, rgba(0, 128, 0, 0.75) 55.0%, rgba(0, 0, 255, 0.75) 65%, rgba(238, 130, 238, 0.75) 75%);
}

0 comments on commit 893e99e

Please sign in to comment.