eric_weixin 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSE.txt → MIT-LICENSE} +1 -3
  3. data/README.rdoc +24 -0
  4. data/Rakefile +36 -1
  5. data/app/assets/javascripts/eric_weixin/application.js +25 -0
  6. data/app/assets/javascripts/eric_weixin/cms/base.js +22 -0
  7. data/app/assets/stylesheets/eric_weixin/application.css +15 -0
  8. data/app/assets/stylesheets/eric_weixin/cms/base.css.scss +14 -0
  9. data/app/assets/stylesheets/eric_weixin/cms/foundation_and_overrides.scss +1454 -0
  10. data/app/controllers/eric_weixin/application_controller.rb +5 -0
  11. data/app/controllers/eric_weixin/cms/base_controller.rb +19 -0
  12. data/app/controllers/eric_weixin/cms/weixin/article_datas_controller.rb +45 -0
  13. data/app/controllers/eric_weixin/cms/weixin/customs_service_records_controller.rb +8 -0
  14. data/app/controllers/eric_weixin/cms/weixin/news_datas_controller.rb +52 -0
  15. data/app/controllers/eric_weixin/cms/weixin/public_accounts_controller.rb +36 -0
  16. data/app/controllers/eric_weixin/cms/weixin/reply_message_rules_controller.rb +49 -0
  17. data/app/controllers/eric_weixin/cms/weixin/two_dimension_codes_controller.rb +36 -0
  18. data/app/controllers/eric_weixin/cms/weixin/url_encodes_controller.rb +41 -0
  19. data/app/controllers/eric_weixin/cms/weixin/users_controller.rb +19 -0
  20. data/{lib/eric_weixin/app/controllers/weixin → app/controllers/eric_weixin/wz}/weixin_controller.rb +18 -7
  21. data/app/helpers/eric_weixin/application_helper.rb +4 -0
  22. data/app/helpers/eric_weixin/cms/weixin/public_accounts_helper.rb +28 -0
  23. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/access_token.rb +23 -9
  24. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/article.rb +0 -0
  25. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/article_news.rb +0 -0
  26. data/app/models/eric_weixin/customs_service_record.rb +99 -0
  27. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/message_log.rb +8 -2
  28. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/news.rb +0 -0
  29. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/public_account.rb +25 -14
  30. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/reply_message_rule.rb +56 -12
  31. data/app/models/eric_weixin/report/interface_data.rb +120 -0
  32. data/app/models/eric_weixin/report/msg_data.rb +292 -0
  33. data/app/models/eric_weixin/report/news_data.rb +264 -0
  34. data/app/models/eric_weixin/report/user_data.rb +98 -0
  35. data/app/models/eric_weixin/template_message_log.rb +87 -0
  36. data/{lib/eric_weixin/app/model → app/models/eric_weixin}/two_dimension_code.rb +25 -17
  37. data/app/models/eric_weixin/weixin_user.rb +155 -0
  38. data/app/views/eric_weixin/cms/weixin/article_datas/_article_data.html.erb +8 -0
  39. data/app/views/eric_weixin/cms/weixin/article_datas/edit.html.erb +36 -0
  40. data/app/views/eric_weixin/cms/weixin/article_datas/index.html.erb +21 -0
  41. data/app/views/eric_weixin/cms/weixin/article_datas/new.html.erb +36 -0
  42. data/app/views/eric_weixin/cms/weixin/article_datas/show.html.erb +5 -0
  43. data/app/views/eric_weixin/cms/weixin/customs_service_records/index.html.erb +66 -0
  44. data/app/views/eric_weixin/cms/weixin/news_datas/_news_data.html.erb +7 -0
  45. data/app/views/eric_weixin/cms/weixin/news_datas/edit.html.erb +45 -0
  46. data/app/views/eric_weixin/cms/weixin/news_datas/index.html.erb +30 -0
  47. data/app/views/eric_weixin/cms/weixin/news_datas/new.html.erb +49 -0
  48. data/app/views/eric_weixin/cms/weixin/news_datas/show.html.erb +28 -0
  49. data/app/views/eric_weixin/cms/weixin/public_accounts/_menu.html.erb +5 -0
  50. data/app/views/eric_weixin/cms/weixin/public_accounts/_public_account.html.erb +19 -0
  51. data/app/views/eric_weixin/cms/weixin/public_accounts/_weixin_user.html.erb +7 -0
  52. data/app/views/eric_weixin/cms/weixin/public_accounts/index.html.erb +27 -0
  53. data/app/views/eric_weixin/cms/weixin/public_accounts/show.html.erb +8 -0
  54. data/app/views/eric_weixin/cms/weixin/reply_message_rules/destroy.js.erb +2 -0
  55. data/app/views/eric_weixin/cms/weixin/reply_message_rules/edit.html.erb +69 -0
  56. data/app/views/eric_weixin/cms/weixin/reply_message_rules/index.html.erb +38 -0
  57. data/app/views/eric_weixin/cms/weixin/reply_message_rules/new.html.erb +69 -0
  58. data/app/views/eric_weixin/cms/weixin/two_dimension_codes/_two_dimension_code_form.html.erb +11 -0
  59. data/app/views/eric_weixin/cms/weixin/two_dimension_codes/index.html.erb +30 -0
  60. data/app/views/eric_weixin/cms/weixin/two_dimension_codes/new.html.erb +41 -0
  61. data/app/views/eric_weixin/cms/weixin/two_dimension_codes/show.html.erb +12 -0
  62. data/app/views/eric_weixin/cms/weixin/url_encodes/_new.html.erb +25 -0
  63. data/app/views/eric_weixin/cms/weixin/url_encodes/create.js.erb +1 -0
  64. data/app/views/eric_weixin/cms/weixin/url_encodes/index.html.erb +43 -0
  65. data/app/views/eric_weixin/cms/weixin/users/index.html.erb +331 -0
  66. data/app/views/layouts/eric_weixin/application.html.erb +14 -0
  67. data/app/views/layouts/eric_weixin/cms/base.html.erb +66 -0
  68. data/{lib/eric_weixin/app/views → app/views/layouts}/eric_weixin/weixin/aa.erb +0 -0
  69. data/config/initializers/assets.rb +10 -0
  70. data/config/routes.rb +36 -0
  71. data/db/migrate/20150610031604_create_weixin_report_user_data.rb +14 -0
  72. data/db/migrate/20150610031935_create_weixin_report_news_data.rb +24 -0
  73. data/db/migrate/20150610032545_create_weixin_report_msg_data.rb +17 -0
  74. data/db/migrate/20150610032852_create_weixin_report_interface_data.rb +15 -0
  75. data/db/migrate/20150610035901_add_user_data_type_to_weixin_report_user_data.rb +5 -0
  76. data/db/migrate/20150610040008_add_news_data_type_to_weixin_report_news_data.rb +5 -0
  77. data/db/migrate/20150610040059_add_msg_data_type_to_weixin_report_msg_data.rb +5 -0
  78. data/db/migrate/20150610040145_add_interface_data_type_to_weixin_report_interface_data.rb +5 -0
  79. data/db/migrate/20150610072952_add_total_online_time_and_user_source_to_weixin_report_news_data.rb +6 -0
  80. data/db/migrate/20150610084545_add_user_source_to_weixin_report_msg_data.rb +5 -0
  81. data/db/migrate/20150610090206_create_weixin_user.rb +153 -0
  82. data/db/migrate/20150612104303_add_index_to_weixin_message_logs.rb +7 -0
  83. data/db/migrate/20150625065249_delete_clomn_weixin_token_from_public_account.rb +5 -0
  84. data/lib/eric_weixin/engine.rb +9 -0
  85. data/lib/eric_weixin/modules/analyze_data.rb +124 -0
  86. data/lib/eric_weixin/modules/ip.rb +33 -0
  87. data/lib/eric_weixin/modules/mult_customer.rb +113 -0
  88. data/lib/eric_weixin/{app/moudles → modules}/reply_message.rb +3 -3
  89. data/lib/eric_weixin/{app/moudles → modules}/snsapi.rb +3 -3
  90. data/lib/eric_weixin/version.rb +1 -1
  91. data/lib/eric_weixin.rb +6 -24
  92. data/lib/tasks/eric_weixin_tasks.rake +4 -0
  93. data/test/dummy/README.rdoc +28 -0
  94. data/test/dummy/Rakefile +6 -0
  95. data/test/dummy/app/assets/javascripts/application.js +13 -0
  96. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  97. data/test/dummy/app/controllers/application_controller.rb +5 -0
  98. data/test/dummy/app/helpers/application_helper.rb +2 -0
  99. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  100. data/test/dummy/bin/bundle +3 -0
  101. data/test/dummy/bin/rails +4 -0
  102. data/test/dummy/bin/rake +4 -0
  103. data/test/dummy/config/application.rb +23 -0
  104. data/test/dummy/config/boot.rb +5 -0
  105. data/test/dummy/config/database.yml +25 -0
  106. data/test/dummy/config/environment.rb +5 -0
  107. data/test/dummy/config/environments/development.rb +37 -0
  108. data/test/dummy/config/environments/production.rb +78 -0
  109. data/test/dummy/config/environments/test.rb +39 -0
  110. data/test/dummy/config/initializers/assets.rb +8 -0
  111. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  112. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  113. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  114. data/test/dummy/config/initializers/inflections.rb +16 -0
  115. data/test/dummy/config/initializers/mime_types.rb +4 -0
  116. data/test/dummy/config/initializers/session_store.rb +3 -0
  117. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  118. data/test/dummy/config/locales/en.yml +23 -0
  119. data/test/dummy/config/routes.rb +4 -0
  120. data/test/dummy/config/secrets.yml +22 -0
  121. data/test/dummy/config.ru +4 -0
  122. data/test/dummy/public/404.html +67 -0
  123. data/test/dummy/public/422.html +67 -0
  124. data/test/dummy/public/500.html +66 -0
  125. data/test/dummy/public/favicon.ico +0 -0
  126. data/test/eric_weixin_test.rb +7 -0
  127. data/test/integration/navigation_test.rb +10 -0
  128. data/test/test_helper.rb +19 -0
  129. metadata +165 -196
  130. data/.gitignore +0 -23
  131. data/.idea/.name +0 -1
  132. data/.idea/.rakeTasks +0 -7
  133. data/.idea/encodings.xml +0 -5
  134. data/.idea/eric_weixin.iml +0 -22
  135. data/.idea/misc.xml +0 -5
  136. data/.idea/modules.xml +0 -9
  137. data/.idea/scopes/scope_settings.xml +0 -5
  138. data/.idea/vcs.xml +0 -7
  139. data/.rvmrc +0 -1
  140. data/Gemfile +0 -4
  141. data/README.md +0 -29
  142. data/eric_weixin.gemspec +0 -32
  143. data/lib/eric_weixin/app/model/template_message_log.rb +0 -75
  144. data/lib/eric_weixin/app/model/weixin_user.rb +0 -96
  145. data/lib/eric_weixin/app/moudles/mult_customer.rb +0 -57
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec075d14a655462edbc8bc024cf472a7bf13fbd8
4
- data.tar.gz: e50d4adb4a858532fe4705161816b282e3030334
3
+ metadata.gz: 67b696e374ee5f2be50ca3e7790b18c22e6e13f3
4
+ data.tar.gz: bc6d5445b2073a4e50982b5182c2490088373154
5
5
  SHA512:
