2013-05-28 02:16:02 +00:00
|
|
|
//
|
|
|
|
// Foundation Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
|
|
|
// for compatibility with browser-based text zoom or user-set defaults.
|
2013-05-28 02:16:02 +00:00
|
|
|
$base-font-size: 100% !default;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $base-line-height is 24px while $base-font-size is 16px
|
|
|
|
// $base-line-height: 150%;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// This is the default html and body font-size for the base em value.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
|
|
|
// If you want your base font-size to be a different size and not have it effect grid size too,
|
|
|
|
// set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
|
2013-05-28 02:16:02 +00:00
|
|
|
$em-base: 16px !default;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px)
|
2013-05-28 02:16:02 +00:00
|
|
|
@function emCalc($pxWidth) {
|
|
|
|
@return $pxWidth / $em-base * 1em;
|
|
|
|
}
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Change whether or not you include browser prefixes
|
|
|
|
// $experimental: true;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Various global styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
$default-float: left;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
$body-bg: #fbfbfb;
|
|
|
|
// $body-font-color: #222;
|
|
|
|
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
|
|
|
// $body-font-weight: normal;
|
|
|
|
// $body-font-style: normal;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Font-smoothing
|
|
|
|
|
|
|
|
// $font-smoothing: antialiased;
|
|
|
|
|
|
|
|
// Text direction settings
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $text-direction: ltr;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Colors
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
$primary-color: #9b160d;
|
|
|
|
$secondary-color: #e0e0e0;
|
|
|
|
$alert-color: #c60f13;
|
|
|
|
$success-color: #5da423;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Make sure border radius matches unless we want it different.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $global-radius: 3px;
|
|
|
|
// $global-rounded: 1000px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Inset shadow shiny edges and depressions.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $shiny-edge-size: 0 1px 0;
|
|
|
|
// $shiny-edge-color: rgba(#fff, .5);
|
|
|
|
// $shiny-edge-active-color: rgba(#000, .2);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Control whether or not CSS classes come through in the CSS files.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $include-html-classes: true;
|
|
|
|
// $include-print-styles: true;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-global-classes: $include-html-classes;
|
|
|
|
// $include-html-type-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $include-html-grid-classes: $include-html-classes;
|
|
|
|
// $include-html-visibility-classes: $include-html-classes;
|
|
|
|
// $include-html-button-classes: $include-html-classes;
|
|
|
|
// $include-html-form-classes: $include-html-classes;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-custom-form-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $include-html-media-classes: $include-html-classes;
|
|
|
|
// $include-html-section-classes: $include-html-classes;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-orbit-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $include-html-reveal-classes: $include-html-classes;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-joyride-classes: $include-html-classes;
|
|
|
|
// $include-html-clearing-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $include-html-alert-classes: $include-html-classes;
|
|
|
|
// $include-html-nav-classes: $include-html-classes;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-top-bar-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $include-html-label-classes: $include-html-classes;
|
|
|
|
// $include-html-panel-classes: $include-html-classes;
|
|
|
|
// $include-html-pricing-classes: $include-html-classes;
|
|
|
|
// $include-html-progress-classes: $include-html-classes;
|
|
|
|
// $include-html-magellan-classes: $include-html-classes;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $include-html-tooltip-classes: $include-html-classes;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Media Queries
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $small-screen: 700px;
|
|
|
|
// $medium-screen: 1280px;
|
|
|
|
// $large-screen: 1440px;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $screen: "only screen";
|
2013-07-13 07:17:49 +00:00
|
|
|
// $small: "only screen and (min-width: #{$small-screen})";
|
|
|
|
// $medium: "only screen and (min-width: #{$medium-screen})";
|
|
|
|
// $large: "only screen and (min-width: #{$large-screen})";
|
2013-05-28 02:16:02 +00:00
|
|
|
// $landscape: "only screen and (orientation: landscape)";
|
|
|
|
// $portrait: "only screen and (orientation: portrait)";
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
//// Cursors
|
|
|
|
|
|
|
|
//Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
|
|
|
|
|
|
|
|
// $cursor-crosshair-value: "crosshair";
|
|
|
|
// $cursor-default-value: "default";
|
|
|
|
// $cursor-pointer-value: "pointer";
|
|
|
|
// $cursor-help-value: "help";
|
|
|
|
|
2013-05-28 02:16:02 +00:00
|
|
|
//
|
|
|
|
// Grid Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $row-width: 100%;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $column-gutter: emCalc(30px);
|
|
|
|
// $total-columns: 12;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Block Grid Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Maximum number of block grid elements per row
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $block-grid-elements: 12;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $block-grid-default-spacing: emCalc(20px);
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $block-grid-media-queries: true;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Typography Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Heading font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
|
|
|
// $header-font-weight: bold;
|
|
|
|
// $header-font-style: normal;
|
|
|
|
// $header-font-color: #222;
|
|
|
|
// $header-line-height: 1.4;
|
|
|
|
// $header-top-margin: .2em;
|
|
|
|
// $header-bottom-margin: .5em;
|
|
|
|
// $header-text-rendering: optimizeLegibility;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Heading font sizes
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $h1-font-size: emCalc(44px);
|
|
|
|
// $h2-font-size: emCalc(37px);
|
|
|
|
// $h3-font-size: emCalc(27px);
|
|
|
|
// $h4-font-size: emCalc(23px);
|
|
|
|
// $h5-font-size: emCalc(18px);
|
|
|
|
// $h6-font-size: 1em;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Subheaders
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $subheader-line-height: 1.4;
|
|
|
|
// $subheader-font-color: lighten($header-font-color, 30%);
|
|
|
|
// $subheader-font-weight: 300;
|
|
|
|
// $subheader-top-margin: .2em;
|
|
|
|
// $subheader-bottom-margin: .5em;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// <small> styling
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $small-font-size: 60%;
|
|
|
|
// $small-font-color: lighten($header-font-color, 30%);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Paragraphs
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $paragraph-font-family: inherit;
|
|
|
|
// $paragraph-font-weight: normal;
|
|
|
|
// $paragraph-font-size: 1em;
|
|
|
|
// $paragraph-line-height: 1.6;
|
|
|
|
// $paragraph-margin-bottom: emCalc(20px);
|
|
|
|
// $paragraph-aside-font-size: emCalc(14px);
|
|
|
|
// $paragraph-aside-line-height: 1.35;
|
|
|
|
// $paragraph-aside-font-style: italic;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// <code> tags
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $code-color: darken($alert-color, 15%);
|
|
|
|
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
|
|
|
// $code-font-weight: bold;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Anchors
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $anchor-text-decoration: none;
|
|
|
|
// $anchor-font-color: $primary-color;
|
|
|
|
// $anchor-font-color-hover: darken($primary-color, 5%);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// <hr> element
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $hr-border-width: 1px;
|
|
|
|
// $hr-border-style: solid;
|
|
|
|
// $hr-border-color: #ddd;
|
|
|
|
// $hr-margin: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Lists
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $list-style-position: inside;
|
|
|
|
$list-side-margin: emCalc(30px);
|
|
|
|
// $list-nested-margin: emCalc(20px);
|
2013-05-28 02:16:02 +00:00
|
|
|
// $definition-list-header-weight: bold;
|
|
|
|
// $definition-list-header-margin-bottom: .3em;
|
|
|
|
// $definition-list-margin-bottom: emCalc(12px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Blockquotes
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $blockquote-font-color: lighten($header-font-color, 30%);
|
|
|
|
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
|
|
|
|
// $blockquote-border: 1px solid #ddd;
|
|
|
|
// $blockquote-cite-font-size: emCalc(13px);
|
|
|
|
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
|
|
|
|
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Acronym
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $acronym-underline: 1px dotted #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Padding and margin
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-padding: emCalc(10px) emCalc(12px);
|
|
|
|
// $microformat-margin: 0 0 emCalc(20px) 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-border-width: 1px;
|
|
|
|
// $microformat-border-style: solid;
|
|
|
|
// $microformat-border-color: #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Full name font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-fullname-font-weight: bold;
|
|
|
|
// $microformat-fullname-font-size: emCalc(15px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Summary font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-summary-font-weight: bold;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// <abbr> padding
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-abbr-padding: 0 emCalc(1px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// <abbr> font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $microformat-abbr-font-weight: bold;
|
|
|
|
// $microformat-abbr-font-decoration: none;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Form Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Base for lots of form spacing and positioning styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $form-spacing: emCalc(16px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Labels
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $form-label-pointer: pointer;
|
|
|
|
// $form-label-font-size: emCalc(14px);
|
|
|
|
// $form-label-font-weight: 500;
|
|
|
|
// $form-label-font-color: lighten(#000, 30%);
|
|
|
|
// $form-label-bottom-margin: emCalc(3px);
|
2013-05-28 02:16:02 +00:00
|
|
|
// $input-font-family: inherit;
|
|
|
|
// $input-font-color: rgba(0,0,0,0.75);
|
|
|
|
// $input-font-size: emCalc(14px);
|
|
|
|
// $input-bg-color: #fff;
|
|
|
|
// $input-focus-bg-color: darken(#fff, 2%);
|
|
|
|
// $input-border-color: darken(#fff, 20%);
|
|
|
|
// $input-focus-border-color: darken(#fff, 40%);
|
|
|
|
// $input-border-style: solid;
|
|
|
|
// $input-border-width: 1px;
|
|
|
|
// $input-disabled-bg: #ddd;
|
|
|
|
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
2013-07-13 07:17:49 +00:00
|
|
|
// $input-include-glowing-effect: true;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Fieldset border and spacing.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $fieldset-border-style: solid;
|
|
|
|
// $fieldset-border-width: 1px;
|
|
|
|
// $fieldset-border-color: #ddd;
|
|
|
|
// $fieldset-padding: emCalc(20px);
|
|
|
|
// $fieldset-margin: emCalc(18px) 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Legends
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $legend-bg: #fff;
|
|
|
|
// $legend-font-weight: bold;
|
|
|
|
// $legend-padding: 0 emCalc(3px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Prefix and postfix input elements
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $input-prefix-bg: darken(#fff, 5%);
|
|
|
|
// $input-prefix-border-color: darken(#fff, 20%);
|
|
|
|
// $input-prefix-border-size: 1px;
|
|
|
|
// $input-prefix-border-type: solid;
|
|
|
|
// $input-prefix-overflow: hidden;
|
|
|
|
// $input-prefix-font-color: #333;
|
|
|
|
// $input-prefix-font-color-alt: #fff;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Error states for inputs and labels
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $input-error-message-padding: emCalc(6px) emCalc(4px);
|
|
|
|
// $input-error-message-top: -($form-spacing) - emCalc(5px);
|
|
|
|
// $input-error-message-font-size: emCalc(12px);
|
|
|
|
// $input-error-message-font-weight: bold;
|
|
|
|
// $input-error-message-font-color: #fff;
|
|
|
|
// $input-error-message-font-color-alt: #333;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Glowing effect of inputs when focused
|
|
|
|
|
|
|
|
// $glowing-effect-fade-time: 0.45s;
|
|
|
|
// $glowing-effect-color: $input-focus-border-color;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Button Variables
|
|
|
|
//
|
|
|
|
|
|
|
|
// Padding for buttons.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-tny: emCalc(7px);
|
|
|
|
// $button-sml: emCalc(9px);
|
|
|
|
// $button-med: emCalc(12px);
|
|
|
|
// $button-lrg: emCalc(16px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Display property.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-display: inline-block;
|
|
|
|
// $button-margin-bottom: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Button text styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-font-family: inherit;
|
|
|
|
// $button-font-color: #fff;
|
|
|
|
// $button-font-color-alt: #333;
|
|
|
|
// $button-font-med: emCalc(16px);
|
|
|
|
// $button-font-tny: emCalc(11px);
|
|
|
|
// $button-font-sml: emCalc(13px);
|
|
|
|
// $button-font-lrg: emCalc(20px);
|
|
|
|
// $button-font-weight: bold;
|
|
|
|
// $button-font-align: center;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Various hover effects.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-function-factor: 10%;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Button border styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-border-width: 1px;
|
|
|
|
// $button-border-style: solid;
|
|
|
|
// $button-border-color: darken($primary-color, $button-function-factor);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Radius used throughout the core.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-radius: $global-radius;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Opacity for disabled buttons.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $button-disabled-opacity: 0.6;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
//
|
|
|
|
// Button Groups
|
|
|
|
//
|
|
|
|
|
|
|
|
// Sets the margin for the right side by default, and the left margin if right-to-left direction is used
|
|
|
|
|
|
|
|
// $button-bar-margin-opposite: emCalc(10px);
|
|
|
|
|
2013-05-28 02:16:02 +00:00
|
|
|
//
|
|
|
|
// Dropdown Button Variables
|
|
|
|
//
|
|
|
|
|
|
|
|
// Color of the pip in dropdown buttons
|
|
|
|
|
|
|
|
// $dropdown-button-pip-color: #fff;
|
|
|
|
// $dropdown-button-pip-color-alt: #333;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Tiny dropdown buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $dropdown-button-padding-tny: $button-tny * 5;
|
|
|
|
// $dropdown-button-pip-size-tny: $button-tny;
|
|
|
|
// $dropdown-button-pip-right-tny: $button-tny * 2;
|
|
|
|
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Small dropdown buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $dropdown-button-padding-sml: $button-sml * 5;
|
|
|
|
// $dropdown-button-pip-size-sml: $button-sml;
|
|
|
|
// $dropdown-button-pip-right-sml: $button-sml * 2;
|
|
|
|
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Medium dropdown buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
|
|
|
|
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
|
|
|
|
// $dropdown-button-pip-right-med: $button-med * 2;
|
|
|
|
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Large dropdown buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $dropdown-button-padding-lrg: $button-lrg * 4;
|
|
|
|
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
|
|
|
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
|
|
|
|
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Split Button Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Shared styles for Split Buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $split-button-function-factor: 15%;
|
|
|
|
// $split-button-pip-color: #fff;
|
|
|
|
// $split-button-pip-color-alt: #333;
|
|
|
|
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Tiny split buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $split-button-padding-tny: $button-tny * 9;
|
|
|
|
// $split-button-span-width-tny: $button-tny * 6.5;
|
|
|
|
// $split-button-pip-size-tny: $button-tny;
|
|
|
|
// $split-button-pip-top-tny: $button-tny * 2;
|
|
|
|
// $split-button-pip-left-tny: emCalc(-5px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Small split buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $split-button-padding-sml: $button-sml * 7;
|
|
|
|
// $split-button-span-width-sml: $button-sml * 5;
|
|
|
|
// $split-button-pip-size-sml: $button-sml;
|
|
|
|
// $split-button-pip-top-sml: $button-sml * 1.5;
|
|
|
|
// $split-button-pip-left-sml: emCalc(-9px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Medium split buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $split-button-padding-med: $button-med * 6.4;
|
|
|
|
// $split-button-span-width-med: $button-med * 4;
|
|
|
|
// $split-button-pip-size-med: $button-med - emCalc(3px);
|
|
|
|
// $split-button-pip-top-med: $button-med * 1.5;
|
|
|
|
// $split-button-pip-left-med: emCalc(-9px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Large split buttons
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $split-button-padding-lrg: $button-lrg * 6;
|
|
|
|
// $split-button-span-width-lrg: $button-lrg * 3.75;
|
|
|
|
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
|
|
|
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
|
|
|
|
// $split-button-pip-left-lrg: emCalc(-9px);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Alert Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Alert padding
|
|
|
|
|
|
|
|
// $alert-padding-top: emCalc(11px);
|
|
|
|
// $alert-padding-default-float: $alert-padding-top;
|
|
|
|
// $alert-padding-opposite-direction: $alert-padding-top + emCalc(10px);
|
|
|
|
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Text style
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $alert-font-weight: bold;
|
|
|
|
// $alert-font-size: emCalc(14px);
|
|
|
|
// $alert-font-color: #fff;
|
|
|
|
// $alert-font-color-alt: darken($secondary-color, 60%);
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Hover effect
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $alert-function-factor: 10%;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border Styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $alert-border-style: solid;
|
|
|
|
// $alert-border-width: 1px;
|
|
|
|
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
|
|
|
// $alert-bottom-margin: emCalc(20px);
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Close Button style
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $alert-close-color: #333;
|
|
|
|
// $alert-close-position: emCalc(5px);
|
|
|
|
// $alert-close-font-size: emCalc(22px);
|
|
|
|
// $alert-close-opacity: 0.3;
|
|
|
|
// $alert-close-opacity-hover: 0.5;
|
|
|
|
// $alert-close-padding: 5px 4px 4px;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border radius
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $alert-radius: $global-radius;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Breadcrumb Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background color for the breadcrumb container.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $crumb-bg: lighten($secondary-color, 5%);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Padding around the breadcrumbs.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
|
|
|
|
// $crumb-side-padding: emCalc(12px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $crumb-function-factor: 10%;
|
|
|
|
// $crumb-border-size: 1px;
|
|
|
|
// $crumb-border-style: solid;
|
|
|
|
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
|
|
|
// $crumb-radius: $global-radius;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Various text styles for breadcrumbs.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $crumb-font-size: emCalc(11px);
|
|
|
|
// $crumb-font-color: $primary-color;
|
|
|
|
// $crumb-font-color-current: #333;
|
|
|
|
// $crumb-font-color-unavailable: #999;
|
|
|
|
// $crumb-font-transform: uppercase;
|
|
|
|
// $crumb-link-decor: underline;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Slash between breadcrumbs
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $crumb-slash-color: #aaa;
|
|
|
|
// $crumb-slash: "/";
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clearing Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background colors for parts of Clearing.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $clearing-bg: #111;
|
|
|
|
// $clearing-caption-bg: $clearing-bg;
|
|
|
|
// $clearing-carousel-bg: #111;
|
|
|
|
// $clearing-img-bg: $clearing-bg;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Close button
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $clearing-close-color: #fff;
|
|
|
|
// $clearing-close-size: 40px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Style the arrows
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $clearing-arrow-size: 16px;
|
|
|
|
// $clearing-arrow-color: $clearing-close-color;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Style captions
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $clearing-caption-font-color: #fff;
|
|
|
|
// $clearing-caption-padding: 10px 30px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Make the image and carousel height and style
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $clearing-active-img-height: 75%;
|
|
|
|
// $clearing-carousel-height: 150px;
|
|
|
|
// $clearing-carousel-thumb-width: 175px;
|
|
|
|
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Custom Form Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Basic form styles input styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $custom-form-border-color: #ccc;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $custom-form-border-size: 1px;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $custom-form-bg: #fff;
|
|
|
|
// $custom-form-bg-disabled: #ddd;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $custom-form-input-size: 16px;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $custom-form-check-color: #222;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $custom-form-check-size: 14px;
|
|
|
|
// $custom-form-radio-size: 8px;
|
|
|
|
// $custom-form-checkbox-radius: 0px;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Custom select form element.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $custom-select-bg: #fff;
|
|
|
|
// $custom-select-fade-to-color: #f3f3f3;
|
|
|
|
// $custom-select-border-color: #ddd;
|
|
|
|
// $custom-select-triangle-color: #aaa;
|
|
|
|
// $custom-select-triangle-color-open: #222;
|
|
|
|
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
|
|
|
|
// $custom-select-margin-bottom: emCalc(20px);
|
|
|
|
// $custom-select-font-color-selected: #141414;
|
|
|
|
// $custom-select-disabled-color: #888;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Custom select dropdown element.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $custom-dropdown-height: 200px;
|
|
|
|
// $custom-dropdown-bg: #fff;
|
|
|
|
// $custom-dropdown-border-color: darken(#fff, 20%);
|
|
|
|
// $custom-dropdown-border-width: 1px;
|
|
|
|
// $custom-dropdown-border-style: solid;
|
|
|
|
// $custom-dropdown-font-color: #555;
|
|
|
|
// $custom-dropdown-font-size: emCalc(14px);
|
|
|
|
// $custom-dropdown-color-selected: #eeeeee;
|
|
|
|
// $custom-dropdown-font-color-selected: #000;
|
|
|
|
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
|
|
|
|
// $custom-dropdown-offset-top: none;
|
|
|
|
// $custom-dropdown-list-padding: emCalc(4px);
|
|
|
|
// $custom-dropdown-left-padding: emCalc(6px);
|
|
|
|
// $custom-dropdown-right-padding: emCalc(38px);
|
|
|
|
// $custom-dropdown-list-item-min-height: emCalc(24px);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Dropdown Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Height and width styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-max-width: 200px;
|
|
|
|
// $f-dropdown-height: auto;
|
|
|
|
// $f-dropdown-max-height: none;
|
|
|
|
// $f-dropdown-margin-top: 2px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background color
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-bg: #fff;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles for dropdowns.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-border-style: solid;
|
|
|
|
// $f-dropdown-border-width: 1px;
|
|
|
|
// $f-dropdown-border-color: darken(#fff, 20%);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Triangle pip.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-triangle-size: 6px;
|
|
|
|
// $f-dropdown-triangle-color: #fff;
|
|
|
|
// $f-dropdown-triangle-side-offset: 10px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// List elements.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-list-style: none;
|
|
|
|
// $f-dropdown-font-color: #555;
|
|
|
|
// $f-dropdown-font-size: emCalc(14px);
|
|
|
|
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
|
|
|
|
// $f-dropdown-line-height: emCalc(18px);
|
|
|
|
// $f-dropdown-list-hover-bg: #eeeeee;
|
|
|
|
// $dropdown-mobile-left: 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// When the dropdown has custom content.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $f-dropdown-content-padding: emCalc(20px);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Flex Video Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Video container padding and margins
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $flex-video-padding-top: emCalc(25px);
|
|
|
|
// $flex-video-padding-bottom: 67.5%;
|
|
|
|
// $flex-video-margin-bottom: emCalc(16px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Widescreen bottom padding
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $flex-video-widescreen-padding-bottom: 57.25%;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Inline List Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Margins and padding of the inline list.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
|
|
|
|
// $inline-list-margin: 0 0;
|
|
|
|
// $inline-list-padding: 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Overflow of the inline list.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $inline-list-overflow: hidden;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// List items
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $inline-list-display: block;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Elments within list items
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $inline-list-children-display: block;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Joyride Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Joyride styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-tip-bg: rgb(0,0,0);
|
|
|
|
// $joyride-tip-default-width: 300px;
|
|
|
|
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
|
|
|
|
// $joyride-tip-border: solid 1px #555;
|
|
|
|
// $joyride-tip-radius: 4px;
|
|
|
|
// $joyride-tip-position-offset: 22px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Tip font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-tip-font-color: #fff;
|
|
|
|
// $joyride-tip-font-size: emCalc(14px);
|
|
|
|
// $joyride-tip-header-weight: bold;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Changes the nub size
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-tip-nub-size: 14px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Adjusts the styles for the timer when its enabled
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-tip-timer-width: 50px;
|
|
|
|
// $joyride-tip-timer-height: 3px;
|
|
|
|
// $joyride-tip-timer-color: #666;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Changes up the styles for the close button
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-tip-close-color: #777;
|
|
|
|
// $joyride-tip-close-size: 30px;
|
|
|
|
// $joyride-tip-close-weight: normal;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// When Joyride is filling the screen, style for the bg
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $joyride-screenfill: rgba(0,0,0,0.5);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Keystroke Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Text styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
|
|
|
// $keystroke-font-size: emCalc(15px);
|
|
|
|
// $keystroke-font-color: #222;
|
|
|
|
// $keystroke-font-color-alt: #fff;
|
|
|
|
// $keystroke-function-factor: 7%;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Keystroke padding.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background and border styles.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
|
|
|
// $keystroke-border-style: solid;
|
|
|
|
// $keystroke-border-width: 1px;
|
|
|
|
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
|
|
|
|
// $keystroke-radius: $global-radius;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Label Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Style the labels
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
|
|
|
|
// $label-radius: $global-radius;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// We use these to style the label text
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $label-font-sizing: emCalc(14px);
|
|
|
|
// $label-font-weight: bold;
|
|
|
|
// $label-font-color: #333;
|
|
|
|
// $label-font-color-alt: #fff;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Magellan Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Basic visual styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $magellan-bg: #fff;
|
|
|
|
// $magellan-padding: 10px;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Orbit Settings
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Caption styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $orbit-container-bg: #f5f5f5;
|
|
|
|
// $orbit-caption-bg-old: rgb(0,0,0);
|
|
|
|
// $orbit-caption-bg: rgba(0,0,0,0.6);
|
|
|
|
// $orbit-caption-font-color: #fff;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Left/right nav styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $orbit-nav-bg-old: rgb(0,0,0);
|
|
|
|
// $orbit-nav-bg: rgba(0,0,0,0.6);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Timer styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $orbit-timer-bg-old: rgb(0,0,0);
|
|
|
|
// $orbit-timer-bg: rgba(0,0,0,0.6);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Bullet nav styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $orbit-bullet-nav-color: #999;
|
|
|
|
// $orbit-bullet-nav-color-active: #222;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Slide numbers
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
2013-05-28 02:16:02 +00:00
|
|
|
// $orbit-slide-number-font-color: #fff;
|
|
|
|
// $orbit-slide-number-padding: emCalc(5px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Graceful Loading Wrapper and preloader
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $wrapper-class: "slideshow-wrapper";
|
|
|
|
// $preloader-class: "preloader" ;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Pagination Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Pagination container
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $pagination-height: emCalc(24px);
|
|
|
|
// $pagination-margin: emCalc(-5px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// List-item properties
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $pagination-li-float: $default-float;
|
|
|
|
// $pagination-li-height: emCalc(24px);
|
|
|
|
// $pagination-li-font-color: #222;
|
|
|
|
// $pagination-li-font-size: emCalc(14px);
|
|
|
|
// $pagination-li-margin: emCalc(5px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Pagination anchor links
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
|
|
|
|
// $pagination-link-font-color: #999;
|
|
|
|
// $pagination-link-active-bg: darken(#fff, 10%);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Disabled anchor links
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $pagination-link-unavailable-cursor: $cursor-default-value;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $pagination-link-unavailable-font-color: #999;
|
|
|
|
// $pagination-link-unavailable-bg-active: transparent;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Currently selected anchor links
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $pagination-link-current-background: $primary-color;
|
|
|
|
// $pagination-link-current-font-color: #fff;
|
|
|
|
// $pagination-link-current-font-weight: bold;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $pagination-link-current-cursor: $cursor-default-value;
|
2013-05-28 02:16:02 +00:00
|
|
|
// $pagination-link-current-active-bg: $primary-color;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Panel Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background and border styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $panel-bg: darken(#fff, 5%);
|
|
|
|
// $panel-border-style: solid;
|
|
|
|
// $panel-border-size: 1px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Control how much we darken things on hover
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $panel-function-factor: 10%;
|
|
|
|
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Inner padding and bottom margin
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $panel-margin-bottom: emCalc(20px);
|
|
|
|
// $panel-padding: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Font colors
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $panel-font-color: #333;
|
|
|
|
// $panel-font-color-alt: #fff;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Pricing Table Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border color
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-table-border: solid 1px #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Bottom margin of the pricing table
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-table-margin-bottom: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Control the title styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-title-bg: #ddd;
|
|
|
|
// $price-title-padding: emCalc(15px) emCalc(20px);
|
|
|
|
// $price-title-align: center;
|
|
|
|
// $price-title-color: #333;
|
|
|
|
// $price-title-weight: bold;
|
|
|
|
// $price-title-size: emCalc(16px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Control the price styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-money-bg: #eee;
|
|
|
|
// $price-money-padding: emCalc(15px) emCalc(20px);
|
|
|
|
// $price-money-align: center;
|
|
|
|
// $price-money-color: #333;
|
|
|
|
// $price-money-weight: normal;
|
|
|
|
// $price-money-size: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Description styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-bg: #fff;
|
|
|
|
// $price-desc-color: #777;
|
|
|
|
// $price-desc-padding: emCalc(15px);
|
|
|
|
// $price-desc-align: center;
|
|
|
|
// $price-desc-font-size: emCalc(12px);
|
|
|
|
// $price-desc-weight: normal;
|
|
|
|
// $price-desc-line-height: 1.4;
|
|
|
|
// $price-desc-bottom-border: dotted 1px #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// List item styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-item-color: #333;
|
|
|
|
// $price-item-padding: emCalc(15px);
|
|
|
|
// $price-item-align: center;
|
|
|
|
// $price-item-font-size: emCalc(14px);
|
|
|
|
// $price-item-weight: normal;
|
|
|
|
// $price-item-bottom-border: dotted 1px #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// CTA area styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $price-cta-bg: #f5f5f5;
|
|
|
|
// $price-cta-align: center;
|
|
|
|
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Progress Bar Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Progress bar height
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $progress-bar-height: emCalc(25px);
|
|
|
|
// $progress-bar-color: transparent;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $progress-bar-border-color: darken(#fff, 20%);
|
|
|
|
// $progress-bar-border-size: 1px;
|
|
|
|
// $progress-bar-border-style: solid;
|
|
|
|
// $progress-bar-border-radius: $global-radius;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Margin & padding
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $progress-bar-pad: emCalc(2px);
|
|
|
|
// $progress-bar-margin-bottom: emCalc(10px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Meter colors
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $progress-meter-color: $primary-color;
|
|
|
|
// $progress-meter-secondary-color: $secondary-color;
|
|
|
|
// $progress-meter-success-color: $success-color;
|
|
|
|
// $progress-meter-alert-color: $alert-color;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Reveal Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Reveal overlay.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $reveal-overlay-bg: rgba(#000, .45);
|
|
|
|
// $reveal-overlay-bg-old: #000;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Modal itself.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $reveal-modal-bg: #fff;
|
|
|
|
// $reveal-position-top: 50px;
|
|
|
|
// $reveal-default-width: 80%;
|
|
|
|
// $reveal-modal-padding: emCalc(20px);
|
|
|
|
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Reveal close button
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $reveal-close-font-size: emCalc(22px);
|
|
|
|
// $reveal-close-top: emCalc(8px);
|
|
|
|
// $reveal-close-side: emCalc(11px);
|
|
|
|
// $reveal-close-color: #aaa;
|
|
|
|
// $reveal-close-weight: bold;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Modal border
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $reveal-border-style: solid;
|
|
|
|
// $reveal-border-width: 1px;
|
|
|
|
// $reveal-border-color: #666;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $reveal-modal-class: "reveal-modal";
|
|
|
|
// $close-reveal-modal-class: "close-reveal-modal";
|
|
|
|
|
2013-05-28 02:16:02 +00:00
|
|
|
//
|
|
|
|
// Section Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Padding and hover factor
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $section-title-padding: emCalc(15px);
|
|
|
|
// $section-content-padding: emCalc(15px);
|
2013-05-28 02:16:02 +00:00
|
|
|
// $section-function-factor: 10%;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Titles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $section-title-color: #333;
|
|
|
|
// $section-title-bg: #efefef;
|
|
|
|
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
|
|
|
|
// $section-title-bg-active-tabs: #fff;
|
2013-07-13 07:17:49 +00:00
|
|
|
// $section-title-bg-hover: darken($section-title-bg, $section-function-factor/2);
|
2013-05-28 02:16:02 +00:00
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border size
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $section-border-size: 1px;
|
|
|
|
// $section-border-style: solid;
|
|
|
|
// $section-border-color: #ccc;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Font controls
|
|
|
|
|
|
|
|
// $section-font-size: emCalc(14px);
|
|
|
|
|
|
|
|
// Control the color of the background and some size options
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $section-content-bg: #fff;
|
|
|
|
// $section-vertical-nav-min-width: emCalc(200px);
|
|
|
|
// $section-vertical-tabs-title-width: emCalc(200px);
|
|
|
|
// $section-bottom-margin: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// $title-selector: ".title";
|
|
|
|
// $content-selector: ".content";
|
|
|
|
|
2013-05-28 02:16:02 +00:00
|
|
|
//
|
|
|
|
// Side Nav Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Padding
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $side-nav-padding: emCalc(14px) 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// List styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $side-nav-list-type: none;
|
|
|
|
// $side-nav-list-position: inside;
|
|
|
|
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Link styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $side-nav-link-color: $primary-color;
|
|
|
|
// $side-nav-link-color-active: lighten(#000, 30%);
|
|
|
|
// $side-nav-font-size: emCalc(14px);
|
|
|
|
// $side-nav-font-weight: bold;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $side-nav-divider-size: 1px;
|
|
|
|
// $side-nav-divider-style: solid;
|
|
|
|
// $side-nav-divider-color: darken(#fff, 10%);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Sub Nav Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Margin and padding
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
|
|
|
|
// $sub-nav-list-padding-top: emCalc(4px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Definition
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $sub-nav-font-size: emCalc(14px);
|
|
|
|
// $sub-nav-font-color: #999;
|
|
|
|
// $sub-nav-font-weight: normal;
|
|
|
|
// $sub-nav-text-decoration: none;
|
|
|
|
// $sub-nav-border-radius: 1000px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Active item styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $sub-nav-active-font-weight: bold;
|
|
|
|
// $sub-nav-active-bg: $primary-color;
|
|
|
|
// $sub-nav-active-color: #fff;
|
|
|
|
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
|
2013-07-13 07:17:49 +00:00
|
|
|
// $sub-nav-active-cursor: $cursor-default-value;
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Switch Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles and background colors for the switch container
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $switch-border-color: darken(#fff, 20%);
|
|
|
|
// $switch-border-style: solid;
|
|
|
|
// $switch-border-width: 1px;
|
|
|
|
// $switch-bg: #fff;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Switch heights for our default classes
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $switch-height-tny: 22px;
|
|
|
|
// $switch-height-sml: 28px;
|
|
|
|
// $switch-height-med: 36px;
|
|
|
|
// $switch-height-lrg: 44px;
|
|
|
|
// $switch-bottom-margin: emCalc(20px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Font sizes for our classes.
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $switch-font-size-tny: 11px;
|
|
|
|
// $switch-font-size-sml: 12px;
|
|
|
|
// $switch-font-size-med: 14px;
|
|
|
|
// $switch-font-size-lrg: 17px;
|
|
|
|
// $switch-label-side-padding: 6px;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Switch-paddle
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $switch-paddle-bg: #fff;
|
|
|
|
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
|
|
|
|
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
|
|
|
|
// $switch-paddle-border-width: 1px;
|
|
|
|
// $switch-paddle-border-style: solid;
|
|
|
|
// $switch-paddle-transition-speed: .1s;
|
|
|
|
// $switch-paddle-transition-ease: ease-out;
|
|
|
|
// $switch-positive-color: lighten($success-color, 50%);
|
|
|
|
// $switch-negative-color: #f5f5f5;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Outline Style for tabbing through switches
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $switch-label-outline: 1px dotted #888;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Table Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Background color for the table and even rows
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $table-bg: #fff;
|
|
|
|
// $table-even-row-bg: #f9f9f9;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Table cell border style
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $table-border-style: solid;
|
|
|
|
// $table-border-size: 1px;
|
|
|
|
// $table-border-color: #ddd;
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Table head styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $table-head-bg: #f5f5f5;
|
|
|
|
// $table-head-font-size: emCalc(14px);
|
|
|
|
// $table-head-font-color: #222;
|
|
|
|
// $table-head-font-weight: bold;
|
|
|
|
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Row padding and font styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $table-row-padding: emCalc(9px) emCalc(10px);
|
|
|
|
// $table-row-font-size: emCalc(14px);
|
|
|
|
// $table-row-font-color: #222;
|
|
|
|
// $table-line-height: emCalc(18px);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Display and margin of tables
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $table-display: table-cell;
|
|
|
|
// $table-margin-bottom: emCalc(20px);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Image Thumbnail Variables
|
|
|
|
//
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Border styles
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $thumb-border-style: solid;
|
|
|
|
// $thumb-border-width: 4px;
|
|
|
|
// $thumb-border-color: #fff;
|
|
|
|
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
|
|
|
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
|
|
|
|
2013-07-13 07:17:49 +00:00
|
|
|
// Radius and transition speed for thumbs
|
2013-05-28 02:16:02 +00:00
|
|
|
|
|
|
|
// $thumb-radius: $global-radius;
|
|
|
|
// $thumb-transition-speed: 200ms;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Tooltip Variables
|
|
|
|
//
|
|
|
|
|
|
|
|
// $has-tip-border-bottom: dotted 1px #ccc;
|
|
|
|
// $has-tip-font-weight: bold;
|
|
|
|
// $has-tip-font-color: #333;
|
|
|
|
// $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
|
|
|
|
// $has-tip-font-color-hover: $primary-color;
|
|
|
|
// $has-tip-cursor-type: help;
|
|
|
|
|
|
|
|
// $tooltip-padding: emCalc(8px);
|
|
|
|
// $tooltip-bg: #000;
|
|
|
|
// $tooltip-font-size: emCalc(15px);
|
|
|
|
// $tooltip-font-weight: bold;
|
|
|
|
// $tooltip-font-color: #fff;
|
|
|
|
// $tooltip-line-height: 1.3;
|
|
|
|
// $tooltip-close-font-size: emCalc(10px);
|
|
|
|
// $tooltip-close-font-weight: normal;
|
|
|
|
// $tooltip-close-font-color: #888;
|
|
|
|
// $tooltip-font-size-sml: emCalc(14px);
|
|
|
|
// $tooltip-radius: $global-radius;
|
|
|
|
// $tooltip-pip-size: 5px;
|
2013-07-13 07:17:49 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Top Bar Variables
|
|
|
|
//
|
|
|
|
|
|
|
|
// Background color for the top bar
|
|
|
|
|
|
|
|
$topbar-bg: $primary-color;
|
|
|
|
|
|
|
|
// Height and margin
|
|
|
|
|
|
|
|
$topbar-height: 45px;
|
|
|
|
// $topbar-margin-bottom: emCalc(30px);
|
|
|
|
|
|
|
|
// Control Input height for top bar
|
|
|
|
|
|
|
|
// $topbar-input-height: 2.45em;
|
|
|
|
|
|
|
|
// Controlling the styles for the title in the top bar
|
|
|
|
|
|
|
|
// $topbar-title-weight: bold;
|
|
|
|
// $topbar-title-font-size: emCalc(17px);
|
|
|
|
|
|
|
|
// Style the top bar dropdown elements
|
|
|
|
|
|
|
|
$topbar-dropdown-bg: darken($topbar-bg, 5%);
|
|
|
|
// $topbar-dropdown-link-color: #fff;
|
|
|
|
$topbar-dropdown-link-bg: lighten($topbar-bg, 5%);
|
|
|
|
// $topbar-dropdown-toggle-size: 5px;
|
|
|
|
// $topbar-dropdown-toggle-color: #fff;
|
|
|
|
// $topbar-dropdown-toggle-alpha: 0.5;
|
|
|
|
|
|
|
|
// Set the link colors and styles for top-level nav
|
|
|
|
|
|
|
|
// $topbar-link-color: #fff;
|
|
|
|
// $topbar-link-color-hover: #fff;
|
|
|
|
// $topbar-link-color-active: #fff;
|
|
|
|
// $topbar-link-weight: bold;
|
|
|
|
// $topbar-link-font-size: emCalc(13px);
|
|
|
|
// $topbar-link-hover-lightness: -30%; // Darken by 30%
|
|
|
|
$topbar-link-bg-hover: darken($topbar-bg, 3%);
|
|
|
|
$topbar-link-bg-active: darken($topbar-bg, 3%);
|
|
|
|
|
|
|
|
// $topbar-dropdown-label-color: #555;
|
|
|
|
// $topbar-dropdown-label-text-transform: uppercase;
|
|
|
|
// $topbar-dropdown-label-font-weight: bold;
|
|
|
|
// $topbar-dropdown-label-font-size: emCalc(10px);
|
|
|
|
|
|
|
|
// Top menu icon styles
|
|
|
|
|
|
|
|
// $topbar-menu-link-transform: uppercase;
|
|
|
|
// $topbar-menu-link-font-size: emCalc(13px);
|
|
|
|
// $topbar-menu-link-weight: bold;
|
|
|
|
// $topbar-menu-link-color: #fff;
|
|
|
|
// $topbar-menu-icon-color: #fff;
|
|
|
|
$topbar-menu-link-color-toggled: #eee;
|
|
|
|
$topbar-menu-icon-color-toggled: #eee;
|
|
|
|
|
|
|
|
// Transitions and breakpoint styles
|
|
|
|
|
|
|
|
// $topbar-transition-speed: 300ms;
|
|
|
|
// $topbar-breakpoint: 700px; // Change to 9999px for always mobile layout
|
|
|
|
// $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
|
|
|
|
|
|
|
|
// Divider Styles
|
|
|
|
|
|
|
|
// $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%);
|
|
|
|
// $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%);
|
|
|
|
|
|
|
|
// Sticky Class
|
|
|
|
|
|
|
|
// $topbar-sticky-class: ".sticky";
|