almost-flat-ui-rails 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1c07556e3f8ae93bd8ab122b7022b7ae9ca4d8d1
4
+ data.tar.gz: a8769c37e887425c449fc6032dfeb5a48af1ecb5
5
+ SHA512:
6
+ metadata.gz: 226c697d162e28c136ba9efffe27f381970a46427dd236120d01849b726e5f0549edf4b08d41986ae02e52e18c448279c2d992de96b37f883ae253ce94c5f4b3
7
+ data.tar.gz: 646c7290a704d23d93403eeb21a7d3a9e95401d9deb14ede97a14c6f3be361107108f2c560bf1a939eea8f445a82986f34760fa31bd3906e961eb516328c9e20
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in almost-flat-ui-rails.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ # almost-flat-ui-rails
2
+ [Almost-flat-ui](https://github.com/websymphony/almost-flat-ui) foundation theme bundled for the rails assets pipeline.
3
+
4
+ [Demo](http://websymphony.net/almost-flat-ui/)
5
+
6
+ ## Installation
7
+ almost-flat-ui-rails requires:
8
+ [`foundation-rails`](https://github.com/zurb/foundation-rails),
9
+ [`sass-rails`](https://github.com/rails/sass-rails), and
10
+ [`compass-rails`](https://github.com/compass/compass-rails)
11
+
12
+ Add the following to your application's Gemfile:
13
+
14
+ `gem 'sass-rails', '~> 5.0'`
15
+
16
+ `gem 'compass-rails', github: 'Compass/compass-rails', branch: 'master'`
17
+
18
+ `gem 'foundation-rails', '~> 5.5.3.2'`
19
+
20
+ `gem 'almost-flat-ui-rails', github: 'mwitek/almost-flat-ui-rails'`
21
+
22
+ ## Usage
23
+ This gem requires that the css manifest is an scss file.
24
+
25
+ Add `@import "almost_flat_ui";` to `stylesheets/application.scss`.
26
+
27
+ Make sure this is added after the foundation import, for example:
28
+
29
+ within... app/assets/stylesheets/application.scss
30
+ ```
31
+ @import "foundation";
32
+ @import "almost_flat_ui";
33
+ ```
34
+
35
+ ## Contributing
36
+
37
+ 1. Fork it ( https://github.com/[my-github-username]/almost-flat-ui-rails/fork )
38
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
39
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
40
+ 4. Push to the branch (`git push origin my-new-feature`)
41
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'almost/flat/ui/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "almost-flat-ui-rails"
8
+ spec.version = Almost::Flat::Ui::Rails::VERSION
9
+ spec.authors = ["Matthew Witek"]
10
+ spec.email = ["matt@mwitekdesign.com"]
11
+ spec.summary = %q{almost-flat-ui bundled for Rails Asset Pipeline}
12
+ spec.description = %q{almost-flat-ui bundled for Rails Asset Pipeline}
13
+ spec.homepage = "https://github.com/mwitek/almost-flat-ui-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.3"
20
+ spec.add_development_dependency "rake"
21
+ end
@@ -0,0 +1,14 @@
1
+ require "almost/flat/ui/rails/version"
2
+ require "foundation-rails"
3
+ require "compass-rails"
4
+
5
+ module Almost
6
+ module Flat
7
+ module Ui
8
+ module Rails
9
+ class Engine < ::Rails::Engine
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ module Almost
2
+ module Flat
3
+ module Ui
4
+ module Rails
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,19 @@
1
+ @import "almost_flat_ui/settings";
2
+
3
+ // Compass Imports
4
+ @import "compass/css3/box-shadow";
5
+ @import "compass/css3/images";
6
+ @import "compass/css3/transition";
7
+ @import "compass/css3/opacity";
8
+
9
+ // FLAT UI Customizations
10
+ @import "almost_flat_ui/headings";
11
+ @import "almost_flat_ui/buttons";
12
+ @import "almost_flat_ui/pagination";
13
+ @import "almost_flat_ui/topbar";
14
+ @import "almost_flat_ui/subnav";
15
+ @import "almost_flat_ui/forms";
16
+ @import "almost_flat_ui/sections";
17
+ @import "almost_flat_ui/sidenav";
18
+ @import "almost_flat_ui/breadcrumbs";
19
+ @import "almost_flat_ui/misc";
@@ -0,0 +1,12 @@
1
+ .breadcrumbs li{
2
+ a {
3
+ &:hover{
4
+ color:#fff;
5
+ }
6
+ }
7
+ &.current {
8
+ a:hover{
9
+ color:#333;
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,86 @@
1
+ @mixin button-effect($bg:$primary-color){
2
+ $dark-bg: darken($bg, 5%);
3
+ $darker-bg: darken($bg, 10%);
4
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
5
+ border-color:$dark-bg !important;
6
+ border-width:2px;
7
+ @include background-image(linear-gradient($bg, $bg 5%, $dark-bg));
8
+ &:hover,
9
+ &:focus,
10
+ &:active{
11
+ background-color: $bg;
12
+ @include background-image(linear-gradient($bg, $bg));
13
+ @include opacity(0.95);
14
+ @include box-shadow(0 1px 1px rgba( 0, 0, 0, .1));
15
+ border-color:$darker-bg !important;
16
+ @include transition(background-color,.25s,ease);
17
+ }
18
+ @include box-shadow(0 1px 0 rgba(255, 255, 255, 0.0) inset);
19
+ }
20
+ .disabled:hover{
21
+ opacity: 0.6 !important;
22
+ }
23
+ .button {
24
+ @include button-effect();
25
+ }
26
+
27
+
28
+ a,
29
+ button,
30
+ input[type="submit"]{
31
+ &.primary-dark {
32
+ @include button-effect($belize-hole);
33
+ }
34
+
35
+ &.secondary {
36
+ @include button-effect($clouds);
37
+ text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
38
+ }
39
+ &.success{
40
+ @include button-effect($emerland);
41
+ }
42
+ &.success-dark{
43
+ @include button-effect($turquoise);
44
+ }
45
+ &.success-darker{
46
+ @include button-effect($nephritis);
47
+ }
48
+ &.success-darkest{
49
+ @include button-effect($green-sea);
50
+ }
51
+
52
+ &.alert{
53
+ @include button-effect($alizarin);
54
+ }
55
+ &.alert-dark{
56
+ @include button-effect($pomegranate);
57
+ }
58
+
59
+ &.info{
60
+ @include button-effect($sun-flower);
61
+ }
62
+ &.info-dark{
63
+ @include button-effect($orange);
64
+ }
65
+
66
+ &.warning{
67
+ @include button-effect($carrot);
68
+ }
69
+ &.warning-dark{
70
+ @include button-effect($pumpkin);
71
+ }
72
+
73
+ &.highlight{
74
+ @include button-effect($amethyst);
75
+ }
76
+ &.highlight-dark{
77
+ @include button-effect($wisteria);
78
+ }
79
+
80
+ &.inverse{
81
+ @include button-effect($wet-asphalt);
82
+ }
83
+ &.inverse-dark{
84
+ @include button-effect($midnight-blue);
85
+ }
86
+ }
@@ -0,0 +1,30 @@
1
+ form {
2
+ .error input, .error textarea {
3
+ border-color: $alizarin;
4
+ color: $alizarin;
5
+ &:focus {
6
+ border-color: $alizarin;
7
+ @include box-shadow($alizarin 0px 0px 5px);
8
+ }
9
+ }
10
+ .success input, .success textarea {
11
+ border-color: $success-color;
12
+ color: $success-color;
13
+ margin-bottom: 0px;
14
+ &:focus {
15
+ border-color: $success-color;
16
+ }
17
+ }
18
+ .success label,
19
+ label.success {
20
+ @include form-label-error-color($success-color);
21
+ }
22
+ .success small,
23
+ small.success {
24
+ @include form-error-message($success-color);
25
+ }
26
+ span.prefix,
27
+ span.postfix {
28
+ border-color: $clouds;
29
+ }
30
+ }
@@ -0,0 +1,4 @@
1
+ h1,h2,h3,
2
+ h4,h5,h6{
3
+ font-weight:bold;
4
+ }
@@ -0,0 +1,9 @@
1
+ .panel.callout {
2
+ @include box-shadow(0 1px 0 rgba(255, 255, 255, 0) inset);
3
+ }
4
+ .clearing-thumbs{
5
+ list-style:none;
6
+ li{
7
+ display: inline;
8
+ }
9
+ }
@@ -0,0 +1,15 @@
1
+ .pagination {
2
+ li a {
3
+ border-radius: $global-rounded !important;
4
+ &:hover{
5
+ background-color: $turquoise !important;
6
+ border-color: $turquoise !important;
7
+ color: white;
8
+ @include transition(background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out);
9
+
10
+ }
11
+ }
12
+ li.unavailable a:hover{
13
+ background-color: $clouds !important;
14
+ }
15
+ }
@@ -0,0 +1,41 @@
1
+ .accordion{
2
+ border:2px solid $clouds;
3
+ >.active{
4
+ >a{
5
+ background:$midnight-blue !important;
6
+ color:#fff;
7
+ }
8
+ }
9
+ >dd >a{
10
+ &:hover{
11
+ background:$turquoise !important;
12
+ color:#fff;
13
+ @include transition(.25s);
14
+ }
15
+ }
16
+ }
17
+
18
+ .tabs >dd >a,
19
+ .tabs.vertical >dd >a,
20
+ .tabs-content{
21
+ border:2px solid $clouds;
22
+ }
23
+ .tabs >dd:first-child >a{
24
+ margin-left:0px;
25
+ }
26
+ .tabs >dd >a{
27
+ border-bottom:0px;
28
+ margin-left:-2px;
29
+ }
30
+ .tabs-content{
31
+ padding:10px;
32
+ margin-top:-2px;
33
+ }
34
+ .tabs.vertical >dd >a{
35
+ margin-top: -2px;
36
+ margin-left: 0px;
37
+ }
38
+ .tabs-content.vertical{
39
+ margin-top:0px;
40
+ border:0px;
41
+ }
@@ -0,0 +1,1045 @@
1
+ // Required global settings and mixins for Foundation
2
+ // @import "foundation";
3
+ @import "foundation/functions";
4
+
5
+ // Settings file to override Foundation variables
6
+
7
+ // You can find the variables for each component at the bottom of their
8
+ // doc page. We tried to name them to where they'd make sense just by reading them.
9
+ // Go to http://foundation.zurb.com/docs/ to find what you need.
10
+
11
+ //
12
+ // Foundation Global Variables
13
+ //
14
+ // FLAT UI Colors
15
+
16
+ // Shades of Green
17
+ $emerland: #2ECC71;
18
+ $nephritis: #27AE60;
19
+ $turquoise: #1ABC9C;
20
+ $green-sea: #16A085;
21
+
22
+ // Shades of Blue
23
+ $peter-river: #3498DB;
24
+ $belize-hole: #2980B9;
25
+
26
+ // Shades of Purple
27
+ $amethyst: #9859b6;
28
+ $wisteria: #8E44AD;
29
+
30
+ // Shades of Gray
31
+ $clouds: #ECF0F1;
32
+ $dark-clouds: darken($clouds, 3%);
33
+ $silver: #BDC3C7;
34
+ $concrete: #95A5A6;
35
+ $asbestos: #7F8C8D;
36
+ $wet-asphalt: #34495E;
37
+ $midnight-blue: #2C3E50;
38
+
39
+ // Shades of Yellow/Orange
40
+ $sun-flower: #F1C40F;
41
+ $orange: #F39C12;
42
+ $carrot: #E67E22;
43
+ $pumpkin: #D35400;
44
+
45
+ // Shades of Red
46
+ $alizarin: #E74C3C;
47
+ $pomegranate: #C0392B;
48
+
49
+ // This is the default html and body font-size for the base em value.
50
+ // $em-base: 16px;
51
+
52
+ // We use these to control various global styles
53
+ // $body-bg: #fff;
54
+ $body-font-color: $wet-asphalt;
55
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
56
+ // $body-font-weight: normal;
57
+ // $body-font-style: normal;
58
+
59
+ // We use this to control font-smoothing
60
+ // $font-smoothing: antialiased;
61
+
62
+
63
+ // We use these to control text direction settings
64
+ // $text-direction: ltr;
65
+
66
+ // We use these as default colors throughout
67
+ $primary-color: $peter-river;
68
+ $secondary-color: $clouds;
69
+ $alert-color: $alizarin;
70
+ $success-color: $emerland;
71
+
72
+ // We use these to make sure border radius matches unless we want it different.
73
+ // $global-radius: 3px;
74
+ // $global-rounded: 1000px;
75
+
76
+ // We use these to control inset shadow shiny edges and depressions.
77
+ // $shiny-edge-size: 0 1px 0;
78
+ // $shiny-edge-color: rgba(#fff, .5);
79
+ // $shiny-edge-active-color: rgba(#000, .2);
80
+
81
+ // We use this to control whether or not CSS classes come through in the gem files.
82
+ // $include-html-classes: true;
83
+ // $include-print-styles: true;
84
+
85
+ // Modular html classes
86
+ // $include-html-grid-classes: $include-html-classes;
87
+ // $include-html-visibility-classes: $include-html-classes;
88
+ // $include-html-button-classes: $include-html-classes;
89
+ // $include-html-form-classes: $include-html-classes;
90
+ // $include-html-media-classes: $include-html-classes;
91
+ // $include-html-section-classes: $include-html-classes;
92
+ // $include-html-reveal-classes: $include-html-classes;
93
+ // $include-html-alert-classes: $include-html-classes;
94
+ // $include-html-nav-classes: $include-html-classes;
95
+ // $include-html-label-classes: $include-html-classes;
96
+ // $include-html-panel-classes: $include-html-classes;
97
+ // $include-html-pricing-classes: $include-html-classes;
98
+ // $include-html-progress-classes: $include-html-classes;
99
+
100
+ //
101
+ // Grid Variables
102
+ //
103
+
104
+ // $row-width: 62.5em;
105
+ // $column-gutter: 1.875em;
106
+ // $total-columns: 12;
107
+
108
+ //
109
+ // Block Grid Variables
110
+ //
111
+
112
+ // We use this to control the maximum number of block grid elements per row
113
+ // $block-grid-elements: 12;
114
+ // $block-grid-default-spacing: 10px;
115
+
116
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
117
+ // $block-grid-media-queries: true;
118
+
119
+ //
120
+ // Typography Variables
121
+ //
122
+
123
+ // We use these to control header font styles
124
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
125
+ // $header-font-weight: bold;
126
+ // $header-font-style: normal;
127
+ $header-font-color: $midnight-blue;
128
+ // $header-line-height: 1.4;
129
+ // $header-top-margin: .2em;
130
+ // $header-bottom-margin: .5em;
131
+ // $header-text-rendering: optimizeLegibility;
132
+
133
+ // We use these to control header font sizes
134
+ // $h1-font-size: emCalc(44px);
135
+ // $h2-font-size: emCalc(37px);
136
+ // $h3-font-size: emCalc(27px);
137
+ // $h4-font-size: emCalc(23px);
138
+ // $h5-font-size: emCalc(18px);
139
+ // $h6-font-size: 1em;
140
+
141
+ // These control how subheaders are styled.
142
+ // $subheader-line-height: 1.4;
143
+ // $subheader-font-color: lighten($header-font-color, 30%);
144
+ // $subheader-font-weight: 300;
145
+ // $subheader-top-margin: .2em;
146
+ // $subheader-bottom-margin: .5em;
147
+
148
+ // A general <small> styling
149
+ // $small-font-size: 60%;
150
+ // $small-font-color: lighten($header-font-color, 30%);
151
+
152
+ // We use these to style paragraphs
153
+ // $paragraph-font-family: inherit;
154
+ // $paragraph-font-weight: normal;
155
+ // $paragraph-font-size: 1em;
156
+ // $paragraph-line-height: 1.6;
157
+ // $paragraph-margin-bottom: emCalc(20px);
158
+ // $paragraph-aside-font-size: emCalc(14px);
159
+ // $paragraph-aside-line-height: 1.35;
160
+ // $paragraph-aside-font-style: italic;
161
+
162
+ // We use these to style <code> tags
163
+ // $code-color: darken($alert-color, 15%);
164
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
165
+ // $code-font-weight: bold;
166
+
167
+ // We use these to style anchors
168
+ // $anchor-text-decoration: none;
169
+ // $anchor-font-color: $primary-color;
170
+ // $anchor-font-color-hover: darken($primary-color, 5%);
171
+
172
+ // We use these to style the <hr> element
173
+ $hr-border-width: 2px;
174
+ // $hr-border-style: solid;
175
+ $hr-border-color: $clouds;
176
+ // $hr-margin: emCalc(20px);
177
+
178
+ // We use these to style lists
179
+ // $list-style-position: outside;
180
+ // $list-side-margin: emCalc(18px);
181
+ // $definition-list-header-weight: bold;
182
+ // $definition-list-header-margin-bottom: .3em;
183
+ // $definition-list-margin-bottom: emCalc(12px);
184
+
185
+ // We use these to style blockquotes
186
+ // $blockquote-font-color: lighten($header-font-color, 30%);
187
+ // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
188
+ $blockquote-border: 4px solid $clouds;
189
+ // $blockquote-cite-font-size: emCalc(13px);
190
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
191
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
192
+
193
+ // Acronym styles
194
+ // $acronym-underline: 1px dotted #ddd;
195
+
196
+ // We use these to control padding and margin
197
+ // $microformat-padding: emCalc(10px) emCalc(12px);
198
+ // $microformat-margin: 0 0 emCalc(20px) 0;
199
+
200
+ // We use these to control the border styles
201
+ $microformat-border-width: 2px;
202
+ // $microformat-border-style: solid;
203
+ $microformat-border-color: $clouds;
204
+
205
+ // We use these to control full name font styles
206
+ // $microformat-fullname-font-weight: bold;
207
+ // $microformat-fullname-font-size: emCalc(15px);
208
+
209
+ // We use this to control the summary font styles
210
+ // $microformat-summary-font-weight: bold;
211
+
212
+ // We use this to control abbr padding
213
+ // $microformat-abbr-padding: 0 emCalc(1px);
214
+
215
+ // We use this to control abbr font styles
216
+ // $microformat-abbr-font-weight: bold;
217
+ // $microformat-abbr-font-decoration: none;
218
+
219
+ //
220
+ // Form Variables
221
+ //
222
+
223
+ // We use this to set the base for lots of form spacing and positioning styles
224
+ // $form-spacing: emCalc(16px);
225
+
226
+ // We use these to style the labels in different ways
227
+ // $label-pointer: pointer;
228
+ // $label-font-size: emCalc(14px);
229
+ // $label-font-weight: 500;
230
+ // $label-font-color: lighten(#000, 30%);
231
+ // $label-bottom-margin: emCalc(3px);
232
+ // $input-font-family: inherit;
233
+ // $input-font-color: rgba(0,0,0,0.75);
234
+ // $input-font-size: emCalc(14px);
235
+ // $input-bg-color: #fff;
236
+ $input-focus-bg-color: darken(#fff, 1%);
237
+ $input-border-color: $clouds;
238
+ $input-focus-border-color: $turquoise;
239
+ // $input-border-style: solid;
240
+ $input-border-width: 2px;
241
+ // $input-disabled-bg: #ddd;
242
+ $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.0);
243
+
244
+ // We use these to style the fieldset border and spacing.
245
+ // $fieldset-border-style: solid;
246
+ $fieldset-border-width: 3px;
247
+ $fieldset-border-color: $clouds;
248
+ // $fieldset-padding: emCalc(20px);
249
+ // $fieldset-margin: emCalc(18px) 0;
250
+
251
+ // We use these to style the legends when you use them
252
+ // $legend-bg: #fff;
253
+ // $legend-font-weight: bold;
254
+ // $legend-padding: 0 emCalc(3px);
255
+
256
+ // We use these to style the prefix and postfix input elements
257
+ // $input-prefix-bg: darken(#fff, 5%);
258
+ $input-prefix-border-color: $clouds;
259
+ $input-prefix-border-size: 2px;
260
+ // $input-prefix-border-type: solid;
261
+ // $input-prefix-overflow: hidden;
262
+ // $input-prefix-font-color: #333;
263
+ // $input-prefix-font-color-alt: #fff;
264
+
265
+ // We use these to style the error states for inputs and labels
266
+ // $input-error-message-padding: emCalc(6px) emCalc(4px);
267
+ // $input-error-message-top: -($form-spacing) - emCalc(5px);
268
+ // $input-error-message-font-size: emCalc(12px);
269
+ // $input-error-message-font-weight: bold;
270
+ // $input-error-message-font-color: #fff;
271
+ // $input-error-message-font-color-alt: #333;
272
+
273
+ // We use these to build padding for buttons.
274
+ // $button-med: emCalc(12px);
275
+ // $button-tny: emCalc(7px);
276
+ // $button-sml: emCalc(9px);
277
+ // $button-lrg: emCalc(16px);
278
+
279
+ // We use this to control the display property.
280
+ // $button-display: inline-block;
281
+ // $button-margin-bottom: emCalc(20px);
282
+
283
+ // We use these to control button text styles.
284
+ // $button-font-family: inherit;
285
+ // $button-font-color: #fff;
286
+ // $button-font-color-alt: #333;
287
+ // $button-font-med: emCalc(16px);
288
+ // $button-font-tny: emCalc(11px);
289
+ // $button-font-sml: emCalc(13px);
290
+ // $button-font-lrg: emCalc(20px);
291
+ // $button-font-weight: bold;
292
+ // $button-font-align: center;
293
+
294
+ // We use these to control various hover effects.
295
+ // $button-function-factor: 10%;
296
+
297
+ // We use these to control button border styles.
298
+ // $button-border-width: 1px;
299
+ // $button-border-style: solid;
300
+ // $button-border-color: darken($primary-color, $button-function-factor);
301
+
302
+ // We use this to set the default radius used throughout the core.
303
+ // $button-radius: $global-radius;
304
+
305
+ // We use this to set default opacity for disabled buttons.
306
+ // $button-disabled-opacity: 0.6;
307
+
308
+ //
309
+ // Dropdown Button Variables
310
+ //
311
+
312
+ // We use these to set the color of the pip in dropdown buttons
313
+ // $dropdown-button-pip-color: #fff;
314
+ // $dropdown-button-pip-color-alt: #333;
315
+
316
+ // We use these to style tiny dropdown buttons
317
+ // $dropdown-button-padding-tny: $button-tny * 5;
318
+ // $dropdown-button-pip-size-tny: $button-tny;
319
+ // $dropdown-button-pip-right-tny: $button-tny * 2;
320
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
321
+
322
+ // We use these to style small dropdown buttons
323
+ // $dropdown-button-padding-sml: $button-sml * 5;
324
+ // $dropdown-button-pip-size-sml: $button-sml;
325
+ // $dropdown-button-pip-right-sml: $button-sml * 2;
326
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
327
+
328
+ // We use these to style medium dropdown buttons
329
+ // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
330
+ // $dropdown-button-pip-size-med: $button-med - emCalc(3px);
331
+ // $dropdown-button-pip-right-med: $button-med * 2;
332
+ // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
333
+
334
+ // We use these to style large dropdown buttons
335
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
336
+ // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
337
+ // $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
338
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
339
+
340
+ //
341
+ // Split Button Variables
342
+ //
343
+
344
+ // We use these to control different shared styles for Split Buttons
345
+ // $split-button-function-factor: 15%;
346
+ // $split-button-pip-color: #fff;
347
+ // $split-button-pip-color-alt: #333;
348
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
349
+
350
+ // We use these to control tiny split buttons
351
+ // $split-button-padding-tny: $button-tny * 9;
352
+ // $split-button-span-width-tny: $button-tny * 6.5;
353
+ // $split-button-pip-size-tny: $button-tny;
354
+ // $split-button-pip-top-tny: $button-tny * 2;
355
+ // $split-button-pip-left-tny: emCalc(-5px);
356
+
357
+ // We use these to control small split buttons
358
+ // $split-button-padding-sml: $button-sml * 7;
359
+ // $split-button-span-width-sml: $button-sml * 5;
360
+ // $split-button-pip-size-sml: $button-sml;
361
+ // $split-button-pip-top-sml: $button-sml * 1.5;
362
+ // $split-button-pip-left-sml: emCalc(-9px);
363
+
364
+ // We use these to control medium split buttons
365
+ // $split-button-padding-med: $button-med * 6.4;
366
+ // $split-button-span-width-med: $button-med * 4;
367
+ // $split-button-pip-size-med: $button-med - emCalc(3px);
368
+ // $split-button-pip-top-med: $button-med * 1.5;
369
+ // $split-button-pip-left-med: emCalc(-9px);
370
+
371
+ // We use these to control large split buttons
372
+ // $split-button-padding-lrg: $button-lrg * 6;
373
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
374
+ // $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
375
+ // $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
376
+ // $split-button-pip-left-lrg: emCalc(-9px);
377
+
378
+ //
379
+ // Alert Variables
380
+ //
381
+
382
+ // We use this to control alert padding.
383
+ // $alert-padding-top: emCalc(11px);
384
+ // $alert-padding-left: $alert-padding-top;
385
+ // $alert-padding-right: $alert-padding-top + emCalc(10px);
386
+ // $alert-padding-bottom: $alert-padding-top + emCalc(1px);
387
+
388
+ // We use these to control text style.
389
+ // $alert-font-weight: bold;
390
+ // $alert-font-size: emCalc(14px);
391
+ // $alert-font-color: #fff;
392
+ // $alert-font-color-alt: darken($secondary-color, 60%);
393
+
394
+ // We use this for close hover effect.
395
+ // $alert-function-factor: 10%;
396
+
397
+ // We use these to control border styles.
398
+ // $alert-border-style: solid;
399
+ $alert-border-width: 2px;
400
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
401
+ // $alert-bottom-margin: emCalc(20px);
402
+
403
+ // We use these to style the close buttons
404
+ // $alert-close-color: #333;
405
+ // $alert-close-position: emCalc(5px);
406
+ // $alert-close-font-size: emCalc(22px);
407
+ // $alert-close-opacity: 0.3;
408
+ // $alert-close-opacity-hover: 0.5;
409
+ // $alert-close-padding: 5px 4px 4px;
410
+
411
+ // We use this to control border radius
412
+ // $alert-radius: $global-radius;
413
+
414
+ //
415
+ // Breadcrumb Variables
416
+ //
417
+
418
+ // We use this to set the background color for the breadcrumb container.
419
+ $crumb-bg: $turquoise;
420
+
421
+ // We use these to set the padding around the breadcrumbs.
422
+ // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
423
+ // $crumb-side-padding: emCalc(12px);
424
+
425
+ // We use these to control border styles.
426
+ // $crumb-function-factor: 10%;
427
+ // $crumb-border-size: 1px;
428
+ // $crumb-border-style: solid;
429
+ $crumb-border-color: $turquoise;
430
+ // $crumb-radius: $global-radius;
431
+
432
+ // We use these to set various text styles for breadcrumbs.
433
+ // $crumb-font-size: emCalc(11px);
434
+ $crumb-font-color: white;
435
+ // $crumb-font-color-current: #333;
436
+ $crumb-font-color-unavailable: $silver;
437
+ // $crumb-font-transform: uppercase;
438
+ // $crumb-link-decor: underline;
439
+
440
+ // We use these to control the slash between breadcrumbs
441
+ $crumb-slash-color: $green-sea;
442
+ // $crumb-slash: "/";
443
+
444
+ //
445
+ // Clearing Variables
446
+ //
447
+
448
+ // We use these to set the background colors for parts of Clearing.
449
+ $clearing-bg: $wet-asphalt;
450
+ // $clearing-caption-bg: $clearing-bg;
451
+ $clearing-carousel-bg: $midnight-blue;
452
+ // $clearing-img-bg: $clearing-bg;
453
+
454
+ // We use these to style the close button
455
+ // $clearing-close-color: #fff;
456
+ // $clearing-close-size: 40px;
457
+
458
+ // We use these to style the arrows
459
+ // $clearing-arrow-size: 16px;
460
+ // $clearing-arrow-color: $clearing-close-color;
461
+
462
+ // We use these to style captions
463
+ // $clearing-caption-font-color: #fff;
464
+ // $clearing-caption-padding: 10px 30px;
465
+
466
+ // We use these to make the image and carousel height and style
467
+ // $clearing-active-img-height: 75%;
468
+ // $clearing-carousel-height: 150px;
469
+ // $clearing-carousel-thumb-width: 175px;
470
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
471
+
472
+ //
473
+ // Custom Form Variables
474
+ //
475
+
476
+ // We use these to control the basic form styles input styles
477
+ // $custom-form-border-color: #ccc;
478
+ // $custom-form-bg: #fff;
479
+ // $custom-form-bg-disabled: #ddd;
480
+ // $custom-form-check-color: #222;
481
+
482
+ // We use these to style the custom select form element.
483
+ // $custom-select-bg: #fff;
484
+ // $custom-select-fade-to-color: #f3f3f3;
485
+ // $custom-select-border-color: #ddd;
486
+ // $custom-select-triangle-color: #aaa;
487
+ // $custom-select-triangle-color-open: #222;
488
+ // $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
489
+ // $custom-select-margin-bottom: emCalc(20px);
490
+ // $custom-select-font-color-selected: #141414;
491
+ // $custom-select-disabled-color: #888;
492
+
493
+ // We use these to control the style of the custom select dropdown element.
494
+ // $custom-dropdown-height: 200px;
495
+ // $custom-dropdown-bg: #fff;
496
+ // $custom-dropdown-border-color: darken(#fff, 20%);
497
+ // $custom-dropdown-border-width: 1px;
498
+ // $custom-dropdown-border-style: solid;
499
+ // $custom-dropdown-font-color: #555;
500
+ // $custom-dropdown-font-size: emCalc(14px);
501
+ // $custom-dropdown-color-selected: #eeeeee;
502
+ // $custom-dropdown-font-color-selected: #000;
503
+ // $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
504
+ // $custom-dropdown-offset-top: none;
505
+ // $custom-dropdown-list-padding: emCalc(4px);
506
+ // $custom-dropdown-left-padding: emCalc(6px);
507
+ // $custom-dropdown-right-padding: emCalc(38px);
508
+ // $custom-dropdown-list-item-min-height: emCalc(24px);
509
+
510
+ //
511
+ // Dropdown Variables
512
+ //
513
+
514
+ // We use these to controls height and width styles.
515
+ // $f-dropdown-max-width: 200px;
516
+ // $f-dropdown-height: auto;
517
+ // $f-dropdown-max-height: none;
518
+ // $f-dropdown-margin-top: 2px;
519
+
520
+ // We use this to control the background color
521
+ // $f-dropdown-bg: #fff;
522
+
523
+ // We use this to set the border styles for dropdowns.
524
+ // $f-dropdown-border-style: solid;
525
+ // $f-dropdown-border-width: 1px;
526
+ // $f-dropdown-border-color: darken(#fff, 20%);
527
+
528
+ // We use these to style the triangle pip.
529
+ // $f-dropdown-triangle-size: 6px;
530
+ // $f-dropdown-triangle-color: #fff;
531
+ // $f-dropdown-triangle-side-offset: 10px;
532
+
533
+ // We use these to control styles for the list elements.
534
+ // $f-dropdown-list-style: none;
535
+ // $f-dropdown-font-color: #555;
536
+ // $f-dropdown-font-size: emCalc(14px);
537
+ // $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
538
+ // $f-dropdown-line-height: emCalc(18px);
539
+ // $f-dropdown-list-hover-bg: #eeeeee;
540
+ // $dropdown-mobile-left: 0;
541
+
542
+ // We use this to control the styles for when the dropdown has custom content.
543
+ // $f-dropdown-content-padding: emCalc(20px);
544
+
545
+ //
546
+ // Flex Video Variables
547
+ //
548
+
549
+ // We use these to control video container padding and margins
550
+ // $flex-video-padding-top: emCalc(25px);
551
+ // $flex-video-padding-bottom: 67.5%;
552
+ // $flex-video-margin-bottom: emCalc(16px);
553
+
554
+ // We use this to control widescreen bottom padding
555
+ // $flex-video-widescreen-padding-bottom: 57.25%;
556
+
557
+ //
558
+ // Inline List Variables
559
+ //
560
+
561
+ // We use this to control the margins and padding of the inline list.
562
+ // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
563
+ // $inline-list-margin: 0 0;
564
+ // $inline-list-padding: 0;
565
+
566
+ // We use this to control the overflow of the inline list.
567
+ // $inline-list-overflow: hidden;
568
+
569
+ // We use this to control the list items
570
+ // $inline-list-display: block;
571
+
572
+ // We use this to control any elments within list items
573
+ // $inline-list-children-display: block;
574
+
575
+ //
576
+ // Joyride Variables
577
+ //
578
+
579
+ // Controlling default Joyride styles
580
+ $joyride-tip-bg: $midnight-blue;
581
+ // $joyride-tip-default-width: 300px;
582
+ // $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
583
+ // $joyride-tip-border: solid 1px #555;
584
+ // $joyride-tip-radius: 4px;
585
+ // $joyride-tip-position-offset: 22px;
586
+
587
+ // Here, we're setting the tip dont styles
588
+ // $joyride-tip-font-color: #fff;
589
+ // $joyride-tip-font-size: emCalc(14px);
590
+ // $joyride-tip-header-weight: bold;
591
+
592
+ // This changes the nub size
593
+ // $joyride-tip-nub-size: 14px;
594
+
595
+ // This adjusts the styles for the timer when its enabled
596
+ // $joyride-tip-timer-width: 50px;
597
+ // $joyride-tip-timer-height: 3px;
598
+ // $joyride-tip-timer-color: #666;
599
+
600
+ // This changes up the styles for the close button
601
+ // $joyride-tip-close-color: #777;
602
+ // $joyride-tip-close-size: 30px;
603
+ // $joyride-tip-close-weight: normal;
604
+
605
+ // When Joyride is filling the screen, we use this style for the bg
606
+ // $joyride-screenfill: rgba(0,0,0,0.5);
607
+
608
+ //
609
+ // Keystroke Variables
610
+ //
611
+
612
+ // We use these to control text styles.
613
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
614
+ // $keystroke-font-size: emCalc(15px);
615
+ // $keystroke-font-color: #222;
616
+ // $keystroke-font-color-alt: #fff;
617
+ // $keystroke-function-factor: 7%;
618
+
619
+ // We use this to control keystroke padding.
620
+ // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
621
+
622
+ // We use these to control background and border styles.
623
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
624
+ // $keystroke-border-style: solid;
625
+ // $keystroke-border-width: 1px;
626
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
627
+ // $keystroke-radius: $global-radius;
628
+
629
+ //
630
+ // Label Variables
631
+ //
632
+
633
+ // We use these to style the labels
634
+ // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
635
+ // $label-radius: $global-radius;
636
+
637
+ // We use these to style the label text
638
+ // $label-font-sizing: emCalc(14px);
639
+ // $label-font-weight: bold;
640
+
641
+ //
642
+ // Orbit Settings
643
+ //
644
+
645
+ // We use these to control the caption styles
646
+ // $orbit-container-bg: #f5f5f5;
647
+ // $orbit-caption-bg-old-browser: #000;
648
+ // $orbit-caption-bg-old: rgb(0,0,0);
649
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
650
+ // $orbit-caption-font-color: #fff;
651
+
652
+ // We use these to control the left/right nav styles
653
+ // $orbit-nav-bg-old: rgb(0,0,0);
654
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
655
+
656
+ // We use these to control the timer styles
657
+ // $orbit-timer-bg-old: rgb(0,0,0);
658
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
659
+
660
+ // We use these to control the bullet nav styles
661
+ // $orbit-bullet-nav-color: #999;
662
+ // $orbit-bullet-nav-color-active: #222;
663
+
664
+ // We use thes to controls the style of slide numbers
665
+ // $orbit-slide-number-bg: rgb(0,0,0);
666
+ // $orbit-slide-number-font-color: #fff;
667
+ // $orbit-slide-number-padding: emCalc(5px);
668
+
669
+ // Margin for when Orbit is stacked on small screens
670
+ // $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
671
+
672
+ //
673
+ // Pagination Variables
674
+ //
675
+
676
+ // We use these to control the pagination container
677
+ // $pagination-height: emCalc(24px);
678
+ // $pagination-margin: emCalc(-5px);
679
+
680
+ // We use these to set the list-item properties
681
+ // $pagination-li-float: $default-float;
682
+ // $pagination-li-height: emCalc(24px);
683
+ // $pagination-li-font-color: #222;
684
+ // $pagination-li-font-size: emCalc(14px);
685
+ $pagination-li-margin: rem-calc(10);
686
+
687
+ // We use these for the pagination anchor links
688
+ $pagination-link-pad: rem-calc(1) rem-calc(9) rem-calc(1);
689
+ // $pagination-link-font-color: #999;
690
+ // $pagination-link-active-bg: darken(#fff, 10%);
691
+
692
+ // We use these for disabled anchor links
693
+ // $pagination-link-unavailable-cursor: default;
694
+ // $pagination-link-unavailable-font-color: #999;
695
+ // $pagination-link-unavailable-bg-active: transparent;
696
+
697
+ // We use these for currently selected anchor links
698
+ // $pagination-link-current-background: $primary-color;
699
+ // $pagination-link-current-font-color: #fff;
700
+ // $pagination-link-current-font-weight: bold;
701
+ // $pagination-link-current-cursor: default;
702
+ // $pagination-link-current-active-bg: $primary-color;
703
+
704
+ //
705
+ // Panel Variables
706
+ //
707
+
708
+ // We use these to control the background and border styles
709
+ // $panel-bg: darken(#fff, 5%);
710
+ // $panel-border-style: solid;
711
+ $panel-border-size: 2px;
712
+
713
+ // We use this % to control how much we darken things on hover
714
+ $panel-function-factor: 4%;
715
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
716
+
717
+ // We use these to set default inner padding and bottom margin
718
+ // $panel-margin-bottom: emCalc(20px);
719
+ // $panel-padding: emCalc(20px);
720
+
721
+ // We use these to set default font colors
722
+ $panel-font-color: $wet-asphalt;
723
+ // $panel-font-color-alt: #fff;
724
+
725
+ //
726
+ // Pricing Table Variables
727
+ //
728
+
729
+ // We use this to control the border color
730
+ $price-table-border: solid 2px $clouds;
731
+
732
+ // We use this to control the bottom margin of the pricing table
733
+ // $price-table-margin-bottom: emCalc(20px);
734
+
735
+ // We use these to control the title styles
736
+ $price-title-bg: white;
737
+ // $price-title-padding: emCalc(15px) emCalc(20px);
738
+ // $price-title-align: center;
739
+ $price-title-color: $midnight-blue;
740
+ $price-title-weight: bold;
741
+ $price-title-size: rem-calc(24);
742
+
743
+ // We use these to control the price styles
744
+ $price-money-bg: $clouds;
745
+ // $price-money-padding: emCalc(15px) emCalc(20px);
746
+ // $price-money-align: center;
747
+ $price-money-color: $wet-asphalt;
748
+ // $price-money-weight: normal;
749
+ $price-money-size: rem-calc(22);
750
+
751
+ // We use these to control the description styles
752
+ $price-bg: white;
753
+ $price-desc-color: $wet-asphalt;
754
+ // $price-desc-padding: emCalc(15px);
755
+ // $price-desc-align: center;
756
+ // $price-desc-font-size: emCalc(12px);
757
+ // $price-desc-weight: normal;
758
+ // $price-desc-line-height: 1.4;
759
+ $price-desc-bottom-border: solid 1px $clouds;
760
+
761
+ // We use these to control the list item styles
762
+ $price-item-color: $wet-asphalt;
763
+ // $price-item-padding: emCalc(15px);
764
+ // $price-item-align: center;
765
+ // $price-item-font-size: emCalc(14px);
766
+ // $price-item-weight: normal;
767
+ $price-item-bottom-border: solid 1px $clouds;
768
+
769
+ // We use these to control the CTA area styles
770
+ $price-cta-bg: $clouds;
771
+ // $price-cta-align: center;
772
+ // $price-cta-padding: emCalc(20px) emCalc(20px) 0;
773
+
774
+ //
775
+ // Progress Bar Variables
776
+ //
777
+
778
+ // We use this to se the prog bar height
779
+ // $progress-bar-height: emCalc(25px);
780
+ // $progress-bar-color: transparent;
781
+
782
+ // We use these to control the border styles
783
+ $progress-bar-border-color: $clouds;
784
+ $progress-bar-border-size: 2px;
785
+ // $progress-bar-border-style: solid;
786
+ // $progress-bar-border-radius: $global-radius;
787
+
788
+ // We use these to control the margin & padding
789
+ // $progress-bar-pad: emCalc(2px);
790
+ // $progress-bar-margin-bottom: emCalc(10px);
791
+
792
+ // We use these to set the meter colors
793
+ // $progress-meter-color: $primary-color;
794
+ // $progress-meter-secondary-color: $secondary-color;
795
+ // $progress-meter-success-color: $success-color;
796
+ // $progress-meter-alert-color: $alert-color;
797
+
798
+ // NEED TO FINISH THE LOGIC HERE
799
+
800
+ //
801
+ // Reveal Variables
802
+ //
803
+
804
+ // We use these to control the style of the reveal overlay.
805
+ // $reveal-overlay-bg: rgba(#000, .45);
806
+ // $reveal-overlay-bg-old: #000;
807
+
808
+ // We use these to control the style of the modal itself.
809
+ // $reveal-modal-bg: #fff;
810
+ // $reveal-position-top: 50px;
811
+ // $reveal-default-width: 80%;
812
+ // $reveal-modal-padding: emCalc(20px);
813
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
814
+
815
+ // We use these to style the reveal close button
816
+ // $reveal-close-font-size: emCalc(22px);
817
+ // $reveal-close-top: emCalc(8px);
818
+ // $reveal-close-side: emCalc(11px);
819
+ // $reveal-close-color: #aaa;
820
+ // $reveal-close-weight: bold;
821
+
822
+ // We use these to control the modal border
823
+ // $reveal-border-style: solid;
824
+ // $reveal-border-width: 1px;
825
+ // $reveal-border-color: #666;
826
+
827
+ //
828
+ // Section Variables
829
+ //
830
+
831
+ // We use these to set padding and hover factor
832
+ // $section-padding: emCalc(15px);
833
+ // $section-function-factor: 10%;
834
+
835
+ // These style the titles
836
+ // $section-title-color: #333;
837
+ // $section-title-bg: #efefef;
838
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
839
+ // $section-title-bg-active-tabs: #fff;
840
+
841
+ // Want to control border size, here ya go!
842
+ $section-border-size: 2px;
843
+ // $section-border-style: solid;
844
+ $section-border-color: $clouds;
845
+
846
+ // Control the color of the background and some size options
847
+ // $section-content-bg: #fff;
848
+ // $section-vertical-nav-min-width: emCalc(200px);
849
+ // $section-bottom-margin: emCalc(20px);
850
+
851
+ //
852
+ // Side Nav Variables
853
+ //
854
+
855
+ // We use this to control padding.
856
+ // $side-nav-padding: emCalc(14px) 0;
857
+
858
+ // We use these to control list styles.
859
+ // $side-nav-list-type: none;
860
+ // $side-nav-list-position: inside;
861
+ // $side-nav-list-margin: 0 0 emCalc(7px) 0;
862
+
863
+ // We use these to control link styles.
864
+ // $side-nav-link-color: $primary-color;
865
+ // $side-nav-link-color-active: lighten(#000, 30%);
866
+ // $side-nav-font-size: emCalc(14px);
867
+ // $side-nav-font-weight: bold;
868
+
869
+ // We use these to control border styles
870
+ $side-nav-divider-size: 2px;
871
+ // $side-nav-divider-style: solid;
872
+ $side-nav-divider-color: $clouds;
873
+
874
+ //
875
+ // Sub Nav Variables
876
+ //
877
+
878
+ // We use these to control margin and padding
879
+ // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
880
+ // $sub-nav-list-padding-top: emCalc(4px);
881
+
882
+ // We use this to control the definition
883
+ // $sub-nav-font-size: emCalc(14px);
884
+ // $sub-nav-font-color: #999;
885
+ // $sub-nav-font-weight: normal;
886
+ // $sub-nav-text-decoration: none;
887
+ // $sub-nav-border-radius: 1000px;
888
+
889
+ // We use these to control the active item styles
890
+ // $sub-nav-active-font-weight: bold;
891
+ // $sub-nav-active-bg: $primary-color;
892
+ // $sub-nav-active-color: #fff;
893
+ // $sub-nav-active-padding: emCalc(3px) emCalc(9px);
894
+ // $sub-nav-active-cursor: default;
895
+
896
+ //
897
+ // Switch Variables
898
+ //
899
+
900
+ // Controlling border styles and background colors for the switch container
901
+ // $switch-border-color: darken(#fff, 20%);
902
+ // $switch-border-style: solid;
903
+ // $switch-border-width: 1px;
904
+ // $switch-bg: #fff;
905
+
906
+ // We use these to control the switch heights for our default classes
907
+ // $switch-height-tny: 22px;
908
+ // $switch-height-sml: 28px;
909
+ // $switch-height-med: 36px;
910
+ // $switch-height-lrg: 44px;
911
+ // $switch-bottom-margin: emCalc(20px);
912
+
913
+ // We use these to control default font sizes for our classes.
914
+ // $switch-font-size-tny: 11px;
915
+ // $switch-font-size-sml: 12px;
916
+ // $switch-font-size-med: 14px;
917
+ // $switch-font-size-lrg: 17px;
918
+ // $switch-label-side-padding: 6px;
919
+
920
+ // We use these to style the switch-paddle
921
+ // $switch-paddle-bg: #fff;
922
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
923
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
924
+ // $switch-paddle-border-width: 1px;
925
+ // $switch-paddle-border-style: solid;
926
+ // $switch-paddle-transition-speed: .1s;
927
+ // $switch-paddle-transition-ease: ease-out;
928
+ // $switch-positive-color: lighten($success-color, 50%);
929
+ // $switch-negative-color: #f5f5f5;
930
+
931
+ // Outline Style for tabbing through switches
932
+ // $switch-label-outline: 1px dotted #888;
933
+
934
+ //
935
+ // Table Variables
936
+ //
937
+
938
+ // These control the background color for the table and even rows
939
+ // $table-bg: #fff;
940
+ // $table-even-row-bg: #f9f9f9;
941
+
942
+ // These control the table cell border style
943
+ // $table-border-style: solid;
944
+ $table-border-size: 2px;
945
+ $table-border-color: $clouds;
946
+
947
+ // These control the table head styles
948
+ // $table-head-bg: #f5f5f5;
949
+ // $table-head-font-size: emCalc(14px);
950
+ $table-head-font-color: $midnight-blue;
951
+ // $table-head-font-weight: bold;
952
+ // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
953
+
954
+ // These control the row padding and font styles
955
+ // $table-row-padding: emCalc(9px) emCalc(10px);
956
+ // $table-row-font-size: emCalc(14px);
957
+ $table-row-font-color: $wet-asphalt;
958
+ // $table-line-height: emCalc(18px);
959
+
960
+ // These are for controlling the display and margin of tables
961
+ // $table-display: table-cell;
962
+ // $table-margin-bottom: emCalc(20px);
963
+
964
+ //
965
+ // Image Thumbnail Variables
966
+ //
967
+
968
+ // We use these to control border styles
969
+ // $thumb-border-style: solid;
970
+ $thumb-border-width: 6px;
971
+ $thumb-border-color: $clouds;
972
+ $thumb-box-shadow: 0 0 0 1px rgba(#000,0);
973
+ $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.8);
974
+
975
+ // Radius and transition speed for thumbs
976
+ // $thumb-radius: $global-radius;
977
+ // $thumb-transition-speed: 200ms;
978
+
979
+ //
980
+ // Tooltip Variables
981
+ //
982
+ // $has-tip-border-bottom: dotted 1px #ccc;
983
+ // $has-tip-font-weight: bold;
984
+ // $has-tip-font-color: #333;
985
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
986
+ // $has-tip-font-color-hover: $primary-color;
987
+ // $has-tip-cursor-type: help;
988
+
989
+ // $tooltip-padding: emCalc(8px);
990
+ $tooltip-bg: $midnight-blue;
991
+ // $tooltip-font-size: emCalc(15px);
992
+ // $tooltip-font-weight: bold;
993
+ // $tooltip-font-color: #fff;
994
+ // $tooltip-line-height: 1.3;
995
+ // $tooltip-close-font-size: emCalc(10px);
996
+ // $tooltip-close-font-weight: normal;
997
+ // $tooltip-close-font-color: #888;
998
+ // $tooltip-font-size-sml: emCalc(14px);
999
+ // $tooltip-radius: $global-radius;
1000
+ // $tooltip-pip-size: 5px;
1001
+
1002
+ //
1003
+ // Top Bar Variables
1004
+ //
1005
+
1006
+ // Background color for the top bar
1007
+ $topbar-bg: $wet-asphalt;
1008
+
1009
+ // Height and margin
1010
+ // $topbar-height: 45px;
1011
+ // $topbar-margin-bottom: emCalc(30px);
1012
+
1013
+ // Control Input height for top bar
1014
+ // $topbar-input-height: 2.45em;
1015
+
1016
+ // Controlling the styles for the title in the top bar
1017
+ // $topbar-title-weight: bold;
1018
+ // $topbar-title-font-size: emCalc(17px);
1019
+
1020
+ // Set the link colors and styles for top-level nav
1021
+ // $topbar-link-color: #fff;
1022
+ // $topbar-link-weight: bold;
1023
+ // $topbar-link-font-size: emCalc(13px);
1024
+
1025
+ // Style the top bar dropdown elements
1026
+ // $topbar-dropdown-bg: #333;
1027
+ // $topbar-dropdown-link-color: #fff;
1028
+ // $topbar-dropdown-toggle-size: 5px;
1029
+ // $topbar-dropdown-toggle-color: #fff;
1030
+ // $topbar-dropdown-toggle-alpha: 0.5;
1031
+ $dropdown-label-color: $silver;
1032
+
1033
+ // Top menu icon styles
1034
+ // $topbar-menu-link-transform: uppercase;
1035
+ // $topbar-menu-link-font-size: emCalc(13px);
1036
+ // $topbar-menu-link-weight: bold;
1037
+ // $topbar-menu-link-color: #fff;
1038
+ // $topbar-menu-icon-color: #fff;
1039
+ $topbar-menu-link-color-toggled: $success-color;
1040
+ $topbar-menu-icon-color-toggled: $success-color;
1041
+
1042
+ // Transitions and breakpoint styles
1043
+ $topbar-transition-speed: 300ms;
1044
+ // $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1045
+ // $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";