zurb-foundation-5 5.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.bowerrc +3 -0
- data/.editorconfig +9 -0
- data/.gitignore +46 -0
- data/.travis.yml +34 -0
- data/CONTRIBUTING.md +55 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +16 -0
- data/Gruntfile.js +222 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/bower.json +20 -0
- data/composer.json +9 -0
- data/foundation.gemspec +21 -0
- data/humans.txt +8 -0
- data/js/foundation/foundation.abide.js +299 -0
- data/js/foundation/foundation.accordion.js +54 -0
- data/js/foundation/foundation.alert.js +43 -0
- data/js/foundation/foundation.clearing.js +531 -0
- data/js/foundation/foundation.dropdown.js +306 -0
- data/js/foundation/foundation.equalizer.js +68 -0
- data/js/foundation/foundation.interchange.js +331 -0
- data/js/foundation/foundation.joyride.js +849 -0
- data/js/foundation/foundation.js +609 -0
- data/js/foundation/foundation.magellan.js +173 -0
- data/js/foundation/foundation.offcanvas.js +50 -0
- data/js/foundation/foundation.orbit.js +606 -0
- data/js/foundation/foundation.reveal.js +427 -0
- data/js/foundation/foundation.slider.js +200 -0
- data/js/foundation/foundation.tab.js +168 -0
- data/js/foundation/foundation.tooltip.js +272 -0
- data/js/foundation/foundation.topbar.js +422 -0
- data/karma.conf.js +114 -0
- data/lib/foundation/engine.rb +20 -0
- data/lib/foundation/generators/USAGE +15 -0
- data/lib/foundation/generators/install_generator.rb +54 -0
- data/lib/foundation/generators/templates/application.html.erb +47 -0
- data/lib/foundation/generators/templates/application.html.haml +31 -0
- data/lib/foundation/generators/templates/application.html.slim +35 -0
- data/lib/foundation/sprockets.rb +4 -0
- data/lib/foundation/version.rb +3 -0
- data/lib/scss.js +114 -0
- data/lib/zurb-foundation.rb +33 -0
- data/package.json +48 -0
- data/robots.txt +4 -0
- data/run-tests.sh +83 -0
- data/sache.json +5 -0
- data/scss/foundation.scss +45 -0
- data/scss/foundation/_functions.scss +101 -0
- data/scss/foundation/_settings.scss +1279 -0
- data/scss/foundation/components/_accordion.scss +52 -0
- data/scss/foundation/components/_alert-boxes.scss +126 -0
- data/scss/foundation/components/_block-grid.scss +132 -0
- data/scss/foundation/components/_breadcrumbs.scss +127 -0
- data/scss/foundation/components/_button-groups.scss +108 -0
- data/scss/foundation/components/_buttons.scss +222 -0
- data/scss/foundation/components/_clearing.scss +247 -0
- data/scss/foundation/components/_dropdown-buttons.scss +129 -0
- data/scss/foundation/components/_dropdown.scss +248 -0
- data/scss/foundation/components/_flex-video.scss +51 -0
- data/scss/foundation/components/_forms.scss +496 -0
- data/scss/foundation/components/_global.scss +365 -0
- data/scss/foundation/components/_grid.scss +261 -0
- data/scss/foundation/components/_inline-lists.scss +56 -0
- data/scss/foundation/components/_joyride.scss +220 -0
- data/scss/foundation/components/_keystrokes.scss +61 -0
- data/scss/foundation/components/_labels.scss +104 -0
- data/scss/foundation/components/_magellan.scss +34 -0
- data/scss/foundation/components/_offcanvas.scss +381 -0
- data/scss/foundation/components/_orbit.scss +415 -0
- data/scss/foundation/components/_pagination.scss +150 -0
- data/scss/foundation/components/_panels.scss +91 -0
- data/scss/foundation/components/_pricing-tables.scss +150 -0
- data/scss/foundation/components/_progress-bars.scss +79 -0
- data/scss/foundation/components/_range-slider.scss +148 -0
- data/scss/foundation/components/_reveal-new.scss +0 -0
- data/scss/foundation/components/_reveal.scss +216 -0
- data/scss/foundation/components/_side-nav.scss +93 -0
- data/scss/foundation/components/_split-buttons.scss +191 -0
- data/scss/foundation/components/_sub-nav.scss +125 -0
- data/scss/foundation/components/_switch.scss +294 -0
- data/scss/foundation/components/_tables.scss +97 -0
- data/scss/foundation/components/_tabs.scss +105 -0
- data/scss/foundation/components/_thumbs.scss +68 -0
- data/scss/foundation/components/_tooltips.scss +140 -0
- data/scss/foundation/components/_top-bar.scss +640 -0
- data/scss/foundation/components/_type.scss +493 -0
- data/scss/foundation/components/_visibility.scss +345 -0
- data/scss/foundation/test.html +0 -0
- data/scss/normalize.scss +423 -0
- data/spec/abide/abide.js +173 -0
- data/spec/abide/advanced.html +22 -0
- data/spec/abide/basic.html +13 -0
- data/spec/accordion/accordion.js +94 -0
- data/spec/accordion/basic.html +39 -0
- data/spec/accordion/grid.html +44 -0
- data/spec/accordion/multiexpand.html +20 -0
- data/spec/alert/alert.js +35 -0
- data/spec/alert/basic.html +4 -0
- data/spec/clearing/222.gif +0 -0
- data/spec/clearing/777.gif +0 -0
- data/spec/clearing/basic.html +5 -0
- data/spec/clearing/ccc.gif +0 -0
- data/spec/clearing/clearing.js +55 -0
- data/spec/dropdown/basic.html +10 -0
- data/spec/dropdown/dropdown.js +65 -0
- data/spec/equalizer/basic.html +24 -0
- data/spec/equalizer/equalizer.js +30 -0
- data/spec/framework/framework.js +14 -0
- data/spec/helpers.js +37 -0
- data/spec/interchange/basic.html +3 -0
- data/spec/interchange/interchange.js +60 -0
- data/spec/joyride/joyride.js +14 -0
- data/spec/magellan/magellan.js +14 -0
- data/spec/offcanvas/offcanvas.js +14 -0
- data/spec/orbit/orbit.js +14 -0
- data/spec/reveal/reveal.js +14 -0
- data/spec/tab/tab.js +14 -0
- data/spec/tooltip/tooltip.js +14 -0
- data/spec/topbar/multidropdown.html +60 -0
- data/spec/topbar/sticky.html +31 -0
- data/spec/topbar/topbar.js +96 -0
- metadata +238 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
root = File.join(File.dirname(__FILE__), "..")
|
2
|
+
require "foundation/version"
|
3
|
+
|
4
|
+
if defined?(Rails::Generators::Base)
|
5
|
+
require "foundation/generators/install_generator"
|
6
|
+
end
|
7
|
+
|
8
|
+
module Foundation
|
9
|
+
def self.root
|
10
|
+
File.join(File.dirname(__FILE__), "..")
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.js_path
|
14
|
+
File.join(File.dirname(__FILE__), "..", "js")
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.scss_path
|
18
|
+
File.join(File.dirname(__FILE__), "..", "scss")
|
19
|
+
end
|
20
|
+
|
21
|
+
if defined?(Rails::Engine)
|
22
|
+
require "foundation/engine"
|
23
|
+
elsif defined?(Sprockets)
|
24
|
+
require "foundation/sprockets"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
if defined?(Compass)
|
29
|
+
Compass::Frameworks.register("foundation",
|
30
|
+
:stylesheets_directory => File.join(root,"scss"),
|
31
|
+
:templates_directory => File.join(root,"templates")
|
32
|
+
)
|
33
|
+
end
|
data/package.json
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
{
|
2
|
+
"name": "zurb-foundation",
|
3
|
+
"version": "5.2.2",
|
4
|
+
"devDependencies": {
|
5
|
+
"assemble": "~0.4.37",
|
6
|
+
"grunt": "~0.4.4",
|
7
|
+
"grunt-contrib-clean": "~0.5.0",
|
8
|
+
"grunt-contrib-compress": "~0.7.0",
|
9
|
+
"grunt-contrib-concat": "~0.3.0",
|
10
|
+
"grunt-contrib-copy": "~0.5.0",
|
11
|
+
"grunt-contrib-jasmine": "~0.6.3",
|
12
|
+
"grunt-contrib-jst": "~0.6.0",
|
13
|
+
"grunt-contrib-uglify": "~0.4.0",
|
14
|
+
"grunt-contrib-watch": "~0.6.1",
|
15
|
+
"grunt-karma": "~0.6.2",
|
16
|
+
"grunt-newer": "~0.7.0",
|
17
|
+
"grunt-rsync": "~0.5.0",
|
18
|
+
"grunt-sass": "~0.11.0",
|
19
|
+
"handlebars-helper-rel": "~0.1.2",
|
20
|
+
"handlebars-helper-slugify": "~0.2.0",
|
21
|
+
"highlight.js": "~7.3.0",
|
22
|
+
"jasmine-jquery": "~1.3.3",
|
23
|
+
"karma": "~0.10.4",
|
24
|
+
"karma-browserstack-launcher": "0.0.4",
|
25
|
+
"karma-chrome-launcher": "~0.1.0",
|
26
|
+
"karma-firefox-launcher": "~0.1.0",
|
27
|
+
"karma-html2js-preprocessor": "~0.1.0",
|
28
|
+
"karma-ie-launcher": "~0.1.1",
|
29
|
+
"karma-jasmine": "~0.1.3",
|
30
|
+
"karma-phantomjs-launcher": "~0.1.0",
|
31
|
+
"karma-safari-launcher": "~0.1.1",
|
32
|
+
"karma-script-launcher": "~0.1.0"
|
33
|
+
},
|
34
|
+
"repository" : {
|
35
|
+
"type" : "git",
|
36
|
+
"url" : "https://github.com/zurb/foundation"
|
37
|
+
},
|
38
|
+
"keywords": [
|
39
|
+
"handlebars-helper-rel",
|
40
|
+
"handlebars-helper-slugify"
|
41
|
+
],
|
42
|
+
"licenses": [
|
43
|
+
{
|
44
|
+
"type": "MIT",
|
45
|
+
"url": "https://github.com/zurb/foundation/blob/master/LICENSE"
|
46
|
+
}
|
47
|
+
]
|
48
|
+
}
|
data/robots.txt
ADDED
data/run-tests.sh
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
#! /bin/sh
|
2
|
+
|
3
|
+
grunt travis
|
4
|
+
rc=$?
|
5
|
+
if [ "$rc" -ne 0 ] ; then
|
6
|
+
exit $rc
|
7
|
+
fi
|
8
|
+
|
9
|
+
# test compass install
|
10
|
+
FOUNDATION_COMPASS_TEMPLATE=foundation-compass-template
|
11
|
+
FOUNDATION_LIBSASS_TEMPLATE=foundation-libsass-template
|
12
|
+
|
13
|
+
mkdir test
|
14
|
+
cd test
|
15
|
+
if [ -d "${FOUNDATION_COMPASS_TEMPLATE}" ]; then
|
16
|
+
rm -rf $FOUNDATION_COMPASS_TEMPLATE
|
17
|
+
fi
|
18
|
+
git clone git://github.com/zurb/${FOUNDATION_COMPASS_TEMPLATE}.git
|
19
|
+
cd $FOUNDATION_COMPASS_TEMPLATE
|
20
|
+
bower install ../../dist/assets --save
|
21
|
+
cp -f bower_components/foundation/scss/foundation/_settings.scss scss/_settings.scss
|
22
|
+
bundle exec compass compile
|
23
|
+
rc=$?
|
24
|
+
if [ "$rc" -ne 0 ] ; then
|
25
|
+
echo "[FAILURE] Compass Build"
|
26
|
+
exit $rc
|
27
|
+
fi
|
28
|
+
rm stylesheets/app.css
|
29
|
+
sed -e 's/^\/\/ @/@/' -e 's/^\/\/ \$/\$/' scss/_settings.scss > scss/_settings.scss
|
30
|
+
bundle exec compass compile
|
31
|
+
rc=$?
|
32
|
+
if [ "$rc" -ne 0 ] ; then
|
33
|
+
echo "[FAILURE] Compass Build w/_settings.scss"
|
34
|
+
exit $rc
|
35
|
+
fi
|
36
|
+
rm stylesheets/app.css
|
37
|
+
echo "[SUCCESS] Compass Build"
|
38
|
+
|
39
|
+
# test sass-only install
|
40
|
+
cp -f bower_components/foundation/scss/foundation/_settings.scss scss/_settings.scss
|
41
|
+
bundle exec sass --load-path bower_components/foundation/scss scss/app.scss:stylesheets/app.css
|
42
|
+
rc=$?
|
43
|
+
if [ "$rc" -ne 0 ] ; then
|
44
|
+
echo "[FAILURE] Ruby Sass Build"
|
45
|
+
exit $rc
|
46
|
+
fi
|
47
|
+
rm stylesheets/app.css
|
48
|
+
sed -e 's/^\/\/ @/@/' -e 's/^\/\/ \$/\$/' scss/_settings.scss > scss/_settings.scss
|
49
|
+
bundle exec sass --load-path bower_components/foundation/scss scss/app.scss:stylesheets/app.css
|
50
|
+
rc=$?
|
51
|
+
if [ "$rc" -ne 0 ] ; then
|
52
|
+
echo "[FAILURE] Ruby Sass Build w/_settings.scss"
|
53
|
+
exit $rc
|
54
|
+
fi
|
55
|
+
rm stylesheets/app.css
|
56
|
+
echo "[SUCCESS] Ruby Sass Build"
|
57
|
+
|
58
|
+
# test libsass install
|
59
|
+
cd ..
|
60
|
+
if [ -d "${FOUNDATION_LIBSASS_TEMPLATE}" ]; then
|
61
|
+
rm -rf $FOUNDATION_LIBSASS_TEMPLATE
|
62
|
+
fi
|
63
|
+
git clone git://github.com/zurb/${FOUNDATION_LIBSASS_TEMPLATE}.git
|
64
|
+
cd $FOUNDATION_LIBSASS_TEMPLATE
|
65
|
+
npm install
|
66
|
+
bower install ../../dist/assets --save
|
67
|
+
cp -f bower_components/foundation/scss/foundation/_settings.scss scss/_settings.scss
|
68
|
+
grunt sass:dist
|
69
|
+
rc=$?
|
70
|
+
if [ "$rc" -ne 0 ] ; then
|
71
|
+
echo "[FAILURE] Node Libsass Build"
|
72
|
+
exit $rc
|
73
|
+
fi
|
74
|
+
rm css/app.css
|
75
|
+
sed -e 's/^\/\/ @/@/' -e 's/^\/\/ \$/\$/' scss/_settings.scss > scss/_settings.scss
|
76
|
+
grunt sass:dist
|
77
|
+
rc=$?
|
78
|
+
if [ "$rc" -ne 0 ] ; then
|
79
|
+
echo "[FAILURE] Node Libsass Build w/_settings.scss"
|
80
|
+
exit $rc
|
81
|
+
fi
|
82
|
+
rm css/app.css
|
83
|
+
echo "[SUCCESS] Node Libsass Build"
|
data/sache.json
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
{
|
2
|
+
"name": "foundation",
|
3
|
+
"description": "The most advanced responsive front-end framework in the world. Includes grids, buttons, ui elements, javascript plugins and more. Foundation 5 makes starting new projects easier and faster than ever.",
|
4
|
+
"tags": ["grid", "typography", "buttons", "ui", "responsive-web-design"]
|
5
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
// Foundation by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
// Make sure the charset is set appropriately
|
6
|
+
@charset "UTF-8";
|
7
|
+
|
8
|
+
// Behold, here are all the Foundation components.
|
9
|
+
@import
|
10
|
+
"foundation/components/grid",
|
11
|
+
"foundation/components/accordion",
|
12
|
+
"foundation/components/alert-boxes",
|
13
|
+
"foundation/components/block-grid",
|
14
|
+
"foundation/components/breadcrumbs",
|
15
|
+
"foundation/components/button-groups",
|
16
|
+
"foundation/components/buttons",
|
17
|
+
"foundation/components/clearing",
|
18
|
+
"foundation/components/dropdown",
|
19
|
+
"foundation/components/dropdown-buttons",
|
20
|
+
"foundation/components/flex-video",
|
21
|
+
"foundation/components/forms",
|
22
|
+
"foundation/components/inline-lists",
|
23
|
+
"foundation/components/joyride",
|
24
|
+
"foundation/components/keystrokes",
|
25
|
+
"foundation/components/labels",
|
26
|
+
"foundation/components/magellan",
|
27
|
+
"foundation/components/orbit",
|
28
|
+
"foundation/components/pagination",
|
29
|
+
"foundation/components/panels",
|
30
|
+
"foundation/components/pricing-tables",
|
31
|
+
"foundation/components/progress-bars",
|
32
|
+
"foundation/components/range-slider",
|
33
|
+
"foundation/components/reveal",
|
34
|
+
"foundation/components/side-nav",
|
35
|
+
"foundation/components/split-buttons",
|
36
|
+
"foundation/components/sub-nav",
|
37
|
+
"foundation/components/switch",
|
38
|
+
"foundation/components/tables",
|
39
|
+
"foundation/components/tabs",
|
40
|
+
"foundation/components/thumbs",
|
41
|
+
"foundation/components/tooltips",
|
42
|
+
"foundation/components/top-bar",
|
43
|
+
"foundation/components/type",
|
44
|
+
"foundation/components/offcanvas",
|
45
|
+
"foundation/components/visibility";
|
@@ -0,0 +1,101 @@
|
|
1
|
+
// Foundation by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
// This is the default html and body font-size for the base rem value.
|
6
|
+
$rem-base: 16px !default;
|
7
|
+
|
8
|
+
// IMPORT ONCE
|
9
|
+
// We use this to prevent styles from being loaded multiple times for compenents that rely on other components.
|
10
|
+
$modules: () !default;
|
11
|
+
@mixin exports($name) {
|
12
|
+
@if (index($modules, $name) == false) {
|
13
|
+
$modules: append($modules, $name);
|
14
|
+
@content;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
//
|
19
|
+
// @functions
|
20
|
+
//
|
21
|
+
|
22
|
+
|
23
|
+
// RANGES
|
24
|
+
// We use these functions to define ranges for various things, like media queries.
|
25
|
+
@function lower-bound($range){
|
26
|
+
@if length($range) <= 0 {
|
27
|
+
@return 0;
|
28
|
+
}
|
29
|
+
@return nth($range,1);
|
30
|
+
}
|
31
|
+
|
32
|
+
@function upper-bound($range) {
|
33
|
+
@if length($range) < 2 {
|
34
|
+
@return 999999999999;
|
35
|
+
}
|
36
|
+
@return nth($range, 2);
|
37
|
+
}
|
38
|
+
|
39
|
+
// STRIP UNIT
|
40
|
+
// It strips the unit of measure and returns it
|
41
|
+
@function strip-unit($num) {
|
42
|
+
@return $num / ($num * 0 + 1);
|
43
|
+
}
|
44
|
+
|
45
|
+
// CONVERT TO REM
|
46
|
+
@function convert-to-rem($value, $base-value: $rem-base) {
|
47
|
+
$value: strip-unit($value) / strip-unit($base-value) * 1rem;
|
48
|
+
@if ($value == 0rem) { $value: 0; } // Turn 0rem into 0
|
49
|
+
@return $value;
|
50
|
+
}
|
51
|
+
|
52
|
+
@function data($attr) {
|
53
|
+
@if $namespace {
|
54
|
+
@return '[data-' + $namespace + '-' + $attr + ']';
|
55
|
+
}
|
56
|
+
|
57
|
+
@return '[data-' + $attr + ']';
|
58
|
+
}
|
59
|
+
|
60
|
+
// REM CALC
|
61
|
+
|
62
|
+
// New Syntax, allows to optionally calculate on a different base value to counter compounding effect of rem's.
|
63
|
+
// Call with 1, 2, 3 or 4 parameters, 'px' is not required but supported:
|
64
|
+
//
|
65
|
+
// rem-calc(10 20 30px 40);
|
66
|
+
//
|
67
|
+
// Space delimited, if you want to delimit using comma's, wrap it in another pair of brackets
|
68
|
+
//
|
69
|
+
// rem-calc((10, 20, 30, 40px));
|
70
|
+
//
|
71
|
+
// Optionally call with a different base (eg: 8px) to calculate rem.
|
72
|
+
//
|
73
|
+
// rem-calc(16px 32px 48px, 8px);
|
74
|
+
//
|
75
|
+
// If you require to comma separate your list
|
76
|
+
//
|
77
|
+
// rem-calc((16px, 32px, 48), 8px);
|
78
|
+
|
79
|
+
@function rem-calc($values, $base-value: $rem-base) {
|
80
|
+
$max: length($values);
|
81
|
+
|
82
|
+
@if $max == 1 { @return convert-to-rem(nth($values, 1), $base-value); }
|
83
|
+
|
84
|
+
$remValues: ();
|
85
|
+
@for $i from 1 through $max {
|
86
|
+
$remValues: append($remValues, convert-to-rem(nth($values, $i), $base-value));
|
87
|
+
}
|
88
|
+
@return $remValues;
|
89
|
+
}
|
90
|
+
|
91
|
+
// OLD EM CALC
|
92
|
+
// Deprecated: We'll drop support for this in 5.1.0, use rem-calc()
|
93
|
+
@function emCalc($values){
|
94
|
+
@return rem-calc($values);
|
95
|
+
}
|
96
|
+
|
97
|
+
// OLD EM CALC
|
98
|
+
// Deprecated: We'll drop support for this in 5.1.0, use rem-calc()
|
99
|
+
@function em-calc($values){
|
100
|
+
@return rem-calc($values);
|
101
|
+
}
|
@@ -0,0 +1,1279 @@
|
|
1
|
+
// Foundation by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
//
|
6
|
+
// FOUNDATION SETTINGS
|
7
|
+
//
|
8
|
+
|
9
|
+
// This is the default html and body font-size for the base rem value.
|
10
|
+
// $rem-base: 16px;
|
11
|
+
|
12
|
+
// Allows the use of rem-calc() or lower-bound() in your settings
|
13
|
+
@import "foundation/functions";
|
14
|
+
|
15
|
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
16
|
+
// for compatibility with browser-based text zoom or user-set defaults.
|
17
|
+
|
18
|
+
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
19
|
+
// If you want your base font-size to be different and not have it affect the grid breakpoints,
|
20
|
+
// set $rem-base to $base-font-size and make sure $base-font-size is a px value.
|
21
|
+
// $base-font-size: 100%;
|
22
|
+
|
23
|
+
// The $base-line-height is 100% while $base-font-size is 150%
|
24
|
+
// $base-line-height: 150%;
|
25
|
+
|
26
|
+
// We use this to control whether or not CSS classes come through in the gem files.
|
27
|
+
// $include-html-classes: true;
|
28
|
+
// $include-print-styles: true;
|
29
|
+
// $include-html-global-classes: $include-html-classes;
|
30
|
+
|
31
|
+
// Grid
|
32
|
+
|
33
|
+
// $include-html-grid-classes: $include-html-classes;
|
34
|
+
// $include-xl-html-grid-classes: false;
|
35
|
+
|
36
|
+
// $row-width: rem-calc(1000);
|
37
|
+
// $total-columns: 12;
|
38
|
+
|
39
|
+
// Global
|
40
|
+
|
41
|
+
// We use these to control various global styles
|
42
|
+
// $body-bg: #fff;
|
43
|
+
// $body-font-color: #222;
|
44
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
45
|
+
// $body-font-weight: normal;
|
46
|
+
// $body-font-style: normal;
|
47
|
+
|
48
|
+
// We use this to control font-smoothing
|
49
|
+
// $font-smoothing: antialiased;
|
50
|
+
|
51
|
+
// We use these to control text direction settings
|
52
|
+
// $text-direction: ltr;
|
53
|
+
// $opposite-direction: right;
|
54
|
+
// $default-float: left;
|
55
|
+
|
56
|
+
// We use these as default colors throughout
|
57
|
+
// $primary-color: #008CBA;
|
58
|
+
// $secondary-color: #e7e7e7;
|
59
|
+
// $alert-color: #f04124;
|
60
|
+
// $success-color: #43AC6A;
|
61
|
+
// $warning-color: #f08a24;
|
62
|
+
// $info-color: #a0d3e8;
|
63
|
+
|
64
|
+
// We use these to make sure border radius matches unless we want it different.
|
65
|
+
// $global-radius: 3px;
|
66
|
+
// $global-rounded: 1000px;
|
67
|
+
|
68
|
+
// We use these to control inset shadow shiny edges and depressions.
|
69
|
+
// $shiny-edge-size: 0 1px 0;
|
70
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
71
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
72
|
+
|
73
|
+
// $column-gutter: rem-calc(30);
|
74
|
+
|
75
|
+
// Media Query Ranges
|
76
|
+
// $small-range: (0em, 40em);
|
77
|
+
// $medium-range: (40.063em, 64em);
|
78
|
+
// $large-range: (64.063em, 90em);
|
79
|
+
// $xlarge-range: (90.063em, 120em);
|
80
|
+
// $xxlarge-range: (120.063em, 99999999em);
|
81
|
+
|
82
|
+
// $screen: "only screen";
|
83
|
+
|
84
|
+
// $landscape: "#{$screen} and (orientation: landscape)";
|
85
|
+
// $portrait: "#{$screen} and (orientation: portrait)";
|
86
|
+
|
87
|
+
// $small-up: $screen;
|
88
|
+
// $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
|
89
|
+
|
90
|
+
// $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
|
91
|
+
// $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
|
92
|
+
|
93
|
+
// $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
|
94
|
+
// $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
|
95
|
+
|
96
|
+
// $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
|
97
|
+
// $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
|
98
|
+
|
99
|
+
// $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
|
100
|
+
// $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
|
101
|
+
|
102
|
+
// Legacy
|
103
|
+
// $small: $medium-up;
|
104
|
+
// $medium: $medium-up;
|
105
|
+
// $large: $large-up;
|
106
|
+
|
107
|
+
//We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
108
|
+
// $cursor-crosshair-value: crosshair;
|
109
|
+
// $cursor-default-value: default;
|
110
|
+
// $cursor-pointer-value: pointer;
|
111
|
+
// $cursor-help-value: help;
|
112
|
+
// $cursor-text-value: text;
|
113
|
+
|
114
|
+
//
|
115
|
+
// TYPOGRAPHY
|
116
|
+
//
|
117
|
+
|
118
|
+
// $include-html-type-classes: $include-html-classes;
|
119
|
+
|
120
|
+
// We use these to control header font styles
|
121
|
+
// $header-font-family: $body-font-family;
|
122
|
+
// $header-font-weight: normal;
|
123
|
+
// $header-font-style: normal;
|
124
|
+
// $header-font-color: #222;
|
125
|
+
// $header-line-height: 1.4;
|
126
|
+
// $header-top-margin: .2rem;
|
127
|
+
// $header-bottom-margin: .5rem;
|
128
|
+
// $header-text-rendering: optimizeLegibility;
|
129
|
+
|
130
|
+
// We use these to control header font sizes
|
131
|
+
// $h1-font-size: rem-calc(44);
|
132
|
+
// $h2-font-size: rem-calc(37);
|
133
|
+
// $h3-font-size: rem-calc(27);
|
134
|
+
// $h4-font-size: rem-calc(23);
|
135
|
+
// $h5-font-size: rem-calc(18);
|
136
|
+
// $h6-font-size: 1rem;
|
137
|
+
|
138
|
+
// These control how subheaders are styled.
|
139
|
+
// $subheader-line-height: 1.4;
|
140
|
+
// $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
|
141
|
+
// $subheader-font-weight: normal;
|
142
|
+
// $subheader-top-margin: .2rem;
|
143
|
+
// $subheader-bottom-margin: .5rem;
|
144
|
+
|
145
|
+
// A general <small> styling
|
146
|
+
// $small-font-size: 60%;
|
147
|
+
// $small-font-color: scale-color($header-font-color, $lightness: 35%);
|
148
|
+
|
149
|
+
// We use these to style paragraphs
|
150
|
+
// $paragraph-font-family: inherit;
|
151
|
+
// $paragraph-font-weight: normal;
|
152
|
+
// $paragraph-font-size: 1rem;
|
153
|
+
// $paragraph-line-height: 1.6;
|
154
|
+
// $paragraph-margin-bottom: rem-calc(20);
|
155
|
+
// $paragraph-aside-font-size: rem-calc(14);
|
156
|
+
// $paragraph-aside-line-height: 1.35;
|
157
|
+
// $paragraph-aside-font-style: italic;
|
158
|
+
// $paragraph-text-rendering: optimizeLegibility;
|
159
|
+
|
160
|
+
// We use these to style <code> tags
|
161
|
+
// $code-color: scale-color($alert-color, $lightness: -27%);
|
162
|
+
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
163
|
+
// $code-font-weight: bold;
|
164
|
+
|
165
|
+
// We use these to style anchors
|
166
|
+
// $anchor-text-decoration: none;
|
167
|
+
// $anchor-font-color: $primary-color;
|
168
|
+
// $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
|
169
|
+
|
170
|
+
// We use these to style the <hr> element
|
171
|
+
// $hr-border-width: 1px;
|
172
|
+
// $hr-border-style: solid;
|
173
|
+
// $hr-border-color: #ddd;
|
174
|
+
// $hr-margin: rem-calc(20);
|
175
|
+
|
176
|
+
// We use these to style lists
|
177
|
+
// $list-style-position: outside;
|
178
|
+
// $list-side-margin: 1.1rem;
|
179
|
+
// $list-ordered-side-margin: 1.4rem;
|
180
|
+
// $list-side-margin-no-bullet: 0;
|
181
|
+
// $list-nested-margin: rem-calc(20);
|
182
|
+
// $definition-list-header-weight: bold;
|
183
|
+
// $definition-list-header-margin-bottom: .3rem;
|
184
|
+
// $definition-list-margin-bottom: rem-calc(12);
|
185
|
+
|
186
|
+
// We use these to style blockquotes
|
187
|
+
// $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
|
188
|
+
// $blockquote-padding: rem-calc(9 20 0 19);
|
189
|
+
// $blockquote-border: 1px solid #ddd;
|
190
|
+
// $blockquote-cite-font-size: rem-calc(13);
|
191
|
+
// $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
|
192
|
+
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
193
|
+
|
194
|
+
// Acronym styles
|
195
|
+
// $acronym-underline: 1px dotted #ddd;
|
196
|
+
|
197
|
+
// We use these to control padding and margin
|
198
|
+
// $microformat-padding: rem-calc(10 12);
|
199
|
+
// $microformat-margin: rem-calc(0 0 20 0);
|
200
|
+
|
201
|
+
// We use these to control the border styles
|
202
|
+
// $microformat-border-width: 1px;
|
203
|
+
// $microformat-border-style: solid;
|
204
|
+
// $microformat-border-color: #ddd;
|
205
|
+
|
206
|
+
// We use these to control full name font styles
|
207
|
+
// $microformat-fullname-font-weight: bold;
|
208
|
+
// $microformat-fullname-font-size: rem-calc(15);
|
209
|
+
|
210
|
+
// We use this to control the summary font styles
|
211
|
+
// $microformat-summary-font-weight: bold;
|
212
|
+
|
213
|
+
// We use this to control abbr padding
|
214
|
+
// $microformat-abbr-padding: rem-calc(0 1);
|
215
|
+
|
216
|
+
// We use this to control abbr font styles
|
217
|
+
// $microformat-abbr-font-weight: bold;
|
218
|
+
// $microformat-abbr-font-decoration: none;
|
219
|
+
|
220
|
+
// Accordion
|
221
|
+
|
222
|
+
// $include-html-accordion-classes: $include-html-classes;
|
223
|
+
|
224
|
+
// $accordion-navigation-padding: rem-calc(16);
|
225
|
+
// $accordion-navigation-bg-color: #efefef ;
|
226
|
+
// $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
|
227
|
+
// $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
|
228
|
+
// $accordion-navigation-font-color: #222;
|
229
|
+
// $accordion-navigation-font-size: rem-calc(16);
|
230
|
+
// $accordion-navigation-font-family: $body-font-family;
|
231
|
+
|
232
|
+
// $accordion-content-padding: $column-gutter/2;
|
233
|
+
// $accordion-content-active-bg-color: #fff;
|
234
|
+
|
235
|
+
// Alert Boxes
|
236
|
+
|
237
|
+
// $include-html-alert-classes: $include-html-classes;
|
238
|
+
|
239
|
+
// We use this to control alert padding.
|
240
|
+
// $alert-padding-top: rem-calc(14);
|
241
|
+
// $alert-padding-default-float: $alert-padding-top;
|
242
|
+
// $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
|
243
|
+
// $alert-padding-bottom: $alert-padding-top;
|
244
|
+
|
245
|
+
// We use these to control text style.
|
246
|
+
// $alert-font-weight: normal;
|
247
|
+
// $alert-font-size: rem-calc(13);
|
248
|
+
// $alert-font-color: #fff;
|
249
|
+
// $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
|
250
|
+
|
251
|
+
// We use this for close hover effect.
|
252
|
+
// $alert-function-factor: -14%;
|
253
|
+
|
254
|
+
// We use these to control border styles.
|
255
|
+
// $alert-border-style: solid;
|
256
|
+
// $alert-border-width: 1px;
|
257
|
+
// $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
|
258
|
+
// $alert-bottom-margin: rem-calc(20);
|
259
|
+
|
260
|
+
// We use these to style the close buttons
|
261
|
+
// $alert-close-color: #333;
|
262
|
+
// $alert-close-top: 50%;
|
263
|
+
// $alert-close-position: rem-calc(4);
|
264
|
+
// $alert-close-font-size: rem-calc(22);
|
265
|
+
// $alert-close-opacity: 0.3;
|
266
|
+
// $alert-close-opacity-hover: 0.5;
|
267
|
+
// $alert-close-padding: 9px 6px 4px;
|
268
|
+
|
269
|
+
// We use this to control border radius
|
270
|
+
// $alert-radius: $global-radius;
|
271
|
+
|
272
|
+
// We use this to control transition effects
|
273
|
+
// $alert-transition-speed: 300ms;
|
274
|
+
// $alert-transition-ease: ease-out;
|
275
|
+
|
276
|
+
// Block Grid
|
277
|
+
|
278
|
+
// $include-html-grid-classes: $include-html-classes;
|
279
|
+
// $include-xl-html-block-grid-classes: false;
|
280
|
+
|
281
|
+
// We use this to control the maximum number of block grid elements per row
|
282
|
+
// $block-grid-elements: 12;
|
283
|
+
// $block-grid-default-spacing: rem-calc(20);
|
284
|
+
// $align-block-grid-to-grid: false;
|
285
|
+
|
286
|
+
|
287
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
288
|
+
// $block-grid-media-queries: true;
|
289
|
+
|
290
|
+
// Breadcrumbs
|
291
|
+
|
292
|
+
// $include-html-nav-classes: $include-html-classes;
|
293
|
+
|
294
|
+
// We use this to set the background color for the breadcrumb container.
|
295
|
+
// $crumb-bg: scale-color($secondary-color, $lightness: 55%);
|
296
|
+
|
297
|
+
// We use these to set the padding around the breadcrumbs.
|
298
|
+
// $crumb-padding: rem-calc(9 14 9);
|
299
|
+
// $crumb-side-padding: rem-calc(12);
|
300
|
+
|
301
|
+
// We use these to control border styles.
|
302
|
+
// $crumb-function-factor: -10%;
|
303
|
+
// $crumb-border-size: 1px;
|
304
|
+
// $crumb-border-style: solid;
|
305
|
+
// $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
|
306
|
+
// $crumb-radius: $global-radius;
|
307
|
+
|
308
|
+
// We use these to set various text styles for breadcrumbs.
|
309
|
+
// $crumb-font-size: rem-calc(11);
|
310
|
+
// $crumb-font-color: $primary-color;
|
311
|
+
// $crumb-font-color-current: #333;
|
312
|
+
// $crumb-font-color-unavailable: #999;
|
313
|
+
// $crumb-font-transform: uppercase;
|
314
|
+
// $crumb-link-decor: underline;
|
315
|
+
|
316
|
+
// We use these to control the slash between breadcrumbs
|
317
|
+
// $crumb-slash-color: #aaa;
|
318
|
+
// $crumb-slash: "/";
|
319
|
+
|
320
|
+
//
|
321
|
+
// BUTTONS
|
322
|
+
//
|
323
|
+
|
324
|
+
// $include-html-button-classes: $include-html-classes;
|
325
|
+
|
326
|
+
// We use these to build padding for buttons.
|
327
|
+
// $button-tny: rem-calc(10);
|
328
|
+
// $button-sml: rem-calc(14);
|
329
|
+
// $button-med: rem-calc(16);
|
330
|
+
// $button-lrg: rem-calc(18);
|
331
|
+
|
332
|
+
// We use this to control the display property.
|
333
|
+
// $button-display: inline-block;
|
334
|
+
// $button-margin-bottom: rem-calc(20);
|
335
|
+
|
336
|
+
// We use these to control button text styles.
|
337
|
+
// $button-font-family: $body-font-family;
|
338
|
+
// $button-font-color: #fff;
|
339
|
+
// $button-font-color-alt: #333;
|
340
|
+
// $button-font-tny: rem-calc(11);
|
341
|
+
// $button-font-sml: rem-calc(13);
|
342
|
+
// $button-font-med: rem-calc(16);
|
343
|
+
// $button-font-lrg: rem-calc(20);
|
344
|
+
// $button-font-weight: normal;
|
345
|
+
// $button-font-align: center;
|
346
|
+
|
347
|
+
// We use these to control various hover effects.
|
348
|
+
// $button-function-factor: -20%;
|
349
|
+
|
350
|
+
// We use these to control button border styles.
|
351
|
+
// $button-border-width: 0px;
|
352
|
+
// $button-border-style: solid;
|
353
|
+
// $bg: $primary-color;
|
354
|
+
// $button-border-color: scale-color($bg, $lightness: $button-function-factor);
|
355
|
+
|
356
|
+
// We use this to set the default radius used throughout the core.
|
357
|
+
// $button-radius: $global-radius;
|
358
|
+
// $button-round: $global-rounded;
|
359
|
+
|
360
|
+
// We use this to set default opacity for disabled buttons.
|
361
|
+
// $button-disabled-opacity: 0.7;
|
362
|
+
|
363
|
+
// Button Groups
|
364
|
+
|
365
|
+
// $include-html-button-classes: $include-html-classes;
|
366
|
+
|
367
|
+
// Sets the margin for the right side by default, and the left margin if right-to-left direction is used
|
368
|
+
// $button-bar-margin-opposite: rem-calc(10);
|
369
|
+
// $button-group-border-width: 1px;
|
370
|
+
|
371
|
+
// Clearing
|
372
|
+
|
373
|
+
// $include-html-clearing-classes: $include-html-classes;
|
374
|
+
|
375
|
+
// We use these to set the background colors for parts of Clearing.
|
376
|
+
// $clearing-bg: #333;
|
377
|
+
// $clearing-caption-bg: $clearing-bg;
|
378
|
+
// $clearing-carousel-bg: rgba(51,51,51,0.8);
|
379
|
+
// $clearing-img-bg: $clearing-bg;
|
380
|
+
|
381
|
+
// We use these to style the close button
|
382
|
+
// $clearing-close-color: #ccc;
|
383
|
+
// $clearing-close-size: 30px;
|
384
|
+
|
385
|
+
// We use these to style the arrows
|
386
|
+
// $clearing-arrow-size: 12px;
|
387
|
+
// $clearing-arrow-color: $clearing-close-color;
|
388
|
+
|
389
|
+
// We use these to style captions
|
390
|
+
// $clearing-caption-font-color: #ccc;
|
391
|
+
// $clearing-caption-font-size: 0.875em;
|
392
|
+
// $clearing-caption-padding: 10px 30px 20px;
|
393
|
+
|
394
|
+
// We use these to make the image and carousel height and style
|
395
|
+
// $clearing-active-img-height: 85%;
|
396
|
+
// $clearing-carousel-height: 120px;
|
397
|
+
// $clearing-carousel-thumb-width: 120px;
|
398
|
+
// $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
|
399
|
+
|
400
|
+
// Dropdown
|
401
|
+
|
402
|
+
// $include-html-dropdown-classes: $include-html-classes;
|
403
|
+
|
404
|
+
// We use these to controls height and width styles.
|
405
|
+
// $f-dropdown-max-width: 200px;
|
406
|
+
// $f-dropdown-height: auto;
|
407
|
+
// $f-dropdown-max-height: none;
|
408
|
+
|
409
|
+
// Used for bottom position
|
410
|
+
// $f-dropdown-margin-top: 2px;
|
411
|
+
|
412
|
+
// Used for right position
|
413
|
+
// $f-dropdown-margin-left: $f-dropdown-margin-top;
|
414
|
+
|
415
|
+
// Used for left position
|
416
|
+
// $f-dropdown-margin-right: $f-dropdown-margin-top;
|
417
|
+
|
418
|
+
// Used for top position
|
419
|
+
// $f-dropdown-margin-bottom: $f-dropdown-margin-top;
|
420
|
+
|
421
|
+
// We use this to control the background color
|
422
|
+
// $f-dropdown-bg: #fff;
|
423
|
+
|
424
|
+
// We use this to set the border styles for dropdowns.
|
425
|
+
// $f-dropdown-border-style: solid;
|
426
|
+
// $f-dropdown-border-width: 1px;
|
427
|
+
// $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
|
428
|
+
|
429
|
+
// We use these to style the triangle pip.
|
430
|
+
// $f-dropdown-triangle-size: 6px;
|
431
|
+
// $f-dropdown-triangle-color: #fff;
|
432
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
433
|
+
|
434
|
+
// We use these to control styles for the list elements.
|
435
|
+
// $f-dropdown-list-style: none;
|
436
|
+
// $f-dropdown-font-color: #555;
|
437
|
+
// $f-dropdown-font-size: rem-calc(14);
|
438
|
+
// $f-dropdown-list-padding: rem-calc(5, 10);
|
439
|
+
// $f-dropdown-line-height: rem-calc(18);
|
440
|
+
// $f-dropdown-list-hover-bg: #eeeeee ;
|
441
|
+
// $dropdown-mobile-default-float: 0;
|
442
|
+
|
443
|
+
// We use this to control the styles for when the dropdown has custom content.
|
444
|
+
// $f-dropdown-content-padding: rem-calc(20);
|
445
|
+
|
446
|
+
// Dropdown Buttons
|
447
|
+
|
448
|
+
// $include-html-button-classes: $include-html-classes;
|
449
|
+
|
450
|
+
// We use these to set the color of the pip in dropdown buttons
|
451
|
+
// $dropdown-button-pip-color: #fff;
|
452
|
+
// $dropdown-button-pip-color-alt: #333;
|
453
|
+
|
454
|
+
// $button-pip-tny: rem-calc(6);
|
455
|
+
// $button-pip-sml: rem-calc(7);
|
456
|
+
// $button-pip-med: rem-calc(9);
|
457
|
+
// $button-pip-lrg: rem-calc(11);
|
458
|
+
|
459
|
+
// We use these to style tiny dropdown buttons
|
460
|
+
// $dropdown-button-padding-tny: $button-pip-tny * 7;
|
461
|
+
// $dropdown-button-pip-size-tny: $button-pip-tny;
|
462
|
+
// $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
|
463
|
+
// $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
|
464
|
+
|
465
|
+
// We use these to style small dropdown buttons
|
466
|
+
// $dropdown-button-padding-sml: $button-pip-sml * 7;
|
467
|
+
// $dropdown-button-pip-size-sml: $button-pip-sml;
|
468
|
+
// $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
|
469
|
+
// $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
|
470
|
+
|
471
|
+
// We use these to style medium dropdown buttons
|
472
|
+
// $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
|
473
|
+
// $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
|
474
|
+
// $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
|
475
|
+
// $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
|
476
|
+
|
477
|
+
// We use these to style large dropdown buttons
|
478
|
+
// $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
|
479
|
+
// $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
480
|
+
// $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
|
481
|
+
// $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
|
482
|
+
|
483
|
+
// Flex Video
|
484
|
+
|
485
|
+
// $include-html-media-classes: $include-html-classes;
|
486
|
+
|
487
|
+
// We use these to control video container padding and margins
|
488
|
+
// $flex-video-padding-top: rem-calc(25);
|
489
|
+
// $flex-video-padding-bottom: 67.5%;
|
490
|
+
// $flex-video-margin-bottom: rem-calc(16);
|
491
|
+
|
492
|
+
// We use this to control widescreen bottom padding
|
493
|
+
// $flex-video-widescreen-padding-bottom: 56.34%;
|
494
|
+
|
495
|
+
// Forms
|
496
|
+
|
497
|
+
// $include-html-form-classes: $include-html-classes;
|
498
|
+
|
499
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
500
|
+
// $form-spacing: rem-calc(16);
|
501
|
+
|
502
|
+
// We use these to style the labels in different ways
|
503
|
+
// $form-label-pointer: pointer;
|
504
|
+
// $form-label-font-size: rem-calc(14);
|
505
|
+
// $form-label-font-weight: normal;
|
506
|
+
// $form-label-line-height: 1.5;
|
507
|
+
// $form-label-font-color: scale-color(#000, $lightness: 30%);
|
508
|
+
// $form-label-small-transform: capitalize;
|
509
|
+
// $form-label-bottom-margin: 0;
|
510
|
+
// $input-font-family: inherit;
|
511
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
512
|
+
// $input-font-size: rem-calc(14);
|
513
|
+
// $input-bg-color: #fff;
|
514
|
+
// $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
|
515
|
+
// $input-border-color: scale-color(#fff, $lightness: -20%);
|
516
|
+
// $input-focus-border-color: scale-color(#fff, $lightness: -40%);
|
517
|
+
// $input-border-style: solid;
|
518
|
+
// $input-border-width: 1px;
|
519
|
+
// $input-border-radius: $global-radius;
|
520
|
+
// $input-disabled-bg: #ddd;
|
521
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
522
|
+
// $input-include-glowing-effect: true;
|
523
|
+
|
524
|
+
// We use these to style the fieldset border and spacing.
|
525
|
+
// $fieldset-border-style: solid;
|
526
|
+
// $fieldset-border-width: 1px;
|
527
|
+
// $fieldset-border-color: #ddd;
|
528
|
+
// $fieldset-padding: rem-calc(20);
|
529
|
+
// $fieldset-margin: rem-calc(18 0);
|
530
|
+
|
531
|
+
// We use these to style the legends when you use them
|
532
|
+
// $legend-bg: #fff;
|
533
|
+
// $legend-font-weight: bold;
|
534
|
+
// $legend-padding: rem-calc(0 3);
|
535
|
+
|
536
|
+
// We use these to style the prefix and postfix input elements
|
537
|
+
// $input-prefix-bg: scale-color(#fff, $lightness: -5%);
|
538
|
+
// $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
|
539
|
+
// $input-prefix-border-size: 1px;
|
540
|
+
// $input-prefix-border-type: solid;
|
541
|
+
// $input-prefix-overflow: hidden;
|
542
|
+
// $input-prefix-font-color: #333;
|
543
|
+
// $input-prefix-font-color-alt: #fff;
|
544
|
+
|
545
|
+
// We use these to style the error states for inputs and labels
|
546
|
+
// $input-error-message-padding: rem-calc(6 9 9);
|
547
|
+
// $input-error-message-top: -1px;
|
548
|
+
// $input-error-message-font-size: rem-calc(12);
|
549
|
+
// $input-error-message-font-weight: normal;
|
550
|
+
// $input-error-message-font-style: italic;
|
551
|
+
// $input-error-message-font-color: #fff;
|
552
|
+
// $input-error-message-font-color-alt: #333;
|
553
|
+
|
554
|
+
// We use this to style the glowing effect of inputs when focused
|
555
|
+
// $glowing-effect-fade-time: 0.45s;
|
556
|
+
// $glowing-effect-color: $input-focus-border-color;
|
557
|
+
|
558
|
+
// Select variables
|
559
|
+
// $select-bg-color: #fafafa;
|
560
|
+
// $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
|
561
|
+
|
562
|
+
// Inline Lists
|
563
|
+
|
564
|
+
// $include-html-inline-list-classes: $include-html-classes;
|
565
|
+
|
566
|
+
// We use this to control the margins and padding of the inline list.
|
567
|
+
// $inline-list-top-margin: 0;
|
568
|
+
// $inline-list-opposite-margin: 0;
|
569
|
+
// $inline-list-bottom-margin: rem-calc(17);
|
570
|
+
// $inline-list-default-float-margin: rem-calc(-22);
|
571
|
+
|
572
|
+
// $inline-list-padding: 0;
|
573
|
+
|
574
|
+
// We use this to control the overflow of the inline list.
|
575
|
+
// $inline-list-overflow: hidden;
|
576
|
+
|
577
|
+
// We use this to control the list items
|
578
|
+
// $inline-list-display: block;
|
579
|
+
|
580
|
+
// We use this to control any elments within list items
|
581
|
+
// $inline-list-children-display: block;
|
582
|
+
|
583
|
+
// Joyride
|
584
|
+
|
585
|
+
// $include-html-joyride-classes: $include-html-classes;
|
586
|
+
|
587
|
+
// Controlling default Joyride styles
|
588
|
+
// $joyride-tip-bg: #333;
|
589
|
+
// $joyride-tip-default-width: 300px;
|
590
|
+
// $joyride-tip-padding: rem-calc(18 20 24);
|
591
|
+
// $joyride-tip-border: solid 1px #555;
|
592
|
+
// $joyride-tip-radius: 4px;
|
593
|
+
// $joyride-tip-position-offset: 22px;
|
594
|
+
|
595
|
+
// Here, we're setting the tip dont styles
|
596
|
+
// $joyride-tip-font-color: #fff;
|
597
|
+
// $joyride-tip-font-size: rem-calc(14);
|
598
|
+
// $joyride-tip-header-weight: bold;
|
599
|
+
|
600
|
+
// This changes the nub size
|
601
|
+
// $joyride-tip-nub-size: 10px;
|
602
|
+
|
603
|
+
// This adjusts the styles for the timer when its enabled
|
604
|
+
// $joyride-tip-timer-width: 50px;
|
605
|
+
// $joyride-tip-timer-height: 3px;
|
606
|
+
// $joyride-tip-timer-color: #666;
|
607
|
+
|
608
|
+
// This changes up the styles for the close button
|
609
|
+
// $joyride-tip-close-color: #777;
|
610
|
+
// $joyride-tip-close-size: 24px;
|
611
|
+
// $joyride-tip-close-weight: normal;
|
612
|
+
|
613
|
+
// When Joyride is filling the screen, we use this style for the bg
|
614
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
615
|
+
|
616
|
+
// Keystrokes
|
617
|
+
|
618
|
+
// $include-html-keystroke-classes: $include-html-classes;
|
619
|
+
|
620
|
+
// We use these to control text styles.
|
621
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
622
|
+
// $keystroke-font-size: inherit;
|
623
|
+
// $keystroke-font-color: #222;
|
624
|
+
// $keystroke-font-color-alt: #fff;
|
625
|
+
// $keystroke-function-factor: -7%;
|
626
|
+
|
627
|
+
// We use this to control keystroke padding.
|
628
|
+
// $keystroke-padding: rem-calc(2 4 0);
|
629
|
+
|
630
|
+
// We use these to control background and border styles.
|
631
|
+
// $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
|
632
|
+
// $keystroke-border-style: solid;
|
633
|
+
// $keystroke-border-width: 1px;
|
634
|
+
// $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
|
635
|
+
// $keystroke-radius: $global-radius;
|
636
|
+
|
637
|
+
// Labels
|
638
|
+
|
639
|
+
// $include-html-label-classes: $include-html-classes;
|
640
|
+
|
641
|
+
// We use these to style the labels
|
642
|
+
// $label-padding: rem-calc(4 8 6);
|
643
|
+
// $label-radius: $global-radius;
|
644
|
+
|
645
|
+
// We use these to style the label text
|
646
|
+
// $label-font-sizing: rem-calc(11);
|
647
|
+
// $label-font-weight: normal;
|
648
|
+
// $label-font-color: #333;
|
649
|
+
// $label-font-color-alt: #fff;
|
650
|
+
// $label-font-family: $body-font-family;
|
651
|
+
|
652
|
+
// Magellan
|
653
|
+
|
654
|
+
// $include-html-magellan-classes: $include-html-classes;
|
655
|
+
|
656
|
+
// $magellan-bg: #fff;
|
657
|
+
// $magellan-padding: 10px;
|
658
|
+
|
659
|
+
// Off-canvas
|
660
|
+
|
661
|
+
// $include-html-off-canvas-classes: $include-html-classes;
|
662
|
+
|
663
|
+
// $tabbar-bg: #333;
|
664
|
+
// $tabbar-height: rem-calc(45);
|
665
|
+
// $tabbar-line-height: $tabbar-height;
|
666
|
+
// $tabbar-color: #fff;
|
667
|
+
// $tabbar-middle-padding: 0 rem-calc(10);
|
668
|
+
|
669
|
+
// Off Canvas Divider Styles
|
670
|
+
// $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
|
671
|
+
// $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
|
672
|
+
|
673
|
+
// Off Canvas Tab Bar Headers
|
674
|
+
// $tabbar-header-color: #fff;
|
675
|
+
// $tabbar-header-weight: bold;
|
676
|
+
// $tabbar-header-line-height: $tabbar-height;
|
677
|
+
// $tabbar-header-margin: 0;
|
678
|
+
|
679
|
+
// Off Canvas Menu Variables
|
680
|
+
// $off-canvas-width: rem-calc(250);
|
681
|
+
// $off-canvas-bg: #333;
|
682
|
+
|
683
|
+
// Off Canvas Menu List Variables
|
684
|
+
// $off-canvas-label-padding: 0.3rem rem-calc(15);
|
685
|
+
// $off-canvas-label-color: #999;
|
686
|
+
// $off-canvas-label-text-transform: uppercase;
|
687
|
+
// $off-canvas-label-font-weight: bold;
|
688
|
+
// $off-canvas-label-bg: #444;
|
689
|
+
// $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
|
690
|
+
// $off-canvas-label-border-bottom: none;
|
691
|
+
// $off-canvas-label-margin:0;
|
692
|
+
// $off-canvas-link-padding: rem-calc(10, 15);
|
693
|
+
// $off-canvas-link-color: rgba(#fff, 0.7);
|
694
|
+
// $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
|
695
|
+
|
696
|
+
// Off Canvas Menu Icon Variables
|
697
|
+
// $tabbar-menu-icon-color: #fff;
|
698
|
+
// $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
|
699
|
+
|
700
|
+
// $tabbar-menu-icon-text-indent: rem-calc(35);
|
701
|
+
// $tabbar-menu-icon-width: $tabbar-height;
|
702
|
+
// $tabbar-menu-icon-height: $tabbar-height;
|
703
|
+
// $tabbar-menu-icon-line-height: rem-calc(33);
|
704
|
+
// $tabbar-menu-icon-padding: 0;
|
705
|
+
|
706
|
+
// $tabbar-hamburger-icon-width: rem-calc(16);
|
707
|
+
// $tabbar-hamburger-icon-left: false;
|
708
|
+
// $tabbar-hamburger-icon-top: false;
|
709
|
+
// $tapbar-hamburger-icon-thickness: 1px;
|
710
|
+
// $tapbar-hamburger-icon-gap: 6px;
|
711
|
+
|
712
|
+
// Off Canvas Back-Link Overlay
|
713
|
+
// $off-canvas-overlay-transition: background 300ms ease;
|
714
|
+
// $off-canvas-overlay-cursor: pointer;
|
715
|
+
// $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
|
716
|
+
// $off-canvas-overlay-background: rgba(#fff, 0.2);
|
717
|
+
// $off-canvas-overlay-background-hover: rgba(#fff, 0.05);
|
718
|
+
|
719
|
+
// Transition Variables
|
720
|
+
// $menu-slide: "transform 500ms ease";
|
721
|
+
|
722
|
+
// Orbit
|
723
|
+
|
724
|
+
// $include-html-orbit-classes: $include-html-classes;
|
725
|
+
|
726
|
+
// We use these to control the caption styles
|
727
|
+
// $orbit-container-bg: none;
|
728
|
+
// $orbit-caption-bg: rgba(51,51,51, 0.8);
|
729
|
+
// $orbit-caption-font-color: #fff;
|
730
|
+
// $orbit-caption-font-size: rem-calc(14);
|
731
|
+
// $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
|
732
|
+
// $orbit-caption-padding: rem-calc(10 14);
|
733
|
+
// $orbit-caption-height: auto;
|
734
|
+
|
735
|
+
// We use these to control the left/right nav styles
|
736
|
+
// $orbit-nav-bg: transparent;
|
737
|
+
// $orbit-nav-bg-hover: rgba(0,0,0,0.3);
|
738
|
+
// $orbit-nav-arrow-color: #fff;
|
739
|
+
// $orbit-nav-arrow-color-hover: #fff;
|
740
|
+
|
741
|
+
// We use these to control the timer styles
|
742
|
+
// $orbit-timer-bg: rgba(255,255,255,0.3);
|
743
|
+
// $orbit-timer-show-progress-bar: true;
|
744
|
+
|
745
|
+
// We use these to control the bullet nav styles
|
746
|
+
// $orbit-bullet-nav-color: #ccc;
|
747
|
+
// $orbit-bullet-nav-color-active: #999;
|
748
|
+
// $orbit-bullet-radius: rem-calc(9);
|
749
|
+
|
750
|
+
// We use these to controls the style of slide numbers
|
751
|
+
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
752
|
+
// $orbit-slide-number-font-color: #fff;
|
753
|
+
// $orbit-slide-number-padding: rem-calc(5);
|
754
|
+
|
755
|
+
// We use these to controls the css animation
|
756
|
+
// $orbit-animation-speed: 500ms;
|
757
|
+
// $orbit-animation-ease: ease-in-out;
|
758
|
+
|
759
|
+
// Hide controls on small
|
760
|
+
// $orbit-nav-hide-for-small: true;
|
761
|
+
// $orbit-bullet-hide-for-small: true;
|
762
|
+
// $orbit-timer-hide-for-small: true;
|
763
|
+
|
764
|
+
// Graceful Loading Wrapper and preloader
|
765
|
+
// $wrapper-class: "slideshow-wrapper";
|
766
|
+
// $preloader-class: "preloader";
|
767
|
+
|
768
|
+
// Pagination
|
769
|
+
|
770
|
+
// $include-html-nav-classes: $include-html-classes;
|
771
|
+
|
772
|
+
// We use these to control the pagination container
|
773
|
+
// $pagination-height: rem-calc(24);
|
774
|
+
// $pagination-margin: rem-calc(-5);
|
775
|
+
|
776
|
+
// We use these to set the list-item properties
|
777
|
+
// $pagination-li-float: $default-float;
|
778
|
+
// $pagination-li-height: rem-calc(24);
|
779
|
+
// $pagination-li-font-color: #222;
|
780
|
+
// $pagination-li-font-size: rem-calc(14);
|
781
|
+
// $pagination-li-margin: rem-calc(5);
|
782
|
+
|
783
|
+
// We use these for the pagination anchor links
|
784
|
+
// $pagination-link-pad: rem-calc(1 10 1);
|
785
|
+
// $pagination-link-font-color: #999;
|
786
|
+
// $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
|
787
|
+
|
788
|
+
// We use these for disabled anchor links
|
789
|
+
// $pagination-link-unavailable-cursor: default;
|
790
|
+
// $pagination-link-unavailable-font-color: #999;
|
791
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
792
|
+
|
793
|
+
// We use these for currently selected anchor links
|
794
|
+
// $pagination-link-current-background: $primary-color;
|
795
|
+
// $pagination-link-current-font-color: #fff;
|
796
|
+
// $pagination-link-current-font-weight: bold;
|
797
|
+
// $pagination-link-current-cursor: default;
|
798
|
+
// $pagination-link-current-active-bg: $primary-color;
|
799
|
+
|
800
|
+
// Panels
|
801
|
+
|
802
|
+
// $include-html-panel-classes: $include-html-classes;
|
803
|
+
|
804
|
+
// We use these to control the background and border styles
|
805
|
+
// $panel-bg: scale-color(#fff, $lightness: -5%);
|
806
|
+
// $panel-border-style: solid;
|
807
|
+
// $panel-border-size: 1px;
|
808
|
+
|
809
|
+
// We use this % to control how much we darken things on hover
|
810
|
+
// $panel-function-factor: -11%;
|
811
|
+
// $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
|
812
|
+
|
813
|
+
// We use these to set default inner padding and bottom margin
|
814
|
+
// $panel-margin-bottom: rem-calc(20);
|
815
|
+
// $panel-padding: rem-calc(20);
|
816
|
+
|
817
|
+
// We use these to set default font colors
|
818
|
+
// $panel-font-color: #333;
|
819
|
+
// $panel-font-color-alt: #fff;
|
820
|
+
|
821
|
+
// $panel-header-adjust: true;
|
822
|
+
// $callout-panel-link-color: $primary-color;
|
823
|
+
|
824
|
+
// Pricing Tables
|
825
|
+
|
826
|
+
// $include-html-pricing-classes: $include-html-classes;
|
827
|
+
|
828
|
+
// We use this to control the border color
|
829
|
+
// $price-table-border: solid 1px #ddd;
|
830
|
+
|
831
|
+
// We use this to control the bottom margin of the pricing table
|
832
|
+
// $price-table-margin-bottom: rem-calc(20);
|
833
|
+
|
834
|
+
// We use these to control the title styles
|
835
|
+
// $price-title-bg: #333;
|
836
|
+
// $price-title-padding: rem-calc(15 20);
|
837
|
+
// $price-title-align: center;
|
838
|
+
// $price-title-color: #eee;
|
839
|
+
// $price-title-weight: normal;
|
840
|
+
// $price-title-size: rem-calc(16);
|
841
|
+
// $price-title-font-family: $body-font-family;
|
842
|
+
|
843
|
+
// We use these to control the price styles
|
844
|
+
// $price-money-bg: #f6f6f6 ;
|
845
|
+
// $price-money-padding: rem-calc(15 20);
|
846
|
+
// $price-money-align: center;
|
847
|
+
// $price-money-color: #333;
|
848
|
+
// $price-money-weight: normal;
|
849
|
+
// $price-money-size: rem-calc(32);
|
850
|
+
// $price-money-font-family: $body-font-family;
|
851
|
+
|
852
|
+
|
853
|
+
// We use these to control the description styles
|
854
|
+
// $price-bg: #fff;
|
855
|
+
// $price-desc-color: #777;
|
856
|
+
// $price-desc-padding: rem-calc(15);
|
857
|
+
// $price-desc-align: center;
|
858
|
+
// $price-desc-font-size: rem-calc(12);
|
859
|
+
// $price-desc-weight: normal;
|
860
|
+
// $price-desc-line-height: 1.4;
|
861
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
862
|
+
|
863
|
+
// We use these to control the list item styles
|
864
|
+
// $price-item-color: #333;
|
865
|
+
// $price-item-padding: rem-calc(15);
|
866
|
+
// $price-item-align: center;
|
867
|
+
// $price-item-font-size: rem-calc(14);
|
868
|
+
// $price-item-weight: normal;
|
869
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
870
|
+
|
871
|
+
// We use these to control the CTA area styles
|
872
|
+
// $price-cta-bg: #fff;
|
873
|
+
// $price-cta-align: center;
|
874
|
+
// $price-cta-padding: rem-calc(20 20 0);
|
875
|
+
|
876
|
+
// Progress Bar
|
877
|
+
|
878
|
+
// $include-html-media-classes: $include-html-classes;
|
879
|
+
|
880
|
+
// We use this to set the progress bar height
|
881
|
+
// $progress-bar-height: rem-calc(25);
|
882
|
+
// $progress-bar-color: #f6f6f6 ;
|
883
|
+
|
884
|
+
// We use these to control the border styles
|
885
|
+
// $progress-bar-border-color: scale-color(#fff, $lightness: 20%);
|
886
|
+
// $progress-bar-border-size: 1px;
|
887
|
+
// $progress-bar-border-style: solid;
|
888
|
+
// $progress-bar-border-radius: $global-radius;
|
889
|
+
|
890
|
+
// We use these to control the margin & padding
|
891
|
+
// $progress-bar-pad: rem-calc(2);
|
892
|
+
// $progress-bar-margin-bottom: rem-calc(10);
|
893
|
+
|
894
|
+
// We use these to set the meter colors
|
895
|
+
// $progress-meter-color: $primary-color;
|
896
|
+
// $progress-meter-secondary-color: $secondary-color;
|
897
|
+
// $progress-meter-success-color: $success-color;
|
898
|
+
// $progress-meter-alert-color: $alert-color;
|
899
|
+
|
900
|
+
// Reveal
|
901
|
+
|
902
|
+
// $include-html-reveal-classes: $include-html-classes;
|
903
|
+
|
904
|
+
// We use these to control the style of the reveal overlay.
|
905
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
906
|
+
// $reveal-overlay-bg-old: #000;
|
907
|
+
|
908
|
+
// We use these to control the style of the modal itself.
|
909
|
+
// $reveal-modal-bg: #fff;
|
910
|
+
// $reveal-position-top: rem-calc(100);
|
911
|
+
// $reveal-default-width: 80%;
|
912
|
+
// $reveal-modal-padding: rem-calc(20);
|
913
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
914
|
+
|
915
|
+
// We use these to style the reveal close button
|
916
|
+
// $reveal-close-font-size: rem-calc(40);
|
917
|
+
// $reveal-close-top: rem-calc(8);
|
918
|
+
// $reveal-close-side: rem-calc(11);
|
919
|
+
// $reveal-close-color: #aaa;
|
920
|
+
// $reveal-close-weight: bold;
|
921
|
+
|
922
|
+
// We use this to set the default radius used throughout the core.
|
923
|
+
// $reveal-radius: $global-radius;
|
924
|
+
// $reveal-round: $global-rounded;
|
925
|
+
|
926
|
+
// We use these to control the modal border
|
927
|
+
// $reveal-border-style: solid;
|
928
|
+
// $reveal-border-width: 1px;
|
929
|
+
// $reveal-border-color: #666;
|
930
|
+
|
931
|
+
// $reveal-modal-class: "reveal-modal";
|
932
|
+
// $close-reveal-modal-class: "close-reveal-modal";
|
933
|
+
|
934
|
+
// Side Nav
|
935
|
+
|
936
|
+
// $include-html-nav-classes: $include-html-classes;
|
937
|
+
|
938
|
+
// We use this to control padding.
|
939
|
+
// $side-nav-padding: rem-calc(14 0);
|
940
|
+
|
941
|
+
// We use these to control list styles.
|
942
|
+
// $side-nav-list-type: none;
|
943
|
+
// $side-nav-list-position: inside;
|
944
|
+
// $side-nav-list-margin: rem-calc(0 0 7 0);
|
945
|
+
|
946
|
+
// We use these to control link styles.
|
947
|
+
// $side-nav-link-color: $primary-color;
|
948
|
+
// $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
|
949
|
+
// $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
|
950
|
+
// $side-nav-font-size: rem-calc(14);
|
951
|
+
// $side-nav-font-weight: normal;
|
952
|
+
// $side-nav-font-weight-active: $side-nav-font-weight;
|
953
|
+
// $side-nav-font-family: $body-font-family;
|
954
|
+
// $side-nav-active-font-family: $side-nav-font-family;
|
955
|
+
|
956
|
+
|
957
|
+
|
958
|
+
// We use these to control border styles
|
959
|
+
// $side-nav-divider-size: 1px;
|
960
|
+
// $side-nav-divider-style: solid;
|
961
|
+
// $side-nav-divider-color: scale-color(#fff, $lightness: 10%);
|
962
|
+
|
963
|
+
// Split Buttons
|
964
|
+
|
965
|
+
// $include-html-button-classes: $include-html-classes;
|
966
|
+
|
967
|
+
// We use these to control different shared styles for Split Buttons
|
968
|
+
// $split-button-function-factor: 10%;
|
969
|
+
// $split-button-pip-color: #fff;
|
970
|
+
// $split-button-pip-color-alt: #333;
|
971
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
972
|
+
|
973
|
+
// We use these to control tiny split buttons
|
974
|
+
// $split-button-padding-tny: $button-pip-tny * 10;
|
975
|
+
// $split-button-span-width-tny: $button-pip-tny * 6;
|
976
|
+
// $split-button-pip-size-tny: $button-pip-tny;
|
977
|
+
// $split-button-pip-top-tny: $button-pip-tny * 2;
|
978
|
+
// $split-button-pip-default-float-tny: rem-calc(-6);
|
979
|
+
|
980
|
+
// We use these to control small split buttons
|
981
|
+
// $split-button-padding-sml: $button-pip-sml * 10;
|
982
|
+
// $split-button-span-width-sml: $button-pip-sml * 6;
|
983
|
+
// $split-button-pip-size-sml: $button-pip-sml;
|
984
|
+
// $split-button-pip-top-sml: $button-pip-sml * 1.5;
|
985
|
+
// $split-button-pip-default-float-sml: rem-calc(-6);
|
986
|
+
|
987
|
+
// We use these to control medium split buttons
|
988
|
+
// $split-button-padding-med: $button-pip-med * 9;
|
989
|
+
// $split-button-span-width-med: $button-pip-med * 5.5;
|
990
|
+
// $split-button-pip-size-med: $button-pip-med - rem-calc(3);
|
991
|
+
// $split-button-pip-top-med: $button-pip-med * 1.5;
|
992
|
+
// $split-button-pip-default-float-med: rem-calc(-6);
|
993
|
+
|
994
|
+
// We use these to control large split buttons
|
995
|
+
// $split-button-padding-lrg: $button-pip-lrg * 8;
|
996
|
+
// $split-button-span-width-lrg: $button-pip-lrg * 5;
|
997
|
+
// $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
998
|
+
// $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
|
999
|
+
// $split-button-pip-default-float-lrg: rem-calc(-6);
|
1000
|
+
|
1001
|
+
// Sub Nav
|
1002
|
+
|
1003
|
+
// $include-html-nav-classes: $include-html-classes;
|
1004
|
+
|
1005
|
+
// We use these to control margin and padding
|
1006
|
+
// $sub-nav-list-margin: rem-calc(-4 0 18);
|
1007
|
+
// $sub-nav-list-padding-top: rem-calc(4);
|
1008
|
+
|
1009
|
+
// We use this to control the definition
|
1010
|
+
// $sub-nav-font-family: $body-font-family;
|
1011
|
+
// $sub-nav-font-size: rem-calc(14);
|
1012
|
+
// $sub-nav-font-color: #999;
|
1013
|
+
// $sub-nav-font-weight: normal;
|
1014
|
+
// $sub-nav-text-decoration: none;
|
1015
|
+
// $sub-nav-padding: rem-calc(3 16);
|
1016
|
+
// $sub-nav-border-radius: 3px;
|
1017
|
+
// $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
|
1018
|
+
|
1019
|
+
|
1020
|
+
// We use these to control the active item styles
|
1021
|
+
// $sub-nav-active-font-weight: normal;
|
1022
|
+
// $sub-nav-active-bg: $primary-color;
|
1023
|
+
// $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
|
1024
|
+
// $sub-nav-active-color: #fff;
|
1025
|
+
// $sub-nav-active-padding: $sub-nav-padding;
|
1026
|
+
// $sub-nav-active-cursor: default;
|
1027
|
+
|
1028
|
+
// $sub-nav-item-divider: "";
|
1029
|
+
// $sub-nav-item-divider-margin: rem-calc(12);
|
1030
|
+
|
1031
|
+
//
|
1032
|
+
// SWITCH
|
1033
|
+
//
|
1034
|
+
|
1035
|
+
// $include-html-form-classes: $include-html-classes;
|
1036
|
+
|
1037
|
+
// Controlling border styles and background colors for the switch container
|
1038
|
+
// $switch-border-color: scale-color(#fff, $lightness: -20%);
|
1039
|
+
// $switch-border-style: solid;
|
1040
|
+
// $switch-border-width: 1px;
|
1041
|
+
// $switch-bg: #fff;
|
1042
|
+
|
1043
|
+
// We use these to control the switch heights for our default classes
|
1044
|
+
// $switch-height-tny: 22px;
|
1045
|
+
// $switch-height-sml: 28px;
|
1046
|
+
// $switch-height-med: 36px;
|
1047
|
+
// $switch-height-lrg: 44px;
|
1048
|
+
// $switch-bottom-margin: rem-calc(20);
|
1049
|
+
|
1050
|
+
// We use these to control default font sizes for our classes.
|
1051
|
+
// $switch-font-size-tny: 11px;
|
1052
|
+
// $switch-font-size-sml: 12px;
|
1053
|
+
// $switch-font-size-med: 14px;
|
1054
|
+
// $switch-font-size-lrg: 17px;
|
1055
|
+
// $switch-label-side-padding: 6px;
|
1056
|
+
|
1057
|
+
// We use these to style the switch-paddle
|
1058
|
+
// $switch-paddle-bg: #fff;
|
1059
|
+
// $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
|
1060
|
+
// $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
|
1061
|
+
// $switch-paddle-border-width: 1px;
|
1062
|
+
// $switch-paddle-border-style: solid;
|
1063
|
+
// $switch-paddle-transition-speed: .1s;
|
1064
|
+
// $switch-paddle-transition-ease: ease-out;
|
1065
|
+
// $switch-positive-color: scale-color($success-color, $lightness: 94%);
|
1066
|
+
// $switch-negative-color: #f5f5f5;
|
1067
|
+
|
1068
|
+
// Outline Style for tabbing through switches
|
1069
|
+
// $switch-label-outline: 1px dotted #888;
|
1070
|
+
|
1071
|
+
// Tables
|
1072
|
+
|
1073
|
+
// $include-html-table-classes: $include-html-classes;
|
1074
|
+
|
1075
|
+
// These control the background color for the table and even rows
|
1076
|
+
// $table-bg: #fff;
|
1077
|
+
// $table-even-row-bg: #f9f9f9 ;
|
1078
|
+
|
1079
|
+
// These control the table cell border style
|
1080
|
+
// $table-border-style: solid;
|
1081
|
+
// $table-border-size: 1px;
|
1082
|
+
// $table-border-color: #ddd;
|
1083
|
+
|
1084
|
+
// These control the table head styles
|
1085
|
+
// $table-head-bg: #f5f5f5 ;
|
1086
|
+
// $table-head-font-size: rem-calc(14);
|
1087
|
+
// $table-head-font-color: #222;
|
1088
|
+
// $table-head-font-weight: bold;
|
1089
|
+
// $table-head-padding: rem-calc(8 10 10);
|
1090
|
+
|
1091
|
+
// These control the row padding and font styles
|
1092
|
+
// $table-row-padding: rem-calc(9 10);
|
1093
|
+
// $table-row-font-size: rem-calc(14);
|
1094
|
+
// $table-row-font-color: #222;
|
1095
|
+
// $table-line-height: rem-calc(18);
|
1096
|
+
|
1097
|
+
// These are for controlling the display and margin of tables
|
1098
|
+
// $table-display: table-cell;
|
1099
|
+
// $table-margin-bottom: rem-calc(20);
|
1100
|
+
|
1101
|
+
//
|
1102
|
+
// TABS
|
1103
|
+
//
|
1104
|
+
|
1105
|
+
// $include-html-tabs-classes: $include-html-classes;
|
1106
|
+
|
1107
|
+
// $tabs-navigation-padding: rem-calc(16);
|
1108
|
+
// $tabs-navigation-bg-color: #efefef ;
|
1109
|
+
// $tabs-navigation-active-bg-color: #fff;
|
1110
|
+
// $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
|
1111
|
+
// $tabs-navigation-font-color: #222;
|
1112
|
+
// $tabs-navigation-font-size: rem-calc(16);
|
1113
|
+
// $tabs-navigation-font-family: $body-font-family;
|
1114
|
+
|
1115
|
+
// $tabs-content-margin-bottom: rem-calc(24);
|
1116
|
+
// $tabs-content-padding: $column-gutter/2;
|
1117
|
+
|
1118
|
+
// $tabs-vertical-navigation-margin-bottom: 1.25rem;
|
1119
|
+
|
1120
|
+
//
|
1121
|
+
// THUMBNAILS
|
1122
|
+
//
|
1123
|
+
|
1124
|
+
// $include-html-media-classes: $include-html-classes;
|
1125
|
+
|
1126
|
+
// We use these to control border styles
|
1127
|
+
// $thumb-border-style: solid;
|
1128
|
+
// $thumb-border-width: 4px;
|
1129
|
+
// $thumb-border-color: #fff;
|
1130
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
1131
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
1132
|
+
|
1133
|
+
// Radius and transition speed for thumbs
|
1134
|
+
// $thumb-radius: $global-radius;
|
1135
|
+
// $thumb-transition-speed: 200ms;
|
1136
|
+
|
1137
|
+
//
|
1138
|
+
// TOOLTIPS
|
1139
|
+
//
|
1140
|
+
|
1141
|
+
// $include-html-tooltip-classes: $include-html-classes;
|
1142
|
+
|
1143
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
1144
|
+
// $has-tip-font-weight: bold;
|
1145
|
+
// $has-tip-font-color: #333;
|
1146
|
+
// $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
|
1147
|
+
// $has-tip-font-color-hover: $primary-color;
|
1148
|
+
// $has-tip-cursor-type: help;
|
1149
|
+
|
1150
|
+
// $tooltip-padding: rem-calc(12);
|
1151
|
+
// $tooltip-bg: #333;
|
1152
|
+
// $tooltip-font-size: rem-calc(14);
|
1153
|
+
// $tooltip-font-weight: normal;
|
1154
|
+
// $tooltip-font-color: #fff;
|
1155
|
+
// $tooltip-line-height: 1.3;
|
1156
|
+
// $tooltip-close-font-size: rem-calc(10);
|
1157
|
+
// $tooltip-close-font-weight: normal;
|
1158
|
+
// $tooltip-close-font-color: #777;
|
1159
|
+
// $tooltip-font-size-sml: rem-calc(14);
|
1160
|
+
// $tooltip-radius: $global-radius;
|
1161
|
+
// $tooltip-rounded: $global-rounded;
|
1162
|
+
// $tooltip-pip-size: 5px;
|
1163
|
+
|
1164
|
+
//
|
1165
|
+
// TOP BAR
|
1166
|
+
//
|
1167
|
+
|
1168
|
+
// $include-html-top-bar-classes: $include-html-classes;
|
1169
|
+
|
1170
|
+
// Background color for the top bar
|
1171
|
+
// $topbar-bg-color: #333;
|
1172
|
+
// $topbar-bg: $topbar-bg-color;
|
1173
|
+
|
1174
|
+
// Height and margin
|
1175
|
+
// $topbar-height: 45px;
|
1176
|
+
// $topbar-margin-bottom: 0;
|
1177
|
+
|
1178
|
+
// Controlling the styles for the title in the top bar
|
1179
|
+
// $topbar-title-weight: normal;
|
1180
|
+
// $topbar-title-font-size: rem-calc(17);
|
1181
|
+
|
1182
|
+
// Style the top bar dropdown elements
|
1183
|
+
// $topbar-dropdown-bg: #333;
|
1184
|
+
// $topbar-dropdown-link-color: #fff;
|
1185
|
+
// $topbar-dropdown-link-bg: #333;
|
1186
|
+
// $topbar-dropdown-link-weight: normal;
|
1187
|
+
// $topbar-dropdown-toggle-size: 5px;
|
1188
|
+
// $topbar-dropdown-toggle-color: #fff;
|
1189
|
+
// $topbar-dropdown-toggle-alpha: 0.4;
|
1190
|
+
|
1191
|
+
// Set the link colors and styles for top-level nav
|
1192
|
+
// $topbar-link-color: #fff;
|
1193
|
+
// $topbar-link-color-hover: #fff;
|
1194
|
+
// $topbar-link-color-active: #fff;
|
1195
|
+
// $topbar-link-color-active-hover: #fff;
|
1196
|
+
// $topbar-link-weight: normal;
|
1197
|
+
// $topbar-link-font-size: rem-calc(13);
|
1198
|
+
// $topbar-link-hover-lightness: -10%; // Darken by 10%
|
1199
|
+
// $topbar-link-bg: $topbar-bg;
|
1200
|
+
// $topbar-link-bg-hover: #272727;
|
1201
|
+
// $topbar-link-bg-active: $primary-color;
|
1202
|
+
// $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
|
1203
|
+
// $topbar-link-font-family: $body-font-family;
|
1204
|
+
// $topbar-link-text-transform: none;
|
1205
|
+
// $topbar-link-padding: $topbar-height / 3;
|
1206
|
+
|
1207
|
+
// $topbar-button-font-size: 0.75rem;
|
1208
|
+
// $topbar-button-top: 7px;
|
1209
|
+
|
1210
|
+
// $topbar-dropdown-label-color: #777;
|
1211
|
+
// $topbar-dropdown-label-text-transform: uppercase;
|
1212
|
+
// $topbar-dropdown-label-font-weight: bold;
|
1213
|
+
// $topbar-dropdown-label-font-size: rem-calc(10);
|
1214
|
+
// $topbar-dropdown-label-bg: #333;
|
1215
|
+
|
1216
|
+
// Top menu icon styles
|
1217
|
+
// $topbar-menu-link-transform: uppercase;
|
1218
|
+
// $topbar-menu-link-font-size: rem-calc(13);
|
1219
|
+
// $topbar-menu-link-weight: bold;
|
1220
|
+
// $topbar-menu-link-color: #fff;
|
1221
|
+
// $topbar-menu-icon-color: #fff;
|
1222
|
+
// $topbar-menu-link-color-toggled: #888;
|
1223
|
+
// $topbar-menu-icon-color-toggled: #888;
|
1224
|
+
|
1225
|
+
// Transitions and breakpoint styles
|
1226
|
+
// $topbar-transition-speed: 300ms;
|
1227
|
+
// Using rem-calc for the below breakpoint causes issues with top bar
|
1228
|
+
// $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
|
1229
|
+
// $topbar-media-query: $medium-up;
|
1230
|
+
|
1231
|
+
// Divider Styles
|
1232
|
+
// $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
|
1233
|
+
// $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
|
1234
|
+
|
1235
|
+
// Sticky Class
|
1236
|
+
// $topbar-sticky-class: ".sticky";
|
1237
|
+
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|
1238
|
+
|
1239
|
+
//
|
1240
|
+
// VISIBILITY CLASSES
|
1241
|
+
//
|
1242
|
+
|
1243
|
+
// $include-html-visibility-classes: $include-html-classes;
|
1244
|
+
// $include-table-visibility-classes: true;
|
1245
|
+
// $include-legacy-visibility-classes: true;
|
1246
|
+
|
1247
|
+
//
|
1248
|
+
// RANGE SLIDER
|
1249
|
+
//
|
1250
|
+
|
1251
|
+
// $include-html-range-slider-classes: $include-html-classes;
|
1252
|
+
|
1253
|
+
// These variabels define the slider bar styles
|
1254
|
+
// $range-slider-bar-width: 100%;
|
1255
|
+
// $range-slider-bar-height: rem-calc(16);
|
1256
|
+
|
1257
|
+
// $range-slider-bar-border-width: 1px;
|
1258
|
+
// $range-slider-bar-border-style: solid;
|
1259
|
+
// $range-slider-bar-border-color: #ddd;
|
1260
|
+
// $range-slider-radius: $global-radius;
|
1261
|
+
// $range-slider-round: $global-rounded;
|
1262
|
+
// $range-slider-bar-bg-color: #fafafa;
|
1263
|
+
|
1264
|
+
// Vertical bar styles
|
1265
|
+
// $range-slider-vertical-bar-width: rem-calc(16);
|
1266
|
+
// $range-slider-vertical-bar-height: rem-calc(200);
|
1267
|
+
|
1268
|
+
// These variabels define the slider handle styles
|
1269
|
+
// $range-slider-handle-width: rem-calc(32);
|
1270
|
+
// $range-slider-handle-height: rem-calc(22);
|
1271
|
+
// $range-slider-handle-position-top: rem-calc(-5);
|
1272
|
+
// $range-slider-handle-bg-color: $primary-color;
|
1273
|
+
// $range-slider-handle-border-width: 1px;
|
1274
|
+
// $range-slider-handle-border-style: solid;
|
1275
|
+
// $range-slider-handle-border-color: none;
|
1276
|
+
// $range-slider-handle-radius: $global-radius;
|
1277
|
+
// $range-slider-handle-round: $global-rounded;
|
1278
|
+
// $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
|
1279
|
+
// $range-slider-handle-cursor: pointer;
|