Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* ---------- Gradient ---------- */
@mixin gradient($start-gradient, $end-gradient) {
background: $start-gradient !important;
background: -moz-linear-gradient(top, $start-gradient 0%, $end-gradient 100%) !important;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,$start-gradient), color-stop(100%,$end-gradient))!important;
background: -webkit-linear-gradient(top, $start-gradient 0%,$end-gradient 100%) !important;
background: -o-linear-gradient(top, $start-gradient 0%,$end-gradient 100%) !important;
background: -ms-linear-gradient(top, $start-gradient 0%,$end-gradient 100%) !important;
background: linear-gradient(to bottom, $start-gradient 0%,$end-gradient 100%) !important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$start-gradient}', endColorstr='#{$end-gradient}',GradientType=0 ) !important;
&:hover {
color:white !important;
background:darken($start-gradient,7%) !important;
}
}
a.blue{
@include gradient($start-blue, $end-blue);
}
.btn-primary {
@include gradient($start-blue, $end-blue);
border-color:lighten($start-blue,5%) !important;
&:hover {
color:white !important;
}
}
.btn-success {
&:hover {
color:white !important;
}
}