webgen-zurb_foundation-bundle 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +15 -0
  2. data/ChangeLog +3 -0
  3. data/LICENSE +20 -0
  4. data/README.md +81 -0
  5. data/VERSION +1 -0
  6. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/_variables.scss +1270 -0
  7. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_alert-boxes.scss +107 -0
  8. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_block-grid.scss +71 -0
  9. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_breadcrumbs.scss +125 -0
  10. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_button-groups.scss +89 -0
  11. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_buttons.scss +231 -0
  12. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_clearing.scss +227 -0
  13. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_custom-forms.scss +267 -0
  14. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_dropdown-buttons.scss +115 -0
  15. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_dropdown.scss +151 -0
  16. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_flex-video.scss +46 -0
  17. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_forms.scss +364 -0
  18. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_global.scss +315 -0
  19. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_grid.scss +186 -0
  20. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_inline-lists.scss +53 -0
  21. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_joyride.scss +217 -0
  22. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_keystrokes.scss +57 -0
  23. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_labels.scss +85 -0
  24. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_magellan.scss +23 -0
  25. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_orbit.scss +291 -0
  26. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_pagination.scss +100 -0
  27. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_panels.scss +80 -0
  28. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_pricing-tables.scss +131 -0
  29. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_progress-bars.scss +71 -0
  30. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_reveal.scss +136 -0
  31. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_section.scss +353 -0
  32. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_side-nav.scss +69 -0
  33. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_split-buttons.scss +167 -0
  34. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_sub-nav.scss +68 -0
  35. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_switch.scss +257 -0
  36. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_tables.scss +84 -0
  37. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_thumbs.scss +55 -0
  38. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_tooltips.scss +117 -0
  39. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_top-bar.scss +504 -0
  40. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_type.scss +433 -0
  41. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_visibility.scss +322 -0
  42. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/foundation.scss +46 -0
  43. data/lib/webgen/bundle/zurb_foundation/data/css/foundation/normalize.scss +402 -0
  44. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.alerts.js +52 -0
  45. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.clearing.js +516 -0
  46. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.cookie.js +74 -0
  47. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.dropdown.js +178 -0
  48. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.forms.js +525 -0
  49. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.interchange.js +271 -0
  50. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.joyride.js +844 -0
  51. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.js +447 -0
  52. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.magellan.js +134 -0
  53. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.orbit.js +390 -0
  54. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.placeholder.js +179 -0
  55. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.reveal.js +330 -0
  56. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.section.js +417 -0
  57. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.tooltips.js +208 -0
  58. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/foundation.topbar.js +297 -0
  59. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/index.js +17 -0
  60. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/vendor/custom.modernizr.js +4 -0
  61. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/vendor/jquery.js +9807 -0
  62. data/lib/webgen/bundle/zurb_foundation/data/js/foundation/vendor/zepto.js +2000 -0
  63. data/lib/webgen/bundle/zurb_foundation/info.yaml +9 -0
  64. data/lib/webgen/bundle/zurb_foundation/init.rb +2 -0
  65. metadata +127 -0
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2MxNjBmYTQyNTdlYmNmMjBlOWE3YmI3ZmEzZTdlYTc2MjZkYzZmYQ==
5
+ data.tar.gz: !binary |-
6
+ YTljODA1Y2Q0MGU1MWQ1NDMxNTVlM2U5NTllODcxNThhNjYyNGJmNQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ OGQ0YTQ1NzlhYjUxMmFkMmU0ZjE0NDgzNWRiYmQ5OTk0MDM0YzkzNmVmZjEx
10
+ MGE0YTcxNTExMDBkY2Q4OTBjMGRkNGVhZTkyMTgwZThhNDllY2Y3YmQxZGU4
11
+ MjEyODAyMjJmOWNjNjgzYTVjZjg5YmJlYTIyNjJkMjg5MzM1YWQ=
12
+ data.tar.gz: !binary |-
13
+ ZjE3NjJmYzhjMGJhNDA3YzBiYWYxN2U1MGIyOTIxZDM0M2MxYzc0NjM3NTE4
14
+ NWVkMTY5N2ZiYTRmNzRkNzJmYWFlMjIzYzgwMjQwMjFmZTc0ZjU2NmVmZjlm
15
+ YTUxMTcyMDE1NTBkMjJiNjEzMWMyNjQ5YWQxYjhhYzE3MzFjODI=
@@ -0,0 +1,3 @@
1
+ # 2013-08-25, Version 1.0.0
2
+
3
+ - Initial release with ZURB Foundation 4.2.2
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Thomas Leitner
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a
4
+ copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included
12
+ in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,81 @@
1
+ # ZURB Foundation framework for webgen
2
+
3
+ This is a [webgen] extension bundle that provides the [Scss standalone
4
+ version][1] of the [ZURB Foundation][2] CSS framework. This bundle
5
+ allows the easy inclusion of parts or all of the Foundation framework in
6
+ webgen websites.
7
+
8
+ [webgen]: http://webgen.rubyforge.org
9
+ [1]: https://github.com/zurb/foundation/tree/scss-standalone
10
+ [2]: http://foundation.zurb.com/
11
+
12
+
13
+ # Usage
14
+
15
+ This extension bundle includes all of the Scss and Javascript files of
16
+ the Scss standalone version of ZURB Foundation.
17
+
18
+ It is recommended that you familiarize yourself with [how Foundation
19
+ works][doc].
20
+
21
+
22
+ ## Scss files
23
+
24
+ The needed Scss stylesheets are provided under the `/foundation/` path:
25
+
26
+ * The `foundation.scss` file can be imported to include all the
27
+ functionality of the Foundation framework.
28
+
29
+ * There is a sub-directory called `components/` where the individual
30
+ component files live.
31
+
32
+ * The `normalize.scss` file that is included in ZURB Foundation
33
+ distribution (see <http://git.io/normalize>).
34
+
35
+ *Note* that the Scss files are only available to the Sass/Scss content
36
+ processors, i.e. no nodes are created for them!
37
+
38
+ The following statements placed in any Scss stylesheet you use in your
39
+ webgen website would import the whole Foundation CSS framework:
40
+
41
+ @import "/foundation/normalize"
42
+ @import "/foundation/foundation"
43
+
44
+
45
+ [doc]: http://foundation.zurb.com/docs/index.html
46
+
47
+
48
+ ## Javascript files
49
+
50
+ The Foundation javascript files are provided as passive nodes under the
51
+ `/javascripts/foundation/` path (e.g.
52
+ `/javascripts/foundation/foundation.dropdown.js`).
53
+
54
+ The vendored files included in the ZURB Foundation distribution are
55
+ available under the `/javascripts/foundation/vendor/` directory.
56
+
57
+
58
+ # Installation
59
+
60
+ The easiest way to install this extension bundle is by installing the
61
+ corresponding Rubygem:
62
+
63
+ gem install webgen-zurb_foundation-bundle
64
+
65
+ If you don't use Rubygems, copy the folder
66
+ `lib/webgen/bundle/zurb_foundation` into your `ext` directory.
67
+
68
+ After that you just need to tell webgen to use this extension bundle by
69
+ adding the following line to your `ext/init.rb` file:
70
+
71
+ load("zurb_foundation")
72
+
73
+
74
+ # Copyright and license
75
+
76
+ Copyright (c) 2013 Thomas Leitner under the MIT license (see LICENSE)
77
+
78
+ * * *
79
+
80
+ All files included from the [Scss standalone version] of ZURB Foundation
81
+ (including the vendored files) are licensed under the MIT license.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.0
@@ -0,0 +1,1270 @@
1
+ //
2
+ // Foundation Variables
3
+ //
4
+
5
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
6
+ // for compatibility with browser-based text zoom or user-set defaults.
7
+ $base-font-size: 100% !default;
8
+
9
+ // $base-line-height is 24px while $base-font-size is 16px
10
+ // $base-line-height: 150%;
11
+
12
+ // This is the default html and body font-size for the base em value.
13
+
14
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
15
+ // If you want your base font-size to be a different size and not have it effect grid size too,
16
+ // set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
17
+ $em-base: 16px !default;
18
+
19
+ // Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px)
20
+ @function emCalc($pxWidth) {
21
+ @return $pxWidth / $em-base * 1em;
22
+ }
23
+
24
+ // Change whether or not you include browser prefixes
25
+ // $experimental: true;
26
+
27
+ // Various global styles
28
+
29
+ $default-float: left;
30
+
31
+ // $body-bg: #fff;
32
+ // $body-font-color: #222;
33
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
34
+ // $body-font-weight: normal;
35
+ // $body-font-style: normal;
36
+
37
+ // Font-smoothing
38
+
39
+ // $font-smoothing: antialiased;
40
+
41
+ // Text direction settings
42
+
43
+ // $text-direction: ltr;
44
+
45
+ // Colors
46
+
47
+ // $primary-color: #2ba6cb;
48
+ // $secondary-color: #e9e9e9;
49
+ // $alert-color: #c60f13;
50
+ // $success-color: #5da423;
51
+
52
+ // Make sure border radius matches unless we want it different.
53
+
54
+ // $global-radius: 3px;
55
+ // $global-rounded: 1000px;
56
+
57
+ // Inset shadow shiny edges and depressions.
58
+
59
+ // $shiny-edge-size: 0 1px 0;
60
+ // $shiny-edge-color: rgba(#fff, .5);
61
+ // $shiny-edge-active-color: rgba(#000, .2);
62
+
63
+ // Control whether or not CSS classes come through in the CSS files.
64
+
65
+ // $include-html-classes: true;
66
+ // $include-print-styles: true;
67
+ // $include-html-global-classes: $include-html-classes;
68
+ // $include-html-type-classes: $include-html-classes;
69
+ // $include-html-grid-classes: $include-html-classes;
70
+ // $include-html-visibility-classes: $include-html-classes;
71
+ // $include-html-button-classes: $include-html-classes;
72
+ // $include-html-form-classes: $include-html-classes;
73
+ // $include-html-custom-form-classes: $include-html-classes;
74
+ // $include-html-media-classes: $include-html-classes;
75
+ // $include-html-section-classes: $include-html-classes;
76
+ // $include-html-orbit-classes: $include-html-classes;
77
+ // $include-html-reveal-classes: $include-html-classes;
78
+ // $include-html-joyride-classes: $include-html-classes;
79
+ // $include-html-clearing-classes: $include-html-classes;
80
+ // $include-html-alert-classes: $include-html-classes;
81
+ // $include-html-nav-classes: $include-html-classes;
82
+ // $include-html-top-bar-classes: $include-html-classes;
83
+ // $include-html-label-classes: $include-html-classes;
84
+ // $include-html-panel-classes: $include-html-classes;
85
+ // $include-html-pricing-classes: $include-html-classes;
86
+ // $include-html-progress-classes: $include-html-classes;
87
+ // $include-html-magellan-classes: $include-html-classes;
88
+ // $include-html-tooltip-classes: $include-html-classes;
89
+
90
+ // Media Queries
91
+
92
+ // $small-screen: 768px;
93
+ // $medium-screen: 1280px;
94
+ // $large-screen: 1440px;
95
+
96
+ // $screen: "only screen";
97
+ // $small: "only screen and (min-width: #{$small-screen})";
98
+ // $medium: "only screen and (min-width: #{$medium-screen})";
99
+ // $large: "only screen and (min-width: #{$large-screen})";
100
+ // $landscape: "only screen and (orientation: landscape)";
101
+ // $portrait: "only screen and (orientation: portrait)";
102
+
103
+ //// Cursors
104
+
105
+ //Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
106
+
107
+ // $cursor-crosshair-value: "crosshair";
108
+ // $cursor-default-value: "default";
109
+ // $cursor-pointer-value: "pointer";
110
+ // $cursor-help-value: "help";
111
+
112
+ //
113
+ // Grid Variables
114
+ //
115
+
116
+ // $row-width: emCalc(1000px);
117
+ // $column-gutter: emCalc(30px);
118
+ // $total-columns: 12;
119
+
120
+ //
121
+ // Block Grid Variables
122
+ //
123
+
124
+ // Maximum number of block grid elements per row
125
+
126
+ // $block-grid-elements: 12;
127
+ // $block-grid-default-spacing: emCalc(20px);
128
+
129
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
130
+
131
+ // $block-grid-media-queries: true;
132
+
133
+ //
134
+ // Typography Variables
135
+ //
136
+
137
+ // Heading font styles
138
+
139
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
140
+ // $header-font-weight: bold;
141
+ // $header-font-style: normal;
142
+ // $header-font-color: #222;
143
+ // $header-line-height: 1.4;
144
+ // $header-top-margin: .2em;
145
+ // $header-bottom-margin: .5em;
146
+ // $header-text-rendering: optimizeLegibility;
147
+
148
+ // Heading font sizes
149
+
150
+ // $h1-font-size: emCalc(44px);
151
+ // $h2-font-size: emCalc(37px);
152
+ // $h3-font-size: emCalc(27px);
153
+ // $h4-font-size: emCalc(23px);
154
+ // $h5-font-size: emCalc(18px);
155
+ // $h6-font-size: 1em;
156
+
157
+ // Subheaders
158
+
159
+ // $subheader-line-height: 1.4;
160
+ // $subheader-font-color: lighten($header-font-color, 30%);
161
+ // $subheader-font-weight: 300;
162
+ // $subheader-top-margin: .2em;
163
+ // $subheader-bottom-margin: .5em;
164
+
165
+ // <small> styling
166
+
167
+ // $small-font-size: 60%;
168
+ // $small-font-color: lighten($header-font-color, 30%);
169
+
170
+ // Paragraphs
171
+
172
+ // $paragraph-font-family: inherit;
173
+ // $paragraph-font-weight: normal;
174
+ // $paragraph-font-size: 1em;
175
+ // $paragraph-line-height: 1.6;
176
+ // $paragraph-margin-bottom: emCalc(20px);
177
+ // $paragraph-aside-font-size: emCalc(14px);
178
+ // $paragraph-aside-line-height: 1.35;
179
+ // $paragraph-aside-font-style: italic;
180
+
181
+ // <code> tags
182
+
183
+ // $code-color: darken($alert-color, 15%);
184
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
185
+ // $code-font-weight: bold;
186
+
187
+ // Anchors
188
+
189
+ // $anchor-text-decoration: none;
190
+ // $anchor-font-color: $primary-color;
191
+ // $anchor-font-color-hover: darken($primary-color, 5%);
192
+
193
+ // <hr> element
194
+
195
+ // $hr-border-width: 1px;
196
+ // $hr-border-style: solid;
197
+ // $hr-border-color: #ddd;
198
+ // $hr-margin: emCalc(20px);
199
+
200
+ // Lists
201
+
202
+ // $list-style-position: outside;
203
+ // $list-side-margin: emCalc(20px);
204
+ // $list-nested-margin: emCalc(20px);
205
+ // $definition-list-header-weight: bold;
206
+ // $definition-list-header-margin-bottom: .3em;
207
+ // $definition-list-margin-bottom: emCalc(12px);
208
+
209
+ // Blockquotes
210
+
211
+ // $blockquote-font-color: lighten($header-font-color, 30%);
212
+ // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
213
+ // $blockquote-border: 1px solid #ddd;
214
+ // $blockquote-cite-font-size: emCalc(13px);
215
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
216
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
217
+
218
+ // Acronym
219
+
220
+ // $acronym-underline: 1px dotted #ddd;
221
+
222
+ // Padding and margin
223
+
224
+ // $microformat-padding: emCalc(10px) emCalc(12px);
225
+ // $microformat-margin: 0 0 emCalc(20px) 0;
226
+
227
+ // Border styles
228
+
229
+ // $microformat-border-width: 1px;
230
+ // $microformat-border-style: solid;
231
+ // $microformat-border-color: #ddd;
232
+
233
+ // Full name font styles
234
+
235
+ // $microformat-fullname-font-weight: bold;
236
+ // $microformat-fullname-font-size: emCalc(15px);
237
+
238
+ // Summary font styles
239
+
240
+ // $microformat-summary-font-weight: bold;
241
+
242
+ // <abbr> padding
243
+
244
+ // $microformat-abbr-padding: 0 emCalc(1px);
245
+
246
+ // <abbr> font styles
247
+
248
+ // $microformat-abbr-font-weight: bold;
249
+ // $microformat-abbr-font-decoration: none;
250
+
251
+ //
252
+ // Form Variables
253
+ //
254
+
255
+ // Base for lots of form spacing and positioning styles
256
+
257
+ // $form-spacing: emCalc(16px);
258
+
259
+ // Labels
260
+
261
+ // $form-label-pointer: pointer;
262
+ // $form-label-font-size: emCalc(14px);
263
+ // $form-label-font-weight: 500;
264
+ // $form-label-font-color: lighten(#000, 30%);
265
+ // $form-label-bottom-margin: emCalc(3px);
266
+ // $input-font-family: inherit;
267
+ // $input-font-color: rgba(0,0,0,0.75);
268
+ // $input-font-size: emCalc(14px);
269
+ // $input-bg-color: #fff;
270
+ // $input-focus-bg-color: darken(#fff, 2%);
271
+ // $input-border-color: darken(#fff, 20%);
272
+ // $input-focus-border-color: darken(#fff, 40%);
273
+ // $input-border-style: solid;
274
+ // $input-border-width: 1px;
275
+ // $input-disabled-bg: #ddd;
276
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
277
+ // $input-include-glowing-effect: true;
278
+
279
+ // Fieldset border and spacing.
280
+
281
+ // $fieldset-border-style: solid;
282
+ // $fieldset-border-width: 1px;
283
+ // $fieldset-border-color: #ddd;
284
+ // $fieldset-padding: emCalc(20px);
285
+ // $fieldset-margin: emCalc(18px) 0;
286
+
287
+ // Legends
288
+
289
+ // $legend-bg: #fff;
290
+ // $legend-font-weight: bold;
291
+ // $legend-padding: 0 emCalc(3px);
292
+
293
+ // Prefix and postfix input elements
294
+
295
+ // $input-prefix-bg: darken(#fff, 5%);
296
+ // $input-prefix-border-color: darken(#fff, 20%);
297
+ // $input-prefix-border-size: 1px;
298
+ // $input-prefix-border-type: solid;
299
+ // $input-prefix-overflow: hidden;
300
+ // $input-prefix-font-color: #333;
301
+ // $input-prefix-font-color-alt: #fff;
302
+
303
+ // Error states for inputs and labels
304
+
305
+ // $input-error-message-padding: emCalc(6px) emCalc(4px);
306
+ // $input-error-message-top: -($form-spacing) - emCalc(5px);
307
+ // $input-error-message-font-size: emCalc(12px);
308
+ // $input-error-message-font-weight: bold;
309
+ // $input-error-message-font-color: #fff;
310
+ // $input-error-message-font-color-alt: #333;
311
+
312
+ // Glowing effect of inputs when focused
313
+
314
+ // $glowing-effect-fade-time: 0.45s;
315
+ // $glowing-effect-color: $input-focus-border-color;
316
+
317
+ //
318
+ // Button Variables
319
+ //
320
+
321
+ // Padding for buttons.
322
+
323
+ // $button-tny: emCalc(7px);
324
+ // $button-sml: emCalc(9px);
325
+ // $button-med: emCalc(12px);
326
+ // $button-lrg: emCalc(16px);
327
+
328
+ // Display property.
329
+
330
+ // $button-display: inline-block;
331
+ // $button-margin-bottom: emCalc(20px);
332
+
333
+ // Button text styles.
334
+
335
+ // $button-font-family: inherit;
336
+ // $button-font-color: #fff;
337
+ // $button-font-color-alt: #333;
338
+ // $button-font-med: emCalc(16px);
339
+ // $button-font-tny: emCalc(11px);
340
+ // $button-font-sml: emCalc(13px);
341
+ // $button-font-lrg: emCalc(20px);
342
+ // $button-font-weight: bold;
343
+ // $button-font-align: center;
344
+
345
+ // Various hover effects.
346
+
347
+ // $button-function-factor: 10%;
348
+
349
+ // Button border styles.
350
+
351
+ // $button-border-width: 1px;
352
+ // $button-border-style: solid;
353
+ // $button-border-color: darken($primary-color, $button-function-factor);
354
+
355
+ // Radius used throughout the core.
356
+
357
+ // $button-radius: $global-radius;
358
+
359
+ // Opacity for disabled buttons.
360
+
361
+ // $button-disabled-opacity: 0.6;
362
+
363
+ //
364
+ // Button Groups
365
+ //
366
+
367
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
368
+
369
+ // $button-bar-margin-opposite: emCalc(10px);
370
+
371
+ //
372
+ // Dropdown Button Variables
373
+ //
374
+
375
+ // Color of the pip in dropdown buttons
376
+
377
+ // $dropdown-button-pip-color: #fff;
378
+ // $dropdown-button-pip-color-alt: #333;
379
+
380
+ // Tiny dropdown buttons
381
+
382
+ // $dropdown-button-padding-tny: $button-tny * 5;
383
+ // $dropdown-button-pip-size-tny: $button-tny;
384
+ // $dropdown-button-pip-right-tny: $button-tny * 2;
385
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
386
+
387
+ // Small dropdown buttons
388
+
389
+ // $dropdown-button-padding-sml: $button-sml * 5;
390
+ // $dropdown-button-pip-size-sml: $button-sml;
391
+ // $dropdown-button-pip-right-sml: $button-sml * 2;
392
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
393
+
394
+ // Medium dropdown buttons
395
+
396
+ // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
397
+ // $dropdown-button-pip-size-med: $button-med - emCalc(3px);
398
+ // $dropdown-button-pip-right-med: $button-med * 2;
399
+ // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
400
+
401
+ // Large dropdown buttons
402
+
403
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
404
+ // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
405
+ // $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
406
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
407
+
408
+ //
409
+ // Split Button Variables
410
+ //
411
+
412
+ // Shared styles for Split Buttons
413
+
414
+ // $split-button-function-factor: 15%;
415
+ // $split-button-pip-color: #fff;
416
+ // $split-button-pip-color-alt: #333;
417
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
418
+
419
+ // Tiny split buttons
420
+
421
+ // $split-button-padding-tny: $button-tny * 9;
422
+ // $split-button-span-width-tny: $button-tny * 6.5;
423
+ // $split-button-pip-size-tny: $button-tny;
424
+ // $split-button-pip-top-tny: $button-tny * 2;
425
+ // $split-button-pip-left-tny: emCalc(-5px);
426
+
427
+ // Small split buttons
428
+
429
+ // $split-button-padding-sml: $button-sml * 7;
430
+ // $split-button-span-width-sml: $button-sml * 5;
431
+ // $split-button-pip-size-sml: $button-sml;
432
+ // $split-button-pip-top-sml: $button-sml * 1.5;
433
+ // $split-button-pip-left-sml: emCalc(-9px);
434
+
435
+ // Medium split buttons
436
+
437
+ // $split-button-padding-med: $button-med * 6.4;
438
+ // $split-button-span-width-med: $button-med * 4;
439
+ // $split-button-pip-size-med: $button-med - emCalc(3px);
440
+ // $split-button-pip-top-med: $button-med * 1.5;
441
+ // $split-button-pip-left-med: emCalc(-9px);
442
+
443
+ // Large split buttons
444
+
445
+ // $split-button-padding-lrg: $button-lrg * 6;
446
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
447
+ // $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
448
+ // $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
449
+ // $split-button-pip-left-lrg: emCalc(-9px);
450
+
451
+ //
452
+ // Alert Variables
453
+ //
454
+
455
+ // Alert padding
456
+
457
+ // $alert-padding-top: emCalc(11px);
458
+ // $alert-padding-default-float: $alert-padding-top;
459
+ // $alert-padding-opposite-direction: $alert-padding-top + emCalc(10px);
460
+ // $alert-padding-bottom: $alert-padding-top + emCalc(1px);
461
+
462
+ // Text style
463
+
464
+ // $alert-font-weight: bold;
465
+ // $alert-font-size: emCalc(14px);
466
+ // $alert-font-color: #fff;
467
+ // $alert-font-color-alt: darken($secondary-color, 60%);
468
+
469
+ // Hover effect
470
+
471
+ // $alert-function-factor: 10%;
472
+
473
+ // Border Styles
474
+
475
+ // $alert-border-style: solid;
476
+ // $alert-border-width: 1px;
477
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
478
+ // $alert-bottom-margin: emCalc(20px);
479
+
480
+ // Close Button style
481
+
482
+ // $alert-close-color: #333;
483
+ // $alert-close-position: emCalc(5px);
484
+ // $alert-close-font-size: emCalc(22px);
485
+ // $alert-close-opacity: 0.3;
486
+ // $alert-close-opacity-hover: 0.5;
487
+ // $alert-close-padding: 5px 4px 4px;
488
+
489
+ // Border radius
490
+
491
+ // $alert-radius: $global-radius;
492
+
493
+
494
+ //
495
+ // Breadcrumb Variables
496
+ //
497
+
498
+ // Background color for the breadcrumb container.
499
+
500
+ // $crumb-bg: lighten($secondary-color, 5%);
501
+
502
+ // Padding around the breadcrumbs.
503
+
504
+ // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
505
+ // $crumb-side-padding: emCalc(12px);
506
+
507
+ // Border styles.
508
+
509
+ // $crumb-function-factor: 10%;
510
+ // $crumb-border-size: 1px;
511
+ // $crumb-border-style: solid;
512
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
513
+ // $crumb-radius: $global-radius;
514
+
515
+ // Various text styles for breadcrumbs.
516
+
517
+ // $crumb-font-size: emCalc(11px);
518
+ // $crumb-font-color: $primary-color;
519
+ // $crumb-font-color-current: #333;
520
+ // $crumb-font-color-unavailable: #999;
521
+ // $crumb-font-transform: uppercase;
522
+ // $crumb-link-decor: underline;
523
+
524
+ // Slash between breadcrumbs
525
+
526
+ // $crumb-slash-color: #aaa;
527
+ // $crumb-slash: "/";
528
+
529
+ //
530
+ // Clearing Variables
531
+ //
532
+
533
+ // Background colors for parts of Clearing.
534
+
535
+ // $clearing-bg: #111;
536
+ // $clearing-caption-bg: $clearing-bg;
537
+ // $clearing-carousel-bg: #111;
538
+ // $clearing-img-bg: $clearing-bg;
539
+
540
+ // Close button
541
+
542
+ // $clearing-close-color: #fff;
543
+ // $clearing-close-size: 40px;
544
+
545
+ // Style the arrows
546
+
547
+ // $clearing-arrow-size: 16px;
548
+ // $clearing-arrow-color: $clearing-close-color;
549
+
550
+ // Style captions
551
+
552
+ // $clearing-caption-font-color: #fff;
553
+ // $clearing-caption-padding: 10px 30px;
554
+
555
+ // Make the image and carousel height and style
556
+
557
+ // $clearing-active-img-height: 75%;
558
+ // $clearing-carousel-height: 150px;
559
+ // $clearing-carousel-thumb-width: 175px;
560
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
561
+
562
+ //
563
+ // Custom Form Variables
564
+ //
565
+
566
+ // Basic form styles input styles
567
+
568
+ // $custom-form-border-color: #ccc;
569
+ // $custom-form-border-size: 1px;
570
+ // $custom-form-bg: #fff;
571
+ // $custom-form-bg-disabled: #ddd;
572
+ // $custom-form-input-size: 16px;
573
+ // $custom-form-check-color: #222;
574
+ // $custom-form-check-size: 14px;
575
+ // $custom-form-radio-size: 8px;
576
+ // $custom-form-checkbox-radius: 0px;
577
+
578
+ // Custom select form element.
579
+
580
+ // $custom-select-bg: #fff;
581
+ // $custom-select-fade-to-color: #f3f3f3;
582
+ // $custom-select-border-color: #ddd;
583
+ // $custom-select-triangle-color: #aaa;
584
+ // $custom-select-triangle-color-open: #222;
585
+ // $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
586
+ // $custom-select-margin-bottom: emCalc(20px);
587
+ // $custom-select-font-color-selected: #141414;
588
+ // $custom-select-disabled-color: #888;
589
+
590
+ // Custom select dropdown element.
591
+
592
+ // $custom-dropdown-height: 200px;
593
+ // $custom-dropdown-bg: #fff;
594
+ // $custom-dropdown-border-color: darken(#fff, 20%);
595
+ // $custom-dropdown-border-width: 1px;
596
+ // $custom-dropdown-border-style: solid;
597
+ // $custom-dropdown-font-color: #555;
598
+ // $custom-dropdown-font-size: emCalc(14px);
599
+ // $custom-dropdown-color-selected: #eeeeee;
600
+ // $custom-dropdown-font-color-selected: #000;
601
+ // $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
602
+ // $custom-dropdown-offset-top: none;
603
+ // $custom-dropdown-list-padding: emCalc(4px);
604
+ // $custom-dropdown-left-padding: emCalc(6px);
605
+ // $custom-dropdown-right-padding: emCalc(38px);
606
+ // $custom-dropdown-list-item-min-height: emCalc(24px);
607
+
608
+ //
609
+ // Dropdown Variables
610
+ //
611
+
612
+ // Height and width styles.
613
+
614
+ // $f-dropdown-max-width: 200px;
615
+ // $f-dropdown-height: auto;
616
+ // $f-dropdown-max-height: none;
617
+ // $f-dropdown-margin-top: 2px;
618
+
619
+ // Background color
620
+
621
+ // $f-dropdown-bg: #fff;
622
+
623
+ // Border styles for dropdowns.
624
+
625
+ // $f-dropdown-border-style: solid;
626
+ // $f-dropdown-border-width: 1px;
627
+ // $f-dropdown-border-color: darken(#fff, 20%);
628
+
629
+ // Triangle pip.
630
+
631
+ // $f-dropdown-triangle-size: 6px;
632
+ // $f-dropdown-triangle-color: #fff;
633
+ // $f-dropdown-triangle-side-offset: 10px;
634
+
635
+ // List elements.
636
+
637
+ // $f-dropdown-list-style: none;
638
+ // $f-dropdown-font-color: #555;
639
+ // $f-dropdown-font-size: emCalc(14px);
640
+ // $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
641
+ // $f-dropdown-line-height: emCalc(18px);
642
+ // $f-dropdown-list-hover-bg: #eeeeee;
643
+ // $dropdown-mobile-left: 0;
644
+
645
+ // When the dropdown has custom content.
646
+
647
+ // $f-dropdown-content-padding: emCalc(20px);
648
+
649
+ //
650
+ // Flex Video Variables
651
+ //
652
+
653
+ // Video container padding and margins
654
+
655
+ // $flex-video-padding-top: emCalc(25px);
656
+ // $flex-video-padding-bottom: 67.5%;
657
+ // $flex-video-margin-bottom: emCalc(16px);
658
+
659
+ // Widescreen bottom padding
660
+
661
+ // $flex-video-widescreen-padding-bottom: 57.25%;
662
+
663
+ //
664
+ // Inline List Variables
665
+ //
666
+
667
+ // Margins and padding of the inline list.
668
+
669
+ // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
670
+ // $inline-list-margin: 0 0;
671
+ // $inline-list-padding: 0;
672
+
673
+ // Overflow of the inline list.
674
+
675
+ // $inline-list-overflow: hidden;
676
+
677
+ // List items
678
+
679
+ // $inline-list-display: block;
680
+
681
+ // Elments within list items
682
+
683
+ // $inline-list-children-display: block;
684
+
685
+ //
686
+ // Joyride Variables
687
+ //
688
+
689
+ // Joyride styles
690
+
691
+ // $joyride-tip-bg: rgb(0,0,0);
692
+ // $joyride-tip-default-width: 300px;
693
+ // $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
694
+ // $joyride-tip-border: solid 1px #555;
695
+ // $joyride-tip-radius: 4px;
696
+ // $joyride-tip-position-offset: 22px;
697
+
698
+ // Tip font styles
699
+
700
+ // $joyride-tip-font-color: #fff;
701
+ // $joyride-tip-font-size: emCalc(14px);
702
+ // $joyride-tip-header-weight: bold;
703
+
704
+ // Changes the nub size
705
+
706
+ // $joyride-tip-nub-size: 14px;
707
+
708
+ // Adjusts the styles for the timer when its enabled
709
+
710
+ // $joyride-tip-timer-width: 50px;
711
+ // $joyride-tip-timer-height: 3px;
712
+ // $joyride-tip-timer-color: #666;
713
+
714
+ // Changes up the styles for the close button
715
+
716
+ // $joyride-tip-close-color: #777;
717
+ // $joyride-tip-close-size: 30px;
718
+ // $joyride-tip-close-weight: normal;
719
+
720
+ // When Joyride is filling the screen, style for the bg
721
+
722
+ // $joyride-screenfill: rgba(0,0,0,0.5);
723
+
724
+ //
725
+ // Keystroke Variables
726
+ //
727
+
728
+ // Text styles.
729
+
730
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
731
+ // $keystroke-font-size: emCalc(15px);
732
+ // $keystroke-font-color: #222;
733
+ // $keystroke-font-color-alt: #fff;
734
+ // $keystroke-function-factor: 7%;
735
+
736
+ // Keystroke padding.
737
+
738
+ // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
739
+
740
+ // Background and border styles.
741
+
742
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
743
+ // $keystroke-border-style: solid;
744
+ // $keystroke-border-width: 1px;
745
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
746
+ // $keystroke-radius: $global-radius;
747
+
748
+ //
749
+ // Label Variables
750
+ //
751
+
752
+ // Style the labels
753
+
754
+ // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
755
+ // $label-radius: $global-radius;
756
+
757
+ // We use these to style the label text
758
+
759
+ // $label-font-sizing: emCalc(14px);
760
+ // $label-font-weight: bold;
761
+ // $label-font-color: #333;
762
+ // $label-font-color-alt: #fff;
763
+
764
+ //
765
+ // Magellan Variables
766
+ //
767
+
768
+ // Basic visual styles
769
+
770
+ // $magellan-bg: #fff;
771
+ // $magellan-padding: 10px;
772
+
773
+ //
774
+ // Orbit Settings
775
+ //
776
+
777
+ // Caption styles
778
+
779
+ // $orbit-container-bg: #f5f5f5;
780
+ // $orbit-caption-bg-old: rgb(0,0,0);
781
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
782
+ // $orbit-caption-font-color: #fff;
783
+
784
+ // Left/right nav styles
785
+
786
+ // $orbit-nav-bg-old: rgb(0,0,0);
787
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
788
+
789
+ // Timer styles
790
+
791
+ // $orbit-timer-bg-old: rgb(0,0,0);
792
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
793
+
794
+ // Bullet nav styles
795
+
796
+ // $orbit-bullet-nav-color: #999;
797
+ // $orbit-bullet-nav-color-active: #222;
798
+
799
+ // Slide numbers
800
+
801
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
802
+ // $orbit-slide-number-font-color: #fff;
803
+ // $orbit-slide-number-padding: emCalc(5px);
804
+
805
+ // Graceful Loading Wrapper and preloader
806
+
807
+ // $wrapper-class: "slideshow-wrapper";
808
+ // $preloader-class: "preloader" ;
809
+
810
+ //
811
+ // Pagination Variables
812
+ //
813
+
814
+ // Pagination container
815
+
816
+ // $pagination-height: emCalc(24px);
817
+ // $pagination-margin: emCalc(-5px);
818
+
819
+ // List-item properties
820
+
821
+ // $pagination-li-float: $default-float;
822
+ // $pagination-li-height: emCalc(24px);
823
+ // $pagination-li-font-color: #222;
824
+ // $pagination-li-font-size: emCalc(14px);
825
+ // $pagination-li-margin: emCalc(5px);
826
+
827
+ // Pagination anchor links
828
+
829
+ // $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
830
+ // $pagination-link-font-color: #999;
831
+ // $pagination-link-active-bg: darken(#fff, 10%);
832
+
833
+ // Disabled anchor links
834
+
835
+ // $pagination-link-unavailable-cursor: $cursor-default-value;
836
+ // $pagination-link-unavailable-font-color: #999;
837
+ // $pagination-link-unavailable-bg-active: transparent;
838
+
839
+ // Currently selected anchor links
840
+
841
+ // $pagination-link-current-background: $primary-color;
842
+ // $pagination-link-current-font-color: #fff;
843
+ // $pagination-link-current-font-weight: bold;
844
+ // $pagination-link-current-cursor: $cursor-default-value;
845
+ // $pagination-link-current-active-bg: $primary-color;
846
+
847
+ //
848
+ // Panel Variables
849
+ //
850
+
851
+ // Background and border styles
852
+
853
+ // $panel-bg: darken(#fff, 5%);
854
+ // $panel-border-style: solid;
855
+ // $panel-border-size: 1px;
856
+
857
+ // Control how much we darken things on hover
858
+
859
+ // $panel-function-factor: 10%;
860
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
861
+
862
+ // Inner padding and bottom margin
863
+
864
+ // $panel-margin-bottom: emCalc(20px);
865
+ // $panel-padding: emCalc(20px);
866
+
867
+ // Font colors
868
+
869
+ // $panel-font-color: #333;
870
+ // $panel-font-color-alt: #fff;
871
+ // $panel-header-adjust: true; // Set to false to keep default header styles
872
+
873
+ //
874
+ // Pricing Table Variables
875
+ //
876
+
877
+ // Border color
878
+
879
+ // $price-table-border: solid 1px #ddd;
880
+
881
+ // Bottom margin of the pricing table
882
+
883
+ // $price-table-margin-bottom: emCalc(20px);
884
+
885
+ // Control the title styles
886
+
887
+ // $price-title-bg: #ddd;
888
+ // $price-title-padding: emCalc(15px) emCalc(20px);
889
+ // $price-title-align: center;
890
+ // $price-title-color: #333;
891
+ // $price-title-weight: bold;
892
+ // $price-title-size: emCalc(16px);
893
+
894
+ // Control the price styles
895
+
896
+ // $price-money-bg: #eee;
897
+ // $price-money-padding: emCalc(15px) emCalc(20px);
898
+ // $price-money-align: center;
899
+ // $price-money-color: #333;
900
+ // $price-money-weight: normal;
901
+ // $price-money-size: emCalc(20px);
902
+
903
+ // Description styles
904
+
905
+ // $price-bg: #fff;
906
+ // $price-desc-color: #777;
907
+ // $price-desc-padding: emCalc(15px);
908
+ // $price-desc-align: center;
909
+ // $price-desc-font-size: emCalc(12px);
910
+ // $price-desc-weight: normal;
911
+ // $price-desc-line-height: 1.4;
912
+ // $price-desc-bottom-border: dotted 1px #ddd;
913
+
914
+ // List item styles
915
+
916
+ // $price-item-color: #333;
917
+ // $price-item-padding: emCalc(15px);
918
+ // $price-item-align: center;
919
+ // $price-item-font-size: emCalc(14px);
920
+ // $price-item-weight: normal;
921
+ // $price-item-bottom-border: dotted 1px #ddd;
922
+
923
+ // CTA area styles
924
+
925
+ // $price-cta-bg: #f5f5f5;
926
+ // $price-cta-align: center;
927
+ // $price-cta-padding: emCalc(20px) emCalc(20px) 0;
928
+
929
+ //
930
+ // Progress Bar Variables
931
+ //
932
+
933
+ // Progress bar height
934
+
935
+ // $progress-bar-height: emCalc(25px);
936
+ // $progress-bar-color: transparent;
937
+
938
+ // Border styles
939
+
940
+ // $progress-bar-border-color: darken(#fff, 20%);
941
+ // $progress-bar-border-size: 1px;
942
+ // $progress-bar-border-style: solid;
943
+ // $progress-bar-border-radius: $global-radius;
944
+
945
+ // Margin & padding
946
+
947
+ // $progress-bar-pad: emCalc(2px);
948
+ // $progress-bar-margin-bottom: emCalc(10px);
949
+
950
+ // Meter colors
951
+
952
+ // $progress-meter-color: $primary-color;
953
+ // $progress-meter-secondary-color: $secondary-color;
954
+ // $progress-meter-success-color: $success-color;
955
+ // $progress-meter-alert-color: $alert-color;
956
+
957
+ //
958
+ // Reveal Variables
959
+ //
960
+
961
+ // Reveal overlay.
962
+
963
+ // $reveal-overlay-bg: rgba(#000, .45);
964
+ // $reveal-overlay-bg-old: #000;
965
+
966
+ // Modal itself.
967
+
968
+ // $reveal-modal-bg: #fff;
969
+ // $reveal-position-top: 50px;
970
+ // $reveal-default-width: 80%;
971
+ // $reveal-modal-padding: emCalc(20px);
972
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
973
+
974
+ // Reveal close button
975
+
976
+ // $reveal-close-font-size: emCalc(22px);
977
+ // $reveal-close-top: emCalc(8px);
978
+ // $reveal-close-side: emCalc(11px);
979
+ // $reveal-close-color: #aaa;
980
+ // $reveal-close-weight: bold;
981
+
982
+ // Modal border
983
+
984
+ // $reveal-border-style: solid;
985
+ // $reveal-border-width: 1px;
986
+ // $reveal-border-color: #666;
987
+
988
+ // $reveal-modal-class: "reveal-modal";
989
+ // $close-reveal-modal-class: "close-reveal-modal";
990
+
991
+ //
992
+ // Section Variables
993
+ //
994
+
995
+ // Padding and hover factor
996
+
997
+ // $section-title-padding: emCalc(15px);
998
+ // $section-content-padding: emCalc(15px);
999
+ // $section-function-factor: 10%;
1000
+
1001
+ // Titles
1002
+
1003
+ // $section-title-color: #333;
1004
+ // $section-title-bg: #efefef;
1005
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
1006
+ // $section-title-bg-active-tabs: #fff;
1007
+ // $section-title-bg-hover: darken($section-title-bg, $section-function-factor/2);
1008
+
1009
+ // Border size
1010
+
1011
+ // $section-border-size: 1px;
1012
+ // $section-border-style: solid;
1013
+ // $section-border-color: #ccc;
1014
+
1015
+ // Font controls
1016
+
1017
+ // $section-font-size: emCalc(14px);
1018
+
1019
+ // Control the color of the background and some size options
1020
+
1021
+ // $section-content-bg: #fff;
1022
+ // $section-vertical-nav-min-width: emCalc(200px);
1023
+ // $section-vertical-tabs-title-width: emCalc(200px);
1024
+ // $section-bottom-margin: emCalc(20px);
1025
+
1026
+ // $title-selector: ".title";
1027
+ // $content-selector: ".content";
1028
+
1029
+ //
1030
+ // Side Nav Variables
1031
+ //
1032
+
1033
+ // Padding
1034
+
1035
+ // $side-nav-padding: emCalc(14px) 0;
1036
+
1037
+ // List styles
1038
+
1039
+ // $side-nav-list-type: none;
1040
+ // $side-nav-list-position: inside;
1041
+ // $side-nav-list-margin: 0 0 emCalc(7px) 0;
1042
+
1043
+ // Link styles
1044
+
1045
+ // $side-nav-link-color: $primary-color;
1046
+ // $side-nav-link-color-active: lighten(#000, 30%);
1047
+ // $side-nav-font-size: emCalc(14px);
1048
+ // $side-nav-font-weight: bold;
1049
+
1050
+ // Border styles
1051
+
1052
+ // $side-nav-divider-size: 1px;
1053
+ // $side-nav-divider-style: solid;
1054
+ // $side-nav-divider-color: darken(#fff, 10%);
1055
+
1056
+ //
1057
+ // Sub Nav Variables
1058
+ //
1059
+
1060
+ // Margin and padding
1061
+
1062
+ // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
1063
+ // $sub-nav-list-padding-top: emCalc(4px);
1064
+
1065
+ // Definition
1066
+
1067
+ // $sub-nav-font-size: emCalc(14px);
1068
+ // $sub-nav-font-color: #999;
1069
+ // $sub-nav-font-weight: normal;
1070
+ // $sub-nav-text-decoration: none;
1071
+ // $sub-nav-border-radius: 1000px;
1072
+
1073
+ // Active item styles
1074
+
1075
+ // $sub-nav-active-font-weight: bold;
1076
+ // $sub-nav-active-bg: $primary-color;
1077
+ // $sub-nav-active-color: #fff;
1078
+ // $sub-nav-active-padding: emCalc(3px) emCalc(9px);
1079
+ // $sub-nav-active-cursor: $cursor-default-value;
1080
+
1081
+ //
1082
+ // Switch Variables
1083
+ //
1084
+
1085
+ // Border styles and background colors for the switch container
1086
+
1087
+ // $switch-border-color: darken(#fff, 20%);
1088
+ // $switch-border-style: solid;
1089
+ // $switch-border-width: 1px;
1090
+ // $switch-bg: #fff;
1091
+
1092
+ // Switch heights for our default classes
1093
+
1094
+ // $switch-height-tny: 22px;
1095
+ // $switch-height-sml: 28px;
1096
+ // $switch-height-med: 36px;
1097
+ // $switch-height-lrg: 44px;
1098
+ // $switch-bottom-margin: emCalc(20px);
1099
+
1100
+ // Font sizes for our classes.
1101
+
1102
+ // $switch-font-size-tny: 11px;
1103
+ // $switch-font-size-sml: 12px;
1104
+ // $switch-font-size-med: 14px;
1105
+ // $switch-font-size-lrg: 17px;
1106
+ // $switch-label-side-padding: 6px;
1107
+
1108
+ // Switch-paddle
1109
+
1110
+ // $switch-paddle-bg: #fff;
1111
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
1112
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
1113
+ // $switch-paddle-border-width: 1px;
1114
+ // $switch-paddle-border-style: solid;
1115
+ // $switch-paddle-transition-speed: .1s;
1116
+ // $switch-paddle-transition-ease: ease-out;
1117
+ // $switch-positive-color: lighten($success-color, 50%);
1118
+ // $switch-negative-color: #f5f5f5;
1119
+
1120
+ // Outline Style for tabbing through switches
1121
+
1122
+ // $switch-label-outline: 1px dotted #888;
1123
+
1124
+ //
1125
+ // Table Variables
1126
+ //
1127
+
1128
+ // Background color for the table and even rows
1129
+
1130
+ // $table-bg: #fff;
1131
+ // $table-even-row-bg: #f9f9f9;
1132
+
1133
+ // Table cell border style
1134
+
1135
+ // $table-border-style: solid;
1136
+ // $table-border-size: 1px;
1137
+ // $table-border-color: #ddd;
1138
+
1139
+ // Table head styles
1140
+
1141
+ // $table-head-bg: #f5f5f5;
1142
+ // $table-head-font-size: emCalc(14px);
1143
+ // $table-head-font-color: #222;
1144
+ // $table-head-font-weight: bold;
1145
+ // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
1146
+
1147
+ // Row padding and font styles
1148
+
1149
+ // $table-row-padding: emCalc(9px) emCalc(10px);
1150
+ // $table-row-font-size: emCalc(14px);
1151
+ // $table-row-font-color: #222;
1152
+ // $table-line-height: emCalc(18px);
1153
+
1154
+ // Display and margin of tables
1155
+
1156
+ // $table-display: table-cell;
1157
+ // $table-margin-bottom: emCalc(20px);
1158
+
1159
+ //
1160
+ // Image Thumbnail Variables
1161
+ //
1162
+
1163
+ // Border styles
1164
+
1165
+ // $thumb-border-style: solid;
1166
+ // $thumb-border-width: 4px;
1167
+ // $thumb-border-color: #fff;
1168
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1169
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1170
+
1171
+ // Radius and transition speed for thumbs
1172
+
1173
+ // $thumb-radius: $global-radius;
1174
+ // $thumb-transition-speed: 200ms;
1175
+
1176
+ //
1177
+ // Tooltip Variables
1178
+ //
1179
+
1180
+ // $has-tip-border-bottom: dotted 1px #ccc;
1181
+ // $has-tip-font-weight: bold;
1182
+ // $has-tip-font-color: #333;
1183
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
1184
+ // $has-tip-font-color-hover: $primary-color;
1185
+ // $has-tip-cursor-type: help;
1186
+
1187
+ // $tooltip-padding: emCalc(8px);
1188
+ // $tooltip-bg: #000;
1189
+ // $tooltip-font-size: emCalc(15px);
1190
+ // $tooltip-font-weight: bold;
1191
+ // $tooltip-font-color: #fff;
1192
+ // $tooltip-line-height: 1.3;
1193
+ // $tooltip-close-font-size: emCalc(10px);
1194
+ // $tooltip-close-font-weight: normal;
1195
+ // $tooltip-close-font-color: #888;
1196
+ // $tooltip-font-size-sml: emCalc(14px);
1197
+ // $tooltip-radius: $global-radius;
1198
+ // $tooltip-pip-size: 5px;
1199
+
1200
+ //
1201
+ // Top Bar Variables
1202
+ //
1203
+
1204
+ // Background color for the top bar
1205
+
1206
+ // $topbar-bg: #111 !default;
1207
+
1208
+ // Height and margin
1209
+
1210
+ // $topbar-height: 45px;
1211
+ // $topbar-margin-bottom: emCalc(30px);
1212
+
1213
+ // Control Input height for top bar
1214
+
1215
+ // $topbar-input-height: 2.45em;
1216
+
1217
+ // Controlling the styles for the title in the top bar
1218
+
1219
+ // $topbar-title-weight: bold;
1220
+ // $topbar-title-font-size: emCalc(17px);
1221
+
1222
+ // Style the top bar dropdown elements
1223
+
1224
+ // $topbar-dropdown-bg: #222;
1225
+ // $topbar-dropdown-link-color: #fff;
1226
+ // $topbar-dropdown-link-bg: lighten($topbar-bg, 5%);
1227
+ // $topbar-dropdown-toggle-size: 5px;
1228
+ // $topbar-dropdown-toggle-color: #fff;
1229
+ // $topbar-dropdown-toggle-alpha: 0.5;
1230
+
1231
+ // Set the link colors and styles for top-level nav
1232
+
1233
+ // $topbar-link-color: #fff;
1234
+ // $topbar-link-color-hover: #fff;
1235
+ // $topbar-link-color-active: #fff;
1236
+ // $topbar-link-weight: bold;
1237
+ // $topbar-link-font-size: emCalc(13px);
1238
+ // $topbar-link-hover-lightness: -30%; // Darken by 30%
1239
+ // $topbar-link-bg-hover: darken($topbar-bg, 3%);
1240
+ // $topbar-link-bg-active: darken($topbar-bg, 3%);
1241
+
1242
+ // $topbar-dropdown-label-color: #555;
1243
+ // $topbar-dropdown-label-text-transform: uppercase;
1244
+ // $topbar-dropdown-label-font-weight: bold;
1245
+ // $topbar-dropdown-label-font-size: emCalc(10px);
1246
+
1247
+ // Top menu icon styles
1248
+
1249
+ // $topbar-menu-link-transform: uppercase;
1250
+ // $topbar-menu-link-font-size: emCalc(13px);
1251
+ // $topbar-menu-link-weight: bold;
1252
+ // $topbar-menu-link-color: #fff;
1253
+ // $topbar-menu-icon-color: #fff;
1254
+ // $topbar-menu-link-color-toggled: #888;
1255
+ // $topbar-menu-icon-color-toggled: #888;
1256
+
1257
+ // Transitions and breakpoint styles
1258
+
1259
+ // $topbar-transition-speed: 300ms;
1260
+ // $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1261
+ // $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
1262
+
1263
+ // Divider Styles
1264
+
1265
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%);
1266
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%);
1267
+
1268
+ // Sticky Class
1269
+
1270
+ // $topbar-sticky-class: ".sticky";