Skip to content
This repository has been archived by the owner. It is now read-only.
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
$uc-font-path: "../../../global/fonts";
$icon-font-path: "../../../global/bootstrap-3.3.4/fonts/bootstrap/" !default;
$contentPadding: 31px 0 4em;
$headings-font-weight: bold;
$header-border: #fff !default;
$border-radius-base: 0px;
$border-radius-large: 4px;
$border-radius-small: 4px;
$navbar-margin-bottom: 0;
$navbar-collapse-max-height: none;
$navbar-default-bg: transparent;
$navbar-default-border: transparent;
$navbar-title-mobile: white;
$nav-secondary-padding: 8px;
$megamenu-item-color: white !default;
$widget-padding: 1em;
$widget-head-border-width: 0;
$widget-head-size: 150%;
$font-size-base: 14px !default;
$font-size-h1: ceil(($font-size-base * 1.7));
$font-size-h2: floor(($font-size-base * 1.5)) ;
$font-size-h3: ceil(($font-size-base * 1.15)) ;
$font-size-h4: ceil(($font-size-base * 1.15)) ;
$font-size-h5: $font-size-base !default;
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
$headings-font-weight: 500;
$ecw-icon-day-font-size: 150% !default;
$footers-margin: 0;
$footers-border-width: 1px 0 0 0;
$uc-footer-link-spacing: 1.5em;
$sh-search-submit-color: rgba(255,255,255,0.5) !default;
// Search Form Mixin
@mixin searchform($btn-bg, $btn-color, $input-bg, $input-color, $input-placeholder-color){
.searchform {
fieldset{
.form-control {
background-color:$input-bg;
color: $input-color;
border-radius: 0;
border:none;
height:auto;
&::-webkit-input-placeholder {
color: $input-placeholder-color;
}
&:-moz-placeholder {
color: $input-placeholder-color;
}
&::-moz-placeholder {
color: $input-placeholder-color;
}
&:-ms-input-placeholder {
color: $input-placeholder-color;
}
webkit-box-shadow: none;
box-shadow: none;
moz-box-shadow: none;
}
.btn {
background:none;
filter:none;
background-color: $btn-bg;
color:$btn-color;
border:none;
padding:6px 12px;
border-radius:0px;
opacity:1;
&:hover {
color:#fff;
background-color:darken($btn-bg, 15%);
}
}
}
}
}
// Buttons Mixin
@mixin button($color){
$color-hover: darken($color, 10%);
text-shadow: 0 1px 0 darken($color, 20%);
background: $color;
background: -moz-linear-gradient(top, $color 0%, darken($color, 5%) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $color), color-stop(100%,darken($color, 5%)));
background: -webkit-linear-gradient(top, $color 0%,darken($color, 5%) 100%);
background: -o-linear-gradient(top, $color 0%,darken($color, 5%) 100%);
background: -ms-linear-gradient(top, $color 0%,darken($color, 5%) 100%);
background: linear-gradient(to bottom, $color 0%,darken($color, 5%) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$color}', endColorstr='#{darken($color, 5%)}',GradientType=0 );
border-color: darken($color, 12%);
&:hover{
text-shadow: 0 1px 0 darken($color-hover, 20%);
background-color: darken($color-hover, 40%);
background: -moz-linear-gradient(top, $color-hover 0%, darken($color-hover, 5%) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $color-hover), color-stop(100%,darken($color-hover, 5%)));
background: -webkit-linear-gradient(top, $color-hover 0%,darken($color-hover, 5%) 100%);
background: -o-linear-gradient(top, $color-hover 0%,darken($color-hover, 5%) 100%);
background: -ms-linear-gradient(top, $color-hover 0%,darken($color-hover, 5%) 100%);
background: linear-gradient(to bottom, $color-hover 0%,darken($color-hover, 5%) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$color-hover}', endColorstr='#{darken($color-hover, 5%)}',GradientType=0 );
border-color: darken($color-hover, 12%);
}
&.active{
-moz-box-shadow: inset 0 0 3px $color-hover;
-webkit-box-shadow: inset 0 0 3px $color-hover;
box-shadow: inset 0 0 3px $color-hover;
}
&.dropdown-toggle{
background-color: darken($color, 15%);
border-color: darken($color, 8%);
}
}
// Button Reset - Includes Mixin
@mixin shermanReset($selector){
#{$selector} a.btn{
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px !important;
font-weight: 400;
color:#fff;
&:hover{
color:#fff !important;
}
&.btn-default{
color:#6b6b6b !important;
&:hover{
}
}
}
#{$selector} .btn{
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px !important;
font-weight: 400;
color:#fff;
&.btn-default{
color:#6b6b6b !important;
}
}
}