6
- metadata.gz: 49d3719a1a0d3ea9b133c7831660249fe3b58fe53019f0d7e541b921dfc0126c8e108bbd9e6d22c2df3fc01875e35ef0761b8c1e59e80e8c965290eadd4ce512
7
- data.tar.gz: 51328ca0e18e5d7afdf5739e44ff21259302c3e9d782084f3c82df0adfe64405beff44867d233451df7d8fa983a2e5323906f5e2dd45f111c2138b2921ffc153
6
+ metadata.gz: 16c55ef32a6a7f31d286b5e1e2fe37a510428debddc4afd19c505d23de275263c40234a78afea002be5b02efec9baa24a67c1278980f54bf46d046ec5ba7905e
7
+ data.tar.gz: 9a8dfb581b4a7d28d496465c560288a58a04e2b2b1660ac96e334d59a10d9fca0b71f03c0e5b2081aaab1e43eed9757aaf672e3fe38d9c2e1677ab08f9e74e76
@@ -1,6 +1,4 @@
1
- Copyright (c) 2015 刘晓琦
2
-
3
- MIT License
1
+ Copyright 2015 YOURNAME
4
2
 
5
3
  Permission is hereby granted, free of charge, to any person obtaining
6
4
  a copy of this software and associated documentation files (the
data/README.rdoc ADDED
@@ -0,0 +1,24 @@
1
+ = EricWeixin--提升微信项目的研发效率
2
+
3
+ 目前EricWeixin已封装了认证服务号80%以上的接口,并且有一套后台管理界面与功能自成体系。
4
+ * 官网暂无。
5
+ * 大部分功能正在研发中。
6
+
7
+ == requirements
8
+ 从大的情况来看,基本上适用于rails4.1.4及以上版本。我自己则是在4.1.4版本上进行研发。
9
+ 细节待更新。
10
+
11
+ ==使用方式
12
+ ===路由(Routes)
13
+ * 首先在自己的Application的 /config/routes 中添加以下代码,以便在应用中使用Gem提供的一系列功能:
14
+
15
+ mount EricWeixin::Engine, at: "eric_weixin"
16
+ * 在微信管理界面的配置地址:http://#{host_name}/eric_weixin/weixin/service/#{app_id},如下:
17
+
18
+ http://www.xxx.com/eric_weixin/weixin/service/wx51729870d9092531
19
+ ===数据库迁移(migration),目前仅支持MySQL语法。
20
+ * 第一次使用Gem或对Gem升级以后,都需要对migration进行升级,进入到Application目录下,执行如下操作:
21
+
22
+ rake eric_weixin:install:migrations
23
+ ===管理平台的链接
24
+ *
data/Rakefile CHANGED
@@ -1,2 +1,37 @@
1
- require "bundler/gem_tasks"
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
2
6
 
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'EricWeixin'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'lib'
28
+ t.libs << 'test'
29
+ t.pattern = 'test/**/*_test.rb'
30
+ t.verbose = false
31
+ end
32
+
33
+
34
+ task default: :test
35
+
36
+
37
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
14
+ //= require foundation
15
+
16
+
17
+ //模式框弹出与关闭js代码
18
+ function openWindow(){
19
+ document.getElementById('light').style.display='block';
20
+ document.getElementById('fade').style.display='block';
21
+ }
22
+ function closeWindow(){
23
+ document.getElementById('light').style.display='none';
24
+ document.getElementById('fade').style.display='none';
25
+ }
@@ -0,0 +1,22 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //= require jquery.js
13
+ //= require jquery_ujs
14
+ // require jquery-ui
15
+ //= require foundation
16
+ // require tinymce
17
+ //= require_tree .
18
+
19
+ //$(function(){
20
+ // //$(document).foundation();
21
+ // $(document).foundation('reveal', {animation: false});
22
+ //});
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,14 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *= require_self
13
+ *= require eric_weixin/cms/foundation_and_overrides
14
+ */
@@ -0,0 +1,1454 @@
1
+ // Foundation by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ //
6
+
7
+ // Table of Contents
8
+ // Foundation Settings
9
+ //
10
+ // a. Base
11
+ // b. Grid
12
+ // c. Global
13
+ // d. Media Query Ranges
14
+ // e. Typography
15
+ // 01. Accordion
16
+ // 02. Alert Boxes
17
+ // 03. Block Grid
18
+ // 04. Breadcrumbs
19
+ // 05. Buttons
20
+ // 06. Button Groups
21
+ // 07. Clearing
22
+ // 08. Dropdown
23
+ // 09. Dropdown Buttons
24
+ // 10. Flex Video
25
+ // 11. Forms
26
+ // 12. Icon Bar
27
+ // 13. Inline Lists
28
+ // 14. Joyride
29
+ // 15. Keystrokes
30
+ // 16. Labels
31
+ // 17. Magellan
32
+ // 18. Off-canvas
33
+ // 19. Orbit
34
+ // 20. Pagination
35
+ // 21. Panels
36
+ // 22. Pricing Tables
37
+ // 23. Progress Bar
38
+ // 24. Range Slider
39
+ // 25. Reveal
40
+ // 26. Side Nav
41
+ // 27. Split Buttons
42
+ // 28. Sub Nav
43
+ // 29. Switch
44
+ // 30. Tables
45
+ // 31. Tabs
46
+ // 32. Thumbnails
47
+ // 33. Tooltips
48
+ // 34. Top Bar
49
+ // 36. Visibility Classes
50
+
51
+ // a. Base
52
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
53
+
54
+ // This is the default html and body font-size for the base rem value.
55
+ // $rem-base: 16px;
56
+
57
+ // Allows the use of rem-calc() or lower-bound() in your settings
58
+ @import "foundation/functions";
59
+
60
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
61
+ // for compatibility with browser-based text zoom or user-set defaults.
62
+
63
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
64
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
65
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
66
+ $base-font-size: 100%;
67
+
68
+ // The $base-font-size is 100% while $base-line-height is 150%
69
+ $base-line-height: 150%;
70
+
71
+ // We use this to control whether or not CSS classes come through in the gem files.
72
+ $include-html-classes: true;
73
+ // $include-print-styles: true;
74
+ $include-html-global-classes: $include-html-classes;
75
+
76
+ // b. Grid
77
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
78
+
79
+ // $include-html-grid-classes: $include-html-classes;
80
+ // $include-xl-html-grid-classes: false;
81
+
82
+ // $row-width: rem-calc(1000);
83
+ // $total-columns: 12;
84
+ $column-gutter: rem-calc(20);
85
+
86
+ // c. Global
87
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
88
+
89
+ // We use these to define default font weights
90
+ // $font-weight-normal: normal !default;
91
+ // $font-weight-bold: bold !default;
92
+
93
+ // Global
94
+
95
+ // We use these to define default font weights
96
+ // $font-weight-normal: normal !default;
97
+ // $font-weight-bold: bold !default;
98
+
99
+ // We use these to control various global styles
100
+ // $body-bg: $white;
101
+ // $body-font-color: $jet;
102
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
103
+ // $body-font-weight: $font-weight-normal;
104
+ // $body-font-style: normal;
105
+
106
+ // We use this to control font-smoothing
107
+ // $font-smoothing: antialiased;
108
+
109
+ // We use these to control text direction settings
110
+ // $text-direction: ltr;
111
+ // $opposite-direction: right;
112
+ // $default-float: left;
113
+ // $last-child-float: $opposite-direction;
114
+
115
+ // We use these as default colors throughout
116
+ // $primary-color: #008CBA;
117
+ // $secondary-color: #e7e7e7;
118
+ // $alert-color: #f04124;
119
+ // $success-color: #43AC6A;
120
+ // $warning-color: #f08a24;
121
+ // $info-color: #a0d3e8;
122
+
123
+ // $white : #FFFFFF;
124
+ // $ghost : #FAFAFA;
125
+ // $snow : #F9F9F9;
126
+ // $vapor : #F6F6F6;
127
+ // $white-smoke : #F5F5F5;
128
+ // $silver : #EFEFEF;
129
+ // $smoke : #EEEEEE;
130
+ // $gainsboro : #DDDDDD;
131
+ // $iron : #CCCCCC;
132
+ // $base : #AAAAAA;
133
+ // $aluminum : #999999;
134
+ // $jumbo : #888888;
135
+ // $monsoon : #777777;
136
+ // $steel : #666666;
137
+ // $charcoal : #555555;
138
+ // $tuatara : #444444;
139
+ // $oil : #333333;
140
+ // $jet : #222222;
141
+ // $black : #000000;
142
+
143
+ // We use these to make sure border radius matches unless we want it different.
144
+ // $global-radius: 3px;
145
+ // $global-rounded: 1000px;
146
+
147
+ // We use these to control inset shadow shiny edges and depressions.
148
+ // $shiny-edge-size: 0 1px 0;
149
+ // $shiny-edge-color: rgba($white, .5);
150
+ // $shiny-edge-active-color: rgba($black, .2);
151
+
152
+ // d. Media Query Ranges
153
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
154
+
155
+ // $small-range: (0em, 40em);
156
+ // $medium-range: (40.063em, 64em);
157
+ // $large-range: (64.063em, 90em);
158
+ // $xlarge-range: (90.063em, 120em);
159
+ // $xxlarge-range: (120.063em, 99999999em);
160
+
161
+ // $screen: "only screen";
162
+
163
+ // $landscape: "#{$screen} and (orientation: landscape)";
164
+ // $portrait: "#{$screen} and (orientation: portrait)";
165
+
166
+ // $small-up: $screen;
167
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
168
+
169
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
170
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
171
+
172
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
173
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
174
+
175
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
176
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
177
+
178
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
179
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
180
+
181
+ // Legacy
182
+ // $small: $medium-up;
183
+ // $medium: $medium-up;
184
+ // $large: $large-up;
185
+
186
+ // We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
187
+ // $cursor-crosshair-value: crosshair;
188
+ // $cursor-default-value: default;
189
+ // $cursor-pointer-value: pointer;
190
+ // $cursor-help-value: help;
191
+ // $cursor-text-value: text;
192
+
193
+ // e. Typography
194
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
195
+
196
+ // $include-html-type-classes: $include-html-classes;
197
+
198
+ // We use these to control header font styles
199
+ // $header-font-family: $body-font-family;
200
+ // $header-font-weight: $font-weight-normal;
201
+ // $header-font-style: normal;
202
+ // $header-font-color: $jet;
203
+ // $header-line-height: 1.4;
204
+ // $header-top-margin: .2rem;
205
+ // $header-bottom-margin: .5rem;
206
+ // $header-text-rendering: optimizeLegibility;
207
+
208
+ // We use these to control header font sizes
209
+ // $h1-font-size: rem-calc(44);
210
+ // $h2-font-size: rem-calc(37);
211
+ // $h3-font-size: rem-calc(27);
212
+ // $h4-font-size: rem-calc(23);
213
+ // $h5-font-size: rem-calc(18);
214
+ // $h6-font-size: 1rem;
215
+
216
+ // We use these to control header size reduction on small screens
217
+ // $h1-font-reduction: rem-calc(10) !default;
218
+ // $h2-font-reduction: rem-calc(10) !default;
219
+ // $h3-font-reduction: rem-calc(5) !default;
220
+ // $h4-font-reduction: rem-calc(5) !default;
221
+ // $h5-font-reduction: 0 !default;
222
+ // $h6-font-reduction: 0 !default;
223
+
224
+ // These control how subheaders are styled.
225
+ // $subheader-line-height: 1.4;
226
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
227
+ // $subheader-font-weight: $font-weight-normal;
228
+ // $subheader-top-margin: .2rem;
229
+ // $subheader-bottom-margin: .5rem;
230
+
231
+ // A general <small> styling
232
+ // $small-font-size: 60%;
233
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
234
+
235
+ // We use these to style paragraphs
236
+ // $paragraph-font-family: inherit;
237
+ // $paragraph-font-weight: $font-weight-normal;
238
+ // $paragraph-font-size: 1rem;
239
+ // $paragraph-line-height: 1.6;
240
+ // $paragraph-margin-bottom: rem-calc(20);
241
+ // $paragraph-aside-font-size: rem-calc(14);
242
+ // $paragraph-aside-line-height: 1.35;
243
+ // $paragraph-aside-font-style: italic;
244
+ // $paragraph-text-rendering: optimizeLegibility;
245
+
246
+ // We use these to style <code> tags
247
+ // $code-color: $oil;
248
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
249
+ // $code-font-weight: $font-weight-normal;
250
+ // $code-background-color: scale-color($secondary-color, $lightness: 70%);
251
+ // $code-border-size: 1px;
252
+ // $code-border-style: solid;
253
+ // $code-border-color: scale-color($code-background-color, $lightness: -10%);
254
+ // $code-padding: rem-calc(2) rem-calc(5) rem-calc(1);
255
+
256
+ // We use these to style anchors
257
+ // $anchor-text-decoration: none;
258
+ // $anchor-text-decoration-hover: none;
259
+ // $anchor-font-color: $primary-color;
260
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
261
+
262
+ // We use these to style the <hr> element
263
+ // $hr-border-width: 1px;
264
+ // $hr-border-style: solid;
265
+ // $hr-border-color: $gainsboro;
266
+ // $hr-margin: rem-calc(20);
267
+
268
+ // We use these to style lists
269
+ // $list-font-family: $paragraph-font-family;
270
+ // $list-font-size: $paragraph-font-size;
271
+ // $list-line-height: $paragraph-line-height;
272
+ // $list-margin-bottom: $paragraph-margin-bottom;
273
+ // $list-style-position: outside;
274
+ // $list-side-margin: 1.1rem;
275
+ // $list-ordered-side-margin: 1.4rem;
276
+ // $list-side-margin-no-bullet: 0;
277
+ // $list-nested-margin: rem-calc(20);
278
+ // $definition-list-header-weight: $font-weight-bold;
279
+ // $definition-list-header-margin-bottom: .3rem;
280
+ // $definition-list-margin-bottom: rem-calc(12);
281
+
282
+ // We use these to style blockquotes
283
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
284
+ // $blockquote-padding: rem-calc(9 20 0 19);
285
+ // $blockquote-border: 1px solid $gainsboro;
286
+ // $blockquote-cite-font-size: rem-calc(13);
287
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
288
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
289
+
290
+ // Acronym styles
291
+ // $acronym-underline: 1px dotted $gainsboro;
292
+
293
+ // We use these to control padding and margin
294
+ // $microformat-padding: rem-calc(10 12);
295
+ // $microformat-margin: rem-calc(0 0 20 0);
296
+
297
+ // We use these to control the border styles
298
+ // $microformat-border-width: 1px;
299
+ // $microformat-border-style: solid;
300
+ // $microformat-border-color: $gainsboro;
301
+
302
+ // We use these to control full name font styles
303
+ // $microformat-fullname-font-weight: $font-weight-bold;
304
+ // $microformat-fullname-font-size: rem-calc(15);
305
+
306
+ // We use this to control the summary font styles
307
+ // $microformat-summary-font-weight: $font-weight-bold;
308
+
309
+ // We use this to control abbr padding
310
+ // $microformat-abbr-padding: rem-calc(0 1);
311
+
312
+ // We use this to control abbr font styles
313
+ // $microformat-abbr-font-weight: $font-weight-bold;
314
+ // $microformat-abbr-font-decoration: none;
315
+
316
+
317
+ // 01. Accordion
318
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
319
+
320
+ // $include-html-accordion-classes: $include-html-classes;
321
+
322
+ // $accordion-navigation-padding: rem-calc(16);
323
+ // $accordion-navigation-bg-color: $silver ;
324
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
325
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
326
+ // $accordion-navigation-font-color: $jet;
327
+ // $accordion-navigation-font-size: rem-calc(16);
328
+ // $accordion-navigation-font-family: $body-font-family;
329
+
330
+ // $accordion-content-padding: $column-gutter/2;
331
+ // $accordion-content-active-bg-color: $white;
332
+
333
+ // 02. Alert Boxes
334
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
335
+
336
+ // $include-html-alert-classes: $include-html-classes;
337
+
338
+ // We use this to control alert padding.
339
+ // $alert-padding-top: rem-calc(14);
340
+ // $alert-padding-default-float: $alert-padding-top;
341
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
342
+ // $alert-padding-bottom: $alert-padding-top;
343
+
344
+ // We use these to control text style.
345
+ // $alert-font-weight: $font-weight-normal;
346
+ // $alert-font-size: rem-calc(13);
347
+ // $alert-font-color: $white;
348
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
349
+
350
+ // We use this for close hover effect.
351
+ // $alert-function-factor: -14%;
352
+
353
+ // We use these to control border styles.
354
+ // $alert-border-style: solid;
355
+ // $alert-border-width: 1px;
356
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
357
+ // $alert-bottom-margin: rem-calc(20);
358
+
359
+ // We use these to style the close buttons
360
+ // $alert-close-color: $oil;
361
+ // $alert-close-top: 50%;
362
+ // $alert-close-position: rem-calc(4);
363
+ // $alert-close-font-size: rem-calc(22);
364
+ // $alert-close-opacity: 0.3;
365
+ // $alert-close-opacity-hover: 0.5;
366
+ // $alert-close-padding: 9px 6px 4px;
367
+
368
+ // We use this to control border radius
369
+ // $alert-radius: $global-radius;
370
+
371
+ // We use this to control transition effects
372
+ // $alert-transition-speed: 300ms;
373
+ // $alert-transition-ease: ease-out;
374
+
375
+ // 03. Block Grid
376
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
377
+
378
+ // $include-html-block-grid-classes: $include-html-classes;
379
+ // $include-xl-html-block-grid-classes: false;
380
+
381
+ // We use this to control the maximum number of block grid elements per row
382
+ // $block-grid-elements: 12;
383
+ // $block-grid-default-spacing: rem-calc(20);
384
+ // $align-block-grid-to-grid: false;
385
+
386
+
387
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
388
+ // $block-grid-media-queries: true;
389
+
390
+ // 04. Breadcrumbs
391
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
392
+
393
+ // $include-html-nav-classes: $include-html-classes;
394
+
395
+ // We use this to set the background color for the breadcrumb container.
396
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
397
+
398
+ // We use these to set the padding around the breadcrumbs.
399
+ // $crumb-padding: rem-calc(9 14 9);
400
+ // $crumb-side-padding: rem-calc(12);
401
+
402
+ // We use these to control border styles.
403
+ // $crumb-function-factor: -10%;
404
+ // $crumb-border-size: 1px;
405
+ // $crumb-border-style: solid;
406
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
407
+ // $crumb-radius: $global-radius;
408
+
409
+ // We use these to set various text styles for breadcrumbs.
410
+ // $crumb-font-size: rem-calc(11);
411
+ // $crumb-font-color: $primary-color;
412
+ // $crumb-font-color-current: $oil;
413
+ // $crumb-font-color-unavailable: $aluminum;
414
+ // $crumb-font-transform: uppercase;
415
+ // $crumb-link-decor: underline;
416
+
417
+ // We use these to control the slash between breadcrumbs
418
+ // $crumb-slash-color: $base;
419
+ // $crumb-slash: "/";
420
+
421
+ // 05. Buttons
422
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
423
+
424
+ // $include-html-button-classes: $include-html-classes;
425
+
426
+ // We use these to build padding for buttons.
427
+ // $button-tny: rem-calc(10);
428
+ // $button-sml: rem-calc(14);
429
+ // $button-med: rem-calc(16);
430
+ // $button-lrg: rem-calc(18);
431
+
432
+ // We use this to control the display property.
433
+ // $button-display: inline-block;
434
+ // $button-margin-bottom: rem-calc(20);
435
+
436
+ // We use these to control button text styles.
437
+ // $button-font-family: $body-font-family;
438
+ // $button-font-color: $white;
439
+ // $button-font-color-alt: $oil;
440
+ // $button-font-tny: rem-calc(11);
441
+ // $button-font-sml: rem-calc(13);
442
+ // $button-font-med: rem-calc(16);
443
+ // $button-font-lrg: rem-calc(20);
444
+ // $button-font-weight: $font-weight-normal;
445
+ // $button-font-align: center;
446
+
447
+ // We use these to control various hover effects.
448
+ // $button-function-factor: -20%;
449
+
450
+ // We use these to control button border and hover styles.
451
+ // $button-border-width: 0px;
452
+ // $button-border-style: solid;
453
+ // $button-bg-color: $primary-color;
454
+ // $button-bg-hover: scale-color($button-bg-color, $lightness: $button-function-factor);
455
+ // $button-border-color: $button-bg-hover;
456
+ // $secondary-button-bg-hover: scale-color($secondary-color, $lightness: $button-function-factor);
457
+ // $secondary-button-border-color: $secondary-button-bg-hover;
458
+ // $success-button-bg-hover: scale-color($success-color, $lightness: $button-function-factor);
459
+ // $success-button-border-color: $success-button-bg-hover;
460
+ // $alert-button-bg-hover: scale-color($alert-color, $lightness: $button-function-factor);
461
+ // $alert-button-border-color: $alert-button-bg-hover;
462
+
463
+ // We use this to set the default radius used throughout the core.
464
+ // $button-radius: $global-radius;
465
+ // $button-round: $global-rounded;
466
+
467
+ // We use this to set default opacity and cursor for disabled buttons.
468
+ // $button-disabled-opacity: 0.7;
469
+ // $button-disabled-cursor: $cursor-default-value;
470
+
471
+ // 06. Button Groups
472
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
473
+
474
+ // $include-html-button-classes: $include-html-classes;
475
+
476
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
477
+ // $button-bar-margin-opposite: rem-calc(10);
478
+ // $button-group-border-width: 1px;
479
+
480
+ // 07. Clearing
481
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
482
+
483
+ // $include-html-clearing-classes: $include-html-classes;
484
+
485
+ // We use these to set the background colors for parts of Clearing.
486
+ // $clearing-bg: $oil;
487
+ // $clearing-caption-bg: $clearing-bg;
488
+ // $clearing-carousel-bg: rgba(51,51,51,0.8);
489
+ // $clearing-img-bg: $clearing-bg;
490
+
491
+ // We use these to style the close button
492
+ // $clearing-close-color: $iron;
493
+ // $clearing-close-size: 30px;
494
+
495
+ // We use these to style the arrows
496
+ // $clearing-arrow-size: 12px;
497
+ // $clearing-arrow-color: $clearing-close-color;
498
+
499
+ // We use these to style captions
500
+ // $clearing-caption-font-color: $iron;
501
+ // $clearing-caption-font-size: 0.875em;
502
+ // $clearing-caption-padding: 10px 30px 20px;
503
+
504
+ // We use these to make the image and carousel height and style
505
+ // $clearing-active-img-height: 85%;
506
+ // $clearing-carousel-height: 120px;
507
+ // $clearing-carousel-thumb-width: 120px;
508
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
509
+
510
+ // 08. Dropdown
511
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
512
+
513
+ // $include-html-dropdown-classes: $include-html-classes;
514
+
515
+ // We use these to controls height and width styles.
516
+ // $f-dropdown-max-width: 200px;
517
+ // $f-dropdown-height: auto;
518
+ // $f-dropdown-max-height: none;
519
+
520
+ // Used for bottom position
521
+ // $f-dropdown-margin-top: 2px;
522
+
523
+ // Used for right position
524
+ // $f-dropdown-margin-left: $f-dropdown-margin-top;
525
+
526
+ // Used for left position
527
+ // $f-dropdown-margin-right: $f-dropdown-margin-top;
528
+
529
+ // Used for top position
530
+ // $f-dropdown-margin-bottom: $f-dropdown-margin-top;
531
+
532
+ // We use this to control the background color
533
+ // $f-dropdown-bg: $white;
534
+
535
+ // We use this to set the border styles for dropdowns.
536
+ // $f-dropdown-border-style: solid;
537
+ // $f-dropdown-border-width: 1px;
538
+ // $f-dropdown-border-color: scale-color($white, $lightness: -20%);
539
+
540
+ // We use these to style the triangle pip.
541
+ // $f-dropdown-triangle-size: 6px;
542
+ // $f-dropdown-triangle-color: $white;
543
+ // $f-dropdown-triangle-side-offset: 10px;
544
+
545
+ // We use these to control styles for the list elements.
546
+ // $f-dropdown-list-style: none;
547
+ // $f-dropdown-font-color: $charcoal;
548
+ // $f-dropdown-font-size: rem-calc(14);
549
+ // $f-dropdown-list-padding: rem-calc(5, 10);
550
+ // $f-dropdown-line-height: rem-calc(18);
551
+ // $f-dropdown-list-hover-bg: $smoke ;
552
+ // $dropdown-mobile-default-float: 0;
553
+
554
+ // We use this to control the styles for when the dropdown has custom content.
555
+ // $f-dropdown-content-padding: rem-calc(20);
556
+
557
+ // 09. Dropdown Buttons
558
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
559
+
560
+ // $include-html-button-classes: $include-html-classes;
561
+
562
+ // We use these to set the color of the pip in dropdown buttons
563
+ // $dropdown-button-pip-color: $white;
564
+ // $dropdown-button-pip-color-alt: $oil;
565
+
566
+ // $button-pip-tny: rem-calc(6);
567
+ // $button-pip-sml: rem-calc(7);
568
+ // $button-pip-med: rem-calc(9);
569
+ // $button-pip-lrg: rem-calc(11);
570
+
571
+ // We use these to style tiny dropdown buttons
572
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
573
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
574
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
575
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
576
+
577
+ // We use these to style small dropdown buttons
578
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
579
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
580
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
581
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
582
+
583
+ // We use these to style medium dropdown buttons
584
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
585
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
586
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
587
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
588
+
589
+ // We use these to style large dropdown buttons
590
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
591
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
592
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
593
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
594
+
595
+ // 10. Flex Video
596
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
597
+
598
+ // $include-html-media-classes: $include-html-classes;
599
+
600
+ // We use these to control video container padding and margins
601
+ // $flex-video-padding-top: rem-calc(25);
602
+ // $flex-video-padding-bottom: 67.5%;
603
+ // $flex-video-margin-bottom: rem-calc(16);
604
+
605
+ // We use this to control widescreen bottom padding
606
+ // $flex-video-widescreen-padding-bottom: 56.34%;
607
+
608
+ // 11. Forms
609
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
610
+
611
+ // $include-html-form-classes: $include-html-classes;
612
+
613
+ // We use this to set the base for lots of form spacing and positioning styles
614
+ // $form-spacing: rem-calc(16);
615
+
616
+ // We use these to style the labels in different ways
617
+ // $form-label-pointer: pointer;
618
+ // $form-label-font-size: rem-calc(14);
619
+ // $form-label-font-weight: $font-weight-normal;
620
+ // $form-label-line-height: 1.5;
621
+ // $form-label-font-color: scale-color($black, $lightness: 30%);
622
+ // $form-label-small-transform: capitalize;
623
+ // $form-label-bottom-margin: 0;
624
+ // $input-font-family: inherit;
625
+ // $input-font-color: rgba(0,0,0,0.75);
626
+ // $input-font-size: rem-calc(14);
627
+ // $input-bg-color: $white;
628
+ // $input-focus-bg-color: scale-color($white, $lightness: -2%);
629
+ // $input-border-color: scale-color($white, $lightness: -20%);
630
+ // $input-focus-border-color: scale-color($white, $lightness: -40%);
631
+ // $input-border-style: solid;
632
+ // $input-border-width: 1px;
633
+ // $input-border-radius: $global-radius;
634
+ // $input-disabled-bg: $gainsboro;
635
+ // $input-disabled-cursor: $cursor-default-value;
636
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
637
+
638
+ // We use these to style the fieldset border and spacing.
639
+ // $fieldset-border-style: solid;
640
+ // $fieldset-border-width: 1px;
641
+ // $fieldset-border-color: $gainsboro;
642
+ // $fieldset-padding: rem-calc(20);
643
+ // $fieldset-margin: rem-calc(18 0);
644
+
645
+ // We use these to style the legends when you use them
646
+ // $legend-bg: $white;
647
+ // $legend-font-weight: $font-weight-bold;
648
+ // $legend-padding: rem-calc(0 3);
649
+
650
+ // We use these to style the prefix and postfix input elements
651
+ // $input-prefix-bg: scale-color($white, $lightness: -5%);
652
+ // $input-prefix-border-color: scale-color($white, $lightness: -20%);
653
+ // $input-prefix-border-size: 1px;
654
+ // $input-prefix-border-type: solid;
655
+ // $input-prefix-overflow: hidden;
656
+ // $input-prefix-font-color: $oil;
657
+ // $input-prefix-font-color-alt: $white;
658
+
659
+ // We use this setting to turn on/off HTML5 number spinners (the up/down arrows)
660
+ // $input-number-spinners: true;
661
+
662
+ // We use these to style the error states for inputs and labels
663
+ // $input-error-message-padding: rem-calc(6 9 9);
664
+ // $input-error-message-top: -1px;
665
+ // $input-error-message-font-size: rem-calc(12);
666
+ // $input-error-message-font-weight: $font-weight-normal;
667
+ // $input-error-message-font-style: italic;
668
+ // $input-error-message-font-color: $white;
669
+ // $input-error-message-font-color-alt: $oil;
670
+
671
+ // We use this to style the glowing effect of inputs when focused
672
+ // $input-include-glowing-effect: true;
673
+ // $glowing-effect-fade-time: 0.45s;
674
+ // $glowing-effect-color: $input-focus-border-color;
675
+
676
+ // Select variables
677
+ // $select-bg-color: $ghost;
678
+ // $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
679
+
680
+
681
+ // 12. Icon Bar
682
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
683
+
684
+ // We use these to style the icon-bar and items
685
+ // $include-html-icon-bar-classes: $include-html-classes;
686
+ // $icon-bar-bg: $oil;
687
+ // $icon-bar-font-color: $white;
688
+ // $icon-bar-font-size: 1rem;
689
+ // $icon-bar-hover-color: $primary-color;
690
+ // $icon-bar-icon-color: $white;
691
+ // $icon-bar-icon-size: 1.875rem;
692
+ // $icon-bar-image-width: 1.875rem;
693
+ // $icon-bar-image-height: 1.875rem;
694
+ // $icon-bar-active-color: $primary-color;
695
+ // $icon-bar-item-padding: 1.25rem;
696
+
697
+ // 13. Inline Lists
698
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
699
+
700
+ // $include-html-inline-list-classes: $include-html-classes;
701
+
702
+ // We use this to control the margins and padding of the inline list.
703
+ // $inline-list-top-margin: 0;
704
+ // $inline-list-opposite-margin: 0;
705
+ // $inline-list-bottom-margin: rem-calc(17);
706
+ // $inline-list-default-float-margin: rem-calc(-22);
707
+ // $inline-list-default-float-list-margin: rem-calc(22);
708
+
709
+ // $inline-list-padding: 0;
710
+
711
+ // We use this to control the overflow of the inline list.
712
+ // $inline-list-overflow: hidden;
713
+
714
+ // We use this to control the list items
715
+ // $inline-list-display: block;
716
+
717
+ // We use this to control any elments within list items
718
+ // $inline-list-children-display: block;
719
+
720
+ // 14. Joyride
721
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
722
+
723
+ // $include-html-joyride-classes: $include-html-classes;
724
+
725
+ // Controlling default Joyride styles
726
+ // $joyride-tip-bg: $oil;
727
+ // $joyride-tip-default-width: 300px;
728
+ // $joyride-tip-padding: rem-calc(18 20 24);
729
+ // $joyride-tip-border: solid 1px $charcoal;
730
+ // $joyride-tip-radius: 4px;
731
+ // $joyride-tip-position-offset: 22px;
732
+
733
+ // Here, we're setting the tip dont styles
734
+ // $joyride-tip-font-color: $white;
735
+ // $joyride-tip-font-size: rem-calc(14);
736
+ // $joyride-tip-header-weight: $font-weight-bold;
737
+
738
+ // This changes the nub size
739
+ // $joyride-tip-nub-size: 10px;
740
+
741
+ // This adjusts the styles for the timer when its enabled
742
+ // $joyride-tip-timer-width: 50px;
743
+ // $joyride-tip-timer-height: 3px;
744
+ // $joyride-tip-timer-color: $steel;
745
+
746
+ // This changes up the styles for the close button
747
+ // $joyride-tip-close-color: $monsoon;
748
+ // $joyride-tip-close-size: 24px;
749
+ // $joyride-tip-close-weight: $font-weight-normal;
750
+
751
+ // When Joyride is filling the screen, we use this style for the bg
752
+ // $joyride-screenfill: rgba(0,0,0,0.5);
753
+
754
+ // 15. Keystrokes
755
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
756
+
757
+ // $include-html-keystroke-classes: $include-html-classes;
758
+
759
+ // We use these to control text styles.
760
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
761
+ // $keystroke-font-size: inherit;
762
+ // $keystroke-font-color: $jet;
763
+ // $keystroke-font-color-alt: $white;
764
+ // $keystroke-function-factor: -7%;
765
+
766
+ // We use this to control keystroke padding.
767
+ // $keystroke-padding: rem-calc(2 4 0);
768
+
769
+ // We use these to control background and border styles.
770
+ // $keystroke-bg: scale-color($white, $lightness: $keystroke-function-factor);
771
+ // $keystroke-border-style: solid;
772
+ // $keystroke-border-width: 1px;
773
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
774
+ // $keystroke-radius: $global-radius;
775
+
776
+ // 16. Labels
777
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
778
+
779
+ // $include-html-label-classes: $include-html-classes;
780
+
781
+ // We use these to style the labels
782
+ // $label-padding: rem-calc(4 8 6);
783
+ // $label-radius: $global-radius;
784
+
785
+ // We use these to style the label text
786
+ // $label-font-sizing: rem-calc(11);
787
+ // $label-font-weight: $font-weight-normal;
788
+ // $label-font-color: $oil;
789
+ // $label-font-color-alt: $white;
790
+ // $label-font-family: $body-font-family;
791
+
792
+ // 17. Magellan
793
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
794
+
795
+ // $include-html-magellan-classes: $include-html-classes;
796
+
797
+ // $magellan-bg: $white;
798
+ // $magellan-padding: 0 !important;
799
+
800
+ // 18. Off-canvas
801
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
802
+
803
+ // $include-html-off-canvas-classes: $include-html-classes;
804
+
805
+ // $tabbar-bg: $oil;
806
+ // $tabbar-height: rem-calc(45);
807
+ // $tabbar-icon-width: $tabbar-height;
808
+ // $tabbar-line-height: $tabbar-height;
809
+ // $tabbar-color: $white;
810
+ // $tabbar-middle-padding: 0 rem-calc(10);
811
+
812
+ // Off Canvas Divider Styles
813
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
814
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
815
+
816
+ // Off Canvas Tab Bar Headers
817
+ // $tabbar-header-color: $white;
818
+ // $tabbar-header-weight: $font-weight-bold;
819
+ // $tabbar-header-line-height: $tabbar-height;
820
+ // $tabbar-header-margin: 0;
821
+
822
+ // Off Canvas Menu Variables
823
+ // $off-canvas-width: rem-calc(250);
824
+ // $off-canvas-bg: $oil;
825
+
826
+ // Off Canvas Menu List Variables
827
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
828
+ // $off-canvas-label-color: $aluminum;
829
+ // $off-canvas-label-text-transform: uppercase;
830
+ // $off-canvas-label-font-size: rem-calc(12);
831
+ // $off-canvas-label-font-weight: $font-weight-bold;
832
+ // $off-canvas-label-bg: $tuatara;
833
+ // $off-canvas-label-border-top: 1px solid scale-color($tuatara, $lightness: 14%);
834
+ // $off-canvas-label-border-bottom: none;
835
+ // $off-canvas-label-margin:0;
836
+ // $off-canvas-link-padding: rem-calc(10, 15);
837
+ // $off-canvas-link-color: rgba($white, 0.7);
838
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
839
+ // $off-canvas-back-bg: $tuatara;
840
+ // $off-canvas-back-border-top: $off-canvas-label-border-top;
841
+ // $off-canvas-back-border-bottom: $off-canvas-label-border-bottom;
842
+ // $off-canvas-back-hover-bg: scale-color($off-canvas-back-bg, $lightness: -30%);
843
+ // $off-canvas-back-hover-border-top: 1px solid scale-color($off-canvas-label-bg, $lightness: 14%);
844
+ // $off-canvas-back-hover-border-bottom: none;
845
+
846
+ // Off Canvas Menu Icon Variables
847
+ // $tabbar-menu-icon-color: $white;
848
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
849
+
850
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
851
+ // $tabbar-menu-icon-width: $tabbar-height;
852
+ // $tabbar-menu-icon-height: $tabbar-height;
853
+ // $tabbar-menu-icon-padding: 0;
854
+
855
+ // $tabbar-hamburger-icon-width: rem-calc(16);
856
+ // $tabbar-hamburger-icon-left: false;
857
+ // $tabbar-hamburger-icon-top: false;
858
+ // $tabbar-hamburger-icon-thickness: 1px;
859
+ // $tabbar-hamburger-icon-gap: 6px;
860
+
861
+ // Off Canvas Back-Link Overlay
862
+ // $off-canvas-overlay-transition: background 300ms ease;
863
+ // $off-canvas-overlay-cursor: pointer;
864
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba($black, 0.5), 4px 0 4px rgba($black, 0.5);
865
+ // $off-canvas-overlay-background: rgba($white, 0.2);
866
+ // $off-canvas-overlay-background-hover: rgba($white, 0.05);
867
+
868
+ // Transition Variables
869
+ // $menu-slide: "transform 500ms ease";
870
+
871
+ // 19. Orbit
872
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
873
+
874
+ // $include-html-orbit-classes: $include-html-classes;
875
+
876
+ // We use these to control the caption styles
877
+ // $orbit-container-bg: none;
878
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
879
+ // $orbit-caption-font-color: $white;
880
+ // $orbit-caption-font-size: rem-calc(14);
881
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
882
+ // $orbit-caption-padding: rem-calc(10 14);
883
+ // $orbit-caption-height: auto;
884
+
885
+ // We use these to control the left/right nav styles
886
+ // $orbit-nav-bg: transparent;
887
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
888
+ // $orbit-nav-arrow-color: $white;
889
+ // $orbit-nav-arrow-color-hover: $white;
890
+
891
+ // We use these to control the timer styles
892
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
893
+ // $orbit-timer-show-progress-bar: true;
894
+
895
+ // We use these to control the bullet nav styles
896
+ // $orbit-bullet-nav-color: $iron;
897
+ // $orbit-bullet-nav-color-active: $aluminum;
898
+ // $orbit-bullet-radius: rem-calc(9);
899
+
900
+ // We use these to controls the style of slide numbers
901
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
902
+ // $orbit-slide-number-font-color: $white;
903
+ // $orbit-slide-number-padding: rem-calc(5);
904
+
905
+ // Hide controls on small
906
+ // $orbit-nav-hide-for-small: true;
907
+ // $orbit-bullet-hide-for-small: true;
908
+ // $orbit-timer-hide-for-small: true;
909
+
910
+ // Graceful Loading Wrapper and preloader
911
+ // $wrapper-class: "slideshow-wrapper";
912
+ // $preloader-class: "preloader";
913
+
914
+ // 20. Pagination
915
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
916
+
917
+ // $include-pagination-classes: $include-html-classes;
918
+
919
+ // We use these to control the pagination container
920
+ // $pagination-height: rem-calc(24);
921
+ // $pagination-margin: rem-calc(-5);
922
+
923
+ // We use these to set the list-item properties
924
+ // $pagination-li-float: $default-float;
925
+ // $pagination-li-height: rem-calc(24);
926
+ // $pagination-li-font-color: $jet;
927
+ // $pagination-li-font-size: rem-calc(14);
928
+ // $pagination-li-margin: rem-calc(5);
929
+
930
+ // We use these for the pagination anchor links
931
+ // $pagination-link-pad: rem-calc(1 10 1);
932
+ // $pagination-link-font-color: $aluminum;
933
+ // $pagination-link-active-bg: scale-color($white, $lightness: -10%);
934
+
935
+ // We use these for disabled anchor links
936
+ // $pagination-link-unavailable-cursor: default;
937
+ // $pagination-link-unavailable-font-color: $aluminum;
938
+ // $pagination-link-unavailable-bg-active: transparent;
939
+
940
+ // We use these for currently selected anchor links
941
+ // $pagination-link-current-background: $primary-color;
942
+ // $pagination-link-current-font-color: $white;
943
+ // $pagination-link-current-font-weight: $font-weight-bold;
944
+ // $pagination-link-current-cursor: default;
945
+ // $pagination-link-current-active-bg: $primary-color;
946
+
947
+ // 21. Panels
948
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
949
+
950
+ // $include-html-panel-classes: $include-html-classes;
951
+
952
+ // We use these to control the background and border styles
953
+ // $panel-bg: scale-color($white, $lightness: -5%);
954
+ // $panel-border-style: solid;
955
+ // $panel-border-size: 1px;
956
+
957
+ // We use this % to control how much we darken things on hover
958
+ // $panel-function-factor: -11%;
959
+ // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
960
+
961
+ // We use these to set default inner padding and bottom margin
962
+ // $panel-margin-bottom: rem-calc(20);
963
+ // $panel-padding: rem-calc(20);
964
+
965
+ // We use these to set default font colors
966
+ // $panel-font-color: $oil;
967
+ // $panel-font-color-alt: $white;
968
+
969
+ // $panel-header-adjust: true;
970
+ // $callout-panel-link-color: $primary-color;
971
+
972
+ // 22. Pricing Tables
973
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
974
+
975
+ // $include-html-pricing-classes: $include-html-classes;
976
+
977
+ // We use this to control the border color
978
+ // $price-table-border: solid 1px $gainsboro;
979
+
980
+ // We use this to control the bottom margin of the pricing table
981
+ // $price-table-margin-bottom: rem-calc(20);
982
+
983
+ // We use these to control the title styles
984
+ // $price-title-bg: $oil;
985
+ // $price-title-padding: rem-calc(15 20);
986
+ // $price-title-align: center;
987
+ // $price-title-color: $smoke;
988
+ // $price-title-weight: $font-weight-normal;
989
+ // $price-title-size: rem-calc(16);
990
+ // $price-title-font-family: $body-font-family;
991
+
992
+ // We use these to control the price styles
993
+ // $price-money-bg: $vapor ;
994
+ // $price-money-padding: rem-calc(15 20);
995
+ // $price-money-align: center;
996
+ // $price-money-color: $oil;
997
+ // $price-money-weight: $font-weight-normal;
998
+ // $price-money-size: rem-calc(32);
999
+ // $price-money-font-family: $body-font-family;
1000
+
1001
+ // We use these to control the description styles
1002
+ // $price-bg: $white;
1003
+ // $price-desc-color: $monsoon;
1004
+ // $price-desc-padding: rem-calc(15);
1005
+ // $price-desc-align: center;
1006
+ // $price-desc-font-size: rem-calc(12);
1007
+ // $price-desc-weight: $font-weight-normal;
1008
+ // $price-desc-line-height: 1.4;
1009
+ // $price-desc-bottom-border: dotted 1px $gainsboro;
1010
+
1011
+ // We use these to control the list item styles
1012
+ // $price-item-color: $oil;
1013
+ // $price-item-padding: rem-calc(15);
1014
+ // $price-item-align: center;
1015
+ // $price-item-font-size: rem-calc(14);
1016
+ // $price-item-weight: $font-weight-normal;
1017
+ // $price-item-bottom-border: dotted 1px $gainsboro;
1018
+
1019
+ // We use these to control the CTA area styles
1020
+ // $price-cta-bg: $white;
1021
+ // $price-cta-align: center;
1022
+ // $price-cta-padding: rem-calc(20 20 0);
1023
+
1024
+
1025
+ // 23. Progress Bar
1026
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1027
+
1028
+ // $include-html-media-classes: $include-html-classes;
1029
+
1030
+ // We use this to set the progress bar height
1031
+ // $progress-bar-height: rem-calc(25);
1032
+ // $progress-bar-color: $vapor ;
1033
+
1034
+ // We use these to control the border styles
1035
+ // $progress-bar-border-color: scale-color($white, $lightness: 20%);
1036
+ // $progress-bar-border-size: 1px;
1037
+ // $progress-bar-border-style: solid;
1038
+ // $progress-bar-border-radius: $global-radius;
1039
+
1040
+ // We use these to control the margin & padding
1041
+ // $progress-bar-pad: rem-calc(2);
1042
+ // $progress-bar-margin-bottom: rem-calc(10);
1043
+
1044
+ // We use these to set the meter colors
1045
+ // $progress-meter-color: $primary-color;
1046
+ // $progress-meter-secondary-color: $secondary-color;
1047
+ // $progress-meter-success-color: $success-color;
1048
+ // $progress-meter-alert-color: $alert-color;
1049
+
1050
+ // 24. Range Slider
1051
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1052
+
1053
+ // $include-html-range-slider-classes: $include-html-classes;
1054
+
1055
+ // These variabels define the slider bar styles
1056
+ // $range-slider-bar-width: 100%;
1057
+ // $range-slider-bar-height: rem-calc(16);
1058
+
1059
+ // $range-slider-bar-border-width: 1px;
1060
+ // $range-slider-bar-border-style: solid;
1061
+ // $range-slider-bar-border-color: $gainsboro;
1062
+ // $range-slider-radius: $global-radius;
1063
+ // $range-slider-round: $global-rounded;
1064
+ // $range-slider-bar-bg-color: $ghost;
1065
+
1066
+ // Vertical bar styles
1067
+ // $range-slider-vertical-bar-width: rem-calc(16);
1068
+ // $range-slider-vertical-bar-height: rem-calc(200);
1069
+
1070
+ // These variabels define the slider handle styles
1071
+ // $range-slider-handle-width: rem-calc(32);
1072
+ // $range-slider-handle-height: rem-calc(22);
1073
+ // $range-slider-handle-position-top: rem-calc(-5);
1074
+ // $range-slider-handle-bg-color: $primary-color;
1075
+ // $range-slider-handle-border-width: 1px;
1076
+ // $range-slider-handle-border-style: solid;
1077
+ // $range-slider-handle-border-color: none;
1078
+ // $range-slider-handle-radius: $global-radius;
1079
+ // $range-slider-handle-round: $global-rounded;
1080
+ // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1081
+ // $range-slider-handle-cursor: pointer;
1082
+
1083
+ // 25. Reveal
1084
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1085
+
1086
+ // $include-html-reveal-classes: $include-html-classes;
1087
+
1088
+ // We use these to control the style of the reveal overlay.
1089
+ // $reveal-overlay-bg: rgba($black, .45);
1090
+ // $reveal-overlay-bg-old: $black;
1091
+
1092
+ // We use these to control the style of the modal itself.
1093
+ // $reveal-modal-bg: $white;
1094
+ // $reveal-position-top: rem-calc(100);
1095
+ // $reveal-default-width: 80%;
1096
+ // $reveal-modal-padding: rem-calc(20);
1097
+ // $reveal-box-shadow: 0 0 10px rgba($black,.4);
1098
+
1099
+ // We use these to style the reveal close button
1100
+ // $reveal-close-font-size: rem-calc(40);
1101
+ // $reveal-close-top: rem-calc(8);
1102
+ // $reveal-close-side: rem-calc(11);
1103
+ // $reveal-close-color: $base;
1104
+ // $reveal-close-weight: $font-weight-bold;
1105
+
1106
+ // We use this to set the default radius used throughout the core.
1107
+ // $reveal-radius: $global-radius;
1108
+ // $reveal-round: $global-rounded;
1109
+
1110
+ // We use these to control the modal border
1111
+ // $reveal-border-style: solid;
1112
+ // $reveal-border-width: 1px;
1113
+ // $reveal-border-color: $steel;
1114
+
1115
+ // $reveal-modal-class: "reveal-modal";
1116
+ // $close-reveal-modal-class: "close-reveal-modal";
1117
+
1118
+ // 26. Side Nav
1119
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1120
+
1121
+ // $include-html-nav-classes: $include-html-classes;
1122
+
1123
+ // We use this to control padding.
1124
+ // $side-nav-padding: rem-calc(14 0);
1125
+
1126
+ // We use these to control list styles.
1127
+ // $side-nav-list-type: none;
1128
+ // $side-nav-list-position: inside;
1129
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
1130
+
1131
+ // We use these to control link styles.
1132
+ // $side-nav-link-color: $primary-color;
1133
+ // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
1134
+ // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
1135
+ // $side-nav-link-bg-hover: hsla(0, 0, 0, 0.025);
1136
+ // $side-nav-link-margin: 0;
1137
+ // $side-nav-link-padding: rem-calc(7 14);
1138
+ // $side-nav-font-size: rem-calc(14);
1139
+ // $side-nav-font-weight: $font-weight-normal;
1140
+ // $side-nav-font-weight-active: $side-nav-font-weight;
1141
+ // $side-nav-font-family: $body-font-family;
1142
+ // $side-nav-active-font-family: $side-nav-font-family;
1143
+
1144
+ // We use these to control heading styles.
1145
+ // $side-nav-heading-color: $side-nav-link-color;
1146
+ // $side-nav-heading-font-size: $side-nav-font-size;
1147
+ // $side-nav-heading-font-weight: bold;
1148
+ // $side-nav-heading-text-transform: uppercase;
1149
+
1150
+ // We use these to control border styles
1151
+ // $side-nav-divider-size: 1px;
1152
+ // $side-nav-divider-style: solid;
1153
+ // $side-nav-divider-color: scale-color($white, $lightness: 10%);
1154
+
1155
+ // 27. Split Buttons
1156
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1157
+
1158
+ // $include-html-button-classes: $include-html-classes;
1159
+
1160
+ // We use these to control different shared styles for Split Buttons
1161
+ // $split-button-function-factor: 10%;
1162
+ // $split-button-pip-color: $white;
1163
+ // $split-button-pip-color-alt: $oil;
1164
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
1165
+
1166
+ // We use these to control tiny split buttons
1167
+ // $split-button-padding-tny: $button-pip-tny * 10;
1168
+ // $split-button-span-width-tny: $button-pip-tny * 6;
1169
+ // $split-button-pip-size-tny: $button-pip-tny;
1170
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
1171
+ // $split-button-pip-default-float-tny: rem-calc(-6);
1172
+
1173
+ // We use these to control small split buttons
1174
+ // $split-button-padding-sml: $button-pip-sml * 10;
1175
+ // $split-button-span-width-sml: $button-pip-sml * 6;
1176
+ // $split-button-pip-size-sml: $button-pip-sml;
1177
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
1178
+ // $split-button-pip-default-float-sml: rem-calc(-6);
1179
+
1180
+ // We use these to control medium split buttons
1181
+ // $split-button-padding-med: $button-pip-med * 9;
1182
+ // $split-button-span-width-med: $button-pip-med * 5.5;
1183
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
1184
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
1185
+ // $split-button-pip-default-float-med: rem-calc(-6);
1186
+
1187
+ // We use these to control large split buttons
1188
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
1189
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
1190
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
1191
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
1192
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
1193
+
1194
+ // 28. Sub Nav
1195
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1196
+
1197
+ // $include-html-nav-classes: $include-html-classes;
1198
+
1199
+ // We use these to control margin and padding
1200
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
1201
+ // $sub-nav-list-padding-top: rem-calc(4);
1202
+
1203
+ // We use this to control the definition
1204
+ // $sub-nav-font-family: $body-font-family;
1205
+ // $sub-nav-font-size: rem-calc(14);
1206
+ // $sub-nav-font-color: $aluminum;
1207
+ // $sub-nav-font-weight: $font-weight-normal;
1208
+ // $sub-nav-text-decoration: none;
1209
+ // $sub-nav-padding: rem-calc(3 16);
1210
+ // $sub-nav-border-radius: 3px;
1211
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
1212
+
1213
+
1214
+ // We use these to control the active item styles
1215
+ // $sub-nav-active-font-weight: $font-weight-normal;
1216
+ // $sub-nav-active-bg: $primary-color;
1217
+ // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
1218
+ // $sub-nav-active-color: $white;
1219
+ // $sub-nav-active-padding: $sub-nav-padding;
1220
+ // $sub-nav-active-cursor: default;
1221
+
1222
+ // $sub-nav-item-divider: "";
1223
+ // $sub-nav-item-divider-margin: rem-calc(12);
1224
+
1225
+
1226
+ // 29. Switch
1227
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1228
+
1229
+ // $include-html-form-classes: $include-html-classes;
1230
+
1231
+ // Controlling border styles and background colors for the switch container
1232
+ // $switch-border-color: scale-color($white, $lightness: -20%);
1233
+ // $switch-border-style: solid;
1234
+ // $switch-border-width: 1px;
1235
+ // $switch-bg: $white;
1236
+
1237
+ // We use these to control the switch heights for our default classes
1238
+ // $switch-height-tny: rem-calc(22);
1239
+ // $switch-height-sml: rem-calc(28);
1240
+ // $switch-height-med: rem-calc(36);
1241
+ // $switch-height-lrg: rem-calc(44);
1242
+ // $switch-bottom-margin: rem-calc(20);
1243
+
1244
+ // We use these to control default font sizes for our classes.
1245
+ // $switch-font-size-tny: 11px;
1246
+ // $switch-font-size-sml: 12px;
1247
+ // $switch-font-size-med: 14px;
1248
+ // $switch-font-size-lrg: 17px;
1249
+ // $switch-label-side-padding: 6px;
1250
+
1251
+ // We use these to style the switch-paddle
1252
+ // $switch-paddle-bg: $white;
1253
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1254
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1255
+ // $switch-paddle-border-width: 1px;
1256
+ // $switch-paddle-border-style: solid;
1257
+ // $switch-paddle-transition-speed: .1s;
1258
+ // $switch-paddle-transition-ease: ease-out;
1259
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1260
+ // $switch-negative-color: $white-smoke;
1261
+
1262
+ // Outline Style for tabbing through switches
1263
+ // $switch-label-outline: 1px dotted $jumbo;
1264
+
1265
+ // 30. Tables
1266
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1267
+
1268
+ // $include-html-table-classes: $include-html-classes;
1269
+
1270
+ // These control the background color for the table and even rows
1271
+ // $table-bg: $white;
1272
+ // $table-even-row-bg: $snow ;
1273
+
1274
+ // These control the table cell border style
1275
+ // $table-border-style: solid;
1276
+ // $table-border-size: 1px;
1277
+ // $table-border-color: $gainsboro;
1278
+
1279
+ // These control the table head styles
1280
+ // $table-head-bg: $white-smoke ;
1281
+ // $table-head-font-size: rem-calc(14);
1282
+ // $table-head-font-color: $jet;
1283
+ // $table-head-font-weight: $font-weight-bold;
1284
+ // $table-head-padding: rem-calc(8 10 10);
1285
+
1286
+ // These control the row padding and font styles
1287
+ // $table-row-padding: rem-calc(9 10);
1288
+ // $table-row-font-size: rem-calc(14);
1289
+ // $table-row-font-color: $jet;
1290
+ // $table-line-height: rem-calc(18);
1291
+
1292
+ // These are for controlling the display and margin of tables
1293
+ // $table-display: table-cell;
1294
+ // $table-margin-bottom: rem-calc(20);
1295
+
1296
+ // 31. Tabs
1297
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1298
+
1299
+ // $include-html-tabs-classes: $include-html-classes;
1300
+
1301
+ // $tabs-navigation-padding: rem-calc(16);
1302
+ // $tabs-navigation-bg-color: $silver ;
1303
+ // $tabs-navigation-active-bg-color: $white;
1304
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1305
+ // $tabs-navigation-font-color: $jet;
1306
+ // $tabs-navigation-active-font-color: $tabs-navigation-font-color;
1307
+ // $tabs-navigation-font-size: rem-calc(16);
1308
+ // $tabs-navigation-font-family: $body-font-family;
1309
+
1310
+ // $tabs-content-margin-bottom: rem-calc(24);
1311
+ // $tabs-content-padding: $column-gutter/2;
1312
+
1313
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1314
+
1315
+ // 32. Thumbnails
1316
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1317
+
1318
+ // $include-html-media-classes: $include-html-classes;
1319
+
1320
+ // We use these to control border styles
1321
+ // $thumb-border-style: solid;
1322
+ // $thumb-border-width: 4px;
1323
+ // $thumb-border-color: $white;
1324
+ // $thumb-box-shadow: 0 0 0 1px rgba($black,.2);
1325
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1326
+
1327
+ // Radius and transition speed for thumbs
1328
+ // $thumb-radius: $global-radius;
1329
+ // $thumb-transition-speed: 200ms;
1330
+
1331
+ // 33. Tooltips
1332
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1333
+
1334
+ // $include-html-tooltip-classes: $include-html-classes;
1335
+
1336
+ // $has-tip-border-bottom: dotted 1px $iron;
1337
+ // $has-tip-font-weight: $font-weight-bold;
1338
+ // $has-tip-font-color: $oil;
1339
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1340
+ // $has-tip-font-color-hover: $primary-color;
1341
+ // $has-tip-cursor-type: help;
1342
+
1343
+ // $tooltip-padding: rem-calc(12);
1344
+ // $tooltip-bg: $oil;
1345
+ // $tooltip-font-size: rem-calc(14);
1346
+ // $tooltip-font-weight: $font-weight-normal;
1347
+ // $tooltip-font-color: $white;
1348
+ // $tooltip-line-height: 1.3;
1349
+ // $tooltip-close-font-size: rem-calc(10);
1350
+ // $tooltip-close-font-weight: $font-weight-normal;
1351
+ // $tooltip-close-font-color: $monsoon;
1352
+ // $tooltip-font-size-sml: rem-calc(14);
1353
+ // $tooltip-radius: $global-radius;
1354
+ // $tooltip-rounded: $global-rounded;
1355
+ // $tooltip-pip-size: 5px;
1356
+ // $tooltip-max-width: 300px;
1357
+
1358
+ // 34. Top Bar
1359
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1360
+
1361
+ // $include-html-top-bar-classes: $include-html-classes;
1362
+
1363
+ // Background color for the top bar
1364
+ // $topbar-bg-color: $oil;
1365
+ // $topbar-bg: $topbar-bg-color;
1366
+
1367
+ // Height and margin
1368
+ // $topbar-height: 45px;
1369
+ // $topbar-margin-bottom: 0;
1370
+
1371
+ // Controlling the styles for the title in the top bar
1372
+ // $topbar-title-weight: $font-weight-normal;
1373
+ // $topbar-title-font-size: rem-calc(17);
1374
+
1375
+ // Style the top bar dropdown elements
1376
+ // $topbar-dropdown-bg: $oil;
1377
+ // $topbar-dropdown-link-color: $white;
1378
+ // $topbar-dropdown-link-bg: $oil;
1379
+ // $topbar-dropdown-link-weight: $font-weight-normal;
1380
+ // $topbar-dropdown-toggle-size: 5px;
1381
+ // $topbar-dropdown-toggle-color: $white;
1382
+ // $topbar-dropdown-toggle-alpha: 0.4;
1383
+
1384
+ // Set the link colors and styles for top-level nav
1385
+ // $topbar-link-color: $white;
1386
+ // $topbar-link-color-hover: $white;
1387
+ // $topbar-link-color-active: $white;
1388
+ // $topbar-link-color-active-hover: $white;
1389
+ // $topbar-link-weight: $font-weight-normal;
1390
+ // $topbar-link-font-size: rem-calc(13);
1391
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
1392
+ // $topbar-link-bg: $topbar-bg;
1393
+ // $topbar-link-bg-color-hover: $charcoal;
1394
+ // $topbar-link-bg-hover: #272727;
1395
+ // $topbar-link-bg-active: $primary-color;
1396
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1397
+ // $topbar-link-font-family: $body-font-family;
1398
+ // $topbar-link-text-transform: none;
1399
+ // $topbar-link-padding: $topbar-height / 3;
1400
+ // $topbar-back-link-size: $h5-font-size;
1401
+ // $topbar-link-dropdown-padding: 20px;
1402
+
1403
+ // $topbar-button-font-size: 0.75rem;
1404
+ // $topbar-button-top: 7px;
1405
+
1406
+ // $topbar-dropdown-label-color: $monsoon;
1407
+ // $topbar-dropdown-label-text-transform: uppercase;
1408
+ // $topbar-dropdown-label-font-weight: $font-weight-bold;
1409
+ // $topbar-dropdown-label-font-size: rem-calc(10);
1410
+ // $topbar-dropdown-label-bg: $oil;
1411
+
1412
+ // Top menu icon styles
1413
+ // $topbar-menu-link-transform: uppercase;
1414
+ // $topbar-menu-link-font-size: rem-calc(13);
1415
+ // $topbar-menu-link-weight: $font-weight-bold;
1416
+ // $topbar-menu-link-color: $white;
1417
+ // $topbar-menu-icon-color: $white;
1418
+ // $topbar-menu-link-color-toggled: $jumbo;
1419
+ // $topbar-menu-icon-color-toggled: $jumbo;
1420
+
1421
+ // Transitions and breakpoint styles
1422
+ // $topbar-transition-speed: 300ms;
1423
+ // Using rem-calc for the below breakpoint causes issues with top bar
1424
+ // $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
1425
+ // $topbar-media-query: $medium-up;
1426
+
1427
+ // Divider Styles
1428
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1429
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1430
+
1431
+ // Sticky Class
1432
+ // $topbar-sticky-class: ".sticky";
1433
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1434
+
1435
+ // 36. Visibility Classes
1436
+ // - - - - - - - - - - - - - - - - - - - - - - - - -
1437
+
1438
+ // $include-html-visibility-classes: $include-html-classes;
1439
+ // $include-table-visibility-classes: true;
1440
+ // $include-legacy-visibility-classes: true;
1441
+ // $include-accessibility-classes: true;
1442
+ $alert-bottom-margin: 0px;
1443
+ $tabs-navigation-active-bg-color: rgba(9, 125, 177, 0.22);
1444
+ @import 'foundation';
1445
+
1446
+
1447
+ .custom-alert-box {
1448
+ @include alert(
1449
+ // Adjust the background of the alert
1450
+ $bg: #cccccc,
1451
+ // Give a border to the alert box
1452
+ $radius: true
1453
+ );
1454
+ }