This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
briandunnigan
authored and
briandunnigan
committed
Jun 15, 2015
1 parent
fefc6c2
commit 717555d
Showing
5 changed files
with
153 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* ---------- Gradient ---------- */ | ||
@mixin gradient($start-gradient, $end-gradient) { | ||
|
||
background: $start-gradient; | ||
background: -moz-linear-gradient(top, $start-gradient 0%, $end-gradient 100%); | ||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$start-gradient), color-stop(100%,$end-gradient)); | ||
background: -webkit-linear-gradient(top, $start-gradient 0%,$end-gradient 100%); | ||
background: -o-linear-gradient(top, $start-gradient 0%,$end-gradient 100%); | ||
background: -ms-linear-gradient(top, $start-gradient 0%,$end-gradient 100%); | ||
background: linear-gradient(to bottom, $start-gradient 0%,$end-gradient 100%); | ||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$start-gradient}', endColorstr='#{$end-gradient}',GradientType=0 ); | ||
|
||
&:hover { | ||
color:white !important; | ||
background:darken($start-gradient,11%) !important; | ||
} | ||
} | ||
|
||
a.btn-purple { | ||
@include gradient($start-purple, $end-purple) | ||
} | ||
|
||
a.btn-teal { | ||
@include gradient($start-teal, $end-teal) | ||
} | ||
|
||
a.btn-orange { | ||
@include gradient($start-orange, $end-orange) | ||
} | ||
|
||
a.btn-red { | ||
@include gradient($start-red, $end-red) | ||
} | ||
|
||
a.btn-red { | ||
@include gradient($start-green, $end-green) | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.