themepile-abstractio 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +28 -0
  3. data/.rbenv-version +1 -0
  4. data/CONTRIBUTING.md +53 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +22 -0
  7. data/README.md +136 -0
  8. data/Rakefile +2 -0
  9. data/abstractio.gemspec +18 -0
  10. data/js/foundation/foundation.alerts.js +50 -0
  11. data/js/foundation/foundation.clearing.js +516 -0
  12. data/js/foundation/foundation.cookie.js +74 -0
  13. data/js/foundation/foundation.dropdown.js +159 -0
  14. data/js/foundation/foundation.forms.js +516 -0
  15. data/js/foundation/foundation.joyride.js +842 -0
  16. data/js/foundation/foundation.js +403 -0
  17. data/js/foundation/foundation.magellan.js +130 -0
  18. data/js/foundation/foundation.orbit.js +373 -0
  19. data/js/foundation/foundation.placeholder.js +159 -0
  20. data/js/foundation/foundation.reveal.js +276 -0
  21. data/js/foundation/foundation.section.js +409 -0
  22. data/js/foundation/foundation.tooltips.js +206 -0
  23. data/js/foundation/foundation.topbar.js +252 -0
  24. data/js/foundation/index.js +16 -0
  25. data/js/vendor/custom.modernizr.js +4 -0
  26. data/js/vendor/jquery.js +9597 -0
  27. data/js/vendor/zepto.js +1884 -0
  28. data/lib/abstractio.rb +17 -0
  29. data/lib/abstractio/engine.rb +20 -0
  30. data/lib/abstractio/generators/USAGE +15 -0
  31. data/lib/abstractio/generators/install_generator.rb +54 -0
  32. data/lib/abstractio/generators/templates/application.html.erb +46 -0
  33. data/lib/abstractio/generators/templates/application.html.haml +31 -0
  34. data/lib/abstractio/generators/templates/application.html.slim +28 -0
  35. data/lib/abstractio/version.rb +3 -0
  36. data/lib/themepile-abstractio.rb +17 -0
  37. data/scss/abstractio.scss +46 -0
  38. data/scss/abstractio/_variables.scss +1224 -0
  39. data/scss/abstractio/components/_alert-boxes.scss +107 -0
  40. data/scss/abstractio/components/_block-grid.scss +68 -0
  41. data/scss/abstractio/components/_breadcrumbs.scss +125 -0
  42. data/scss/abstractio/components/_button-groups.scss +89 -0
  43. data/scss/abstractio/components/_buttons.scss +227 -0
  44. data/scss/abstractio/components/_clearing.scss +224 -0
  45. data/scss/abstractio/components/_custom-forms.scss +263 -0
  46. data/scss/abstractio/components/_dropdown-buttons.scss +115 -0
  47. data/scss/abstractio/components/_dropdown.scss +150 -0
  48. data/scss/abstractio/components/_flex-video.scss +46 -0
  49. data/scss/abstractio/components/_forms.scss +362 -0
  50. data/scss/abstractio/components/_global.scss +280 -0
  51. data/scss/abstractio/components/_grid.scss +186 -0
  52. data/scss/abstractio/components/_inline-lists.scss +53 -0
  53. data/scss/abstractio/components/_joyride.scss +215 -0
  54. data/scss/abstractio/components/_keystrokes.scss +57 -0
  55. data/scss/abstractio/components/_labels.scss +85 -0
  56. data/scss/abstractio/components/_magellan.scss +23 -0
  57. data/scss/abstractio/components/_orbit.scss +213 -0
  58. data/scss/abstractio/components/_pagination.scss +100 -0
  59. data/scss/abstractio/components/_panels.scss +77 -0
  60. data/scss/abstractio/components/_pricing-tables.scss +131 -0
  61. data/scss/abstractio/components/_progress-bars.scss +71 -0
  62. data/scss/abstractio/components/_reveal.scss +132 -0
  63. data/scss/abstractio/components/_section.scss +318 -0
  64. data/scss/abstractio/components/_side-nav.scss +69 -0
  65. data/scss/abstractio/components/_split-buttons.scss +167 -0
  66. data/scss/abstractio/components/_sub-nav.scss +68 -0
  67. data/scss/abstractio/components/_switch.scss +251 -0
  68. data/scss/abstractio/components/_tables.scss +84 -0
  69. data/scss/abstractio/components/_thumbs.scss +48 -0
  70. data/scss/abstractio/components/_tooltips.scss +117 -0
  71. data/scss/abstractio/components/_top-bar.scss +495 -0
  72. data/scss/abstractio/components/_type.scss +426 -0
  73. data/scss/abstractio/components/_visibility.scss +322 -0
  74. data/scss/normalize.scss +402 -0
  75. data/templates/project/.gitignore +44 -0
  76. data/templates/project/MIT-LICENSE.txt +20 -0
  77. data/templates/project/config.rb +26 -0
  78. data/templates/project/humans.txt +8 -0
  79. data/templates/project/index.html +124 -0
  80. data/templates/project/manifest.rb +45 -0
  81. data/templates/project/robots.txt +4 -0
  82. data/templates/project/scss/app.scss +48 -0
  83. data/templates/upgrade/manifest.rb +34 -0
  84. metadata +153 -0
