foundation-rails 5.0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/app/controllers/foundation/rails/styleguide_controller.rb +10 -0
- data/app/views/foundation/rails/styleguide/show.html.erb +134 -0
- data/config/routes.rb +3 -0
- data/foundation-rails.gemspec +25 -0
- data/lib/foundation-rails.rb +1 -0
- data/lib/foundation/rails.rb +3 -0
- data/lib/foundation/rails/engine.rb +7 -0
- data/lib/foundation/rails/generators/install_generator.rb +56 -0
- data/lib/foundation/rails/templates/application.html.erb +19 -0
- data/lib/foundation/rails/templates/application.html.haml +18 -0
- data/lib/foundation/rails/templates/application.html.slim +17 -0
- data/lib/foundation/rails/version.rb +5 -0
- data/test/dummy/.gitignore +16 -0
- data/test/dummy/Gemfile +47 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +8 -0
- data/test/dummy/app/assets/stylesheets/application.css +4 -0
- data/test/dummy/app/assets/stylesheets/foundation_and_overrides.scss +4 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/controllers/styleguide_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/styleguide_helper.rb +2 -0
- data/test/dummy/app/mailers/.keep +0 -0
- data/test/dummy/app/models/.keep +0 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +19 -0
- data/test/dummy/app/views/styleguide/show.html.erb +109 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +4 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/db/seeds.rb +7 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/lib/tasks/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/robots.txt +5 -0
- data/test/dummy/test/controllers/.keep +0 -0
- data/test/dummy/test/controllers/styleguide_controller_test.rb +9 -0
- data/test/dummy/test/fixtures/.keep +0 -0
- data/test/dummy/test/helpers/.keep +0 -0
- data/test/dummy/test/helpers/styleguide_helper_test.rb +4 -0
- data/test/dummy/test/integration/.keep +0 -0
- data/test/dummy/test/mailers/.keep +0 -0
- data/test/dummy/test/models/.keep +0 -0
- data/test/dummy/test/test_helper.rb +15 -0
- data/test/dummy/vendor/assets/javascripts/.keep +0 -0
- data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
- data/vendor/_settings.scss +992 -0
- data/vendor/assets/javascripts/foundation.js +15 -0
- data/vendor/assets/javascripts/foundation/foundation.abide.js +201 -0
- data/vendor/assets/javascripts/foundation/foundation.accordion.js +41 -0
- data/vendor/assets/javascripts/foundation/foundation.alert.js +34 -0
- data/vendor/assets/javascripts/foundation/foundation.clearing.js +450 -0
- data/vendor/assets/javascripts/foundation/foundation.dropdown.js +184 -0
- data/vendor/assets/javascripts/foundation/foundation.interchange.js +304 -0
- data/vendor/assets/javascripts/foundation/foundation.joyride.js +839 -0
- data/vendor/assets/javascripts/foundation/foundation.js +416 -0
- data/vendor/assets/javascripts/foundation/foundation.magellan.js +118 -0
- data/vendor/assets/javascripts/foundation/foundation.offcanvas.js +37 -0
- data/vendor/assets/javascripts/foundation/foundation.orbit.js +434 -0
- data/vendor/assets/javascripts/foundation/foundation.reveal.js +347 -0
- data/vendor/assets/javascripts/foundation/foundation.tab.js +37 -0
- data/vendor/assets/javascripts/foundation/foundation.tooltip.js +202 -0
- data/vendor/assets/javascripts/foundation/foundation.topbar.js +380 -0
- data/vendor/assets/javascripts/vendor/modernizr.js +4 -0
- data/vendor/assets/stylesheets/foundation.scss +38 -0
- data/vendor/assets/stylesheets/foundation/_functions.scss +75 -0
- data/vendor/assets/stylesheets/foundation/_settings.scss +992 -0
- data/vendor/assets/stylesheets/foundation/components/_accordion.scss +49 -0
- data/vendor/assets/stylesheets/foundation/components/_alert-boxes.scss +113 -0
- data/vendor/assets/stylesheets/foundation/components/_block-grid.scss +83 -0
- data/vendor/assets/stylesheets/foundation/components/_breadcrumbs.scss +123 -0
- data/vendor/assets/stylesheets/foundation/components/_button-groups.scss +97 -0
- data/vendor/assets/stylesheets/foundation/components/_buttons.scss +234 -0
- data/vendor/assets/stylesheets/foundation/components/_clearing.scss +233 -0
- data/vendor/assets/stylesheets/foundation/components/_dropdown-buttons.scss +125 -0
- data/vendor/assets/stylesheets/foundation/components/_dropdown.scss +159 -0
- data/vendor/assets/stylesheets/foundation/components/_flex-video.scss +47 -0
- data/vendor/assets/stylesheets/foundation/components/_forms.scss +472 -0
- data/vendor/assets/stylesheets/foundation/components/_functions.scss +70 -0
- data/vendor/assets/stylesheets/foundation/components/_global.scss +387 -0
- data/vendor/assets/stylesheets/foundation/components/_grid.scss +234 -0
- data/vendor/assets/stylesheets/foundation/components/_inline-lists.scss +52 -0
- data/vendor/assets/stylesheets/foundation/components/_joyride.scss +220 -0
- data/vendor/assets/stylesheets/foundation/components/_keystrokes.scss +57 -0
- data/vendor/assets/stylesheets/foundation/components/_labels.scss +100 -0
- data/vendor/assets/stylesheets/foundation/components/_magellan.scss +30 -0
- data/vendor/assets/stylesheets/foundation/components/_offcanvas.scss +360 -0
- data/vendor/assets/stylesheets/foundation/components/_orbit.scss +353 -0
- data/vendor/assets/stylesheets/foundation/components/_pagination.scss +145 -0
- data/vendor/assets/stylesheets/foundation/components/_panels.scss +87 -0
- data/vendor/assets/stylesheets/foundation/components/_pricing-tables.scss +146 -0
- data/vendor/assets/stylesheets/foundation/components/_progress-bars.scss +75 -0
- data/vendor/assets/stylesheets/foundation/components/_reveal.scss +165 -0
- data/vendor/assets/stylesheets/foundation/components/_side-nav.scss +83 -0
- data/vendor/assets/stylesheets/foundation/components/_split-buttons.scss +187 -0
- data/vendor/assets/stylesheets/foundation/components/_sub-nav.scss +118 -0
- data/vendor/assets/stylesheets/foundation/components/_switch.scss +314 -0
- data/vendor/assets/stylesheets/foundation/components/_tables.scss +93 -0
- data/vendor/assets/stylesheets/foundation/components/_tabs.scss +95 -0
- data/vendor/assets/stylesheets/foundation/components/_thumbs.scss +71 -0
- data/vendor/assets/stylesheets/foundation/components/_tooltips.scss +121 -0
- data/vendor/assets/stylesheets/foundation/components/_top-bar.scss +590 -0
- data/vendor/assets/stylesheets/foundation/components/_type.scss +447 -0
- data/vendor/assets/stylesheets/foundation/components/_visibility.scss +661 -0
- data/vendor/assets/stylesheets/normalize.scss +410 -0
- metadata +292 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = 'ed04da2f568277f53fa9753860ce635abcc829022e962524a5106444dcc6f96fae8ccfe7c1d5b62706bc8583dc2af78e972854d5411adeef47ebb98726f5626d'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/404.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/422.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/500.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
54
|
+
</div>
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
56
|
+
</body>
|
57
|
+
</html>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
ENV["RAILS_ENV"] ||= "test"
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
3
|
+
require 'rails/test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
ActiveRecord::Migration.check_pending!
|
7
|
+
|
8
|
+
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
9
|
+
#
|
10
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
11
|
+
# -- they do not yet inherit this setting
|
12
|
+
fixtures :all
|
13
|
+
|
14
|
+
# Add more helper methods to be used by all tests here...
|
15
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,992 @@
|
|
1
|
+
//
|
2
|
+
// FOUNDATION SETTINGS
|
3
|
+
//
|
4
|
+
|
5
|
+
// Uncomment to use rem-calc() in your settings
|
6
|
+
// @import "foundation/functions";
|
7
|
+
|
8
|
+
// $experimental: true;
|
9
|
+
|
10
|
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
11
|
+
// for compatibility with brower-based text zoom or user-set defaults.
|
12
|
+
|
13
|
+
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
14
|
+
// If you want your base font-size to be different and not have it affect the grid breakpoints,
|
15
|
+
// set $rem-base to $base-font-size and make sure $base-font-size is a px value.
|
16
|
+
// $base-font-size: 100%;
|
17
|
+
|
18
|
+
// The $base-line-height is 100% while $base-font-size is 150%
|
19
|
+
// $base-line-height: 150%;
|
20
|
+
|
21
|
+
// This is the default html and body font-size for the base rem value.
|
22
|
+
// $rem-base: 16px;
|
23
|
+
|
24
|
+
// We use this to control whether or not CSS classes come through in the gem files.
|
25
|
+
// $include-html-classes: true;
|
26
|
+
// $include-print-styles: true;
|
27
|
+
// $include-html-global-classes: $include-html-classes;
|
28
|
+
|
29
|
+
// Grid
|
30
|
+
|
31
|
+
// $include-html-grid-classes: $include-html-classes;
|
32
|
+
|
33
|
+
// $row-width: rem-calc(1000);
|
34
|
+
// $column-gutter: rem-calc(30);
|
35
|
+
// $total-columns: 12;
|
36
|
+
|
37
|
+
// We use these to control various global styles
|
38
|
+
// $body-bg: #fff;
|
39
|
+
// $body-font-color: #222;
|
40
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
41
|
+
// $body-font-weight: normal;
|
42
|
+
// $body-font-style: normal;
|
43
|
+
|
44
|
+
// We use this to control font-smoothing
|
45
|
+
// $font-smoothing: antialiased;
|
46
|
+
|
47
|
+
// We use these to control text direction settings
|
48
|
+
// $text-direction: ltr;
|
49
|
+
// $opposite-direction: right;
|
50
|
+
// $default-float: left;
|
51
|
+
|
52
|
+
// We use these as default colors throughout
|
53
|
+
// $primary-color: #008CBA;
|
54
|
+
// $secondary-color: #e7e7e7;
|
55
|
+
// $alert-color: #f04124;
|
56
|
+
// $success-color: #43AC6A;
|
57
|
+
|
58
|
+
// We use these to make sure border radius matches unless we want it different.
|
59
|
+
// $global-radius: 3px;
|
60
|
+
// $global-rounded: 1000px;
|
61
|
+
|
62
|
+
// We use these to control inset shadow shiny edges and depressions.
|
63
|
+
// $shiny-edge-size: 0 1px 0;
|
64
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
65
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
66
|
+
|
67
|
+
// Media Query Ranges
|
68
|
+
// $small-range: (0em, 40em);
|
69
|
+
// $medium-range: (40.063em, 64em);
|
70
|
+
// $large-range: (64.063em, 90em);
|
71
|
+
// $xlarge-range: (90.063em, 120em);
|
72
|
+
// $xxlarge-range: (120.063em);
|
73
|
+
|
74
|
+
// $screen: "only screen";
|
75
|
+
|
76
|
+
// $landscape: "#{$screen} and (orientation: landscape)";
|
77
|
+
// $portrait: "#{$screen} and (orientation: portrait)";
|
78
|
+
|
79
|
+
// $small-up: $screen;
|
80
|
+
// $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
|
81
|
+
|
82
|
+
// $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
|
83
|
+
// $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
|
84
|
+
|
85
|
+
// $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
|
86
|
+
// $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
|
87
|
+
|
88
|
+
// $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
|
89
|
+
// $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
|
90
|
+
|
91
|
+
// $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
|
92
|
+
// $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
|
93
|
+
|
94
|
+
// Legacy
|
95
|
+
// $small: $medium-up;
|
96
|
+
// $medium: $medium-up;
|
97
|
+
// $large: $large-up;
|
98
|
+
|
99
|
+
//We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
|
100
|
+
// $cursor-crosshair-value: crosshair;
|
101
|
+
// $cursor-default-value: default;
|
102
|
+
// $cursor-pointer-value: pointer;
|
103
|
+
// $cursor-help-value: help;
|
104
|
+
// $cursor-text-value: text;
|
105
|
+
|
106
|
+
// Accordion
|
107
|
+
|
108
|
+
// $include-html-accordion-classes: $include-html-classes;
|
109
|
+
|
110
|
+
// $accordion-navigation-padding: rem-calc(16);
|
111
|
+
// $accordion-navigation-bg-color: #efefef ;
|
112
|
+
// $accordion-navigation-hover-bg-color: darken($accordion-navigation-bg-color, 5%);
|
113
|
+
// $accordion-navigation-active-bg-color: darken($accordion-navigation-bg-color, 3%);
|
114
|
+
// $accordion-navigation-font-color: #222;
|
115
|
+
// $accordion-navigation-font-size: rem-calc(16);
|
116
|
+
// $accordion-navigation-font-family: $body-font-family;
|
117
|
+
|
118
|
+
// $accordion-content-padding: $column-gutter/2;
|
119
|
+
// $accordion-content-active-bg-color: #fff;
|
120
|
+
|
121
|
+
// Alert Boxes
|
122
|
+
|
123
|
+
// $include-html-alert-classes: $include-html-classes;
|
124
|
+
|
125
|
+
// We use this to control alert padding.
|
126
|
+
// $alert-padding-top: rem-calc(14);
|
127
|
+
// $alert-padding-default-float: $alert-padding-top;
|
128
|
+
// $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
|
129
|
+
// $alert-padding-bottom: $alert-padding-top;
|
130
|
+
|
131
|
+
// We use these to control text style.
|
132
|
+
// $alert-font-weight: normal;
|
133
|
+
// $alert-font-size: rem-calc(13);
|
134
|
+
// $alert-font-color: #fff;
|
135
|
+
// $alert-font-color-alt: darken($secondary-color, 60%);
|
136
|
+
|
137
|
+
// We use this for close hover effect.
|
138
|
+
// $alert-function-factor: 5%;
|
139
|
+
|
140
|
+
// We use these to control border styles.
|
141
|
+
// $alert-border-style: solid;
|
142
|
+
// $alert-border-width: 1px;
|
143
|
+
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
144
|
+
// $alert-bottom-margin: rem-calc(20);
|
145
|
+
|
146
|
+
// We use these to style the close buttons
|
147
|
+
// $alert-close-color: #333;
|
148
|
+
// $alert-close-position: rem-calc(5);
|
149
|
+
// $alert-close-font-size: rem-calc(22);
|
150
|
+
// $alert-close-opacity: 0.3;
|
151
|
+
// $alert-close-opacity-hover: 0.5;
|
152
|
+
// $alert-close-padding: 9px 6px 4px;
|
153
|
+
|
154
|
+
// We use this to control border radius
|
155
|
+
// $alert-radius: $global-radius;
|
156
|
+
|
157
|
+
// Block Grid
|
158
|
+
|
159
|
+
// $include-html-grid-classes: $include-html-classes;
|
160
|
+
|
161
|
+
// We use this to control the maximum number of block grid elements per row
|
162
|
+
// $block-grid-elements: 12;
|
163
|
+
// $block-grid-default-spacing: rem-calc(20);
|
164
|
+
|
165
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
166
|
+
// $block-grid-media-queries: true;
|
167
|
+
|
168
|
+
// Breadcrumbs
|
169
|
+
|
170
|
+
// $include-html-nav-classes: $include-html-classes;
|
171
|
+
|
172
|
+
// We use this to set the background color for the breadcrumb container.
|
173
|
+
// $crumb-bg: lighten($secondary-color, 5%);
|
174
|
+
|
175
|
+
// We use these to set the padding around the breadcrumbs.
|
176
|
+
// $crumb-padding: rem-calc(9 14 9);
|
177
|
+
// $crumb-side-padding: rem-calc(12);
|
178
|
+
|
179
|
+
// We use these to control border styles.
|
180
|
+
// $crumb-function-factor: 10%;
|
181
|
+
// $crumb-border-size: 1px;
|
182
|
+
// $crumb-border-style: solid;
|
183
|
+
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
184
|
+
// $crumb-radius: $global-radius;
|
185
|
+
|
186
|
+
// We use these to set various text styles for breadcrumbs.
|
187
|
+
// $crumb-font-size: rem-calc(11);
|
188
|
+
// $crumb-font-color: $primary-color;
|
189
|
+
// $crumb-font-color-current: #333;
|
190
|
+
// $crumb-font-color-unavailable: #999;
|
191
|
+
// $crumb-font-transform: uppercase;
|
192
|
+
// $crumb-link-decor: underline;
|
193
|
+
|
194
|
+
// We use these to control the slash between breadcrumbs
|
195
|
+
// $crumb-slash-color: #aaa;
|
196
|
+
// $crumb-slash: "/";
|
197
|
+
|
198
|
+
// Button Groups
|
199
|
+
|
200
|
+
// $include-html-button-classes: $include-html-classes;
|
201
|
+
|
202
|
+
// Sets the margin for the right side by default, and the left margin if right-to-left direction is used
|
203
|
+
// $button-bar-margin-opposite: rem-calc(10);
|
204
|
+
// $button-group-border-width: 1px;
|
205
|
+
|
206
|
+
// Clearing
|
207
|
+
|
208
|
+
// $include-html-clearing-classes: $include-html-classes;
|
209
|
+
|
210
|
+
// We use these to set the background colors for parts of Clearing.
|
211
|
+
// $clearing-bg: #333;
|
212
|
+
// $clearing-caption-bg: $clearing-bg;
|
213
|
+
// $clearing-carousel-bg: rgba (51,51,51,0.8);
|
214
|
+
// $clearing-img-bg: $clearing-bg;
|
215
|
+
|
216
|
+
// We use these to style the close button
|
217
|
+
// $clearing-close-color: #ccc;
|
218
|
+
// $clearing-close-size: 30px;
|
219
|
+
|
220
|
+
// We use these to style the arrows
|
221
|
+
// $clearing-arrow-size: 12px;
|
222
|
+
// $clearing-arrow-color: $clearing-close-color;
|
223
|
+
|
224
|
+
// We use these to style captions
|
225
|
+
// $clearing-caption-font-color: #ccc;
|
226
|
+
// $clearing-caption-font-size: 0.875em;
|
227
|
+
// $clearing-caption-padding: 10px 30px 20px;
|
228
|
+
|
229
|
+
// We use these to make the image and carousel height and style
|
230
|
+
// $clearing-active-img-height: 85%;
|
231
|
+
// $clearing-carousel-height: 120px;
|
232
|
+
// $clearing-carousel-thumb-width: 120px;
|
233
|
+
// $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
|
234
|
+
|
235
|
+
// Dropdown
|
236
|
+
|
237
|
+
// $include-html-button-classes: $include-html-classes;
|
238
|
+
|
239
|
+
// We use these to controls height and width styles.
|
240
|
+
// $f-dropdown-max-width: 200px;
|
241
|
+
// $f-dropdown-height: auto;
|
242
|
+
// $f-dropdown-max-height: none;
|
243
|
+
// $f-dropdown-margin-top: 2px;
|
244
|
+
|
245
|
+
// We use this to control the background color
|
246
|
+
// $f-dropdown-bg: #fff;
|
247
|
+
|
248
|
+
// We use this to set the border styles for dropdowns.
|
249
|
+
// $f-dropdown-border-style: solid;
|
250
|
+
// $f-dropdown-border-width: 1px;
|
251
|
+
// $f-dropdown-border-color: darken(#fff, 20%);
|
252
|
+
|
253
|
+
// We use these to style the triangle pip.
|
254
|
+
// $f-dropdown-triangle-size: 6px;
|
255
|
+
// $f-dropdown-triangle-color: #fff;
|
256
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
257
|
+
|
258
|
+
// We use these to control styles for the list elements.
|
259
|
+
// $f-dropdown-list-style: none;
|
260
|
+
// $f-dropdown-font-color: #555;
|
261
|
+
// $f-dropdown-font-size: rem-calc(14);
|
262
|
+
// $f-dropdown-list-padding: rem-calc(5, 10);
|
263
|
+
// $f-dropdown-line-height: rem-calc(18);
|
264
|
+
// $f-dropdown-list-hover-bg: #eeeeee ;
|
265
|
+
// $dropdown-mobile-default-float: 0;
|
266
|
+
|
267
|
+
// We use this to control the styles for when the dropdown has custom content.
|
268
|
+
// $f-dropdown-content-padding: rem-calc(20);
|
269
|
+
|
270
|
+
// Dropdown Buttons
|
271
|
+
|
272
|
+
// $include-html-button-classes: $include-html-classes;
|
273
|
+
|
274
|
+
// We use these to set the color of the pip in dropdown buttons
|
275
|
+
// $dropdown-button-pip-color: #fff;
|
276
|
+
// $dropdown-button-pip-color-alt: #333;
|
277
|
+
|
278
|
+
// $button-pip-tny: rem-calc(6);
|
279
|
+
// $button-pip-sml: rem-calc(7);
|
280
|
+
// $button-pip-med: rem-calc(9);
|
281
|
+
// $button-pip-lrg: rem-calc(11);
|
282
|
+
|
283
|
+
// We use these to style tiny dropdown buttons
|
284
|
+
// $dropdown-button-padding-tny: $button-pip-tny * 7;
|
285
|
+
// $dropdown-button-pip-size-tny: $button-pip-tny;
|
286
|
+
// $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
|
287
|
+
// $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
|
288
|
+
|
289
|
+
// We use these to style small dropdown buttons
|
290
|
+
// $dropdown-button-padding-sml: $button-pip-sml * 7;
|
291
|
+
// $dropdown-button-pip-size-sml: $button-pip-sml;
|
292
|
+
// $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
|
293
|
+
// $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
|
294
|
+
|
295
|
+
// We use these to style medium dropdown buttons
|
296
|
+
// $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
|
297
|
+
// $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
|
298
|
+
// $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
|
299
|
+
// $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
|
300
|
+
|
301
|
+
// We use these to style large dropdown buttons
|
302
|
+
// $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
|
303
|
+
// $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
304
|
+
// $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
|
305
|
+
// $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
|
306
|
+
|
307
|
+
// Flex Video
|
308
|
+
|
309
|
+
// $include-html-media-classes: $include-html-classes;
|
310
|
+
|
311
|
+
// We use these to control video container padding and margins
|
312
|
+
// $flex-video-padding-top: rem-calc(25);
|
313
|
+
// $flex-video-padding-bottom: 67.5%;
|
314
|
+
// $flex-video-margin-bottom: rem-calc(16);
|
315
|
+
|
316
|
+
// We use this to control widescreen bottom padding
|
317
|
+
// $flex-video-widescreen-padding-bottom: 57.25%;
|
318
|
+
|
319
|
+
// Forms
|
320
|
+
|
321
|
+
// $include-html-form-classes: $include-html-classes;
|
322
|
+
|
323
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
324
|
+
// $form-spacing: rem-calc(16);
|
325
|
+
|
326
|
+
// We use these to style the labels in different ways
|
327
|
+
// $form-label-pointer: pointer;
|
328
|
+
// $form-label-font-size: rem-calc(14);
|
329
|
+
// $form-label-font-weight: normal;
|
330
|
+
// $form-label-font-color: lighten(#000, 30%);
|
331
|
+
// $form-label-bottom-margin: rem-calc(8);
|
332
|
+
// $input-font-family: inherit;
|
333
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
334
|
+
// $input-font-size: rem-calc(14);
|
335
|
+
// $input-bg-color: #fff;
|
336
|
+
// $input-focus-bg-color: darken(#fff, 2%);
|
337
|
+
// $input-border-color: darken(#fff, 20%);
|
338
|
+
// $input-focus-border-color: darken(#fff, 40%);
|
339
|
+
// $input-border-style: solid;
|
340
|
+
// $input-border-width: 1px;
|
341
|
+
// $input-disabled-bg: #ddd;
|
342
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
343
|
+
// $input-include-glowing-effect: true;
|
344
|
+
|
345
|
+
// We use these to style the fieldset border and spacing.
|
346
|
+
// $fieldset-border-style: solid;
|
347
|
+
// $fieldset-border-width: 1px;
|
348
|
+
// $fieldset-border-color: #ddd;
|
349
|
+
// $fieldset-padding: rem-calc(20);
|
350
|
+
// $fieldset-margin: rem-calc(18 0);
|
351
|
+
|
352
|
+
// We use these to style the legends when you use them
|
353
|
+
// $legend-bg: #fff;
|
354
|
+
// $legend-font-weight: bold;
|
355
|
+
// $legend-padding: rem-calc(0 3);
|
356
|
+
|
357
|
+
// We use these to style the prefix and postfix input elements
|
358
|
+
// $input-prefix-bg: darken(#fff, 5%);
|
359
|
+
// $input-prefix-border-color: darken(#fff, 20%);
|
360
|
+
// $input-prefix-border-size: 1px;
|
361
|
+
// $input-prefix-border-type: solid;
|
362
|
+
// $input-prefix-overflow: hidden;
|
363
|
+
// $input-prefix-font-color: #333;
|
364
|
+
// $input-prefix-font-color-alt: #fff;
|
365
|
+
|
366
|
+
// We use these to style the error states for inputs and labels
|
367
|
+
// $input-error-message-padding: rem-calc(6 9 9);
|
368
|
+
// $input-error-message-top: -1px;
|
369
|
+
// $input-error-message-font-size: rem-calc(12);
|
370
|
+
// $input-error-message-font-weight: normal;
|
371
|
+
// $input-error-message-font-style: italic;
|
372
|
+
// $input-error-message-font-color: #fff;
|
373
|
+
// $input-error-message-font-color-alt: #333;
|
374
|
+
|
375
|
+
// We use this to style the glowing effect of inputs when focused
|
376
|
+
// $glowing-effect-fade-time: 0.45s;
|
377
|
+
// $glowing-effect-color: $input-focus-border-color;
|
378
|
+
|
379
|
+
// Select variables
|
380
|
+
// $select-bg-color: #fafafa ;
|
381
|
+
|
382
|
+
// Inline Lists
|
383
|
+
|
384
|
+
// $include-html-inline-list-classes: $include-html-classes;
|
385
|
+
|
386
|
+
// We use this to control the margins and padding of the inline list.
|
387
|
+
// $inline-list-top-margin: 0;
|
388
|
+
// $inline-list-opposite-margin: 0;
|
389
|
+
// $inline-list-bottom-margin: rem-calc(17);
|
390
|
+
// $inline-list-default-float-margin: rem-calc(-22);
|
391
|
+
|
392
|
+
// $inline-list-padding: 0;
|
393
|
+
|
394
|
+
// We use this to control the overflow of the inline list.
|
395
|
+
// $inline-list-overflow: hidden;
|
396
|
+
|
397
|
+
// We use this to control the list items
|
398
|
+
// $inline-list-display: block;
|
399
|
+
|
400
|
+
// We use this to control any elments within list items
|
401
|
+
// $inline-list-children-display: block;
|
402
|
+
|
403
|
+
// Joyride
|
404
|
+
|
405
|
+
// $include-html-joyride-classes: $include-html-classes;
|
406
|
+
|
407
|
+
// Controlling default Joyride styles
|
408
|
+
// $joyride-tip-bg: #333;
|
409
|
+
// $joyride-tip-default-width: 300px;
|
410
|
+
// $joyride-tip-padding: rem-calc(18 20 24);
|
411
|
+
// $joyride-tip-border: solid 1px #555;
|
412
|
+
// $joyride-tip-radius: 4px;
|
413
|
+
// $joyride-tip-position-offset: 22px;
|
414
|
+
|
415
|
+
// Here, we're setting the tip dont styles
|
416
|
+
// $joyride-tip-font-color: #fff;
|
417
|
+
// $joyride-tip-font-size: rem-calc(14);
|
418
|
+
// $joyride-tip-header-weight: bold;
|
419
|
+
|
420
|
+
// This changes the nub size
|
421
|
+
// $joyride-tip-nub-size: 10px;
|
422
|
+
|
423
|
+
// This adjusts the styles for the timer when its enabled
|
424
|
+
// $joyride-tip-timer-width: 50px;
|
425
|
+
// $joyride-tip-timer-height: 3px;
|
426
|
+
// $joyride-tip-timer-color: #666;
|
427
|
+
|
428
|
+
// This changes up the styles for the close button
|
429
|
+
// $joyride-tip-close-color: #777;
|
430
|
+
// $joyride-tip-close-size: 24px;
|
431
|
+
// $joyride-tip-close-weight: normal;
|
432
|
+
|
433
|
+
// When Joyride is filling the screen, we use this style for the bg
|
434
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
435
|
+
|
436
|
+
// Keystrokes
|
437
|
+
|
438
|
+
// $include-html-type-classes: $include-html-classes;
|
439
|
+
|
440
|
+
// We use these to control text styles.
|
441
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
442
|
+
// $keystroke-font-size: rem-calc(14);
|
443
|
+
// $keystroke-font-color: #222;
|
444
|
+
// $keystroke-font-color-alt: #fff;
|
445
|
+
// $keystroke-function-factor: 7%;
|
446
|
+
|
447
|
+
// We use this to control keystroke padding.
|
448
|
+
// $keystroke-padding: rem-calc(2 4 0);
|
449
|
+
|
450
|
+
// We use these to control background and border styles.
|
451
|
+
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
452
|
+
// $keystroke-border-style: solid;
|
453
|
+
// $keystroke-border-width: 1px;
|
454
|
+
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
|
455
|
+
// $keystroke-radius: $global-radius;
|
456
|
+
|
457
|
+
// Labels
|
458
|
+
|
459
|
+
// $include-html-label-classes: $include-html-classes;
|
460
|
+
|
461
|
+
// We use these to style the labels
|
462
|
+
// $label-padding: rem-calc(4 8 6);
|
463
|
+
// $label-radius: $global-radius;
|
464
|
+
|
465
|
+
// We use these to style the label text
|
466
|
+
// $label-font-sizing: rem-calc(11);
|
467
|
+
// $label-font-weight: normal;
|
468
|
+
// $label-font-color: #333;
|
469
|
+
// $label-font-color-alt: #fff;
|
470
|
+
// $label-font-family: $body-font-family;
|
471
|
+
|
472
|
+
// Magellan
|
473
|
+
|
474
|
+
// $include-html-magellan-classes: $include-html-classes;
|
475
|
+
|
476
|
+
// $magellan-bg: #fff;
|
477
|
+
// $magellan-padding: 10px;
|
478
|
+
|
479
|
+
// Off-canvas
|
480
|
+
|
481
|
+
// $tabbar-bg: #333;
|
482
|
+
// $tabbar-height: rem-calc(45);
|
483
|
+
// $tabbar-line-height: $tabbar-height;
|
484
|
+
// $tabbar-color: #FFF;
|
485
|
+
// $tabbar-middle-padding: 0 rem-calc(10);
|
486
|
+
|
487
|
+
// Off Canvas Divider Styles
|
488
|
+
// $tabbar-right-section-border: solid 1px lighten($tabbar-bg, 10%);
|
489
|
+
// $tabbar-left-section-border: solid 1px darken($tabbar-bg, 10%);
|
490
|
+
|
491
|
+
// Off Canvas Tab Bar Headers
|
492
|
+
// $tabbar-header-color: #FFF;
|
493
|
+
// $tabbar-header-weight: bold;
|
494
|
+
// $tabbar-header-line-height: $tabbar-height;
|
495
|
+
// $tabbar-header-margin: 0;
|
496
|
+
|
497
|
+
// Off Canvas Menu Variables
|
498
|
+
// $off-canvas-width: 250px;
|
499
|
+
// $off-canvas-bg: #333;
|
500
|
+
|
501
|
+
// Off Canvas Menu List Variables
|
502
|
+
// $off-canvas-label-padding: 0.3rem rem-calc(15);
|
503
|
+
// $off-canvas-label-color: #999;
|
504
|
+
// $off-canvas-label-text-transform: uppercase;
|
505
|
+
// $off-canvas-label-font-weight: bold;
|
506
|
+
// $off-canvas-label-bg: #444;
|
507
|
+
// $off-canvas-label-border-top: 1px solid lighten(#444, 10%);
|
508
|
+
// $off-canvas-label-border-bottom: none;
|
509
|
+
// $off-canvas-label-margin:0;
|
510
|
+
// $off-canvas-link-padding: rem-calc(10, 15);
|
511
|
+
// $off-canvas-link-color: rgba(#FFF, 0.7);
|
512
|
+
// $off-canvas-link-border-bottom: 1px solid darken($off-canvas-bg, 5%);
|
513
|
+
|
514
|
+
// Off Canvas Menu Icon Variables
|
515
|
+
// $tabbar-menu-icon-color: #FFF;
|
516
|
+
// $tabbar-menu-icon-hover: darken($tabbar-menu-icon-color, 30%);
|
517
|
+
|
518
|
+
// $tabbar-menu-icon-text-indent: rem-calc(35);
|
519
|
+
// $tabbar-menu-icon-width: $tabbar-height;
|
520
|
+
// $tabbar-menu-icon-height: $tabbar-height;
|
521
|
+
// $tabbar-menu-icon-line-height: rem-calc(33);
|
522
|
+
// $tabbar-menu-icon-padding: 0;
|
523
|
+
|
524
|
+
// $tabbar-hamburger-icon-width: rem-calc(16);
|
525
|
+
// $tabbar-hamburger-icon-left: rem-calc(13);
|
526
|
+
// $tabbar-hamburger-icon-top: rem-calc(5);
|
527
|
+
|
528
|
+
// Off Canvas Back-Link Overlay
|
529
|
+
// $off-canvas-overlay-transition: background 300ms ease;
|
530
|
+
// $off-canvas-overlay-cursor: pointer;
|
531
|
+
// $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
|
532
|
+
// $off-canvas-overlay-background: rgba(#FFF, 0.2);
|
533
|
+
// $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
|
534
|
+
|
535
|
+
// Transition Variabls
|
536
|
+
// $menu-slide: "transform 500ms ease";
|
537
|
+
|
538
|
+
// Orbit
|
539
|
+
|
540
|
+
// $include-html-orbit-classes: $include-html-classes;
|
541
|
+
|
542
|
+
// We use these to control the caption styles
|
543
|
+
// $orbit-container-bg: none;
|
544
|
+
// $orbit-caption-bg: rgba(51,51,51, 0.8);
|
545
|
+
// $orbit-caption-font-color: #fff;
|
546
|
+
// $orbit-caption-font-size: rem-calc(14);
|
547
|
+
// $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
|
548
|
+
// $orbit-caption-padding: rem-calc(10,14);
|
549
|
+
// $orbit-caption-height: auto;
|
550
|
+
|
551
|
+
// We use these to control the left/right nav styles
|
552
|
+
// $orbit-nav-bg: none;
|
553
|
+
// $orbit-nav-bg-hover: rgba(0,0,0,0.3);
|
554
|
+
// $orbit-nav-arrow-color: #fff;
|
555
|
+
// $orbit-nav-arrow-color-hover: #fff;
|
556
|
+
|
557
|
+
// We use these to control the timer styles
|
558
|
+
// $orbit-timer-bg: rgba(255,255,255,0.3);
|
559
|
+
// $orbit-timer-show-progress-bar: true;
|
560
|
+
|
561
|
+
// We use these to control the bullet nav styles
|
562
|
+
// $orbit-bullet-nav-color: #ccc;
|
563
|
+
// $orbit-bullet-nav-color-active: #999;
|
564
|
+
// $orbit-bullet-radius: rem-calc(9);
|
565
|
+
|
566
|
+
// We use these to controls the style of slide numbers
|
567
|
+
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
568
|
+
// $orbit-slide-number-font-color: #fff;
|
569
|
+
// $orbit-slide-number-padding: rem-calc(5);
|
570
|
+
|
571
|
+
// Graceful Loading Wrapper and preloader
|
572
|
+
// $wrapper-class: "slideshow-wrapper";
|
573
|
+
// $preloader-class: "preloader";
|
574
|
+
|
575
|
+
// Pagination
|
576
|
+
|
577
|
+
// $include-html-nav-classes: $include-html-classes;
|
578
|
+
|
579
|
+
// We use these to control the pagination container
|
580
|
+
// $pagination-height: rem-calc(24);
|
581
|
+
// $pagination-margin: rem-calc(-5);
|
582
|
+
|
583
|
+
// We use these to set the list-item properties
|
584
|
+
// $pagination-li-float: $default-float;
|
585
|
+
// $pagination-li-height: rem-calc(24);
|
586
|
+
// $pagination-li-font-color: #222;
|
587
|
+
// $pagination-li-font-size: rem-calc(14);
|
588
|
+
// $pagination-li-margin: rem-calc(5);
|
589
|
+
|
590
|
+
// We use these for the pagination anchor links
|
591
|
+
// $pagination-link-pad: rem-calc(1 10 1);
|
592
|
+
// $pagination-link-font-color: #999;
|
593
|
+
// $pagination-link-active-bg: darken(#fff, 10%);
|
594
|
+
|
595
|
+
// We use these for disabled anchor links
|
596
|
+
// $pagination-link-unavailable-cursor: default;
|
597
|
+
// $pagination-link-unavailable-font-color: #999;
|
598
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
599
|
+
|
600
|
+
// We use these for currently selected anchor links
|
601
|
+
// $pagination-link-current-background: $primary-color;
|
602
|
+
// $pagination-link-current-font-color: #fff;
|
603
|
+
// $pagination-link-current-font-weight: bold;
|
604
|
+
// $pagination-link-current-cursor: default;
|
605
|
+
// $pagination-link-current-active-bg: $primary-color;
|
606
|
+
|
607
|
+
// Panels
|
608
|
+
|
609
|
+
// $include-html-panel-classes: $include-html-classes;
|
610
|
+
|
611
|
+
// We use these to control the background and border styles
|
612
|
+
// $panel-bg: darken(#fff, 5%);
|
613
|
+
// $panel-border-style: solid;
|
614
|
+
// $panel-border-size: 1px;
|
615
|
+
|
616
|
+
// We use this % to control how much we darken things on hover
|
617
|
+
// $panel-function-factor: 10%;
|
618
|
+
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
619
|
+
|
620
|
+
// We use these to set default inner padding and bottom margin
|
621
|
+
// $panel-margin-bottom: rem-calc(20);
|
622
|
+
// $panel-padding: rem-calc(20);
|
623
|
+
|
624
|
+
// We use these to set default font colors
|
625
|
+
// $panel-font-color: #333;
|
626
|
+
// $panel-font-color-alt: #fff;
|
627
|
+
|
628
|
+
// $panel-header-adjust: true;
|
629
|
+
// $callout-panel-link-color: $primary-color;
|
630
|
+
|
631
|
+
// Pricing Tables
|
632
|
+
|
633
|
+
// $include-html-pricing-classes: $include-html-classes;
|
634
|
+
|
635
|
+
// We use this to control the border color
|
636
|
+
// $price-table-border: solid 1px #ddd;
|
637
|
+
|
638
|
+
// We use this to control the bottom margin of the pricing table
|
639
|
+
// $price-table-margin-bottom: rem-calc(20);
|
640
|
+
|
641
|
+
// We use these to control the title styles
|
642
|
+
// $price-title-bg: #333;
|
643
|
+
// $price-title-padding: rem-calc(15 20);
|
644
|
+
// $price-title-align: center;
|
645
|
+
// $price-title-color: #eee;
|
646
|
+
// $price-title-weight: normal;
|
647
|
+
// $price-title-size: rem-calc(16);
|
648
|
+
// $price-title-font-family: $body-font-family;
|
649
|
+
|
650
|
+
// We use these to control the price styles
|
651
|
+
// $price-money-bg: #f6f6f6 ;
|
652
|
+
// $price-money-padding: rem-calc(15 20);
|
653
|
+
// $price-money-align: center;
|
654
|
+
// $price-money-color: #333;
|
655
|
+
// $price-money-weight: normal;
|
656
|
+
// $price-money-size: rem-calc(32);
|
657
|
+
// $price-money-font-family: $body-font-family;
|
658
|
+
|
659
|
+
|
660
|
+
// We use these to control the description styles
|
661
|
+
// $price-bg: #fff;
|
662
|
+
// $price-desc-color: #777;
|
663
|
+
// $price-desc-padding: rem-calc(15);
|
664
|
+
// $price-desc-align: center;
|
665
|
+
// $price-desc-font-size: rem-calc(12);
|
666
|
+
// $price-desc-weight: normal;
|
667
|
+
// $price-desc-line-height: 1.4;
|
668
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
669
|
+
|
670
|
+
// We use these to control the list item styles
|
671
|
+
// $price-item-color: #333;
|
672
|
+
// $price-item-padding: rem-calc(15);
|
673
|
+
// $price-item-align: center;
|
674
|
+
// $price-item-font-size: rem-calc(14);
|
675
|
+
// $price-item-weight: normal;
|
676
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
677
|
+
|
678
|
+
// We use these to control the CTA area styles
|
679
|
+
// $price-cta-bg: #fff;
|
680
|
+
// $price-cta-align: center;
|
681
|
+
// $price-cta-padding: rem-calc(20 20 0);
|
682
|
+
|
683
|
+
// Progress Meters
|
684
|
+
|
685
|
+
// $include-html-media-classes: $include-html-classes;
|
686
|
+
|
687
|
+
// We use this to se the prog bar height
|
688
|
+
// $progress-bar-height: rem-calc(25);
|
689
|
+
// $progress-bar-color: #f6f6f6 ;
|
690
|
+
|
691
|
+
// We use these to control the border styles
|
692
|
+
// $progress-bar-border-color: darken(#fff, 20%);
|
693
|
+
// $progress-bar-border-size: 1px;
|
694
|
+
// $progress-bar-border-style: solid;
|
695
|
+
// $progress-bar-border-radius: $global-radius;
|
696
|
+
|
697
|
+
// We use these to control the margin & padding
|
698
|
+
// $progress-bar-pad: rem-calc(2);
|
699
|
+
// $progress-bar-margin-bottom: rem-calc(10);
|
700
|
+
|
701
|
+
// We use these to set the meter colors
|
702
|
+
// $progress-meter-color: $primary-color;
|
703
|
+
// $progress-meter-secondary-color: $secondary-color;
|
704
|
+
// $progress-meter-success-color: $success-color;
|
705
|
+
// $progress-meter-alert-color: $alert-color;
|
706
|
+
|
707
|
+
// Reveal
|
708
|
+
|
709
|
+
// $include-html-reveal-classes: $include-html-classes;
|
710
|
+
|
711
|
+
// We use these to control the style of the reveal overlay.
|
712
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
713
|
+
// $reveal-overlay-bg-old: #000;
|
714
|
+
|
715
|
+
// We use these to control the style of the modal itself.
|
716
|
+
// $reveal-modal-bg: #fff;
|
717
|
+
// $reveal-position-top: 50px;
|
718
|
+
// $reveal-default-width: 80%;
|
719
|
+
// $reveal-modal-padding: rem-calc(20);
|
720
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
721
|
+
|
722
|
+
// We use these to style the reveal close button
|
723
|
+
// $reveal-close-font-size: rem-calc(22);
|
724
|
+
// $reveal-close-top: rem-calc(8);
|
725
|
+
// $reveal-close-side: rem-calc(11);
|
726
|
+
// $reveal-close-color: #aaa;
|
727
|
+
// $reveal-close-weight: bold;
|
728
|
+
|
729
|
+
// We use these to control the modal border
|
730
|
+
// $reveal-border-style: solid;
|
731
|
+
// $reveal-border-width: 1px;
|
732
|
+
// $reveal-border-color: #666;
|
733
|
+
|
734
|
+
// $reveal-modal-class: "reveal-modal";
|
735
|
+
// $close-reveal-modal-class: "close-reveal-modal";
|
736
|
+
|
737
|
+
// Side Nav
|
738
|
+
|
739
|
+
// $include-html-nav-classes: $include-html-classes;
|
740
|
+
|
741
|
+
// We use this to control padding.
|
742
|
+
// $side-nav-padding: rem-calc(14 0);
|
743
|
+
|
744
|
+
// We use these to control list styles.
|
745
|
+
// $side-nav-list-type: none;
|
746
|
+
// $side-nav-list-position: inside;
|
747
|
+
// $side-nav-list-margin: rem-calc(0 0 7 0);
|
748
|
+
|
749
|
+
// We use these to control link styles.
|
750
|
+
// $side-nav-link-color: $primary-color;
|
751
|
+
// $side-nav-link-color-active: lighten(#000, 30%);
|
752
|
+
// $side-nav-font-size: rem-calc(14);
|
753
|
+
// $side-nav-font-weight: normal;
|
754
|
+
// $side-nav-font-family: $body-font-family;
|
755
|
+
// $side-nav-active-font-family: $side-nav-font-family;
|
756
|
+
|
757
|
+
|
758
|
+
|
759
|
+
// We use these to control border styles
|
760
|
+
// $side-nav-divider-size: 1px;
|
761
|
+
// $side-nav-divider-style: solid;
|
762
|
+
// $side-nav-divider-color: darken(#fff, 10%);
|
763
|
+
|
764
|
+
// Split Buttons
|
765
|
+
|
766
|
+
// $include-html-button-classes: $include-html-classes;
|
767
|
+
|
768
|
+
// We use these to control different shared styles for Split Buttons
|
769
|
+
// $split-button-function-factor: 10%;
|
770
|
+
// $split-button-pip-color: #fff;
|
771
|
+
// $split-button-pip-color-alt: #333;
|
772
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
773
|
+
|
774
|
+
// We use these to control tiny split buttons
|
775
|
+
// $split-button-padding-tny: $button-pip-tny * 10;
|
776
|
+
// $split-button-span-width-tny: $button-pip-tny * 6;
|
777
|
+
// $split-button-pip-size-tny: $button-pip-tny;
|
778
|
+
// $split-button-pip-top-tny: $button-pip-tny * 2;
|
779
|
+
// $split-button-pip-default-float-tny: rem-calc(-6);
|
780
|
+
|
781
|
+
// We use these to control small split buttons
|
782
|
+
// $split-button-padding-sml: $button-pip-sml * 10;
|
783
|
+
// $split-button-span-width-sml: $button-pip-sml * 6;
|
784
|
+
// $split-button-pip-size-sml: $button-pip-sml;
|
785
|
+
// $split-button-pip-top-sml: $button-pip-sml * 1.5;
|
786
|
+
// $split-button-pip-default-float-sml: rem-calc(-6);
|
787
|
+
|
788
|
+
// We use these to control medium split buttons
|
789
|
+
// $split-button-padding-med: $button-pip-med * 9;
|
790
|
+
// $split-button-span-width-med: $button-pip-med * 5.5;
|
791
|
+
// $split-button-pip-size-med: $button-pip-med - rem-calc(3);
|
792
|
+
// $split-button-pip-top-med: $button-pip-med * 1.5;
|
793
|
+
// $split-button-pip-default-float-med: rem-calc(-6);
|
794
|
+
|
795
|
+
// We use these to control large split buttons
|
796
|
+
// $split-button-padding-lrg: $button-pip-lrg * 8;
|
797
|
+
// $split-button-span-width-lrg: $button-pip-lrg * 5;
|
798
|
+
// $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
|
799
|
+
// $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
|
800
|
+
// $split-button-pip-default-float-lrg: rem-calc(-6);
|
801
|
+
|
802
|
+
// Sub Nav
|
803
|
+
|
804
|
+
// $include-html-nav-classes: $include-html-classes;
|
805
|
+
|
806
|
+
// We use these to control margin and padding
|
807
|
+
// $sub-nav-list-margin: rem-calc(-4 0 18);
|
808
|
+
// $sub-nav-list-padding-top: rem-calc(4);
|
809
|
+
|
810
|
+
// We use this to control the definition
|
811
|
+
// $sub-nav-font-family: $body-font-family;
|
812
|
+
// $sub-nav-font-size: rem-calc(14);
|
813
|
+
// $sub-nav-font-color: #999;
|
814
|
+
// $sub-nav-font-weight: normal;
|
815
|
+
// $sub-nav-text-decoration: none;
|
816
|
+
// $sub-nav-border-radius: 3px;
|
817
|
+
// $sub-nav-font-color-hover: darken($sub-nav-font-color, 15%);
|
818
|
+
|
819
|
+
|
820
|
+
// We use these to control the active item styles
|
821
|
+
|
822
|
+
// $sub-nav-active-font-weight: normal;
|
823
|
+
// $sub-nav-active-bg: $primary-color;
|
824
|
+
// $sub-nav-active-bg-hover: darken($sub-nav-active-bg, 5%);
|
825
|
+
// $sub-nav-active-color: #fff;
|
826
|
+
// $sub-nav-active-padding: rem-calc(3 16);
|
827
|
+
// $sub-nav-active-cursor: default;
|
828
|
+
|
829
|
+
// $sub-nav-item-divider: "";
|
830
|
+
// $sub-nav-item-divider-margin: rem-calc(12);
|
831
|
+
|
832
|
+
// Tables
|
833
|
+
|
834
|
+
// $include-html-table-classes: $include-html-classes;
|
835
|
+
|
836
|
+
// These control the background color for the table and even rows
|
837
|
+
// $table-bg: #fff;
|
838
|
+
// $table-even-row-bg: #f9f9f9 ;
|
839
|
+
|
840
|
+
// These control the table cell border style
|
841
|
+
// $table-border-style: solid;
|
842
|
+
// $table-border-size: 1px;
|
843
|
+
// $table-border-color: #ddd;
|
844
|
+
|
845
|
+
// These control the table head styles
|
846
|
+
// $table-head-bg: #f5f5f5 ;
|
847
|
+
// $table-head-font-size: rem-calc(14);
|
848
|
+
// $table-head-font-color: #222;
|
849
|
+
// $table-head-font-weight: bold;
|
850
|
+
// $table-head-padding: rem-calc(8 10 10);
|
851
|
+
|
852
|
+
// These control the row padding and font styles
|
853
|
+
// $table-row-padding: rem-calc(9 10);
|
854
|
+
// $table-row-font-size: rem-calc(14);
|
855
|
+
// $table-row-font-color: #222;
|
856
|
+
// $table-line-height: rem-calc(18);
|
857
|
+
|
858
|
+
// These are for controlling the display and margin of tables
|
859
|
+
// $table-display: table-cell;
|
860
|
+
// $table-margin-bottom: rem-calc(20);
|
861
|
+
|
862
|
+
//
|
863
|
+
// TABS
|
864
|
+
//
|
865
|
+
|
866
|
+
// $include-html-tabs-classes: $include-html-classes;
|
867
|
+
|
868
|
+
// $tabs-navigation-padding: rem-calc(16);
|
869
|
+
// $tabs-navigation-bg-color: #efefef ;
|
870
|
+
// $tabs-navigation-hover-bg-color: darken($tabs-navigation-bg-color, 5%);
|
871
|
+
// $tabs-navigation-font-color: #222;
|
872
|
+
// $tabs-navigation-font-size: rem-calc(16);
|
873
|
+
// $tabs-navigation-font-family: $body-font-family;
|
874
|
+
|
875
|
+
// $tabs-content-margin-bottom: rem-calc(24);
|
876
|
+
// $tabs-content-padding: $column-gutter/2;
|
877
|
+
|
878
|
+
// $tabs-vertical-navigation-margin-bottom: 1.25rem;
|
879
|
+
|
880
|
+
//
|
881
|
+
// THUMBNAILS
|
882
|
+
//
|
883
|
+
|
884
|
+
// $include-html-media-classes: $include-html-classes;
|
885
|
+
|
886
|
+
// We use these to control border styles
|
887
|
+
// $thumb-border-style: solid;
|
888
|
+
// $thumb-border-width: 4px;
|
889
|
+
// $thumb-border-color: #fff;
|
890
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
891
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
892
|
+
|
893
|
+
// Radius and transition speed for thumbs
|
894
|
+
// $thumb-radius: $global-radius;
|
895
|
+
// $thumb-transition-speed: 200ms;
|
896
|
+
|
897
|
+
//
|
898
|
+
// TOOLTIPS
|
899
|
+
//
|
900
|
+
|
901
|
+
// $include-html-tooltip-classes: $include-html-classes;
|
902
|
+
|
903
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
904
|
+
// $has-tip-font-weight: bold;
|
905
|
+
// $has-tip-font-color: #333;
|
906
|
+
// $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
|
907
|
+
// $has-tip-font-color-hover: $primary-color;
|
908
|
+
// $has-tip-cursor-type: help;
|
909
|
+
|
910
|
+
// $tooltip-padding: rem-calc(12);
|
911
|
+
// $tooltip-bg: #333;
|
912
|
+
// $tooltip-font-size: rem-calc(14);
|
913
|
+
// $tooltip-font-weight: normal;
|
914
|
+
// $tooltip-font-color: #fff;
|
915
|
+
// $tooltip-line-height: 1.3;
|
916
|
+
// $tooltip-close-font-size: rem-calc(10);
|
917
|
+
// $tooltip-close-font-weight: normal;
|
918
|
+
// $tooltip-close-font-color: #777;
|
919
|
+
// $tooltip-font-size-sml: rem-calc(14);
|
920
|
+
// $tooltip-radius: $global-radius;
|
921
|
+
// $tooltip-pip-size: 5px;
|
922
|
+
|
923
|
+
//
|
924
|
+
// TOP BAR
|
925
|
+
//
|
926
|
+
|
927
|
+
// $include-html-top-bar-classes: $include-html-classes;
|
928
|
+
|
929
|
+
// Background color for the top bar
|
930
|
+
// $topbar-bg-color: #333;
|
931
|
+
// $topbar-bg: $topbar-bg-color;
|
932
|
+
|
933
|
+
// Height and margin
|
934
|
+
// $topbar-height: 45px;
|
935
|
+
// $topbar-margin-bottom: 0;
|
936
|
+
|
937
|
+
// Control Input height for top bar
|
938
|
+
|
939
|
+
// Controlling the styles for the title in the top bar
|
940
|
+
// $topbar-title-weight: normal;
|
941
|
+
// $topbar-title-font-size: rem-calc(17);
|
942
|
+
|
943
|
+
// Style the top bar dropdown elements
|
944
|
+
// $topbar-dropdown-bg: #333;
|
945
|
+
// $topbar-dropdown-link-color: #fff;
|
946
|
+
// $topbar-dropdown-link-bg: #333;
|
947
|
+
// $topbar-dropdown-toggle-size: 5px;
|
948
|
+
// $topbar-dropdown-toggle-color: #fff;
|
949
|
+
// $topbar-dropdown-toggle-alpha: 0.4;
|
950
|
+
|
951
|
+
// Set the link colors and styles for top-level nav
|
952
|
+
// $topbar-link-color: #fff;
|
953
|
+
// $topbar-link-color-hover: #fff;
|
954
|
+
// $topbar-link-color-active: #fff;
|
955
|
+
// $topbar-link-weight: normal;
|
956
|
+
// $topbar-link-font-size: rem-calc(13);
|
957
|
+
// $topbar-link-hover-lightness: -10%; // Darken by 10%
|
958
|
+
// $topbar-link-bg-hover: #272727 ;
|
959
|
+
// $topbar-link-bg-active: $primary-color;
|
960
|
+
// $topbar-link-bg-active-hover: darken($primary-color, 5%);
|
961
|
+
// $topbar-link-font-family: $body-font-family;
|
962
|
+
|
963
|
+
// $topbar-button-font-size: 0.75rem;
|
964
|
+
|
965
|
+
// $topbar-dropdown-label-color: #777;
|
966
|
+
// $topbar-dropdown-label-text-transform: uppercase;
|
967
|
+
// $topbar-dropdown-label-font-weight: bold;
|
968
|
+
// $topbar-dropdown-label-font-size: rem-calc(10);
|
969
|
+
// $topbar-dropdown-label-bg: #333;
|
970
|
+
|
971
|
+
// Top menu icon styles
|
972
|
+
// $topbar-menu-link-transform: uppercase;
|
973
|
+
// $topbar-menu-link-font-size: rem-calc(13);
|
974
|
+
// $topbar-menu-link-weight: bold;
|
975
|
+
// $topbar-menu-link-color: #fff;
|
976
|
+
// $topbar-menu-icon-color: #fff;
|
977
|
+
// $topbar-menu-link-color-toggled: #888;
|
978
|
+
// $topbar-menu-icon-color-toggled: #888;
|
979
|
+
|
980
|
+
// Transitions and breakpoint styles
|
981
|
+
// $topbar-transition-speed: 300ms;
|
982
|
+
// Using rem-calc for the below breakpoint causes issues with top bar
|
983
|
+
// $topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
|
984
|
+
// $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
|
985
|
+
|
986
|
+
// Divider Styles
|
987
|
+
// $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
|
988
|
+
// $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
|
989
|
+
|
990
|
+
// Sticky Class
|
991
|
+
// $topbar-sticky-class: ".sticky";
|
992
|
+
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|