quick_search-core 0.0.1.test
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +168 -0
- data/Rakefile +6 -0
- data/app/assets/images/quick_search/askus.gif +0 -0
- data/app/assets/images/quick_search/favicon.ico +0 -0
- data/app/assets/images/quick_search/greybox.png +0 -0
- data/app/assets/images/quick_search/homescreen-icon-64x64.png +0 -0
- data/app/assets/images/quick_search/ncsu-library-logo-white.png +0 -0
- data/app/assets/javascripts/quick_search/appstats.js +8 -0
- data/app/assets/javascripts/quick_search/event_tracking.js.erb +257 -0
- data/app/assets/javascripts/quick_search/google_analytics.js.erb +8 -0
- data/app/assets/javascripts/quick_search/opensearch.js +2 -0
- data/app/assets/javascripts/quick_search/pages.js.coffee +3 -0
- data/app/assets/javascripts/quick_search/quicksearch.js +33 -0
- data/app/assets/javascripts/quick_search/realtime.js.erb +12 -0
- data/app/assets/javascripts/quick_search/search.js +3 -0
- data/app/assets/javascripts/quick_search/xhr_search.js +82 -0
- data/app/assets/javascripts/quick_search.js.erb +20 -0
- data/app/assets/stylesheets/foundation_and_overrides.scss +1327 -0
- data/app/assets/stylesheets/quick_search/appstats.css.scss +7 -0
- data/app/assets/stylesheets/quick_search/opensearch.css.scss +3 -0
- data/app/assets/stylesheets/quick_search/pages.css.scss +3 -0
- data/app/assets/stylesheets/quick_search/quick_search.css.scss +248 -0
- data/app/assets/stylesheets/quick_search/search.css.scss +3 -0
- data/app/assets/stylesheets/quick_search.css.scss.erb +7 -0
- data/app/controllers/concerns/quick_search/auth.rb +22 -0
- data/app/controllers/concerns/quick_search/doi_trap.rb +43 -0
- data/app/controllers/concerns/quick_search/encode_utf8.rb +12 -0
- data/app/controllers/concerns/quick_search/on_campus.rb +43 -0
- data/app/controllers/concerns/quick_search/query_filter.rb +25 -0
- data/app/controllers/concerns/quick_search/query_parser.rb +54 -0
- data/app/controllers/concerns/quick_search/searcher_concern.rb +101 -0
- data/app/controllers/concerns/quick_search/searcher_config.rb +16 -0
- data/app/controllers/quick_search/application_controller.rb +7 -0
- data/app/controllers/quick_search/appstats_controller.rb +210 -0
- data/app/controllers/quick_search/opensearch_controller.rb +9 -0
- data/app/controllers/quick_search/pages_controller.rb +18 -0
- data/app/controllers/quick_search/search_controller.rb +250 -0
- data/app/helpers/quick_search/application_helper.rb +68 -0
- data/app/helpers/quick_search/appstats_helper.rb +2 -0
- data/app/helpers/quick_search/opensearch_helper.rb +2 -0
- data/app/helpers/quick_search/pages_helper.rb +2 -0
- data/app/helpers/quick_search/search_helper.rb +2 -0
- data/app/models/event.rb +2 -0
- data/app/models/search.rb +11 -0
- data/app/searchers/quick_search/best_bets_searcher.rb +102 -0
- data/app/searchers/quick_search/searcher.rb +43 -0
- data/app/views/layouts/quick_search/_best_bets.html.erb +18 -0
- data/app/views/layouts/quick_search/_common_searches.html.erb +15 -0
- data/app/views/layouts/quick_search/_found_types.html.erb +13 -0
- data/app/views/layouts/quick_search/_google_analytics.html.erb +24 -0
- data/app/views/layouts/quick_search/_more_options.html.erb +10 -0
- data/app/views/layouts/quick_search/_page_title.html.erb +8 -0
- data/app/views/layouts/quick_search/_related_topics.html.erb +8 -0
- data/app/views/layouts/quick_search/_search_form.html.erb +19 -0
- data/app/views/layouts/quick_search/_spelling_suggestion.html.erb +13 -0
- data/app/views/layouts/quick_search/_topic_snippet.html.erb +5 -0
- data/app/views/layouts/quick_search/application.html.erb +40 -0
- data/app/views/quick_search/appstats/_click_count_table.html.erb +23 -0
- data/app/views/quick_search/appstats/_datatables.html.erb +12 -0
- data/app/views/quick_search/appstats/_date_range.html.erb +15 -0
- data/app/views/quick_search/appstats/_menu.html.erb +16 -0
- data/app/views/quick_search/appstats/_top_spot_report_table.html.erb +33 -0
- data/app/views/quick_search/appstats/clicks_overview.html.erb +20 -0
- data/app/views/quick_search/appstats/index.html.erb +31 -0
- data/app/views/quick_search/appstats/module_click_detail.html.erb +32 -0
- data/app/views/quick_search/appstats/realtime.html.erb +15 -0
- data/app/views/quick_search/appstats/top_searches.html.erb +38 -0
- data/app/views/quick_search/appstats/top_spot.html.erb +14 -0
- data/app/views/quick_search/appstats/top_spot_detail.html.erb +35 -0
- data/app/views/quick_search/kaminari/_first_page.html.erb +12 -0
- data/app/views/quick_search/kaminari/_gap.html.erb +11 -0
- data/app/views/quick_search/kaminari/_last_page.html.erb +12 -0
- data/app/views/quick_search/kaminari/_next_page.html.erb +12 -0
- data/app/views/quick_search/kaminari/_page.html.erb +13 -0
- data/app/views/quick_search/kaminari/_paginator.html.erb +25 -0
- data/app/views/quick_search/kaminari/_prev_page.html.erb +11 -0
- data/app/views/quick_search/opensearch/opensearch.xml.builder +11 -0
- data/app/views/quick_search/pages/about.html.erb +9 -0
- data/app/views/quick_search/pages/home.html.erb +6 -0
- data/app/views/quick_search/pages/realtime.html.erb +15 -0
- data/app/views/quick_search/search/_citation.html.erb +18 -0
- data/app/views/quick_search/search/_module.html.erb +37 -0
- data/app/views/quick_search/search/_module_with_paging.html.erb +14 -0
- data/app/views/quick_search/search/_no_results.html.erb +11 -0
- data/app/views/quick_search/search/_result.html.erb +17 -0
- data/app/views/quick_search/search/_result_details.html.erb +45 -0
- data/app/views/quick_search/search/_result_no_thumbnail.html.erb +3 -0
- data/app/views/quick_search/search/_result_title.html.erb +4 -0
- data/app/views/quick_search/search/_result_with_thumbnail.html.erb +21 -0
- data/app/views/quick_search/search/_search_error.html.erb +9 -0
- data/app/views/quick_search/search/_see_all.html.erb +11 -0
- data/app/views/quick_search/search/_xhr_response.html.erb +15 -0
- data/app/views/quick_search/search/_xhr_response.json.erb +14 -0
- data/app/views/quick_search/search/_xhr_response_with_paging.html.erb +1 -0
- data/app/views/quick_search/search/index.html.erb +100 -0
- data/config/application.rb +25 -0
- data/config/best_bets.yml +86 -0
- data/config/boot.rb +4 -0
- data/config/database.yml.example +31 -0
- data/config/locales/en.yml +30 -0
- data/config/quicksearch_config.yml.example +69 -0
- data/config/routes.rb +81 -0
- data/db/migrate/20140130202859_create_events.rb +11 -0
- data/db/migrate/20140130202944_create_searches.rb +9 -0
- data/db/migrate/20140225145441_add_page_to_searches.rb +5 -0
- data/db/schema.rb +31 -0
- data/db/seeds.rb +7 -0
- data/lib/benchmark_logger.rb +2 -0
- data/lib/capistrano/tasks/access_check.cap +10 -0
- data/lib/generators/quick_search/install_generator.rb +49 -0
- data/lib/generators/quick_search/templates/kaminari.rb +5 -0
- data/lib/generators/quick_search/templates/post_install.txt +8 -0
- data/lib/generators/quick_search/templates/quick_search_config.yml +58 -0
- data/lib/quick_search/engine.rb +16 -0
- data/lib/quick_search/version.rb +3 -0
- data/lib/quick_search.rb +12 -0
- data/lib/tasks/best_bets.rake +29 -0
- data/test/controllers/appstats_controller_test.rb +7 -0
- data/test/controllers/concerns/doi_trap_test.rb +19 -0
- data/test/controllers/concerns/on_campus_test.rb +19 -0
- data/test/controllers/concerns/query_parser_test.rb +47 -0
- data/test/controllers/opensearch_controller_test.rb +13 -0
- data/test/controllers/pages_controller_test.rb +7 -0
- data/test/controllers/search_controller_test.rb +15 -0
- data/test/fixtures/events.yml +11 -0
- data/test/fixtures/searches.yml +7 -0
- data/test/helpers/appstats_helper_test.rb +4 -0
- data/test/helpers/opensearch_helper_test.rb +4 -0
- data/test/helpers/pages_helper_test.rb +4 -0
- data/test/helpers/search_helper_test.rb +4 -0
- data/test/integration/catalog_search_test.rb +8 -0
- data/test/integration/google_analytics_test.rb +23 -0
- data/test/integration/landing_page_test.rb +8 -0
- data/test/integration/searching_test.rb +40 -0
- data/test/integration/smart_subjects_test.rb +8 -0
- data/test/integration/website_search_test.rb +8 -0
- data/test/models/event_test.rb +7 -0
- data/test/models/search_test.rb +7 -0
- data/test/searcher/best_bets_test.rb +35 -0
- data/test/searcher/catalog_test.rb +35 -0
- data/test/searcher/ematrix_database_test.rb +27 -0
- data/test/searcher/ematrix_journal_test.rb +27 -0
- data/test/searcher/faq_test.rb +27 -0
- data/test/searcher/smart_subjects_test.rb +27 -0
- data/test/searcher/summon_test.rb +13 -0
- data/test/searcher/website_test.rb +34 -0
- data/test/support/vcr_test.rb +40 -0
- data/test/test_helper.rb +42 -0
- metadata +366 -0
@@ -0,0 +1,1327 @@
|
|
1
|
+
//
|
2
|
+
// Foundation Variables
|
3
|
+
//
|
4
|
+
|
5
|
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
|
6
|
+
// for compatibility with browser-based text zoom or user-set defaults.
|
7
|
+
$base-font-size: 100% !default;
|
8
|
+
|
9
|
+
// $base-line-height is 24px while $base-font-size is 16px
|
10
|
+
// $base-line-height: 150%;
|
11
|
+
|
12
|
+
// This is the default html and body font-size for the base em value.
|
13
|
+
|
14
|
+
// Since the typical default browser font-size is 16px, that makes the calculation for grid size.
|
15
|
+
// If you want your base font-size to be a different size and not have it effect grid size too,
|
16
|
+
// set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
|
17
|
+
$em-base: 16px !default;
|
18
|
+
|
19
|
+
// It strips the unit of measure and returns it
|
20
|
+
@function strip-unit($num) {
|
21
|
+
@return $num / ($num * 0 + 1);
|
22
|
+
}
|
23
|
+
|
24
|
+
// Converts "px" to "em" using the ($)em-base
|
25
|
+
@function convert-to-em($value, $base-value: $em-base) {
|
26
|
+
$value: strip-unit($value) / strip-unit($base-value) * 1em;
|
27
|
+
@if ($value == 0em) { $value: 0; } // Turn 0em into 0
|
28
|
+
@return $value;
|
29
|
+
}
|
30
|
+
|
31
|
+
// Working in ems is annoying. Think in pixels by using this handy function, em-calc(#)
|
32
|
+
// Just enter the number, no need to mention "px"
|
33
|
+
@function em-calc($values, $base-value: $em-base) {
|
34
|
+
$max: length($values); // Get the total number of parameters passed
|
35
|
+
|
36
|
+
// If there is only 1 parameter, then return it as an integer.
|
37
|
+
// This is done because a list can't be multiplied or divided even if it contains a single value
|
38
|
+
@if $max == 1 { @return convert-to-em(nth($values, 1), $base-value); }
|
39
|
+
|
40
|
+
$emValues: (); // This will eventually store the converted $values in a list
|
41
|
+
@for $i from 1 through $max {
|
42
|
+
$emValues: append($emValues, convert-to-em(nth($values, $i), $base-value));
|
43
|
+
}
|
44
|
+
@return $emValues;
|
45
|
+
}
|
46
|
+
|
47
|
+
//Retaining this for backward compatability
|
48
|
+
|
49
|
+
@function emCalc($pxWidth) {
|
50
|
+
@return $pxWidth / $em-base * 1em;
|
51
|
+
}
|
52
|
+
|
53
|
+
// Maybe you want to create rems with pixels
|
54
|
+
// $rem-base: 0.625 !default; //Set the value corresponding to body font size. In this case, you should set as: body {font-size: 62.5%;}
|
55
|
+
// @function rem-calc($pxWidth) {
|
56
|
+
// @return $pxWidth / $rem-base * 1rem;
|
57
|
+
// }
|
58
|
+
|
59
|
+
// Change whether or not you include browser prefixes
|
60
|
+
// $experimental: true;
|
61
|
+
|
62
|
+
// Various global styles
|
63
|
+
|
64
|
+
$default-float: left;
|
65
|
+
|
66
|
+
// $body-bg: #fff;
|
67
|
+
// $body-font-color: #222;
|
68
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
69
|
+
// $body-font-weight: normal;
|
70
|
+
// $body-font-style: normal;
|
71
|
+
|
72
|
+
// Font-smoothing
|
73
|
+
|
74
|
+
// $font-smoothing: antialiased;
|
75
|
+
|
76
|
+
// Text direction settings
|
77
|
+
|
78
|
+
// $text-direction: ltr;
|
79
|
+
|
80
|
+
// Colors
|
81
|
+
|
82
|
+
// $primary-color: #2ba6cb;
|
83
|
+
// $secondary-color: #e9e9e9;
|
84
|
+
// $alert-color: #c60f13;
|
85
|
+
// $success-color: #5da423;
|
86
|
+
|
87
|
+
// Make sure border radius matches unless we want it different.
|
88
|
+
|
89
|
+
// $global-radius: 3px;
|
90
|
+
// $global-rounded: 1000px;
|
91
|
+
|
92
|
+
// Inset shadow shiny edges and depressions.
|
93
|
+
|
94
|
+
// $shiny-edge-size: 0 1px 0;
|
95
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
96
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
97
|
+
|
98
|
+
// Control whether or not CSS classes come through in the CSS files.
|
99
|
+
|
100
|
+
// $include-html-classes: true;
|
101
|
+
// $include-print-styles: true;
|
102
|
+
// $include-html-global-classes: $include-html-classes;
|
103
|
+
// $include-html-inline-list-classes: $include-html-classes;
|
104
|
+
// $include-html-type-classes: $include-html-classes;
|
105
|
+
// $include-html-grid-classes: $include-html-classes;
|
106
|
+
// $include-html-visibility-classes: $include-html-classes;
|
107
|
+
// $include-html-button-classes: $include-html-classes;
|
108
|
+
// $include-html-form-classes: $include-html-classes;
|
109
|
+
// $include-html-custom-form-classes: $include-html-classes;
|
110
|
+
// $include-html-media-classes: $include-html-classes;
|
111
|
+
// $include-html-section-classes: $include-html-classes;
|
112
|
+
// $include-html-orbit-classes: $include-html-classes;
|
113
|
+
// $include-html-reveal-classes: $include-html-classes;
|
114
|
+
// $include-html-joyride-classes: $include-html-classes;
|
115
|
+
// $include-html-clearing-classes: $include-html-classes;
|
116
|
+
// $include-html-alert-classes: $include-html-classes;
|
117
|
+
// $include-html-nav-classes: $include-html-classes;
|
118
|
+
// $include-html-top-bar-classes: $include-html-classes;
|
119
|
+
// $include-html-label-classes: $include-html-classes;
|
120
|
+
// $include-html-panel-classes: $include-html-classes;
|
121
|
+
// $include-html-pricing-classes: $include-html-classes;
|
122
|
+
// $include-html-progress-classes: $include-html-classes;
|
123
|
+
// $include-html-magellan-classes: $include-html-classes;
|
124
|
+
// $include-html-tooltip-classes: $include-html-classes;
|
125
|
+
|
126
|
+
// Media Queries
|
127
|
+
|
128
|
+
// $small-screen: 768px;
|
129
|
+
// $medium-screen: 1280px;
|
130
|
+
// $large-screen: 1440px;
|
131
|
+
|
132
|
+
// $screen: "only screen";
|
133
|
+
// $small: "only screen and (min-width: #{$small-screen})";
|
134
|
+
// $medium: "only screen and (min-width: #{$medium-screen})";
|
135
|
+
// $large: "only screen and (min-width: #{$large-screen})";
|
136
|
+
// $landscape: "only screen and (orientation: landscape)";
|
137
|
+
// $portrait: "only screen and (orientation: portrait)";
|
138
|
+
|
139
|
+
//// Cursors
|
140
|
+
|
141
|
+
//Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
|
142
|
+
|
143
|
+
// $cursor-crosshair-value: "crosshair";
|
144
|
+
// $cursor-default-value: "default";
|
145
|
+
// $cursor-pointer-value: "pointer";
|
146
|
+
// $cursor-help-value: "help";
|
147
|
+
|
148
|
+
//
|
149
|
+
// Grid Variables
|
150
|
+
//
|
151
|
+
|
152
|
+
// $row-width: em-calc(1000);
|
153
|
+
// $column-gutter: em-calc(30);
|
154
|
+
// $total-columns: 12;
|
155
|
+
|
156
|
+
//
|
157
|
+
// Block Grid Variables
|
158
|
+
//
|
159
|
+
|
160
|
+
// We use this to control the maximum number of block grid elements per row
|
161
|
+
|
162
|
+
// $block-grid-elements: 12;
|
163
|
+
// $block-grid-default-spacing: em-calc(20);
|
164
|
+
|
165
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
166
|
+
|
167
|
+
// $block-grid-media-queries: true;
|
168
|
+
|
169
|
+
//
|
170
|
+
// Typography Variables
|
171
|
+
//
|
172
|
+
|
173
|
+
// Control header font styles
|
174
|
+
|
175
|
+
// $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
176
|
+
// $header-font-weight: bold;
|
177
|
+
// $header-font-style: normal;
|
178
|
+
// $header-font-color: #222;
|
179
|
+
// $header-line-height: 1.4;
|
180
|
+
// $header-top-margin: .2em;
|
181
|
+
// $header-bottom-margin: .5em;
|
182
|
+
// $header-text-rendering: optimizeLegibility;
|
183
|
+
|
184
|
+
// Control header font sizes
|
185
|
+
|
186
|
+
// $h1-font-size: em-calc(44);
|
187
|
+
// $h2-font-size: em-calc(37);
|
188
|
+
// $h3-font-size: em-calc(27);
|
189
|
+
// $h4-font-size: em-calc(23);
|
190
|
+
// $h5-font-size: em-calc(18);
|
191
|
+
// $h6-font-size: 1em;
|
192
|
+
|
193
|
+
// Control how subheaders are styled.
|
194
|
+
|
195
|
+
// $subheader-line-height: 1.4;
|
196
|
+
// $subheader-font-color: lighten($header-font-color, 30%);
|
197
|
+
// $subheader-font-weight: 300;
|
198
|
+
// $subheader-top-margin: .2em;
|
199
|
+
// $subheader-bottom-margin: .5em;
|
200
|
+
|
201
|
+
// A general <small> styling
|
202
|
+
|
203
|
+
// $small-font-size: 60%;
|
204
|
+
// $small-font-color: lighten($header-font-color, 30%);
|
205
|
+
|
206
|
+
// Style paragraphs
|
207
|
+
|
208
|
+
// $paragraph-font-family: inherit;
|
209
|
+
// $paragraph-font-weight: normal;
|
210
|
+
// $paragraph-font-size: 1em;
|
211
|
+
// $paragraph-line-height: 1.6;
|
212
|
+
// $paragraph-margin-bottom: em-calc(20);
|
213
|
+
// $paragraph-aside-font-size: em-calc(14);
|
214
|
+
// $paragraph-aside-line-height: 1.35;
|
215
|
+
// $paragraph-aside-font-style: italic;
|
216
|
+
// $paragraph-text-rendering: optimizeLegibility;
|
217
|
+
|
218
|
+
// Style <code> tags
|
219
|
+
|
220
|
+
// $code-color: darken($alert-color, 15%);
|
221
|
+
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
222
|
+
// $code-font-weight: bold;
|
223
|
+
|
224
|
+
// Style anchors
|
225
|
+
|
226
|
+
// $anchor-text-decoration: none;
|
227
|
+
// $anchor-font-color: $primary-color;
|
228
|
+
// $anchor-font-color-hover: darken($primary-color, 5%);
|
229
|
+
|
230
|
+
// Style the <hr> element
|
231
|
+
|
232
|
+
// $hr-border-width: 1px;
|
233
|
+
// $hr-border-style: solid;
|
234
|
+
// $hr-border-color: #ddd;
|
235
|
+
// $hr-margin: em-calc(20);
|
236
|
+
|
237
|
+
// Style lists
|
238
|
+
|
239
|
+
// $list-style-position: outside;
|
240
|
+
// $list-side-margin: 0;
|
241
|
+
// $list-nested-margin: em-calc(20);
|
242
|
+
// $definition-list-header-weight: bold;
|
243
|
+
// $definition-list-header-margin-bottom: .3em;
|
244
|
+
// $definition-list-margin-bottom: em-calc(12);
|
245
|
+
|
246
|
+
// Style blockquotes
|
247
|
+
|
248
|
+
// $blockquote-font-color: lighten($header-font-color, 30%);
|
249
|
+
// $blockquote-padding: em-calc(9, 20, 0, 19);
|
250
|
+
// $blockquote-border: 1px solid #ddd;
|
251
|
+
// $blockquote-cite-font-size: em-calc(13);
|
252
|
+
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
|
253
|
+
// $blockquote-cite-link-color: $blockquote-cite-font-color;
|
254
|
+
|
255
|
+
// Acronym styles
|
256
|
+
|
257
|
+
// $acronym-underline: 1px dotted #ddd;
|
258
|
+
|
259
|
+
// Control padding and margin
|
260
|
+
|
261
|
+
// $microformat-padding: em-calc(10 12);
|
262
|
+
// $microformat-margin: em-calc(0 0 20 0);
|
263
|
+
|
264
|
+
// Control the border styles
|
265
|
+
|
266
|
+
// $microformat-border-width: 1px;
|
267
|
+
// $microformat-border-style: solid;
|
268
|
+
// $microformat-border-color: #ddd;
|
269
|
+
|
270
|
+
// Control full name font styles
|
271
|
+
|
272
|
+
// $microformat-fullname-font-weight: bold;
|
273
|
+
// $microformat-fullname-font-size: em-calc(15);
|
274
|
+
|
275
|
+
// Control the summary font styles
|
276
|
+
|
277
|
+
// $microformat-summary-font-weight: bold;
|
278
|
+
|
279
|
+
// Control abbr padding
|
280
|
+
// $microformat-abbr-padding: em-calc(0 1);
|
281
|
+
|
282
|
+
// Control abbr font styles
|
283
|
+
|
284
|
+
// $microformat-abbr-font-weight: bold;
|
285
|
+
// $microformat-abbr-font-decoration: none;
|
286
|
+
|
287
|
+
//
|
288
|
+
// Form Variables
|
289
|
+
//
|
290
|
+
|
291
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
292
|
+
|
293
|
+
// $form-spacing: em-calc(16);
|
294
|
+
|
295
|
+
// We use these to style the labels in different ways
|
296
|
+
|
297
|
+
// $form-label-pointer: pointer;
|
298
|
+
// $form-label-font-size: em-calc(14);
|
299
|
+
// $form-label-font-weight: 500;
|
300
|
+
// $form-label-font-color: lighten(#000, 30%);
|
301
|
+
// $form-label-bottom-margin: em-calc(3);
|
302
|
+
// $input-font-family: inherit;
|
303
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
304
|
+
// $input-font-size: em-calc(14);
|
305
|
+
// $input-bg-color: #fff;
|
306
|
+
// $input-focus-bg-color: darken(#fff, 2%);
|
307
|
+
// $input-border-color: darken(#fff, 20%);
|
308
|
+
// $input-focus-border-color: darken(#fff, 40%);
|
309
|
+
// $input-border-style: solid;
|
310
|
+
// $input-border-width: 1px;
|
311
|
+
// $input-disabled-bg: #ddd;
|
312
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
313
|
+
// $input-include-glowing-effect: true;
|
314
|
+
|
315
|
+
// We use these to style the fieldset border and spacing.
|
316
|
+
|
317
|
+
// $fieldset-border-style: solid;
|
318
|
+
// $fieldset-border-width: 1px;
|
319
|
+
// $fieldset-border-color: #ddd;
|
320
|
+
// $fieldset-padding: em-calc(20);
|
321
|
+
// $fieldset-margin: em-calc(18 0);
|
322
|
+
|
323
|
+
// We use these to style the legends when you use them
|
324
|
+
|
325
|
+
// $legend-bg: #fff;
|
326
|
+
// $legend-font-weight: bold;
|
327
|
+
// $legend-padding: em-calc(0 3);
|
328
|
+
|
329
|
+
// We use these to style the prefix and postfix input elements
|
330
|
+
|
331
|
+
// $input-prefix-bg: darken(#fff, 5%);
|
332
|
+
// $input-prefix-border-color: darken(#fff, 20%);
|
333
|
+
// $input-prefix-border-size: 1px;
|
334
|
+
// $input-prefix-border-type: solid;
|
335
|
+
// $input-prefix-overflow: hidden;
|
336
|
+
// $input-prefix-font-color: #333;
|
337
|
+
// $input-prefix-font-color-alt: #fff;
|
338
|
+
|
339
|
+
// We use these to style the error states for inputs and labels
|
340
|
+
|
341
|
+
// $input-error-message-padding: em-calc(6 4);
|
342
|
+
// $input-error-message-top: 0;
|
343
|
+
// $input-error-message-font-size: em-calc(12);
|
344
|
+
// $input-error-message-font-weight: bold;
|
345
|
+
// $input-error-message-font-color: #fff;
|
346
|
+
// $input-error-message-font-color-alt: #333;
|
347
|
+
|
348
|
+
// We use this to style the glowing effect of inputs when focused
|
349
|
+
|
350
|
+
// $glowing-effect-fade-time: 0.45s;
|
351
|
+
// $glowing-effect-color: $input-focus-border-color;
|
352
|
+
|
353
|
+
//
|
354
|
+
// Button Variables
|
355
|
+
//
|
356
|
+
|
357
|
+
// We use these to build padding for buttons.
|
358
|
+
|
359
|
+
// $button-med: em-calc(12);
|
360
|
+
// $button-tny: em-calc(7);
|
361
|
+
// $button-sml: em-calc(9);
|
362
|
+
// $button-lrg: em-calc(16);
|
363
|
+
|
364
|
+
// We use this to control the display property.
|
365
|
+
|
366
|
+
// $button-display: inline-block;
|
367
|
+
// $button-margin-bottom: em-calc(20);
|
368
|
+
|
369
|
+
// We use these to control button text styles.
|
370
|
+
|
371
|
+
// $button-font-family: inherit;
|
372
|
+
// $button-font-color: #fff;
|
373
|
+
// $button-font-color-alt: #333;
|
374
|
+
// $button-font-med: em-calc(16);
|
375
|
+
// $button-font-tny: em-calc(11);
|
376
|
+
// $button-font-sml: em-calc(13);
|
377
|
+
// $button-font-lrg: em-calc(20);
|
378
|
+
// $button-font-weight: bold;
|
379
|
+
// $button-font-align: center;
|
380
|
+
|
381
|
+
// We use these to control various hover effects.
|
382
|
+
|
383
|
+
// $button-function-factor: 10%;
|
384
|
+
|
385
|
+
// We use these to control button border styles.
|
386
|
+
|
387
|
+
// $button-border-width: 1px;
|
388
|
+
// $button-border-style: solid;
|
389
|
+
|
390
|
+
// We use this to set the default radius used throughout the core.
|
391
|
+
|
392
|
+
// $button-radius: $global-radius;
|
393
|
+
// $button-round: $global-rounded;
|
394
|
+
|
395
|
+
// We use this to set default opacity for disabled buttons.
|
396
|
+
|
397
|
+
// $button-disabled-opacity: 0.6;
|
398
|
+
|
399
|
+
//
|
400
|
+
// Button Groups
|
401
|
+
//
|
402
|
+
|
403
|
+
// Sets the margin for the right side by default, and the left margin if right-to-left direction is used
|
404
|
+
|
405
|
+
// $button-bar-margin-opposite: em-calc(10);
|
406
|
+
|
407
|
+
//
|
408
|
+
// Dropdown Button Variables
|
409
|
+
//
|
410
|
+
|
411
|
+
// We use these to set the color of the pip in dropdown buttons
|
412
|
+
|
413
|
+
// $dropdown-button-pip-color: #fff;
|
414
|
+
// $dropdown-button-pip-color-alt: #333;
|
415
|
+
|
416
|
+
// We use these to style tiny dropdown buttons
|
417
|
+
|
418
|
+
// $dropdown-button-padding-tny: $button-tny * 5;
|
419
|
+
// $dropdown-button-pip-size-tny: $button-tny;
|
420
|
+
// $dropdown-button-pip-opposite-tny: $button-tny * 2;
|
421
|
+
// $dropdown-button-pip-top-tny: -$button-tny / 2 + em-calc(1);
|
422
|
+
|
423
|
+
// We use these to style small dropdown buttons
|
424
|
+
|
425
|
+
// $dropdown-button-padding-sml: $button-sml * 5;
|
426
|
+
// $dropdown-button-pip-size-sml: $button-sml;
|
427
|
+
// $dropdown-button-pip-opposite-sml: $button-sml * 2;
|
428
|
+
// $dropdown-button-pip-top-sml: -$button-sml / 2 + em-calc(1);
|
429
|
+
|
430
|
+
// We use these to style medium dropdown buttons
|
431
|
+
|
432
|
+
// $dropdown-button-padding-med: $button-med * 4 + em-calc(3);
|
433
|
+
// $dropdown-button-pip-size-med: $button-med - em-calc(3);
|
434
|
+
// $dropdown-button-pip-opposite-med: $button-med * 2;
|
435
|
+
// $dropdown-button-pip-top-med: -$button-med / 2 + em-calc(2);
|
436
|
+
|
437
|
+
// We use these to style large dropdown buttons
|
438
|
+
|
439
|
+
// $dropdown-button-padding-lrg: $button-lrg * 4;
|
440
|
+
// $dropdown-button-pip-size-lrg: $button-lrg - em-calc(6);
|
441
|
+
// $dropdown-button-pip-opposite-lrg: $button-lrg + em-calc(12);
|
442
|
+
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + em-calc(3);
|
443
|
+
|
444
|
+
//
|
445
|
+
// Split Button Variables
|
446
|
+
//
|
447
|
+
|
448
|
+
// We use these to control different shared styles for Split Buttons
|
449
|
+
|
450
|
+
// $split-button-function-factor: 15%;
|
451
|
+
// $split-button-pip-color: #fff;
|
452
|
+
// $split-button-pip-color-alt: #333;
|
453
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
454
|
+
|
455
|
+
// We use these to control tiny split buttons
|
456
|
+
|
457
|
+
// $split-button-padding-tny: $button-tny * 9;
|
458
|
+
// $split-button-span-width-tny: $button-tny * 6.5;
|
459
|
+
// $split-button-pip-size-tny: $button-tny;
|
460
|
+
// $split-button-pip-top-tny: $button-tny * 2;
|
461
|
+
// $split-button-pip-default-float-tny: em-calc(-5);
|
462
|
+
|
463
|
+
// We use these to control small split buttons
|
464
|
+
|
465
|
+
// $split-button-padding-sml: $button-sml * 7;
|
466
|
+
// $split-button-span-width-sml: $button-sml * 5;
|
467
|
+
// $split-button-pip-size-sml: $button-sml;
|
468
|
+
// $split-button-pip-top-sml: $button-sml * 1.5;
|
469
|
+
// $split-button-pip-default-float-sml: em-calc(-9);
|
470
|
+
|
471
|
+
// We use these to control medium split buttons
|
472
|
+
|
473
|
+
// $split-button-padding-med: $button-med * 6.4;
|
474
|
+
// $split-button-span-width-med: $button-med * 4;
|
475
|
+
// $split-button-pip-size-med: $button-med - em-calc(3);
|
476
|
+
// $split-button-pip-top-med: $button-med * 1.5;
|
477
|
+
// $split-button-pip-default-float-med: em-calc(-9);
|
478
|
+
|
479
|
+
// We use these to control large split buttons
|
480
|
+
|
481
|
+
// $split-button-padding-lrg: $button-lrg * 6;
|
482
|
+
// $split-button-span-width-lrg: $button-lrg * 3.75;
|
483
|
+
// $split-button-pip-size-lrg: $button-lrg - em-calc(6);
|
484
|
+
// $split-button-pip-top-lrg: $button-lrg + em-calc(5);
|
485
|
+
// $split-button-pip-default-float-lrg: em-calc(-9);
|
486
|
+
|
487
|
+
//
|
488
|
+
// Alert Box Variables
|
489
|
+
//
|
490
|
+
|
491
|
+
// We use this to control alert padding.
|
492
|
+
|
493
|
+
// $alert-padding-top: em-calc(11);
|
494
|
+
// $alert-padding-default-float: $alert-padding-top;
|
495
|
+
// $alert-padding-opposite-direction: $alert-padding-top + em-calc(10);
|
496
|
+
// $alert-padding-bottom: $alert-padding-top + em-calc(1);
|
497
|
+
|
498
|
+
// We use these to control text style.
|
499
|
+
|
500
|
+
// $alert-font-weight: bold;
|
501
|
+
// $alert-font-size: em-calc(14);
|
502
|
+
// $alert-font-color: #fff;
|
503
|
+
// $alert-font-color-alt: darken($secondary-color, 60%);
|
504
|
+
|
505
|
+
// We use this for close hover effect.
|
506
|
+
|
507
|
+
// $alert-function-factor: 10%;
|
508
|
+
|
509
|
+
// We use these to control border styles.
|
510
|
+
|
511
|
+
// $alert-border-style: solid;
|
512
|
+
// $alert-border-width: 1px;
|
513
|
+
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
514
|
+
// $alert-bottom-margin: em-calc(20);
|
515
|
+
|
516
|
+
// We use these to style the close buttons
|
517
|
+
|
518
|
+
// $alert-close-color: #333;
|
519
|
+
// $alert-close-position: em-calc(5);
|
520
|
+
// $alert-close-font-size: em-calc(22);
|
521
|
+
// $alert-close-opacity: 0.3;
|
522
|
+
// $alert-close-opacity-hover: 0.5;
|
523
|
+
// $alert-close-padding: 5px 4px 4px;
|
524
|
+
|
525
|
+
// We use this to control border radius
|
526
|
+
|
527
|
+
// $alert-radius: $global-radius;
|
528
|
+
|
529
|
+
|
530
|
+
//
|
531
|
+
// Breadcrumb Variables
|
532
|
+
//
|
533
|
+
|
534
|
+
// We use this to set the background color for the breadcrumb container.
|
535
|
+
|
536
|
+
// $crumb-bg: lighten($secondary-color, 5%);
|
537
|
+
|
538
|
+
// We use these to set the padding around the breadcrumbs.
|
539
|
+
|
540
|
+
// $crumb-padding: em-calc(9 14 9);
|
541
|
+
// $crumb-side-padding: em-calc(12);
|
542
|
+
|
543
|
+
// We use these to control border styles.
|
544
|
+
|
545
|
+
// $crumb-function-factor: 10%;
|
546
|
+
// $crumb-border-size: 1px;
|
547
|
+
// $crumb-border-style: solid;
|
548
|
+
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
549
|
+
// $crumb-radius: $global-radius;
|
550
|
+
|
551
|
+
// We use these to set various text styles for breadcrumbs.
|
552
|
+
|
553
|
+
// $crumb-font-size: em-calc(11);
|
554
|
+
// $crumb-font-color: $primary-color;
|
555
|
+
// $crumb-font-color-current: #333;
|
556
|
+
// $crumb-font-color-unavailable: #999;
|
557
|
+
// $crumb-font-transform: uppercase;
|
558
|
+
// $crumb-link-decor: underline;
|
559
|
+
|
560
|
+
// We use these to control the slash between breadcrumbs
|
561
|
+
|
562
|
+
// $crumb-slash-color: #aaa;
|
563
|
+
// $crumb-slash: "/";
|
564
|
+
|
565
|
+
//
|
566
|
+
// Clearing Variables
|
567
|
+
//
|
568
|
+
|
569
|
+
// We use these to set the background colors for parts of Clearing.
|
570
|
+
|
571
|
+
// $clearing-bg: #111;
|
572
|
+
// $clearing-caption-bg: $clearing-bg;
|
573
|
+
// $clearing-carousel-bg: #111;
|
574
|
+
// $clearing-img-bg: $clearing-bg;
|
575
|
+
|
576
|
+
// We use these to style the close button
|
577
|
+
|
578
|
+
// $clearing-close-color: #fff;
|
579
|
+
// $clearing-close-size: 40px;
|
580
|
+
|
581
|
+
// We use these to style the arrows
|
582
|
+
|
583
|
+
// $clearing-arrow-size: 16px;
|
584
|
+
// $clearing-arrow-color: $clearing-close-color;
|
585
|
+
|
586
|
+
// We use these to style captions
|
587
|
+
|
588
|
+
// $clearing-caption-font-color: #fff;
|
589
|
+
// $clearing-caption-padding: 10px 30px;
|
590
|
+
|
591
|
+
// We use these to make the image and carousel height and style
|
592
|
+
|
593
|
+
// $clearing-active-img-height: 75%;
|
594
|
+
// $clearing-carousel-height: 150px;
|
595
|
+
// $clearing-carousel-thumb-width: 175px;
|
596
|
+
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
|
597
|
+
|
598
|
+
//
|
599
|
+
// Custom Form Variables
|
600
|
+
//
|
601
|
+
|
602
|
+
// We use these to control the basic form styles input styles
|
603
|
+
|
604
|
+
// $custom-form-border-color: #ccc;
|
605
|
+
// $custom-form-border-size: 1px;
|
606
|
+
// $custom-form-bg: #fff;
|
607
|
+
// $custom-form-bg-disabled: #ddd;
|
608
|
+
// $custom-form-input-size: 16px;
|
609
|
+
// $custom-form-check-color: #222;
|
610
|
+
// $custom-form-check-size: 16px;
|
611
|
+
// $custom-form-radio-size: 8px;
|
612
|
+
// $custom-form-checkbox-radius: 0;
|
613
|
+
|
614
|
+
// We use these to style the custom select form element.
|
615
|
+
|
616
|
+
// $custom-select-bg: #fff;
|
617
|
+
// $custom-select-fade-to-color: #f3f3f3;
|
618
|
+
// $custom-select-border-color: #ddd;
|
619
|
+
// $custom-select-triangle-color: #aaa;
|
620
|
+
// $custom-select-triangle-color-open: #222;
|
621
|
+
// $custom-select-height: em-calc(13) + ($form-spacing * 1.5);
|
622
|
+
// $custom-select-margin-bottom: em-calc(20);
|
623
|
+
// $custom-select-font-color-selected: #141414;
|
624
|
+
// $custom-select-disabled-color: #888;
|
625
|
+
|
626
|
+
// We use these to control the style of the custom select dropdown element.
|
627
|
+
|
628
|
+
// $custom-dropdown-height: 200px;
|
629
|
+
// $custom-dropdown-bg: #fff;
|
630
|
+
// $custom-dropdown-border-color: darken(#fff, 20%);
|
631
|
+
// $custom-dropdown-border-width: 1px;
|
632
|
+
// $custom-dropdown-border-style: solid;
|
633
|
+
// $custom-dropdown-font-color: #555;
|
634
|
+
// $custom-dropdown-font-size: em-calc(14);
|
635
|
+
// $custom-dropdown-color-selected: #eeeeee;
|
636
|
+
// $custom-dropdown-font-color-selected: #000;
|
637
|
+
// $custom-dropdown-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
|
638
|
+
// $custom-dropdown-offset-top: auto;
|
639
|
+
// $custom-dropdown-list-padding: em-calc(4);
|
640
|
+
// $custom-dropdown-default-float-padding: em-calc(6);
|
641
|
+
// $custom-dropdown-opposite-padding: em-calc(38);
|
642
|
+
// $custom-dropdown-list-item-min-height: em-calc(24);
|
643
|
+
// $custom-dropdown-width-small: 134px;
|
644
|
+
// $custom-dropdown-width-medium: 254px;
|
645
|
+
// $custom-dropdown-width-large: 434px;
|
646
|
+
|
647
|
+
//
|
648
|
+
// Dropdown Variables
|
649
|
+
//
|
650
|
+
|
651
|
+
// We use these to controls height and width styles.
|
652
|
+
|
653
|
+
// $f-dropdown-max-width: 200px;
|
654
|
+
// $f-dropdown-height: auto;
|
655
|
+
// $f-dropdown-max-height: none;
|
656
|
+
// $f-dropdown-margin-top: 2px;
|
657
|
+
|
658
|
+
// We use this to control the background color
|
659
|
+
|
660
|
+
// $f-dropdown-bg: #fff;
|
661
|
+
|
662
|
+
// We use this to set the border styles for dropdowns.
|
663
|
+
|
664
|
+
// $f-dropdown-border-style: solid;
|
665
|
+
// $f-dropdown-border-width: 1px;
|
666
|
+
// $f-dropdown-border-color: darken(#fff, 20%);
|
667
|
+
|
668
|
+
// We use these to style the triangle pip.
|
669
|
+
|
670
|
+
// $f-dropdown-triangle-size: 6px;
|
671
|
+
// $f-dropdown-triangle-color: #fff;
|
672
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
673
|
+
|
674
|
+
// We use these to control styles for the list elements.
|
675
|
+
|
676
|
+
// $f-dropdown-list-style: none;
|
677
|
+
// $f-dropdown-font-color: #555;
|
678
|
+
// $f-dropdown-font-size: em-calc(14);
|
679
|
+
// $f-dropdown-list-padding: em-calc(5 10);
|
680
|
+
// $f-dropdown-line-height: em-calc(18);
|
681
|
+
// $f-dropdown-list-hover-bg: #eeeeee;
|
682
|
+
// $dropdown-mobile-default-float: 0;
|
683
|
+
|
684
|
+
// We use this to control the styles for when the dropdown has custom content.
|
685
|
+
|
686
|
+
// $f-dropdown-content-padding: em-calc(20);
|
687
|
+
|
688
|
+
//
|
689
|
+
// Flex Video Variables
|
690
|
+
//
|
691
|
+
|
692
|
+
// We use these to control video container padding and margins
|
693
|
+
|
694
|
+
// $flex-video-padding-top: em-calc(25);
|
695
|
+
// $flex-video-padding-bottom: 67.5%;
|
696
|
+
// $flex-video-margin-bottom: em-calc(16);
|
697
|
+
|
698
|
+
// We use this to control widescreen bottom padding
|
699
|
+
|
700
|
+
// $flex-video-widescreen-padding-bottom: 57.25%;
|
701
|
+
|
702
|
+
//
|
703
|
+
// Inline List Variables
|
704
|
+
//
|
705
|
+
|
706
|
+
// We use this to control the margins and padding of the inline list.
|
707
|
+
|
708
|
+
// $inline-list-top-margin: 0;
|
709
|
+
// $inline-list-opposite-margin: 0;
|
710
|
+
// $inline-list-bottom-margin: em-calc(17);
|
711
|
+
// $inline-list-default-float-margin: em-calc(-22);
|
712
|
+
|
713
|
+
// $inline-list-padding: 0;
|
714
|
+
|
715
|
+
// We use this to control the overflow of the inline list.
|
716
|
+
|
717
|
+
// $inline-list-overflow: hidden;
|
718
|
+
|
719
|
+
// We use this to control the list items
|
720
|
+
|
721
|
+
// $inline-list-display: block;
|
722
|
+
|
723
|
+
// We use this to control any elments within list items
|
724
|
+
|
725
|
+
// $inline-list-children-display: block;
|
726
|
+
|
727
|
+
//
|
728
|
+
// Joyride Variables
|
729
|
+
//
|
730
|
+
|
731
|
+
// Controlling default Joyride styles
|
732
|
+
|
733
|
+
// $joyride-tip-bg: rgb(0,0,0);
|
734
|
+
// $joyride-tip-default-width: 300px;
|
735
|
+
// $joyride-tip-padding: em-calc(18 20 24);
|
736
|
+
// $joyride-tip-border: solid 1px #555;
|
737
|
+
// $joyride-tip-radius: 4px;
|
738
|
+
// $joyride-tip-position-offset: 22px;
|
739
|
+
|
740
|
+
// Here, we're setting the tip dont styles
|
741
|
+
|
742
|
+
// $joyride-tip-font-color: #fff;
|
743
|
+
// $joyride-tip-font-size: em-calc(14);
|
744
|
+
// $joyride-tip-header-weight: bold;
|
745
|
+
|
746
|
+
// This changes the nub size
|
747
|
+
|
748
|
+
// $joyride-tip-nub-size: 14px;
|
749
|
+
|
750
|
+
// This adjusts the styles for the timer when its enabled
|
751
|
+
|
752
|
+
// $joyride-tip-timer-width: 50px;
|
753
|
+
// $joyride-tip-timer-height: 3px;
|
754
|
+
// $joyride-tip-timer-color: #666;
|
755
|
+
|
756
|
+
// This changes up the styles for the close button
|
757
|
+
|
758
|
+
// $joyride-tip-close-color: #777;
|
759
|
+
// $joyride-tip-close-size: 30px;
|
760
|
+
// $joyride-tip-close-weight: normal;
|
761
|
+
|
762
|
+
// When Joyride is filling the screen, we use this style for the bg
|
763
|
+
|
764
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
765
|
+
|
766
|
+
//
|
767
|
+
// Keystroke Variables
|
768
|
+
//
|
769
|
+
|
770
|
+
// We use these to control text styles.
|
771
|
+
|
772
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
773
|
+
// $keystroke-font-size: em-calc(14);
|
774
|
+
// $keystroke-font-color: #222;
|
775
|
+
// $keystroke-font-color-alt: #fff;
|
776
|
+
// $keystroke-function-factor: 7%;
|
777
|
+
|
778
|
+
// We use this to control keystroke padding.
|
779
|
+
|
780
|
+
// $keystroke-padding: em-calc(2 4 0);
|
781
|
+
|
782
|
+
// We use these to control background and border styles.
|
783
|
+
|
784
|
+
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
785
|
+
// $keystroke-border-style: solid;
|
786
|
+
// $keystroke-border-width: 1px;
|
787
|
+
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
|
788
|
+
// $keystroke-radius: $global-radius;
|
789
|
+
|
790
|
+
//
|
791
|
+
// Label Variables
|
792
|
+
//
|
793
|
+
|
794
|
+
// We use these to style the labels
|
795
|
+
|
796
|
+
// $label-padding: em-calc(3 10 4);
|
797
|
+
// $label-radius: $global-radius;
|
798
|
+
|
799
|
+
// We use these to style the label text
|
800
|
+
|
801
|
+
// $label-font-sizing: em-calc(14);
|
802
|
+
// $label-font-weight: bold;
|
803
|
+
// $label-font-color: #333;
|
804
|
+
// $label-font-color-alt: #fff;
|
805
|
+
|
806
|
+
//
|
807
|
+
// Magellan Variables
|
808
|
+
//
|
809
|
+
|
810
|
+
// $magellan-bg: #fff;
|
811
|
+
// $magellan-padding: 10px;
|
812
|
+
|
813
|
+
//
|
814
|
+
// Orbit Settings
|
815
|
+
//
|
816
|
+
|
817
|
+
// We use these to control the caption styles
|
818
|
+
|
819
|
+
// $orbit-container-bg: #f5f5f5;
|
820
|
+
// $orbit-caption-bg: rgba(0,0,0,0.6);
|
821
|
+
// $orbit-caption-font-color: #fff;
|
822
|
+
// $orbit-caption-font-size: emCalc(14);
|
823
|
+
// $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
|
824
|
+
// $orbit-caption-padding: emCalc(10,14);
|
825
|
+
// $orbit-caption-height: auto;
|
826
|
+
|
827
|
+
// We use these to control the left/right nav styles
|
828
|
+
|
829
|
+
// $orbit-nav-bg: rgba(0,0,0,0.6);
|
830
|
+
// $orbit-nav-bg-hover: rgba(0,0,0,0.6);
|
831
|
+
// $orbit-nav-arrow-color: #fff;
|
832
|
+
// $orbit-nav-arrow-color-hover: #ccc;
|
833
|
+
|
834
|
+
// We use these to control the timer styles
|
835
|
+
|
836
|
+
// $orbit-timer-bg: rgba(0,0,0,0.6);
|
837
|
+
// $orbit-timer-show-progress-bar: true;
|
838
|
+
|
839
|
+
// We use these to control the bullet nav styles
|
840
|
+
|
841
|
+
// $orbit-bullet-nav-color: #999;
|
842
|
+
// $orbit-bullet-nav-color-active: #555;
|
843
|
+
// $orbit-bullet-radius: emCalc(18);
|
844
|
+
|
845
|
+
// We use these to controls the style of slide numbers
|
846
|
+
|
847
|
+
// $orbit-slide-number-bg: rgba(0,0,0,0);
|
848
|
+
// $orbit-slide-number-font-color: #fff;
|
849
|
+
// $orbit-slide-number-padding: em-calc(5);
|
850
|
+
|
851
|
+
// Graceful Loading Wrapper and preloader
|
852
|
+
|
853
|
+
// $wrapper-class: "slideshow-wrapper";
|
854
|
+
// $preloader-class: "preloader";
|
855
|
+
|
856
|
+
//
|
857
|
+
// Pagination Variables
|
858
|
+
//
|
859
|
+
|
860
|
+
// We use these to control the pagination container
|
861
|
+
|
862
|
+
// $pagination-height: em-calc(24);
|
863
|
+
// $pagination-margin: em-calc(-5);
|
864
|
+
|
865
|
+
// We use these to set the list-item properties
|
866
|
+
|
867
|
+
// $pagination-li-float: $default-float;
|
868
|
+
// $pagination-li-height: em-calc(24);
|
869
|
+
// $pagination-li-font-color: #222;
|
870
|
+
// $pagination-li-font-size: em-calc(14);
|
871
|
+
// $pagination-li-margin: em-calc(5);
|
872
|
+
|
873
|
+
// We use these for the pagination anchor links
|
874
|
+
|
875
|
+
// $pagination-link-pad: em-calc(1 7 1);
|
876
|
+
// $pagination-link-font-color: #999;
|
877
|
+
// $pagination-link-active-bg: darken(#fff, 10%);
|
878
|
+
|
879
|
+
// We use these for disabled anchor links
|
880
|
+
|
881
|
+
// $pagination-link-unavailable-cursor: default;
|
882
|
+
// $pagination-link-unavailable-font-color: #999;
|
883
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
884
|
+
|
885
|
+
// We use these for currently selected anchor links
|
886
|
+
|
887
|
+
// $pagination-link-current-background: $primary-color;
|
888
|
+
// $pagination-link-current-font-color: #fff;
|
889
|
+
// $pagination-link-current-font-weight: bold;
|
890
|
+
// $pagination-link-current-cursor: default;
|
891
|
+
// $pagination-link-current-active-bg: $primary-color;
|
892
|
+
|
893
|
+
//
|
894
|
+
// Panel Variables
|
895
|
+
//
|
896
|
+
|
897
|
+
// We use these to control the background and border styles
|
898
|
+
|
899
|
+
// $panel-bg: darken(#fff, 5%);
|
900
|
+
// $panel-border-style: solid;
|
901
|
+
// $panel-border-size: 1px;
|
902
|
+
|
903
|
+
// We use this % to control how much we darken things on hover
|
904
|
+
|
905
|
+
// $panel-function-factor: 10%;
|
906
|
+
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
907
|
+
|
908
|
+
// We use these to set default inner padding and bottom margin
|
909
|
+
|
910
|
+
// $panel-margin-bottom: em-calc(20);
|
911
|
+
// $panel-padding: em-calc(20);
|
912
|
+
|
913
|
+
// We use these to set default font colors
|
914
|
+
|
915
|
+
// $panel-font-color: #333;
|
916
|
+
// $panel-font-color-alt: #fff;
|
917
|
+
|
918
|
+
// $panel-header-adjust: true;
|
919
|
+
|
920
|
+
//
|
921
|
+
// Pricing Table Variables
|
922
|
+
//
|
923
|
+
|
924
|
+
// We use this to control the border color
|
925
|
+
|
926
|
+
// $price-table-border: solid 1px #ddd;
|
927
|
+
|
928
|
+
// We use this to control the bottom margin of the pricing table
|
929
|
+
|
930
|
+
// $price-table-margin-bottom: em-calc(20);
|
931
|
+
|
932
|
+
// We use these to control the title styles
|
933
|
+
|
934
|
+
// $price-title-bg: #ddd;
|
935
|
+
// $price-title-padding: em-calc(15 20);
|
936
|
+
// $price-title-align: center;
|
937
|
+
// $price-title-color: #333;
|
938
|
+
// $price-title-weight: bold;
|
939
|
+
// $price-title-size: em-calc(16);
|
940
|
+
|
941
|
+
// We use these to control the price styles
|
942
|
+
|
943
|
+
// $price-money-bg: #eee;
|
944
|
+
// $price-money-padding: em-calc(15, 20);
|
945
|
+
// $price-money-align: center;
|
946
|
+
// $price-money-color: #333;
|
947
|
+
// $price-money-weight: normal;
|
948
|
+
// $price-money-size: em-calc(20);
|
949
|
+
|
950
|
+
// We use these to control the description styles
|
951
|
+
|
952
|
+
// $price-bg: #fff;
|
953
|
+
// $price-desc-color: #777;
|
954
|
+
// $price-desc-padding: em-calc(15);
|
955
|
+
// $price-desc-align: center;
|
956
|
+
// $price-desc-font-size: em-calc(12);
|
957
|
+
// $price-desc-weight: normal;
|
958
|
+
// $price-desc-line-height: 1.4;
|
959
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
960
|
+
|
961
|
+
// We use these to control the list item styles
|
962
|
+
|
963
|
+
// $price-item-color: #333;
|
964
|
+
// $price-item-padding: em-calc(15);
|
965
|
+
// $price-item-align: center;
|
966
|
+
// $price-item-font-size: em-calc(14);
|
967
|
+
// $price-item-weight: normal;
|
968
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
969
|
+
|
970
|
+
// We use these to control the CTA area styles
|
971
|
+
|
972
|
+
// $price-cta-bg: #f5f5f5;
|
973
|
+
// $price-cta-align: center;
|
974
|
+
// $price-cta-padding: em-calc(20 20 0);
|
975
|
+
|
976
|
+
//
|
977
|
+
// Progress Bar Variables
|
978
|
+
//
|
979
|
+
|
980
|
+
// We use this to se the prog bar height
|
981
|
+
|
982
|
+
// $progress-bar-height: em-calc(25);
|
983
|
+
// $progress-bar-color: transparent;
|
984
|
+
|
985
|
+
// We use these to control the border styles
|
986
|
+
|
987
|
+
// $progress-bar-border-color: darken(#fff, 20%);
|
988
|
+
// $progress-bar-border-size: 1px;
|
989
|
+
// $progress-bar-border-style: solid;
|
990
|
+
// $progress-bar-border-radius: $global-radius;
|
991
|
+
|
992
|
+
// We use these to control the margin & padding
|
993
|
+
|
994
|
+
// $progress-bar-pad: em-calc(2);
|
995
|
+
// $progress-bar-margin-bottom: em-calc(10);
|
996
|
+
|
997
|
+
// We use these to set the meter colors
|
998
|
+
|
999
|
+
// $progress-meter-color: $primary-color;
|
1000
|
+
// $progress-meter-secondary-color: $secondary-color;
|
1001
|
+
// $progress-meter-success-color: $success-color;
|
1002
|
+
// $progress-meter-alert-color: $alert-color;
|
1003
|
+
|
1004
|
+
//
|
1005
|
+
// Reveal Variables
|
1006
|
+
//
|
1007
|
+
|
1008
|
+
// We use these to control the style of the reveal overlay.
|
1009
|
+
|
1010
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
1011
|
+
// $reveal-overlay-bg-old: #000;
|
1012
|
+
|
1013
|
+
// We use these to control the style of the modal itself.
|
1014
|
+
|
1015
|
+
// $reveal-modal-bg: #fff;
|
1016
|
+
// $reveal-position-top: 50px;
|
1017
|
+
// $reveal-default-width: 80%;
|
1018
|
+
// $reveal-modal-padding: em-calc(20);
|
1019
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
1020
|
+
|
1021
|
+
// We use these to style the reveal close button
|
1022
|
+
|
1023
|
+
// $reveal-close-font-size: em-calc(22);
|
1024
|
+
// $reveal-close-top: em-calc(8);
|
1025
|
+
// $reveal-close-side: em-calc(11);
|
1026
|
+
// $reveal-close-color: #aaa;
|
1027
|
+
// $reveal-close-weight: bold;
|
1028
|
+
|
1029
|
+
// We use these to control the modal border
|
1030
|
+
|
1031
|
+
// $reveal-border-style: solid;
|
1032
|
+
// $reveal-border-width: 1px;
|
1033
|
+
// $reveal-border-color: #666;
|
1034
|
+
|
1035
|
+
// $reveal-modal-class: "reveal-modal";
|
1036
|
+
// $close-reveal-modal-class: "close-reveal-modal";
|
1037
|
+
|
1038
|
+
//
|
1039
|
+
// Section Variables
|
1040
|
+
//
|
1041
|
+
|
1042
|
+
// We use these to set padding and hover factor
|
1043
|
+
|
1044
|
+
// $section-title-padding: em-calc(15);
|
1045
|
+
// $section-content-padding: em-calc(15);
|
1046
|
+
// $section-function-factor: 10%;
|
1047
|
+
|
1048
|
+
// These style the titles
|
1049
|
+
|
1050
|
+
// $section-title-color: #333;
|
1051
|
+
// $section-title-color-active: #333;
|
1052
|
+
// $section-title-bg: #efefef;
|
1053
|
+
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
|
1054
|
+
// $section-title-bg-active-tabs: #fff;
|
1055
|
+
// $section-title-bg-hover: darken($section-title-bg, $section-function-factor / 2);
|
1056
|
+
|
1057
|
+
// Want to control border size, here ya go!
|
1058
|
+
|
1059
|
+
// $section-border-size: 1px;
|
1060
|
+
// $section-border-style: solid;
|
1061
|
+
// $section-border-color: #ccc;
|
1062
|
+
|
1063
|
+
// Font controls
|
1064
|
+
|
1065
|
+
// $section-font-size: em-calc(14);
|
1066
|
+
|
1067
|
+
// Control the color of the background and some size options
|
1068
|
+
|
1069
|
+
// $section-content-bg: #fff;
|
1070
|
+
// $section-vertical-nav-min-width: em-calc(200);
|
1071
|
+
// $section-vertical-tabs-title-width: em-calc(200);
|
1072
|
+
// $section-bottom-margin: em-calc(20);
|
1073
|
+
|
1074
|
+
// $title-selector: ".title";
|
1075
|
+
// $content-selector: ".content";
|
1076
|
+
// $active-region-selector: ".active";
|
1077
|
+
|
1078
|
+
//
|
1079
|
+
// Side Nav Variables
|
1080
|
+
//
|
1081
|
+
|
1082
|
+
// We use this to control padding.
|
1083
|
+
|
1084
|
+
// $side-nav-padding: em-calc(14 0);
|
1085
|
+
|
1086
|
+
// We use these to control list styles.
|
1087
|
+
|
1088
|
+
// $side-nav-list-type: none;
|
1089
|
+
// $side-nav-list-position: inside;
|
1090
|
+
// $side-nav-list-margin: em-calc(0 0 7 0);
|
1091
|
+
|
1092
|
+
// We use these to control link styles.
|
1093
|
+
|
1094
|
+
// $side-nav-link-color: $primary-color;
|
1095
|
+
// $side-nav-link-color-active: lighten(#000, 30%);
|
1096
|
+
// $side-nav-font-size: em-calc(14);
|
1097
|
+
// $side-nav-font-weight: bold;
|
1098
|
+
|
1099
|
+
// We use these to control border styles
|
1100
|
+
|
1101
|
+
// $side-nav-divider-size: 1px;
|
1102
|
+
// $side-nav-divider-style: solid;
|
1103
|
+
// $side-nav-divider-color: darken(#fff, 10%);
|
1104
|
+
|
1105
|
+
//
|
1106
|
+
// Sub Nav Variables
|
1107
|
+
//
|
1108
|
+
|
1109
|
+
// We use these to control margin and padding
|
1110
|
+
|
1111
|
+
// $sub-nav-list-margin: em-calc(-4 0 18);
|
1112
|
+
// $sub-nav-list-padding-top: em-calc(4);
|
1113
|
+
|
1114
|
+
// We use this to control the definition
|
1115
|
+
|
1116
|
+
// $sub-nav-font-size: em-calc(14);
|
1117
|
+
// $sub-nav-font-color: #999;
|
1118
|
+
// $sub-nav-font-weight: normal;
|
1119
|
+
// $sub-nav-text-decoration: none;
|
1120
|
+
// $sub-nav-border-radius: 1000px;
|
1121
|
+
|
1122
|
+
// We use these to control the active item styles
|
1123
|
+
|
1124
|
+
// $sub-nav-active-font-weight: bold;
|
1125
|
+
// $sub-nav-active-bg: $primary-color;
|
1126
|
+
// $sub-nav-active-color: #fff;
|
1127
|
+
// $sub-nav-active-padding: em-calc(3 9);
|
1128
|
+
// $sub-nav-active-cursor: default;
|
1129
|
+
|
1130
|
+
// $sub-nav-item-divider: "" !default;
|
1131
|
+
// $sub-nav-item-divider-margin: emCalc(12) !default;
|
1132
|
+
|
1133
|
+
//
|
1134
|
+
// Switch Variables
|
1135
|
+
//
|
1136
|
+
|
1137
|
+
// Controlling border styles and background colors for the switch container
|
1138
|
+
|
1139
|
+
// $switch-border-color: darken(#fff, 20%);
|
1140
|
+
// $switch-border-style: solid;
|
1141
|
+
// $switch-border-width: 1px;
|
1142
|
+
// $switch-bg: #fff;
|
1143
|
+
|
1144
|
+
// We use these to control the switch heights for our default classes
|
1145
|
+
|
1146
|
+
// $switch-height-tny: 22px;
|
1147
|
+
// $switch-height-sml: 28px;
|
1148
|
+
// $switch-height-med: 36px;
|
1149
|
+
// $switch-height-lrg: 44px;
|
1150
|
+
// $switch-bottom-margin: em-calc(20);
|
1151
|
+
|
1152
|
+
// We use these to control default font sizes for our classes.
|
1153
|
+
|
1154
|
+
// $switch-font-size-tny: 11px;
|
1155
|
+
// $switch-font-size-sml: 12px;
|
1156
|
+
// $switch-font-size-med: 14px;
|
1157
|
+
// $switch-font-size-lrg: 17px;
|
1158
|
+
// $switch-label-side-padding: 6px;
|
1159
|
+
|
1160
|
+
// We use these to style the switch-paddle
|
1161
|
+
|
1162
|
+
// $switch-paddle-bg: #fff;
|
1163
|
+
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
|
1164
|
+
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
|
1165
|
+
// $switch-paddle-border-width: 1px;
|
1166
|
+
// $switch-paddle-border-style: solid;
|
1167
|
+
// $switch-paddle-transition-speed: .1s;
|
1168
|
+
// $switch-paddle-transition-ease: ease-out;
|
1169
|
+
// $switch-positive-color: lighten($success-color, 50%);
|
1170
|
+
// $switch-negative-color: #f5f5f5;
|
1171
|
+
|
1172
|
+
// Outline Style for tabbing through switches
|
1173
|
+
|
1174
|
+
// $switch-label-outline: 1px dotted #888;
|
1175
|
+
|
1176
|
+
//
|
1177
|
+
// Table Variables
|
1178
|
+
//
|
1179
|
+
|
1180
|
+
// These control the background color for the table and even rows
|
1181
|
+
|
1182
|
+
// $table-bg: #fff;
|
1183
|
+
// $table-even-row-bg: #f9f9f9;
|
1184
|
+
|
1185
|
+
// These control the table cell border style
|
1186
|
+
|
1187
|
+
// $table-border-style: solid;
|
1188
|
+
// $table-border-size: 1px;
|
1189
|
+
// $table-border-color: #ddd;
|
1190
|
+
|
1191
|
+
// These control the table head styles
|
1192
|
+
|
1193
|
+
// $table-head-bg: #f5f5f5;
|
1194
|
+
// $table-head-font-size: em-calc(14);
|
1195
|
+
// $table-head-font-color: #222;
|
1196
|
+
// $table-head-font-weight: bold;
|
1197
|
+
// $table-head-padding: em-calc(8 10 10);
|
1198
|
+
|
1199
|
+
// These control the row padding and font styles
|
1200
|
+
|
1201
|
+
// $table-row-padding: em-calc(9 10);
|
1202
|
+
// $table-row-font-size: em-calc(14);
|
1203
|
+
// $table-row-font-color: #222;
|
1204
|
+
// $table-line-height: em-calc(18);
|
1205
|
+
|
1206
|
+
// These are for controlling the display and margin of tables
|
1207
|
+
|
1208
|
+
// $table-display: table-cell;
|
1209
|
+
// $table-margin-bottom: em-calc(20);
|
1210
|
+
|
1211
|
+
//
|
1212
|
+
// Image Thumbnail Variables
|
1213
|
+
//
|
1214
|
+
|
1215
|
+
// We use these to control border styles
|
1216
|
+
|
1217
|
+
// $thumb-border-style: solid;
|
1218
|
+
// $thumb-border-width: 4px;
|
1219
|
+
// $thumb-border-color: #fff;
|
1220
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
1221
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
1222
|
+
|
1223
|
+
// Radius and transition speed for thumbs
|
1224
|
+
|
1225
|
+
// $thumb-radius: $global-radius;
|
1226
|
+
// $thumb-transition-speed: 200ms;
|
1227
|
+
|
1228
|
+
//
|
1229
|
+
// Tooltip Variables
|
1230
|
+
//
|
1231
|
+
|
1232
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
1233
|
+
// $has-tip-font-weight: bold;
|
1234
|
+
// $has-tip-font-color: #333;
|
1235
|
+
// $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
|
1236
|
+
// $has-tip-font-color-hover: $primary-color;
|
1237
|
+
// $has-tip-cursor-type: help;
|
1238
|
+
|
1239
|
+
// $tooltip-padding: em-calc(8);
|
1240
|
+
// $tooltip-bg: #000;
|
1241
|
+
// $tooltip-font-size: em-calc(15);
|
1242
|
+
// $tooltip-font-weight: bold;
|
1243
|
+
// $tooltip-font-color: #fff;
|
1244
|
+
// $tooltip-line-height: 1.3;
|
1245
|
+
// $tooltip-close-font-size: em-calc(10);
|
1246
|
+
// $tooltip-close-font-weight: normal;
|
1247
|
+
// $tooltip-close-font-color: #888;
|
1248
|
+
// $tooltip-font-size-sml: em-calc(14);
|
1249
|
+
// $tooltip-radius: $global-radius;
|
1250
|
+
// $tooltip-pip-size: 5px;
|
1251
|
+
|
1252
|
+
//
|
1253
|
+
// Top Bar Variables
|
1254
|
+
//
|
1255
|
+
|
1256
|
+
// Background color for the top bar
|
1257
|
+
|
1258
|
+
// $topbar-bg-color: #111;
|
1259
|
+
// $topbar-bg: $topbar-bg-color;
|
1260
|
+
|
1261
|
+
// Height and margin
|
1262
|
+
|
1263
|
+
// $topbar-height: 45px;
|
1264
|
+
// $topbar-margin-bottom: 0;
|
1265
|
+
|
1266
|
+
// Control Input height for top bar
|
1267
|
+
|
1268
|
+
// $topbar-input-height: 2.45em;
|
1269
|
+
|
1270
|
+
// Controlling the styles for the title in the top bar
|
1271
|
+
|
1272
|
+
// $topbar-title-weight: bold;
|
1273
|
+
// $topbar-title-font-size: em-calc(17);
|
1274
|
+
|
1275
|
+
// Style the top bar dropdown elements
|
1276
|
+
|
1277
|
+
// $topbar-dropdown-bg: #222;
|
1278
|
+
// $topbar-dropdown-link-color: #fff;
|
1279
|
+
// // $topbar-dropdown-link-bg: lighten($topbar-bg-color, 5%);
|
1280
|
+
// $topbar-dropdown-toggle-size: 5px;
|
1281
|
+
// $topbar-dropdown-toggle-color: #fff;
|
1282
|
+
// $topbar-dropdown-toggle-alpha: 0.5;
|
1283
|
+
|
1284
|
+
// Set the link colors and styles for top-level nav
|
1285
|
+
|
1286
|
+
// $topbar-link-color: #fff;
|
1287
|
+
// $topbar-link-color-hover: #fff;
|
1288
|
+
// $topbar-link-color-active: #fff;
|
1289
|
+
// $topbar-link-weight: bold;
|
1290
|
+
// $topbar-link-font-size: em-calc(13);
|
1291
|
+
// $topbar-link-hover-lightness: -30%; // Darken by 30%
|
1292
|
+
// $topbar-link-bg-hover: darken($topbar-bg-color, 3%);
|
1293
|
+
// $topbar-link-bg-active: darken($topbar-bg-color, 3%);
|
1294
|
+
|
1295
|
+
// $topbar-dropdown-label-color: #555;
|
1296
|
+
// $topbar-dropdown-label-text-transform: uppercase;
|
1297
|
+
// $topbar-dropdown-label-font-weight: bold;
|
1298
|
+
// $topbar-dropdown-label-font-size: em-calc(10);
|
1299
|
+
// $topbar-dropdown-label-bg: lighten($topbar-bg-color, 5%);
|
1300
|
+
|
1301
|
+
// Top menu icon styles
|
1302
|
+
|
1303
|
+
// $topbar-menu-link-transform: uppercase;
|
1304
|
+
// $topbar-menu-link-font-size: em-calc(13);
|
1305
|
+
// $topbar-menu-link-weight: bold;
|
1306
|
+
// $topbar-menu-link-color: #fff;
|
1307
|
+
// $topbar-menu-icon-color: #fff;
|
1308
|
+
// $topbar-menu-link-color-toggled: #888;
|
1309
|
+
// $topbar-menu-icon-color-toggled: #888;
|
1310
|
+
|
1311
|
+
// Transitions and breakpoint styles
|
1312
|
+
|
1313
|
+
// $topbar-transition-speed: 300ms;
|
1314
|
+
// $topbar-breakpoint: 940 !default; // Change to 9999px for always mobile layout
|
1315
|
+
// $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
|
1316
|
+
|
1317
|
+
// Divider Styles
|
1318
|
+
|
1319
|
+
// $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
|
1320
|
+
// $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
|
1321
|
+
|
1322
|
+
// Sticky Class
|
1323
|
+
|
1324
|
+
// $topbar-sticky-class: ".sticky";
|
1325
|
+
// $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
|
1326
|
+
|
1327
|
+
@import 'foundation';
|