@@ -0,0 +1,17 @@
1
+ root = File.join(File.dirname(__FILE__), "..")
2
+ require "abstractio/version"
3
+
4
+ if defined?(Rails)
5
+ require "abstractio/generators/install_generator"
6
+ end
7
+
8
+ module Foundation
9
+ require "abstractio/engine" if defined?(Rails)
10
+ end
11
+
12
+ if defined?(Compass)
13
+ Compass::Frameworks.register("abstractio",
14
+ :stylesheets_directory => File.join(root,"scss"),
15
+ :templates_directory => File.join(root,"templates")
16
+ )
17
+ end
@@ -0,0 +1,20 @@
1
+ module Abstractio
2
+ class Engine < Rails::Engine
3
+ # Save this block, we'll use it in two calls to .initializer
4
+ add_paths_block = lambda { |app|
5
+ app.config.assets.paths << File.expand_path("../../../scss", __FILE__)
6
+ app.config.assets.paths << File.expand_path("../../../js", __FILE__)
7
+
8
+ # Ensure Zepto and Modernizr are precompiled in production
9
+ app.config.assets.precompile += %w(vendor/zepto.js vendor/custom.modernizr.js)
10
+ }
11
+
12
+ # Standard initializer
13
+ initializer 'abstractio.update_asset_paths', &add_paths_block
14
+
15
+ # Special initializer lets us precompile assets without fully initializing
16
+ initializer 'abstractio.update_asset_paths', :group => :assets,
17
+ &add_paths_block
18
+
19
+ end
20
+ end
@@ -0,0 +1,15 @@
1
+ Description:
2
+ Setup Abstractio assets in your app and generate new layouts preconfigured to use Aabstractio
3
+
4
+ Example:
5
+ rails g abstractio:install
6
+
7
+ This will insert abstractio require lines into default application assets:
8
+ /app/assets/javascripts/application.js
9
+ /app/assets/stylesheets/application.css
10
+
11
+ And create sample layout (depending of your template engine):
12
+ /app/views/layouts/application.html.erb
13
+
14
+ And abstractio variables override file:
15
+ /app/assets/stylesheets/abstractio_and_overrides.scss
@@ -0,0 +1,54 @@
1
+ require 'rails/generators'
2
+
3
+ module Abstractio
4
+ module Generators
5
+ class InstallGenerator < Rails::Generators::Base
6
+ source_root File.join(File.dirname(__FILE__), 'templates')
7
+ argument :layout_name, :type => :string, :default => 'application', :banner => 'layout_name'
8
+
9
+ class_option :haml, :desc => 'Generate HAML layout instead of erb', :type => :boolean
10
+ class_option :slim, :desc => 'Generate Slim layout instead of erb', :type => :boolean
11
+
12
+ def add_assets
13
+ # rails_ujs breaks, need to incorporate rails-behavior plugin for this to work seamlessly
14
+ # gsub_file "app/assets/javascripts/application#{detect_js_format[0]}", /\/\/= require jquery\n/, ""
15
+ insert_into_file "app/assets/javascripts/application#{detect_js_format[0]}", "#{detect_js_format[1]} require abstractio\n", :after => "jquery_ujs\n"
16
+ append_to_file "app/assets/javascripts/application#{detect_js_format[0]}", "\n$(function(){ $(document).abstractio(); });\n"
17
+ settings_file = File.join(File.dirname(__FILE__),"..","..","..","scss","abstractio","_variables.scss")
18
+ create_file "app/assets/stylesheets/abstractio_and_overrides.scss", File.read(settings_file)
19
+ append_to_file "app/assets/stylesheets/abstractio_and_overrides.scss", "\n@import 'abstractio';\n"
20
+ insert_into_file "app/assets/stylesheets/application#{detect_css_format[0]}", "#{detect_css_format[1]} require abstractio_and_overrides\n", :after => "require_self\n"
21
+ end
22
+
23
+ def detect_js_format
24
+ return ['.coffee', '#='] if File.exist?('app/assets/javascripts/application.coffee')
25
+ return ['.js.coffee', '#='] if File.exist?('app/assets/javascripts/application.js.coffee')
26
+ return ['.js', '//='] if File.exist?('app/assets/javascripts/application.js')
27
+ end
28
+
29
+ def detect_css_format
30
+ return ['.css', ' *='] if File.exist?('app/assets/stylesheets/application.css')
31
+ return ['.css.sass', ' //='] if File.exist?('app/assets/stylesheets/application.css.sass')
32
+ return ['.sass', ' //='] if File.exist?('app/assets/stylesheets/application.sass')
33
+ return ['.css.scss', ' //='] if File.exist?('app/assets/stylesheets/application.css.scss')
34
+ return ['.scss', ' //='] if File.exist?('app/assets/stylesheets/application.scss')
35
+ end
36
+
37
+ def create_layout
38
+ if options.haml?||(defined?(Haml) && !options.slim?)
39
+ template 'application.html.haml', "app/views/layouts/#{file_name}.html.haml"
40
+ elsif options.slim?||(defined?(Slim) && !options.haml?)
41
+ template 'application.html.slim', "app/views/layouts/#{file_name}.html.slim"
42
+ else
43
+ template 'application.html.erb', "app/views/layouts/#{file_name}.html.erb"
44
+ end
45
+ end
46
+
47
+ private
48
+
49
+ def file_name
50
+ layout_name.underscore.downcase
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,46 @@
1
+ <!DOCTYPE html>
2
+ <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
3
+ <!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]-->
4
+ <!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]-->
5
+ <!--[if IE 8 ]> <html class="ie8" lang="en"> <![endif]-->
6
+ <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
7
+ <head>
8
+ <meta charset="utf-8" />
9
+
10
+ <!-- Uncomment to make IE8 render like IE7 -->
11
+ <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" /> -->
12
+
13
+ <!-- Set the viewport width to device width for mobile -->
14
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
15
+
16
+ <title><%%= content_for?(:title) ? yield(:title) : "Untitled" %></title>
17
+
18
+ <%%= stylesheet_link_tag "application" %>
19
+ <%%= javascript_include_tag "vendor/custom.modernizr" %>
20
+ <%%= csrf_meta_tags %>
21
+ </head>
22
+
23
+ <body>
24
+
25
+ <%%= yield %>
26
+
27
+ <% if false %>
28
+ <script>
29
+ document.write('<script src=' +
30
+ ('__proto__' in {} ? '<%%= asset_path("vendor/zepto") %>' : '<%%= asset_path("jquery") %>') +
31
+ '><\/script>');
32
+ </script>
33
+
34
+ <script>
35
+ // Ensure rails_ujs works with Zepto
36
+ $.fn.ajaxSend = function(callback) {
37
+ return this.each(function(){
38
+ $(this).on('ajaxBeforeSend', callback);
39
+ });
40
+ };
41
+ var jQuery = $;
42
+ </script>
43
+ <% end %>
44
+ <%%= javascript_include_tag "application" %>
45
+ </body>
46
+ </html>
@@ -0,0 +1,31 @@
1
+ !!! 5
2
+ / paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
3
+ /[if lt IE 7 ] <html class=\"ie6\" lang=\"en\">
4
+ /[if IE 7 ] <html class=\"ie7\" lang=\"en\">
5
+ /[if IE 8 ] <html class=\"ie8\" lang=\"en\">
6
+ /[if IE 9 ] <html class=\"ie9\" lang=\"en\">
7
+ /[if (gt IE 9)|!(IE)] <!--> <html lang=\"en\">
8
+
9
+ %head
10
+ %meta{ :charset => "utf-8" }
11
+
12
+ -# Uncomment to make IE8 render like IE7
13
+ -# meta http-equiv="X-UA-Compatible" content="IE=7"
14
+
15
+ -# Set the viewport width to device width for mobile
16
+ %meta{ :name => "viewport", :content => "width=device-width, initial-scale=1.0" }
17
+
18
+ %title= content_for?(:title) ? yield(:title) : "Untitled"
19
+
20
+ = stylesheet_link_tag "application"
21
+ = javascript_include_tag "vendor/custom.modernizr"
22
+ = csrf_meta_tag
23
+
24
+ %body
25
+
26
+ = yield
27
+
28
+ = javascript_include_tag "application"
29
+
30
+ :plain
31
+ </html>
@@ -0,0 +1,28 @@
1
+ doctype html
2
+ == "<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->"
3
+ == "<!--[if lt IE 7 ]> <html class=\"ie6\" lang=\"en\"> <![endif]-->"
4
+ == "<!--[if IE 7 ]> <html class=\"ie7\" lang=\"en\"> <![endif]-->"
5
+ == "<!--[if IE 8 ]> <html class=\"ie8\" lang=\"en\"> <![endif]-->"
6
+ == "<!--[if IE 9 ]> <html class=\"ie9\" lang=\"en\"> <![endif]-->"
7
+ == "<!--[if (gt IE 9)|!(IE)]><!--> <html lang=\"en\"> <!--<![endif]-->"
8
+
9
+ head
10
+ meta charset="utf-8"
11
+
12
+ / Uncomment to make IE8 render like IE7
13
+ / meta http-equiv="X-UA-Compatible" content="IE=7"
14
+
15
+ / Set the viewport width to device width for mobile
16
+ meta name="viewport" content="width=device-width, initial-scale=1.0"
17
+
18
+ title= content_for?(:title) ? yield(:title) : "Untitled"
19
+
20
+ = stylesheet_link_tag "application"
21
+ = javascript_include_tag "vendor/custom.modernizr"
22
+ = csrf_meta_tag
23
+
24
+ body
25
+
26
+ == yield
27
+
28
+ = javascript_include_tag "application"
@@ -0,0 +1,3 @@
1
+ module Abstractio
2
+ VERSION = "1.0.2"
3
+ end
@@ -0,0 +1,17 @@
1
+ root = File.join(File.dirname(__FILE__), "..")
2
+ require "abstractio/version"
3
+
4
+ if defined?(Rails)
5
+ require "abstractio/generators/install_generator"
6
+ end
7
+
8
+ module Abstractio
9
+ require "abstractio/engine" if defined?(Rails)
10
+ end
11
+
12
+ if defined?(Compass)
13
+ Compass::Frameworks.register("abstractio",
14
+ :stylesheets_directory => File.join(root,"scss"),
15
+ :templates_directory => File.join(root,"templates")
16
+ )
17
+ end
@@ -0,0 +1,46 @@
1
+ // Make sure the charset is set appropriately
2
+ @charset "UTF-8";
3
+
4
+ // This includes all of the foundation global elements that are needed to work with any of the other files.
5
+ @import "foundation/variables";
6
+
7
+ // Abstractio Components
8
+ @import
9
+ "foundation/components/global",
10
+ "foundation/components/grid",
11
+ "foundation/components/visibility",
12
+ "foundation/components/block-grid",
13
+ "foundation/components/type",
14
+ "foundation/components/buttons",
15
+ "foundation/components/forms",
16
+ "foundation/components/custom-forms",
17
+ "foundation/components/button-groups",
18
+ "foundation/components/dropdown-buttons",
19
+ "foundation/components/split-buttons",
20
+ "foundation/components/flex-video",
21
+ "foundation/components/section",
22
+ "foundation/components/top-bar",
23
+ "foundation/components/orbit",
24
+ "foundation/components/reveal",
25
+ "foundation/components/joyride",
26
+ "foundation/components/clearing",
27
+ "foundation/components/alert-boxes",
28
+ "foundation/components/breadcrumbs",
29
+ "foundation/components/keystrokes",
30
+ "foundation/components/labels",
31
+ "foundation/components/inline-lists",
32
+ "foundation/components/pagination",
33
+ "foundation/components/panels",
34
+ "foundation/components/pricing-tables",
35
+ "foundation/components/progress-bars",
36
+ "foundation/components/side-nav",
37
+ "foundation/components/sub-nav",
38
+ "foundation/components/switch",
39
+ "foundation/components/magellan",
40
+ "foundation/components/tables",
41
+ "foundation/components/thumbs",
42
+ "foundation/components/tooltips",
43
+ "foundation/components/dropdown";
44
+
45
+
46
+
@@ -0,0 +1,1224 @@
1
+ //
2
+ // Foundation Variables
3
+ //
4
+
5
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
6
+ // for compatibility with brower-based text zoom or user-set defaults.
7
+ $base-font-size: 100% !default;
8
+
9
+ // $base-line-height is 24px while $base-font-size is 16px
10
+ // $base-line-height: 150%;
11
+
12
+ // This is the default html and body font-size for the base em value.
13
+
14
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
15
+ // If you want your base font-size to be a different size and not have it effect grid size too,
16
+ // set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
17
+ $em-base: 16px !default;
18
+
19
+ // Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px)
20
+ @function emCalc($pxWidth) {
21
+ @return $pxWidth / $em-base * 1em;
22
+ }
23
+
24
+ // Various global styles
25
+
26
+ // $default-float: left;
27
+
28
+ // $body-bg: #fff;
29
+ // $body-font-color: #222;
30
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
31
+ // $body-font-weight: normal;
32
+ // $body-font-style: normal;
33
+
34
+ // Font-smoothing
35
+
36
+ // $font-smoothing: antialiased;
37
+
38
+ // Text direction settings
39
+
40
+ // $text-direction: ltr;
41
+
42
+ // Colors
43
+
44
+ // $primary-color: #2ba6cb;
45
+ // $secondary-color: #e9e9e9;
46
+ // $alert-color: #c60f13;
47
+ // $success-color: #5da423;
48
+
49
+ // Make sure border radius matches unless we want it different.
50
+
51
+ // $global-radius: 3px;
52
+ // $global-rounded: 1000px;
53
+
54
+ // Inset shadow shiny edges and depressions.
55
+
56
+ // $shiny-edge-size: 0 1px 0;
57
+ // $shiny-edge-color: rgba(#fff, .5);
58
+ // $shiny-edge-active-color: rgba(#000, .2);
59
+
60
+ // Control whether or not CSS classes come through in the CSS files.
61
+
62
+ // $include-html-classes: true;
63
+ // $include-print-styles: true;
64
+ // $include-html-global-classes: $include-html-classes;
65
+ // $include-html-type-classes: $include-html-classes;
66
+ // $include-html-grid-classes: $include-html-classes;
67
+ // $include-html-visibility-classes: $include-html-classes;
68
+ // $include-html-button-classes: $include-html-classes;
69
+ // $include-html-form-classes: $include-html-classes;
70
+ // $include-html-custom-form-classes: $include-html-classes;
71
+ // $include-html-media-classes: $include-html-classes;
72
+ // $include-html-section-classes: $include-html-classes;
73
+ // $include-html-orbit-classes: $include-html-classes;
74
+ // $include-html-reveal-classes: $include-html-classes;
75
+ // $include-html-joyride-classes: $include-html-classes;
76
+ // $include-html-clearing-classes: $include-html-classes;
77
+ // $include-html-alert-classes: $include-html-classes;
78
+ // $include-html-nav-classes: $include-html-classes;
79
+ // $include-html-label-classes: $include-html-classes;
80
+ // $include-html-panel-classes: $include-html-classes;
81
+ // $include-html-pricing-classes: $include-html-classes;
82
+ // $include-html-progress-classes: $include-html-classes;
83
+ // $include-html-magellan-classes: $include-html-classes;
84
+ // $include-html-tooltip-classes: $include-html-classes;
85
+
86
+ // Media Queries
87
+
88
+ // $small-screen: 768px;
89
+ // $medium-screen: 1280px;
90
+ // $large-screen: 1440px;
91
+
92
+ // $screen: "only screen";
93
+ // $small: "only screen and (min-width: #{$small-screen})";
94
+ // $medium: "only screen and (min-width: #{$medium-screen})";
95
+ // $large: "only screen and (min-width: #{$large-screen})";
96
+ // $landscape: "only screen and (orientation: landscape)";
97
+ // $portrait: "only screen and (orientation: portrait)";
98
+
99
+ //
100
+ // Grid Variables
101
+ //
102
+
103
+ // $row-width: emCalc(1000px);
104
+ // $column-gutter: emCalc(30px);
105
+ // $total-columns: 12;
106
+
107
+ //
108
+ // Block Grid Variables
109
+ //
110
+
111
+ // Maximum number of block grid elements per row
112
+
113
+ // $block-grid-elements: 12;
114
+ // $block-grid-default-spacing: 10px;
115
+
116
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
117
+
118
+ // $block-grid-media-queries: true;
119
+
120
+ //
121
+ // Typography Variables
122
+ //
123
+
124
+ // Heading font styles
125
+
126
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
127
+ // $header-font-weight: bold;
128
+ // $header-font-style: normal;
129
+ // $header-font-color: #222;
130
+ // $header-line-height: 1.4;
131
+ // $header-top-margin: .2em;
132
+ // $header-bottom-margin: .5em;
133
+ // $header-text-rendering: optimizeLegibility;
134
+
135
+ // Heading font sizes
136
+
137
+ // $h1-font-size: emCalc(44px);
138
+ // $h2-font-size: emCalc(37px);
139
+ // $h3-font-size: emCalc(27px);
140
+ // $h4-font-size: emCalc(23px);
141
+ // $h5-font-size: emCalc(18px);
142
+ // $h6-font-size: 1em;
143
+
144
+ // Subheaders
145
+
146
+ // $subheader-line-height: 1.4;
147
+ // $subheader-font-color: lighten($header-font-color, 30%);
148
+ // $subheader-font-weight: 300;
149
+ // $subheader-top-margin: .2em;
150
+ // $subheader-bottom-margin: .5em;
151
+
152
+ // <small> styling
153
+
154
+ // $small-font-size: 60%;
155
+ // $small-font-color: lighten($header-font-color, 30%);
156
+
157
+ // Paragraphs
158
+
159
+ // $paragraph-font-family: inherit;
160
+ // $paragraph-font-weight: normal;
161
+ // $paragraph-font-size: 1em;
162
+ // $paragraph-line-height: 1.6;
163
+ // $paragraph-margin-bottom: emCalc(20px);
164
+ // $paragraph-aside-font-size: emCalc(14px);
165
+ // $paragraph-aside-line-height: 1.35;
166
+ // $paragraph-aside-font-style: italic;
167
+
168
+ // <code> tags
169
+
170
+ // $code-color: darken($alert-color, 15%);
171
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
172
+ // $code-font-weight: bold;
173
+
174
+ // Anchors
175
+
176
+ // $anchor-text-decoration: none;
177
+ // $anchor-font-color: $primary-color;
178
+ // $anchor-font-color-hover: darken($primary-color, 5%);
179
+
180
+ // <hr> element
181
+
182
+ // $hr-border-width: 1px;
183
+ // $hr-border-style: solid;
184
+ // $hr-border-color: #ddd;
185
+ // $hr-margin: emCalc(20px);
186
+
187
+ // Lists
188
+
189
+ // $list-style-position: outside;
190
+ // $list-side-margin: emCalc(18px);
191
+ // $definition-list-header-weight: bold;
192
+ // $definition-list-header-margin-bottom: .3em;
193
+ // $definition-list-margin-bottom: emCalc(12px);
194
+
195
+ // Blockquotes
196
+
197
+ // $blockquote-font-color: lighten($header-font-color, 30%);
198
+ // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
199
+ // $blockquote-border: 1px solid #ddd;
200
+ // $blockquote-cite-font-size: emCalc(13px);
201
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
202
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
203
+
204
+ // Acronym
205
+
206
+ // $acronym-underline: 1px dotted #ddd;
207
+
208
+ // Padding and margin
209
+
210
+ // $microformat-padding: emCalc(10px) emCalc(12px);
211
+ // $microformat-margin: 0 0 emCalc(20px) 0;
212
+
213
+ // Border styles
214
+
215
+ // $microformat-border-width: 1px;
216
+ // $microformat-border-style: solid;
217
+ // $microformat-border-color: #ddd;
218
+
219
+ // Full name font styles
220
+
221
+ // $microformat-fullname-font-weight: bold;
222
+ // $microformat-fullname-font-size: emCalc(15px);
223
+
224
+ // Summary font styles
225
+
226
+ // $microformat-summary-font-weight: bold;
227
+
228
+ // <abbr> padding
229
+
230
+ // $microformat-abbr-padding: 0 emCalc(1px);
231
+
232
+ // <abbr> font styles
233
+
234
+ // $microformat-abbr-font-weight: bold;
235
+ // $microformat-abbr-font-decoration: none;
236
+
237
+ //
238
+ // Form Variables
239
+ //
240
+
241
+ // Base for lots of form spacing and positioning styles
242
+
243
+ // $form-spacing: emCalc(16px);
244
+
245
+ // Labels
246
+
247
+ // $form-label-pointer: pointer;
248
+ // $form-label-font-size: emCalc(14px);
249
+ // $form-label-font-weight: 500;
250
+ // $form-label-font-color: lighten(#000, 30%);
251
+ // $form-label-bottom-margin: emCalc(3px);
252
+ // $input-font-family: inherit;
253
+ // $input-font-color: rgba(0,0,0,0.75);
254
+ // $input-font-size: emCalc(14px);
255
+ // $input-bg-color: #fff;
256
+ // $input-focus-bg-color: darken(#fff, 2%);
257
+ // $input-border-color: darken(#fff, 20%);
258
+ // $input-focus-border-color: darken(#fff, 40%);
259
+ // $input-border-style: solid;
260
+ // $input-border-width: 1px;
261
+ // $input-disabled-bg: #ddd;
262
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
263
+
264
+ // Fieldset border and spacing.
265
+
266
+ // $fieldset-border-style: solid;
267
+ // $fieldset-border-width: 1px;
268
+ // $fieldset-border-color: #ddd;
269
+ // $fieldset-padding: emCalc(20px);
270
+ // $fieldset-margin: emCalc(18px) 0;
271
+
272
+ // Legends
273
+
274
+ // $legend-bg: #fff;
275
+ // $legend-font-weight: bold;
276
+ // $legend-padding: 0 emCalc(3px);
277
+
278
+ // Prefix and postfix input elements
279
+
280
+ // $input-prefix-bg: darken(#fff, 5%);
281
+ // $input-prefix-border-color: darken(#fff, 20%);
282
+ // $input-prefix-border-size: 1px;
283
+ // $input-prefix-border-type: solid;
284
+ // $input-prefix-overflow: hidden;
285
+ // $input-prefix-font-color: #333;
286
+ // $input-prefix-font-color-alt: #fff;
287
+
288
+ // Error states for inputs and labels
289
+
290
+ // $input-error-message-padding: emCalc(6px) emCalc(4px);
291
+ // $input-error-message-top: -($form-spacing) - emCalc(5px);
292
+ // $input-error-message-font-size: emCalc(12px);
293
+ // $input-error-message-font-weight: bold;
294
+ // $input-error-message-font-color: #fff;
295
+ // $input-error-message-font-color-alt: #333;
296
+
297
+ // Padding for buttons.
298
+
299
+ // $button-tny: emCalc(7px);
300
+ // $button-sml: emCalc(9px);
301
+ // $button-med: emCalc(12px);
302
+ // $button-lrg: emCalc(16px);
303
+
304
+ // Display property.
305
+
306
+ // $button-display: inline-block;
307
+ // $button-margin-bottom: emCalc(20px);
308
+
309
+ // Button text styles.
310
+
311
+ // $button-font-family: inherit;
312
+ // $button-font-color: #fff;
313
+ // $button-font-color-alt: #333;
314
+ // $button-font-med: emCalc(16px);
315
+ // $button-font-tny: emCalc(11px);
316
+ // $button-font-sml: emCalc(13px);
317
+ // $button-font-lrg: emCalc(20px);
318
+ // $button-font-weight: bold;
319
+ // $button-font-align: center;
320
+
321
+ // Various hover effects.
322
+
323
+ // $button-function-factor: 10%;
324
+
325
+ // Button border styles.
326
+
327
+ // $button-border-width: 1px;
328
+ // $button-border-style: solid;
329
+ // $button-border-color: darken($primary-color, $button-function-factor);
330
+
331
+ // Radius used throughout the core.
332
+
333
+ // $button-radius: $global-radius;
334
+
335
+ // Opacity for disabled buttons.
336
+
337
+ // $button-disabled-opacity: 0.6;
338
+
339
+ //
340
+ // Dropdown Button Variables
341
+ //
342
+
343
+ // Color of the pip in dropdown buttons
344
+
345
+ // $dropdown-button-pip-color: #fff;
346
+ // $dropdown-button-pip-color-alt: #333;
347
+
348
+ // Tiny dropdown buttons
349
+
350
+ // $dropdown-button-padding-tny: $button-tny * 5;
351
+ // $dropdown-button-pip-size-tny: $button-tny;
352
+ // $dropdown-button-pip-right-tny: $button-tny * 2;
353
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
354
+
355
+ // Small dropdown buttons
356
+
357
+ // $dropdown-button-padding-sml: $button-sml * 5;
358
+ // $dropdown-button-pip-size-sml: $button-sml;
359
+ // $dropdown-button-pip-right-sml: $button-sml * 2;
360
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
361
+
362
+ // Medium dropdown buttons
363
+
364
+ // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
365
+ // $dropdown-button-pip-size-med: $button-med - emCalc(3px);
366
+ // $dropdown-button-pip-right-med: $button-med * 2;
367
+ // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
368
+
369
+ // Large dropdown buttons
370
+
371
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
372
+ // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
373
+ // $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
374
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
375
+
376
+ //
377
+ // Split Button Variables
378
+ //
379
+
380
+ // Shared styles for Split Buttons
381
+
382
+ // $split-button-function-factor: 15%;
383
+ // $split-button-pip-color: #fff;
384
+ // $split-button-pip-color-alt: #333;
385
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
386
+
387
+ // Tiny split buttons
388
+
389
+ // $split-button-padding-tny: $button-tny * 9;
390
+ // $split-button-span-width-tny: $button-tny * 6.5;
391
+ // $split-button-pip-size-tny: $button-tny;
392
+ // $split-button-pip-top-tny: $button-tny * 2;
393
+ // $split-button-pip-left-tny: emCalc(-5px);
394
+
395
+ // Small split buttons
396
+
397
+ // $split-button-padding-sml: $button-sml * 7;
398
+ // $split-button-span-width-sml: $button-sml * 5;
399
+ // $split-button-pip-size-sml: $button-sml;
400
+ // $split-button-pip-top-sml: $button-sml * 1.5;
401
+ // $split-button-pip-left-sml: emCalc(-9px);
402
+
403
+ // Medium split buttons
404
+
405
+ // $split-button-padding-med: $button-med * 6.4;
406
+ // $split-button-span-width-med: $button-med * 4;
407
+ // $split-button-pip-size-med: $button-med - emCalc(3px);
408
+ // $split-button-pip-top-med: $button-med * 1.5;
409
+ // $split-button-pip-left-med: emCalc(-9px);
410
+
411
+ // Large split buttons
412
+
413
+ // $split-button-padding-lrg: $button-lrg * 6;
414
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
415
+ // $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
416
+ // $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
417
+ // $split-button-pip-left-lrg: emCalc(-9px);
418
+
419
+ //
420
+ // Alert Variables
421
+ //
422
+
423
+ // Alert padding.
424
+
425
+ // $alert-padding-top: emCalc(11px);
426
+ // $alert-padding-left: $alert-padding-top;
427
+ // $alert-padding-right: $alert-padding-top + emCalc(10px);
428
+ // $alert-padding-bottom: $alert-padding-top + emCalc(1px);
429
+
430
+ // Text style.
431
+
432
+ // $alert-font-weight: bold;
433
+ // $alert-font-size: emCalc(14px);
434
+ // $alert-font-color: #fff;
435
+ // $alert-font-color-alt: darken($secondary-color, 60%);
436
+
437
+ // Close hover effect.
438
+
439
+ // $alert-function-factor: 10%;
440
+
441
+ // Border styles.
442
+
443
+ // $alert-border-style: solid;
444
+ // $alert-border-width: 1px;
445
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
446
+ // $alert-bottom-margin: emCalc(20px);
447
+
448
+ // Close buttons
449
+
450
+ // $alert-close-color: #333;
451
+ // $alert-close-position: emCalc(5px);
452
+ // $alert-close-font-size: emCalc(22px);
453
+ // $alert-close-opacity: 0.3;
454
+ // $alert-close-opacity-hover: 0.5;
455
+ // $alert-close-padding: 5px 4px 4px;
456
+
457
+ // Border radius
458
+
459
+ // $alert-radius: $global-radius;
460
+
461
+ //
462
+ // Breadcrumb Variables
463
+ //
464
+
465
+ // Background color for the breadcrumb container.
466
+
467
+ // $crumb-bg: lighten($secondary-color, 5%);
468
+
469
+ // Padding around the breadcrumbs.
470
+
471
+ // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
472
+ // $crumb-side-padding: emCalc(12px);
473
+
474
+ // Border styles.
475
+
476
+ // $crumb-function-factor: 10%;
477
+ // $crumb-border-size: 1px;
478
+ // $crumb-border-style: solid;
479
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
480
+ // $crumb-radius: $global-radius;
481
+
482
+ // Various text styles for breadcrumbs.
483
+
484
+ // $crumb-font-size: emCalc(11px);
485
+ // $crumb-font-color: $primary-color;
486
+ // $crumb-font-color-current: #333;
487
+ // $crumb-font-color-unavailable: #999;
488
+ // $crumb-font-transform: uppercase;
489
+ // $crumb-link-decor: underline;
490
+
491
+ // Slash between breadcrumbs
492
+
493
+ // $crumb-slash-color: #aaa;
494
+ // $crumb-slash: "/";
495
+
496
+ //
497
+ // Clearing Variables
498
+ //
499
+
500
+ // Background colors for parts of Clearing.
501
+
502
+ // $clearing-bg: #111;
503
+ // $clearing-caption-bg: $clearing-bg;
504
+ // $clearing-carousel-bg: #111;
505
+ // $clearing-img-bg: $clearing-bg;
506
+
507
+ // Close button
508
+
509
+ // $clearing-close-color: #fff;
510
+ // $clearing-close-size: 40px;
511
+
512
+ // Style the arrows
513
+
514
+ // $clearing-arrow-size: 16px;
515
+ // $clearing-arrow-color: $clearing-close-color;
516
+
517
+ // Style captions
518
+
519
+ // $clearing-caption-font-color: #fff;
520
+ // $clearing-caption-padding: 10px 30px;
521
+
522
+ // Make the image and carousel height and style
523
+
524
+ // $clearing-active-img-height: 75%;
525
+ // $clearing-carousel-height: 150px;
526
+ // $clearing-carousel-thumb-width: 175px;
527
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
528
+
529
+ //
530
+ // Custom Form Variables
531
+ //
532
+
533
+ // Basic form styles input styles
534
+
535
+ // $custom-form-border-color: #ccc;
536
+ // $custom-form-border-size: 1px;
537
+ // $custom-form-bg: #fff;
538
+ // $custom-form-bg-disabled: #ddd;
539
+ // $custom-form-input-size: 16px;
540
+ // $custom-form-check-color: #222;
541
+ // $custom-form-check-size: 14px;
542
+ // $custom-form-radio-size: 8px;
543
+ // $custom-form-checkbox-radius: 0px;
544
+
545
+ // Custom select form element.
546
+
547
+ // $custom-select-bg: #fff;
548
+ // $custom-select-fade-to-color: #f3f3f3;
549
+ // $custom-select-border-color: #ddd;
550
+ // $custom-select-triangle-color: #aaa;
551
+ // $custom-select-triangle-color-open: #222;
552
+ // $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
553
+ // $custom-select-margin-bottom: emCalc(20px);
554
+ // $custom-select-font-color-selected: #141414;
555
+ // $custom-select-disabled-color: #888;
556
+
557
+ // Custom select dropdown element.
558
+
559
+ // $custom-dropdown-height: 200px;
560
+ // $custom-dropdown-bg: #fff;
561
+ // $custom-dropdown-border-color: darken(#fff, 20%);
562
+ // $custom-dropdown-border-width: 1px;
563
+ // $custom-dropdown-border-style: solid;
564
+ // $custom-dropdown-font-color: #555;
565
+ // $custom-dropdown-font-size: emCalc(14px);
566
+ // $custom-dropdown-color-selected: #eeeeee;
567
+ // $custom-dropdown-font-color-selected: #000;
568
+ // $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
569
+ // $custom-dropdown-offset-top: none;
570
+ // $custom-dropdown-list-padding: emCalc(4px);
571
+ // $custom-dropdown-left-padding: emCalc(6px);
572
+ // $custom-dropdown-right-padding: emCalc(38px);
573
+ // $custom-dropdown-list-item-min-height: emCalc(24px);
574
+
575
+ //
576
+ // Dropdown Variables
577
+ //
578
+
579
+ // Height and width styles.
580
+
581
+ // $f-dropdown-max-width: 200px;
582
+ // $f-dropdown-height: auto;
583
+ // $f-dropdown-max-height: none;
584
+ // $f-dropdown-margin-top: 2px;
585
+
586
+ // Background color
587
+
588
+ // $f-dropdown-bg: #fff;
589
+
590
+ // Border styles for dropdowns.
591
+
592
+ // $f-dropdown-border-style: solid;
593
+ // $f-dropdown-border-width: 1px;
594
+ // $f-dropdown-border-color: darken(#fff, 20%);
595
+
596
+ // Triangle pip.
597
+
598
+ // $f-dropdown-triangle-size: 6px;
599
+ // $f-dropdown-triangle-color: #fff;
600
+ // $f-dropdown-triangle-side-offset: 10px;
601
+
602
+ // List elements.
603
+
604
+ // $f-dropdown-list-style: none;
605
+ // $f-dropdown-font-color: #555;
606
+ // $f-dropdown-font-size: emCalc(14px);
607
+ // $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
608
+ // $f-dropdown-line-height: emCalc(18px);
609
+ // $f-dropdown-list-hover-bg: #eeeeee;
610
+ // $dropdown-mobile-left: 0;
611
+
612
+ // When the dropdown has custom content.
613
+
614
+ // $f-dropdown-content-padding: emCalc(20px);
615
+
616
+ //
617
+ // Flex Video Variables
618
+ //
619
+
620
+ // Video container padding and margins
621
+
622
+ // $flex-video-padding-top: emCalc(25px);
623
+ // $flex-video-padding-bottom: 67.5%;
624
+ // $flex-video-margin-bottom: emCalc(16px);
625
+
626
+ // Widescreen bottom padding
627
+
628
+ // $flex-video-widescreen-padding-bottom: 57.25%;
629
+
630
+ //
631
+ // Inline List Variables
632
+ //
633
+
634
+ // Margins and padding of the inline list.
635
+
636
+ // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
637
+ // $inline-list-margin: 0 0;
638
+ // $inline-list-padding: 0;
639
+
640
+ // Overflow of the inline list.
641
+
642
+ // $inline-list-overflow: hidden;
643
+
644
+ // List items
645
+
646
+ // $inline-list-display: block;
647
+
648
+ // Elments within list items
649
+
650
+ // $inline-list-children-display: block;
651
+
652
+ //
653
+ // Joyride Variables
654
+ //
655
+
656
+ // Joyride styles
657
+
658
+ // $joyride-tip-bg: rgb(0,0,0);
659
+ // $joyride-tip-default-width: 300px;
660
+ // $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
661
+ // $joyride-tip-border: solid 1px #555;
662
+ // $joyride-tip-radius: 4px;
663
+ // $joyride-tip-position-offset: 22px;
664
+
665
+ // Tip font styles
666
+
667
+ // $joyride-tip-font-color: #fff;
668
+ // $joyride-tip-font-size: emCalc(14px);
669
+ // $joyride-tip-header-weight: bold;
670
+
671
+ // Changes the nub size
672
+
673
+ // $joyride-tip-nub-size: 14px;
674
+
675
+ // Adjusts the styles for the timer when its enabled
676
+
677
+ // $joyride-tip-timer-width: 50px;
678
+ // $joyride-tip-timer-height: 3px;
679
+ // $joyride-tip-timer-color: #666;
680
+
681
+ // Changes up the styles for the close button
682
+
683
+ // $joyride-tip-close-color: #777;
684
+ // $joyride-tip-close-size: 30px;
685
+ // $joyride-tip-close-weight: normal;
686
+
687
+ // When Joyride is filling the screen, style for the bg
688
+
689
+ // $joyride-screenfill: rgba(0,0,0,0.5);
690
+
691
+ //
692
+ // Keystroke Variables
693
+ //
694
+
695
+ // Text styles.
696
+
697
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
698
+ // $keystroke-font-size: emCalc(15px);
699
+ // $keystroke-font-color: #222;
700
+ // $keystroke-font-color-alt: #fff;
701
+ // $keystroke-function-factor: 7%;
702
+
703
+ // Keystroke padding.
704
+
705
+ // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
706
+
707
+ // Background and border styles.
708
+
709
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
710
+ // $keystroke-border-style: solid;
711
+ // $keystroke-border-width: 1px;
712
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
713
+ // $keystroke-radius: $global-radius;
714
+
715
+ //
716
+ // Label Variables
717
+ //
718
+
719
+ // Style the labels
720
+
721
+ // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
722
+ // $label-radius: $global-radius;
723
+
724
+ // We use these to style the label text
725
+
726
+ // $label-font-sizing: emCalc(14px);
727
+ // $label-font-weight: bold;
728
+ // $label-font-color: #333;
729
+ // $label-font-color-alt: #fff;
730
+
731
+ //
732
+ // Magellan Variables
733
+ //
734
+
735
+ // Basic visual styles
736
+
737
+ // $magellan-bg: #fff;
738
+ // $magellan-padding: 10px;
739
+
740
+ //
741
+ // Orbit Settings
742
+ //
743
+
744
+ // Caption styles
745
+
746
+ // $orbit-container-bg: #f5f5f5;
747
+ // $orbit-caption-bg-old-browser: #000;
748
+ // $orbit-caption-bg-old: rgb(0,0,0);
749
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
750
+ // $orbit-caption-font-color: #fff;
751
+
752
+ // Left/right nav styles
753
+
754
+ // $orbit-nav-bg-old: rgb(0,0,0);
755
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
756
+
757
+ // Timer styles
758
+
759
+ // $orbit-timer-bg-old: rgb(0,0,0);
760
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
761
+
762
+ // Bullet nav styles
763
+
764
+ // $orbit-bullet-nav-color: #999;
765
+ // $orbit-bullet-nav-color-active: #222;
766
+
767
+ // Slide numbers
768
+
769
+ // $orbit-slide-number-bg: rgb(0,0,0);
770
+ // $orbit-slide-number-font-color: #fff;
771
+ // $orbit-slide-number-padding: emCalc(5px);
772
+
773
+ // Margin for when Orbit is stacked on small screens
774
+
775
+ // $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
776
+
777
+ //
778
+ // Pagination Variables
779
+ //
780
+
781
+ // Pagination container
782
+
783
+ // $pagination-height: emCalc(24px);
784
+ // $pagination-margin: emCalc(-5px);
785
+
786
+ // List-item properties
787
+
788
+ // $pagination-li-float: $default-float;
789
+ // $pagination-li-height: emCalc(24px);
790
+ // $pagination-li-font-color: #222;
791
+ // $pagination-li-font-size: emCalc(14px);
792
+ // $pagination-li-margin: emCalc(5px);
793
+
794
+ // Pagination anchor links
795
+
796
+ // $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
797
+ // $pagination-link-font-color: #999;
798
+ // $pagination-link-active-bg: darken(#fff, 10%);
799
+
800
+ // Disabled anchor links
801
+
802
+ // $pagination-link-unavailable-cursor: default;
803
+ // $pagination-link-unavailable-font-color: #999;
804
+ // $pagination-link-unavailable-bg-active: transparent;
805
+
806
+ // Currently selected anchor links
807
+
808
+ // $pagination-link-current-background: $primary-color;
809
+ // $pagination-link-current-font-color: #fff;
810
+ // $pagination-link-current-font-weight: bold;
811
+ // $pagination-link-current-cursor: default;
812
+ // $pagination-link-current-active-bg: $primary-color;
813
+
814
+ //
815
+ // Panel Variables
816
+ //
817
+
818
+ // Background and border styles
819
+
820
+ // $panel-bg: darken(#fff, 5%);
821
+ // $panel-border-style: solid;
822
+ // $panel-border-size: 1px;
823
+
824
+ // Control how much we darken things on hover
825
+
826
+ // $panel-function-factor: 10%;
827
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
828
+
829
+ // Inner padding and bottom margin
830
+
831
+ // $panel-margin-bottom: emCalc(20px);
832
+ // $panel-padding: emCalc(20px);
833
+
834
+ // Font colors
835
+
836
+ // $panel-font-color: #333;
837
+ // $panel-font-color-alt: #fff;
838
+
839
+ //
840
+ // Pricing Table Variables
841
+ //
842
+
843
+ // Border color
844
+
845
+ // $price-table-border: solid 1px #ddd;
846
+
847
+ // Bottom margin of the pricing table
848
+
849
+ // $price-table-margin-bottom: emCalc(20px);
850
+
851
+ // Control the title styles
852
+
853
+ // $price-title-bg: #ddd;
854
+ // $price-title-padding: emCalc(15px) emCalc(20px);
855
+ // $price-title-align: center;
856
+ // $price-title-color: #333;
857
+ // $price-title-weight: bold;
858
+ // $price-title-size: emCalc(16px);
859
+
860
+ // Control the price styles
861
+
862
+ // $price-money-bg: #eee;
863
+ // $price-money-padding: emCalc(15px) emCalc(20px);
864
+ // $price-money-align: center;
865
+ // $price-money-color: #333;
866
+ // $price-money-weight: normal;
867
+ // $price-money-size: emCalc(20px);
868
+
869
+ // Description styles
870
+
871
+ // $price-bg: #fff;
872
+ // $price-desc-color: #777;
873
+ // $price-desc-padding: emCalc(15px);
874
+ // $price-desc-align: center;
875
+ // $price-desc-font-size: emCalc(12px);
876
+ // $price-desc-weight: normal;
877
+ // $price-desc-line-height: 1.4;
878
+ // $price-desc-bottom-border: dotted 1px #ddd;
879
+
880
+ // List item styles
881
+
882
+ // $price-item-color: #333;
883
+ // $price-item-padding: emCalc(15px);
884
+ // $price-item-align: center;
885
+ // $price-item-font-size: emCalc(14px);
886
+ // $price-item-weight: normal;
887
+ // $price-item-bottom-border: dotted 1px #ddd;
888
+
889
+ // CTA area styles
890
+
891
+ // $price-cta-bg: #f5f5f5;
892
+ // $price-cta-align: center;
893
+ // $price-cta-padding: emCalc(20px) emCalc(20px) 0;
894
+
895
+ //
896
+ // Progress Bar Variables
897
+ //
898
+
899
+ // Progress bar height
900
+
901
+ // $progress-bar-height: emCalc(25px);
902
+ // $progress-bar-color: transparent;
903
+
904
+ // Border styles
905
+
906
+ // $progress-bar-border-color: darken(#fff, 20%);
907
+ // $progress-bar-border-size: 1px;
908
+ // $progress-bar-border-style: solid;
909
+ // $progress-bar-border-radius: $global-radius;
910
+
911
+ // Margin & padding
912
+
913
+ // $progress-bar-pad: emCalc(2px);
914
+ // $progress-bar-margin-bottom: emCalc(10px);
915
+
916
+ // Meter colors
917
+
918
+ // $progress-meter-color: $primary-color;
919
+ // $progress-meter-secondary-color: $secondary-color;
920
+ // $progress-meter-success-color: $success-color;
921
+ // $progress-meter-alert-color: $alert-color;
922
+
923
+ //
924
+ // Reveal Variables
925
+ //
926
+
927
+ // Reveal overlay.
928
+
929
+ // $reveal-overlay-bg: rgba(#000, .45);
930
+ // $reveal-overlay-bg-old: #000;
931
+
932
+ // Modal itself.
933
+
934
+ // $reveal-modal-bg: #fff;
935
+ // $reveal-position-top: 50px;
936
+ // $reveal-default-width: 80%;
937
+ // $reveal-modal-padding: emCalc(20px);
938
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
939
+
940
+ // Reveal close button
941
+
942
+ // $reveal-close-font-size: emCalc(22px);
943
+ // $reveal-close-top: emCalc(8px);
944
+ // $reveal-close-side: emCalc(11px);
945
+ // $reveal-close-color: #aaa;
946
+ // $reveal-close-weight: bold;
947
+
948
+ // Modal border
949
+
950
+ // $reveal-border-style: solid;
951
+ // $reveal-border-width: 1px;
952
+ // $reveal-border-color: #666;
953
+
954
+ //
955
+ // Section Variables
956
+ //
957
+
958
+ // Padding and hover factor
959
+
960
+ // $section-padding: emCalc(15px);
961
+ // $section-function-factor: 10%;
962
+
963
+ // Titles
964
+
965
+ // $section-title-color: #333;
966
+ // $section-title-bg: #efefef;
967
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
968
+ // $section-title-bg-active-tabs: #fff;
969
+
970
+ // Border size
971
+
972
+ // $section-border-size: 1px;
973
+ // $section-border-style: solid;
974
+ // $section-border-color: #ccc;
975
+
976
+ // Color of the background and some size options
977
+
978
+ // $section-content-bg: #fff;
979
+ // $section-vertical-nav-min-width: emCalc(200px);
980
+ // $section-vertical-tabs-title-width: emCalc(200px);
981
+ // $section-bottom-margin: emCalc(20px);
982
+
983
+ //
984
+ // Side Nav Variables
985
+ //
986
+
987
+ // Padding
988
+
989
+ // $side-nav-padding: emCalc(14px) 0;
990
+
991
+ // List styles
992
+
993
+ // $side-nav-list-type: none;
994
+ // $side-nav-list-position: inside;
995
+ // $side-nav-list-margin: 0 0 emCalc(7px) 0;
996
+
997
+ // Link styles
998
+
999
+ // $side-nav-link-color: $primary-color;
1000
+ // $side-nav-link-color-active: lighten(#000, 30%);
1001
+ // $side-nav-font-size: emCalc(14px);
1002
+ // $side-nav-font-weight: bold;
1003
+
1004
+ // Border styles
1005
+
1006
+ // $side-nav-divider-size: 1px;
1007
+ // $side-nav-divider-style: solid;
1008
+ // $side-nav-divider-color: darken(#fff, 10%);
1009
+
1010
+ //
1011
+ // Sub Nav Variables
1012
+ //
1013
+
1014
+ // Margin and padding
1015
+
1016
+ // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
1017
+ // $sub-nav-list-padding-top: emCalc(4px);
1018
+
1019
+ // Definition
1020
+
1021
+ // $sub-nav-font-size: emCalc(14px);
1022
+ // $sub-nav-font-color: #999;
1023
+ // $sub-nav-font-weight: normal;
1024
+ // $sub-nav-text-decoration: none;
1025
+ // $sub-nav-border-radius: 1000px;
1026
+
1027
+ // Active item styles
1028
+
1029
+ // $sub-nav-active-font-weight: bold;
1030
+ // $sub-nav-active-bg: $primary-color;
1031
+ // $sub-nav-active-color: #fff;
1032
+ // $sub-nav-active-padding: emCalc(3px) emCalc(9px);
1033
+ // $sub-nav-active-cursor: default;
1034
+
1035
+ //
1036
+ // Switch Variables
1037
+ //
1038
+
1039
+ // Border styles and background colors for the switch container
1040
+
1041
+ // $switch-border-color: darken(#fff, 20%);
1042
+ // $switch-border-style: solid;
1043
+ // $switch-border-width: 1px;
1044
+ // $switch-bg: #fff;
1045
+
1046
+ // Switch heights for our default classes
1047
+
1048
+ // $switch-height-tny: 22px;
1049
+ // $switch-height-sml: 28px;
1050
+ // $switch-height-med: 36px;
1051
+ // $switch-height-lrg: 44px;
1052
+ // $switch-bottom-margin: emCalc(20px);
1053
+
1054
+ // Font sizes for our classes.
1055
+
1056
+ // $switch-font-size-tny: 11px;
1057
+ // $switch-font-size-sml: 12px;
1058
+ // $switch-font-size-med: 14px;
1059
+ // $switch-font-size-lrg: 17px;
1060
+ // $switch-label-side-padding: 6px;
1061
+
1062
+ // Switch-paddle
1063
+
1064
+ // $switch-paddle-bg: #fff;
1065
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
1066
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
1067
+ // $switch-paddle-border-width: 1px;
1068
+ // $switch-paddle-border-style: solid;
1069
+ // $switch-paddle-transition-speed: .1s;
1070
+ // $switch-paddle-transition-ease: ease-out;
1071
+ // $switch-positive-color: lighten($success-color, 50%);
1072
+ // $switch-negative-color: #f5f5f5;
1073
+
1074
+ // Outline Style for tabbing through switches
1075
+
1076
+ // $switch-label-outline: 1px dotted #888;
1077
+
1078
+ //
1079
+ // Table Variables
1080
+ //
1081
+
1082
+ // Background color for the table and even rows
1083
+
1084
+ // $table-bg: #fff;
1085
+ // $table-even-row-bg: #f9f9f9;
1086
+
1087
+ // Table cell border style
1088
+
1089
+ // $table-border-style: solid;
1090
+ // $table-border-size: 1px;
1091
+ // $table-border-color: #ddd;
1092
+
1093
+ // Table head styles
1094
+
1095
+ // $table-head-bg: #f5f5f5;
1096
+ // $table-head-font-size: emCalc(14px);
1097
+ // $table-head-font-color: #222;
1098
+ // $table-head-font-weight: bold;
1099
+ // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
1100
+
1101
+ // Row padding and font styles
1102
+
1103
+ // $table-row-padding: emCalc(9px) emCalc(10px);
1104
+ // $table-row-font-size: emCalc(14px);
1105
+ // $table-row-font-color: #222;
1106
+ // $table-line-height: emCalc(18px);
1107
+
1108
+ // Display and margin of tables
1109
+
1110
+ // $table-display: table-cell;
1111
+ // $table-margin-bottom: emCalc(20px);
1112
+
1113
+ //
1114
+ // Image Thumbnail Variables
1115
+ //
1116
+
1117
+ // Border styles
1118
+
1119
+ // $thumb-border-style: solid;
1120
+ // $thumb-border-width: 4px;
1121
+ // $thumb-border-color: #fff;
1122
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1123
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1124
+
1125
+ // Radius and transition speed for thumbs
1126
+
1127
+ // $thumb-radius: $global-radius;
1128
+ // $thumb-transition-speed: 200ms;
1129
+
1130
+ //
1131
+ // Tooltip Variables
1132
+ //
1133
+
1134
+ // $has-tip-border-bottom: dotted 1px #ccc;
1135
+ // $has-tip-font-weight: bold;
1136
+ // $has-tip-font-color: #333;
1137
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
1138
+ // $has-tip-font-color-hover: $primary-color;
1139
+ // $has-tip-cursor-type: help;
1140
+
1141
+ // $tooltip-padding: emCalc(8px);
1142
+ // $tooltip-bg: #000;
1143
+ // $tooltip-font-size: emCalc(15px);
1144
+ // $tooltip-font-weight: bold;
1145
+ // $tooltip-font-color: #fff;
1146
+ // $tooltip-line-height: 1.3;
1147
+ // $tooltip-close-font-size: emCalc(10px);
1148
+ // $tooltip-close-font-weight: normal;
1149
+ // $tooltip-close-font-color: #888;
1150
+ // $tooltip-font-size-sml: emCalc(14px);
1151
+ // $tooltip-radius: $global-radius;
1152
+ // $tooltip-pip-size: 5px;
1153
+
1154
+ //
1155
+ // Top Bar Variables
1156
+ //
1157
+
1158
+ // Background color for the top bar
1159
+
1160
+ // $topbar-bg: #111 !default;
1161
+
1162
+ // Height and margin
1163
+
1164
+ // $topbar-height: 45px;
1165
+ // $topbar-margin-bottom: emCalc(30px);
1166
+
1167
+ // Control Input height for top bar
1168
+
1169
+ // $topbar-input-height: 2.45em;
1170
+
1171
+ // Controlling the styles for the title in the top bar
1172
+
1173
+ // $topbar-title-weight: bold;
1174
+ // $topbar-title-font-size: emCalc(17px);
1175
+
1176
+ // Style the top bar dropdown elements
1177
+
1178
+ // $topbar-dropdown-bg: #222;
1179
+ // $topbar-dropdown-link-color: #fff;
1180
+ // $topbar-dropdown-link-bg: lighten($topbar-bg, 5%);
1181
+ // $topbar-dropdown-toggle-size: 5px;
1182
+ // $topbar-dropdown-toggle-color: #fff;
1183
+ // $topbar-dropdown-toggle-alpha: 0.5;
1184
+
1185
+ // Set the link colors and styles for top-level nav
1186
+
1187
+ // $topbar-link-color: #fff;
1188
+ // $topbar-link-color-hover: #fff;
1189
+ // $topbar-link-color-active: #fff;
1190
+ // $topbar-link-weight: bold;
1191
+ // $topbar-link-font-size: emCalc(13px);
1192
+ // $topbar-link-hover-lightness: -30%; // Darken by 30%
1193
+ // $topbar-link-bg-hover: darken($topbar-bg, 3%);
1194
+ // $topbar-link-bg-active: darken($topbar-bg, 3%);
1195
+
1196
+ // $topbar-dropdown-label-color: #555;
1197
+ // $topbar-dropdown-label-text-transform: uppercase;
1198
+ // $topbar-dropdown-label-font-weight: bold;
1199
+ // $topbar-dropdown-label-font-size: emCalc(10px);
1200
+
1201
+ // Top menu icon styles
1202
+
1203
+ // $topbar-menu-link-transform: uppercase;
1204
+ // $topbar-menu-link-font-size: emCalc(13px);
1205
+ // $topbar-menu-link-weight: bold;
1206
+ // $topbar-menu-link-color: #fff;
1207
+ // $topbar-menu-icon-color: #fff;
1208
+ // $topbar-menu-link-color-toggled: #888;
1209
+ // $topbar-menu-icon-color-toggled: #888;
1210
+
1211
+ // Transitions and breakpoint styles
1212
+
1213
+ // $topbar-transition-speed: 300ms;
1214
+ // $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1215
+ // $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")";
1216
+
1217
+ // Divider Styles
1218
+
1219
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%);
1220
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%);
1221
+
1222
+ // Sticky Class
1223
+
1224
+ // $topbar-sticky-class: ".sticky";