zurb-foundation 4.0.2 → 4.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/docs/_sidebar-components.html.erb +2 -2
- data/docs/_sidebar.html.erb +2 -2
- data/docs/_zurb-jobs.html.erb +2 -2
- data/docs/compile.rb +24 -33
- data/docs/components/block-grid.html.erb +3 -0
- data/docs/components/dropdown.html.erb +1 -1
- data/docs/components/grid.html.erb +1 -1
- data/docs/components/joyride.html.erb +1 -1
- data/docs/components/reveal.html.erb +24 -23
- data/docs/components/section.html.erb +126 -17
- data/docs/controller.rb +9 -7
- data/docs/faq.html.erb +1 -1
- data/docs/index.html.erb +28 -30
- data/docs/javascript.html.erb +4 -4
- data/docs/rails.html.erb +1 -1
- data/docs/support.html.erb +64 -56
- data/js/foundation/foundation.dropdown.js +1 -1
- data/js/foundation/foundation.reveal.js +10 -8
- data/js/foundation/foundation.section.js +5 -2
- data/js/foundation/foundation.topbar.js +1 -1
- data/lib/foundation/version.rb +1 -1
- data/scss/foundation/_foundation-global.scss +2 -0
- data/scss/foundation/components/_block-grid.scss +18 -15
- data/scss/foundation/components/_button-groups.scss +1 -1
- data/scss/foundation/components/_custom-forms.scss +1 -0
- data/scss/foundation/components/_keystrokes.scss +1 -1
- data/scss/foundation/components/_reveal.scss +1 -1
- data/scss/foundation/components/_section.scss +1 -1
- data/scss/foundation/components/_top-bar.scss +7 -5
- data/scss/foundation/components/_type.scss +14 -6
- data/templates/project/index.html +3 -2
- data/templates/project/scss/_settings.scss +981 -0
- data/templates/project/scss/app.scss +35 -35
- metadata +4 -4
data/lib/foundation/version.rb
CHANGED
@@ -169,10 +169,12 @@ body {
|
|
169
169
|
background: $body-bg;
|
170
170
|
color: $body-font-color;
|
171
171
|
padding: 0;
|
172
|
+
margin: 0;
|
172
173
|
font-family: $body-font-family;
|
173
174
|
font-weight: $body-font-weight;
|
174
175
|
font-style: $body-font-style;
|
175
176
|
line-height: 1;
|
177
|
+
position: relative;
|
176
178
|
-webkit-font-smoothing: $font-smoothing;
|
177
179
|
}
|
178
180
|
|
@@ -6,6 +6,8 @@
|
|
6
6
|
$block-grid-elements: 12 !default;
|
7
7
|
$block-grid-default-spacing: 10px !default;
|
8
8
|
|
9
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
10
|
+
$block-grid-media-queries: true !default;
|
9
11
|
|
10
12
|
//
|
11
13
|
// Block Grid Mixins
|
@@ -39,25 +41,26 @@ $block-grid-default-spacing: 10px !default;
|
|
39
41
|
|
40
42
|
}
|
41
43
|
|
44
|
+
@if $block-grid-media-queries {
|
45
|
+
/* Foundation Block Grids for below small breakpoint */
|
46
|
+
@media only screen {
|
47
|
+
[class*="block-grid-"] { @include block-grid; }
|
42
48
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
@for $i from 2 through $block-grid-elements {
|
48
|
-
.small-block-grid-#{($i)} {
|
49
|
-
@include block-grid($i,$block-grid-default-spacing,false);
|
49
|
+
@for $i from 2 through $block-grid-elements {
|
50
|
+
.small-block-grid-#{($i)} {
|
51
|
+
@include block-grid($i,$block-grid-default-spacing,false);
|
52
|
+
}
|
50
53
|
}
|
51
54
|
}
|
52
|
-
}
|
53
55
|
|
54
|
-
/* Foundation Block Grids for above small breakpoint */
|
55
|
-
@media #{$small} {
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
56
|
+
/* Foundation Block Grids for above small breakpoint */
|
57
|
+
@media #{$small} {
|
58
|
+
@for $i from 2 through $block-grid-elements {
|
59
|
+
.large-block-grid-#{($i)} {
|
60
|
+
@if $i == 2 { @include block-grid(2,15px,false); }
|
61
|
+
@else if $i == 3 { @include block-grid(3,12px,false); }
|
62
|
+
@else { @include block-grid($i,$block-grid-default-spacing,false); }
|
63
|
+
}
|
61
64
|
}
|
62
65
|
}
|
63
66
|
}
|
@@ -52,7 +52,7 @@
|
|
52
52
|
&.round li { @include button-group-style($radius:1000px, $float:null); }
|
53
53
|
|
54
54
|
@for $i from 2 through 8 {
|
55
|
-
&.even#{-$i} li { @include button-group-style($even
|
55
|
+
&.even#{-$i} li { @include button-group-style($even:$i, $float:null); }
|
56
56
|
}
|
57
57
|
}
|
58
58
|
|
@@ -10,7 +10,7 @@ $reveal-overlay-bg-old: #000 !default;
|
|
10
10
|
|
11
11
|
// We use these to control the style of the modal itself.
|
12
12
|
$reveal-modal-bg: #fff !default;
|
13
|
-
$reveal-position-top:
|
13
|
+
$reveal-position-top: 50px !default;
|
14
14
|
$reveal-default-width: 80% !default;
|
15
15
|
$reveal-modal-padding: emCalc(20px) !default;
|
16
16
|
$reveal-box-shadow: 0 0 10px rgba(#000,.4) !default;
|
@@ -153,7 +153,7 @@ $section-bottom-margin: emCalc(20px) !default;
|
|
153
153
|
top: -1px;
|
154
154
|
z-index: 999;
|
155
155
|
min-width: $section-vertical-nav-min-width;
|
156
|
-
border: $section-border-size $section-border-style $section-border-color
|
156
|
+
border: $section-border-size $section-border-style $section-border-color;
|
157
157
|
}
|
158
158
|
}
|
159
159
|
}
|
@@ -203,14 +203,14 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa
|
|
203
203
|
width: 100%;
|
204
204
|
}
|
205
205
|
|
206
|
-
li {
|
206
|
+
ul li {
|
207
207
|
& > a {
|
208
208
|
display: block;
|
209
209
|
width: 100%;
|
210
210
|
padding: 12px 0 12px $topbar-height / 3;
|
211
211
|
color: $topbar-link-color;
|
212
|
-
font-size:
|
213
|
-
font-weight:
|
212
|
+
font-size: $topbar-link-font-size;
|
213
|
+
font-weight: $topbar-link-weight;
|
214
214
|
background: $topbar-dropdown-bg;
|
215
215
|
|
216
216
|
&:hover { background: darken($topbar-dropdown-bg, 3%); }
|
@@ -218,7 +218,7 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa
|
|
218
218
|
|
219
219
|
&.button {
|
220
220
|
background: $primary-color;
|
221
|
-
font-size:
|
221
|
+
font-size: $topbar-link-font-size;
|
222
222
|
&:hover {
|
223
223
|
background: darken($primary-color, 10%);
|
224
224
|
}
|
@@ -328,6 +328,8 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa
|
|
328
328
|
&.expanded { background: $topbar-bg; }
|
329
329
|
}
|
330
330
|
|
331
|
+
.contain-to-grid .top-bar { max-width: $row-width; margin: 0 auto; }
|
332
|
+
|
331
333
|
.top-bar-section {
|
332
334
|
@include single-transition(none,0,0);
|
333
335
|
#{$default-float}: 0 !important;
|
@@ -440,4 +442,4 @@ $topbar-media-query: "only screen and (min-width:"#{$topbar-breakpoint}")" !defa
|
|
440
442
|
|
441
443
|
}
|
442
444
|
|
443
|
-
}
|
445
|
+
}
|
@@ -102,7 +102,6 @@ $microformat-abbr-font-decoration: none !default;
|
|
102
102
|
//
|
103
103
|
// Typography Placeholders
|
104
104
|
//
|
105
|
-
|
106
105
|
%lead {
|
107
106
|
font-size: $paragraph-font-size + emCalc(3.5px);
|
108
107
|
line-height: 1.6;
|
@@ -178,9 +177,9 @@ h1, h2, h3, h4, h5, h6 {
|
|
178
177
|
font-style: $header-font-style;
|
179
178
|
color: $header-font-color;
|
180
179
|
text-rendering: $header-text-rendering;
|
181
|
-
line-height: $header-line-height;
|
182
180
|
margin-top: $header-top-margin;
|
183
181
|
margin-bottom: $header-bottom-margin;
|
182
|
+
line-height: $header-line-height - emCalc(3px);
|
184
183
|
|
185
184
|
small {
|
186
185
|
font-size: $small-font-size;
|
@@ -189,10 +188,10 @@ h1, h2, h3, h4, h5, h6 {
|
|
189
188
|
}
|
190
189
|
}
|
191
190
|
|
192
|
-
h1 { font-size: $h1-font-size; }
|
193
|
-
h2 { font-size: $h2-font-size; }
|
194
|
-
h3 { font-size: $h3-font-size; }
|
195
|
-
h4 { font-size: $h4-font-size; }
|
191
|
+
h1 { font-size: $h1-font-size - emCalc(10px); }
|
192
|
+
h2 { font-size: $h2-font-size - emCalc(10px); }
|
193
|
+
h3 { font-size: $h3-font-size - emCalc(5px); }
|
194
|
+
h4 { font-size: $h4-font-size - emCalc(5px); }
|
196
195
|
h5 { font-size: $h5-font-size; }
|
197
196
|
h6 { font-size: $h6-font-size; }
|
198
197
|
|
@@ -350,6 +349,15 @@ blockquote p {
|
|
350
349
|
}
|
351
350
|
}
|
352
351
|
|
352
|
+
|
353
|
+
@media #{$small} {
|
354
|
+
h1,h2,h3,h4,h5,h6 { line-height: $header-line-height; }
|
355
|
+
h1 { font-size: $h1-font-size; }
|
356
|
+
h2 { font-size: $h2-font-size; }
|
357
|
+
h3 { font-size: $h3-font-size; }
|
358
|
+
h4 { font-size: $h4-font-size; }
|
359
|
+
}
|
360
|
+
|
353
361
|
// Only include these styles if you want them.
|
354
362
|
@if $include-print-styles {
|
355
363
|
/*
|
@@ -9,8 +9,9 @@
|
|
9
9
|
<title>Foundation 4</title>
|
10
10
|
|
11
11
|
<link rel="stylesheet" href="css/normalize.css" />
|
12
|
+
<% if template[:options][:customizer_used] %>
|
12
13
|
<link rel="stylesheet" href="css/foundation.css" />
|
13
|
-
<%
|
14
|
+
<% else %>
|
14
15
|
<link rel="stylesheet" href="css/app.css" />
|
15
16
|
<% end %>
|
16
17
|
|
@@ -86,7 +87,7 @@
|
|
86
87
|
</div>
|
87
88
|
|
88
89
|
<div class="large-4 columns">
|
89
|
-
<h4>Getting
|
90
|
+
<h4>Getting Started</h4>
|
90
91
|
<p>We're stoked you want to try Foundation! To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
|
91
92
|
|
92
93
|
<h4>Other Resources</h4>
|
@@ -1,6 +1,987 @@
|
|
1
|
+
// Required global settings and mixins for Foundation
|
2
|
+
@import "foundation/foundation-global";
|
3
|
+
|
1
4
|
// Settings file to override Foundation variables
|
2
5
|
|
3
6
|
// You can find the variables for each component at the bottom of their
|
4
7
|
// doc page. We tried to name them to where they'd make sense just by reading them.
|
5
8
|
// Go to http://foundation.zurb.com/docs/ to find what you need.
|
6
9
|
|
10
|
+
//
|
11
|
+
// Foundation Global Variables
|
12
|
+
//
|
13
|
+
|
14
|
+
// This is the default html and body font-size for the base em value.
|
15
|
+
// $em-base: 16px;
|
16
|
+
|
17
|
+
// We use these to control various global styles
|
18
|
+
// $body-bg: #fff;
|
19
|
+
// $body-font-color: #222;
|
20
|
+
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
21
|
+
// $body-font-weight: normal;
|
22
|
+
// $body-font-style: normal;
|
23
|
+
|
24
|
+
// We use this to control font-smoothing
|
25
|
+
// $font-smoothing: antialiased;
|
26
|
+
|
27
|
+
// We use these to control text direction settings
|
28
|
+
// $text-direction: ltr;
|
29
|
+
|
30
|
+
// We use these as default colors throughout
|
31
|
+
// $primary-color: #2ba6cb;
|
32
|
+
// $secondary-color: #e9e9e9;
|
33
|
+
// $alert-color: #c60f13;
|
34
|
+
// $success-color: #5da423;
|
35
|
+
|
36
|
+
// We use these to make sure border radius matches unless we want it different.
|
37
|
+
// $global-radius: 3px;
|
38
|
+
// $global-rounded: 1000px;
|
39
|
+
|
40
|
+
// We use these to control inset shadow shiny edges and depressions.
|
41
|
+
// $shiny-edge-size: 0 1px 0;
|
42
|
+
// $shiny-edge-color: rgba(#fff, .5);
|
43
|
+
// $shiny-edge-active-color: rgba(#000, .2);
|
44
|
+
|
45
|
+
// We use this to control whether or not CSS classes come through in the gem files.
|
46
|
+
// $include-html-classes: true;
|
47
|
+
// $include-print-styles: true;
|
48
|
+
|
49
|
+
//
|
50
|
+
// Grid Variables
|
51
|
+
//
|
52
|
+
|
53
|
+
// $row-width: 62.5em;
|
54
|
+
// $column-gutter: 1.875em;
|
55
|
+
// $total-columns: 12;
|
56
|
+
|
57
|
+
//
|
58
|
+
// Block Grid Variables
|
59
|
+
//
|
60
|
+
|
61
|
+
// We use this to control the maximum number of block grid elements per row
|
62
|
+
// $block-grid-elements: 12;
|
63
|
+
// $block-grid-default-spacing: 10px;
|
64
|
+
|
65
|
+
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
|
66
|
+
// $block-grid-media-queries: true;
|
67
|
+
|
68
|
+
//
|
69
|
+
// Typography Variables
|
70
|
+
//
|
71
|
+
|
72
|
+
// We use these to control header font styles
|
73
|
+
// $header-font-family "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
74
|
+
// $header-font-weight: bold;
|
75
|
+
// $header-font-style: normal;
|
76
|
+
// $header-font-color #222;
|
77
|
+
// $header-line-height: 1.4;
|
78
|
+
// $header-top-margin .2em;
|
79
|
+
// $header-bottom-margin .5em;
|
80
|
+
// $header-text-rendering: optimizeLegibility;
|
81
|
+
|
82
|
+
// We use these to control header font sizes
|
83
|
+
// $h1-font-size: emCalc(44px);
|
84
|
+
// $h2-font-size: emCalc(37px);
|
85
|
+
// $h3-font-size: emCalc(27px);
|
86
|
+
// $h4-font-size: emCalc(23px);
|
87
|
+
// $h5-font-size: emCalc(18px);
|
88
|
+
// $h6-font-size: 1em;
|
89
|
+
|
90
|
+
// These control how subheaders are styled.
|
91
|
+
// $subheader-line-height: 1.4;
|
92
|
+
// $subheader-font-color: lighten($header-font-color, 30%);
|
93
|
+
// $subheader-font-weight: 300;
|
94
|
+
// $subheader-top-margin .2em;
|
95
|
+
// $subheader-bottom-margin .5em;
|
96
|
+
|
97
|
+
// A general <small> styling
|
98
|
+
// $small-font-size: 60%;
|
99
|
+
// $small-font-color: lighten($header-font-color, 30%);
|
100
|
+
|
101
|
+
// We use these to style paragraphs
|
102
|
+
// $paragraph-font-family: inherit;
|
103
|
+
// $paragraph-font-weight: normal;
|
104
|
+
// $paragraph-font-size: 1em;
|
105
|
+
// $paragraph-line-height: 1.6;
|
106
|
+
// $paragraph-margin-bottom: emCalc(20px);
|
107
|
+
// $paragraph-aside-font-size: emCalc(14px);
|
108
|
+
// $paragraph-aside-line-height: 1.35;
|
109
|
+
// $paragraph-aside-font-style: italic;
|
110
|
+
|
111
|
+
// We use these to style <code> tags
|
112
|
+
// $code-color: darken($alert-color, 15%);
|
113
|
+
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
|
114
|
+
// $code-font-weight: bold;
|
115
|
+
|
116
|
+
// We use these to style anchors
|
117
|
+
// $anchor-text-decoration: none;
|
118
|
+
// $anchor-font-color $primary-color;
|
119
|
+
// $anchor-font-color-hover: darken($primary-color, 5%);
|
120
|
+
|
121
|
+
// We use these to style the <hr> element
|
122
|
+
// $hr-border-width: 1px;
|
123
|
+
// $hr-border-style: solid;
|
124
|
+
// $hr-border-color: #ddd;
|
125
|
+
// $hr-margin: emCalc(20px);
|
126
|
+
|
127
|
+
// We use these to style lists
|
128
|
+
// $list-style-position: outside;
|
129
|
+
// $list-side-margin: emCalc(18px);
|
130
|
+
// $definition-list-header-weight: bold;
|
131
|
+
// $definition-list-header-margin-bottom: .3em;
|
132
|
+
// $definition-list-margin-bottom: emCalc(12px);
|
133
|
+
|
134
|
+
// We use these to style blockquotes
|
135
|
+
// $blockquote-font-color: lighten($header-font-color, 30%);
|
136
|
+
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
|
137
|
+
// $blockquote-border: 1px solid #ddd;
|
138
|
+
// $blockquote-cite-font-size: emCalc(13px);
|
139
|
+
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
|
140
|
+
// $blockquote-cite-link-color $blockquote-cite-font-color;
|
141
|
+
|
142
|
+
// Acronym styles
|
143
|
+
// $acronym-underline: 1px dotted #ddd;
|
144
|
+
|
145
|
+
// We use these to control padding and margin
|
146
|
+
// $microformat-padding: emCalc(10px) emCalc(12px);
|
147
|
+
// $microformat-margin: 0 0 emCalc(20px) 0;
|
148
|
+
|
149
|
+
// We use these to control the border styles
|
150
|
+
// $microformat-border-width: 1px;
|
151
|
+
// $microformat-border-style: solid;
|
152
|
+
// $microformat-border-color #ddd;
|
153
|
+
|
154
|
+
// We use these to control full name font styles
|
155
|
+
// $microformat-fullname-font-weight: bold;
|
156
|
+
// $microformat-fullname-font-size: emCalc(15px);
|
157
|
+
|
158
|
+
// We use this to control the summary font styles
|
159
|
+
// $microformat-summary-font-weight: bold;
|
160
|
+
|
161
|
+
// We use this to control abbr padding
|
162
|
+
// $microformat-abbr-padding: 0 emCalc(1px);
|
163
|
+
|
164
|
+
// We use this to control abbr font styles
|
165
|
+
// $microformat-abbr-font-weight: bold;
|
166
|
+
// $microformat-abbr-font-decoration: none;
|
167
|
+
|
168
|
+
//
|
169
|
+
// Form Variables
|
170
|
+
//
|
171
|
+
|
172
|
+
// We use this to set the base for lots of form spacing and positioning styles
|
173
|
+
// $form-spacing: emCalc(16px);
|
174
|
+
|
175
|
+
// We use these to style the labels in different ways
|
176
|
+
// $label-pointer: pointer;
|
177
|
+
// $label-font-size: emCalc(14px);
|
178
|
+
// $label-font-weight: 500;
|
179
|
+
// $label-font-color: lighten(#000, 30%);
|
180
|
+
// $label-bottom-margin: emCalc(3px);
|
181
|
+
// $input-font-color: rgba(0,0,0,0.75);
|
182
|
+
// $input-font-size: emCalc(14px);
|
183
|
+
// $input-bg-color #fff;
|
184
|
+
// $input-focus-bg-color: darken(#fff, 2%);
|
185
|
+
// $input-border-color: darken(#fff, 20%);
|
186
|
+
// $input-focus-border-color: darken(#fff, 40%);
|
187
|
+
// $input-border-style: solid;
|
188
|
+
// $input-border-width: 1px;
|
189
|
+
// $input-disabled-bg: #ddd;
|
190
|
+
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
|
191
|
+
|
192
|
+
// We use these to style the fieldset border and spacing.
|
193
|
+
// $fieldset-border-style: solid;
|
194
|
+
// $fieldset-border-width: 1px;
|
195
|
+
// $fieldset-border-color: #ddd;
|
196
|
+
// $fieldset-padding: emCalc(20px);
|
197
|
+
// $fieldset-margin: emCalc(18px) 0;
|
198
|
+
|
199
|
+
// We use these to style the legends when you use them
|
200
|
+
// $legend-bg: #fff;
|
201
|
+
// $legend-font-weight: bold;
|
202
|
+
// $legend-padding: 0 emCalc(3px);
|
203
|
+
|
204
|
+
// We use these to style the prefix and postfix input elements
|
205
|
+
// $input-prefix-bg: darken(#fff, 5%);
|
206
|
+
// $input-prefix-border-color: darken(#fff, 20%);
|
207
|
+
// $input-prefix-border-size: 1px;
|
208
|
+
// $input-prefix-border-type: solid;
|
209
|
+
// $input-prefix-overflow: hidden;
|
210
|
+
// $input-prefix-font-color: #333;
|
211
|
+
// $input-prefix-font-color-alt: #fff;
|
212
|
+
|
213
|
+
// We use these to style the error states for inputs and labels
|
214
|
+
// $input-error-message-padding: emCalc(6px) emCalc(4px);
|
215
|
+
// $input-error-message-top: -($form-spacing) - emCalc(5px);
|
216
|
+
// $input-error-message-font-size: emCalc(12px);
|
217
|
+
// $input-error-message-font-weight: bold;
|
218
|
+
// $input-error-message-font-color: #fff;
|
219
|
+
// $input-error-message-font-color-alt: #333;
|
220
|
+
|
221
|
+
// We use these to build padding for buttons.
|
222
|
+
// $button-med: emCalc(12px);
|
223
|
+
// $button-tny: emCalc(7px);
|
224
|
+
// $button-sml: emCalc(9px);
|
225
|
+
// $button-lrg: emCalc(16px);
|
226
|
+
|
227
|
+
// We use this to control the display property.
|
228
|
+
// $button-display: inline-block;
|
229
|
+
// $button-margin-bottom: emCalc(20px);
|
230
|
+
|
231
|
+
// We use these to control button text styles.
|
232
|
+
// $button-font-color: #fff;
|
233
|
+
// $button-font-color-alt: #333;
|
234
|
+
// $button-font-med: emCalc(16px);
|
235
|
+
// $button-font-tny: emCalc(11px);
|
236
|
+
// $button-font-sml: emCalc(13px);
|
237
|
+
// $button-font-lrg: emCalc(20px);
|
238
|
+
// $button-font-weight: bold;
|
239
|
+
// $button-font-align: center;
|
240
|
+
|
241
|
+
// We use these to control various hover effects.
|
242
|
+
// $button-function-factor: 10%;
|
243
|
+
|
244
|
+
// We use these to control button border styles.
|
245
|
+
// $button-border-width: 1px;
|
246
|
+
// $button-border-style: solid;
|
247
|
+
// $button-border-color: darken($primary-color, $button-function-factor);
|
248
|
+
|
249
|
+
// We use this to set the default radius used throughout the core.
|
250
|
+
// $button-radius: $global-radius;
|
251
|
+
|
252
|
+
// We use this to set default opacity for disabled buttons.
|
253
|
+
// $button-disabled-opacity: 0.6;
|
254
|
+
|
255
|
+
//
|
256
|
+
// Dropdown Button Variables
|
257
|
+
//
|
258
|
+
|
259
|
+
// We use these to set the color of the pip in dropdown buttons
|
260
|
+
// $dropdown-button-pip-color: #fff;
|
261
|
+
// $dropdown-button-pip-color-alt: #333;
|
262
|
+
|
263
|
+
// We use these to style tiny dropdown buttons
|
264
|
+
// $dropdown-button-padding-tny: $button-tny * 5;
|
265
|
+
// $dropdown-button-pip-size-tny: $button-tny;
|
266
|
+
// $dropdown-button-pip-right-tny: $button-tny * 2;
|
267
|
+
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
|
268
|
+
|
269
|
+
// We use these to style small dropdown buttons
|
270
|
+
// $dropdown-button-padding-sml: $button-sml * 5;
|
271
|
+
// $dropdown-button-pip-size-sml: $button-sml;
|
272
|
+
// $dropdown-button-pip-right-sml: $button-sml * 2;
|
273
|
+
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
|
274
|
+
|
275
|
+
// We use these to style medium dropdown buttons
|
276
|
+
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
|
277
|
+
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
|
278
|
+
// $dropdown-button-pip-right-med: $button-med * 2;
|
279
|
+
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
|
280
|
+
|
281
|
+
// We use these to style large dropdown buttons
|
282
|
+
// $dropdown-button-padding-lrg: $button-lrg * 4;
|
283
|
+
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
284
|
+
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
|
285
|
+
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
|
286
|
+
|
287
|
+
//
|
288
|
+
// Split Button Variables
|
289
|
+
//
|
290
|
+
|
291
|
+
// We use these to control different shared styles for Split Buttons
|
292
|
+
// $split-button-function-factor: 15%;
|
293
|
+
// $split-button-pip-color: #fff;
|
294
|
+
// $split-button-pip-color-alt: #333;
|
295
|
+
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
|
296
|
+
|
297
|
+
// We use these to control tiny split buttons
|
298
|
+
// $split-button-padding-tny: $button-tny * 9;
|
299
|
+
// $split-button-span-width-tny: $button-tny * 6.5;
|
300
|
+
// $split-button-pip-size-tny: $button-tny;
|
301
|
+
// $split-button-pip-top-tny: $button-tny * 2;
|
302
|
+
// $split-button-pip-left-tny: emCalc(-5px);
|
303
|
+
|
304
|
+
// We use these to control small split buttons
|
305
|
+
// $split-button-padding-sml: $button-sml * 7;
|
306
|
+
// $split-button-span-width-sml: $button-sml * 5;
|
307
|
+
// $split-button-pip-size-sml: $button-sml;
|
308
|
+
// $split-button-pip-top-sml: $button-sml * 1.5;
|
309
|
+
// $split-button-pip-left-sml: emCalc(-9px);
|
310
|
+
|
311
|
+
// We use these to control medium split buttons
|
312
|
+
// $split-button-padding-med: $button-med * 6.4;
|
313
|
+
// $split-button-span-width-med: $button-med * 4;
|
314
|
+
// $split-button-pip-size-med: $button-med - emCalc(3px);
|
315
|
+
// $split-button-pip-top-med: $button-med * 1.5;
|
316
|
+
// $split-button-pip-left-med: emCalc(-9px);
|
317
|
+
|
318
|
+
// We use these to control large split buttons
|
319
|
+
// $split-button-padding-lrg: $button-lrg * 6;
|
320
|
+
// $split-button-span-width-lrg: $button-lrg * 3.75;
|
321
|
+
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
|
322
|
+
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
|
323
|
+
// $split-button-pip-left-lrg: emCalc(-9px);
|
324
|
+
|
325
|
+
//
|
326
|
+
// Alert Variables
|
327
|
+
//
|
328
|
+
|
329
|
+
// We use this to control alert padding.
|
330
|
+
// $alert-padding-top: emCalc(11px);
|
331
|
+
// $alert-padding-left: $alert-padding-top;
|
332
|
+
// $alert-padding-right: $alert-padding-top + emCalc(10px);
|
333
|
+
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
|
334
|
+
|
335
|
+
// We use these to control text style.
|
336
|
+
// $alert-font-weight: bold;
|
337
|
+
// $alert-font-size: emCalc(14px);
|
338
|
+
// $alert-font-color: #fff;
|
339
|
+
// $alert-font-color-alt: darken($secondary-color, 60%);
|
340
|
+
|
341
|
+
// We use this for close hover effect.
|
342
|
+
// $alert-function-factor: 10%;
|
343
|
+
|
344
|
+
// We use these to control border styles.
|
345
|
+
// $alert-border-style: solid;
|
346
|
+
// $alert-border-width: 1px;
|
347
|
+
// $alert-border-color: darken($primary-color, $alert-function-factor);
|
348
|
+
// $alert-bottom-margin: emCalc(20px);
|
349
|
+
|
350
|
+
// We use these to style the close buttons
|
351
|
+
// $alert-close-color: #333;
|
352
|
+
// $alert-close-position: emCalc(5px);
|
353
|
+
// $alert-close-font-size: emCalc(22px);
|
354
|
+
// $alert-close-opacity: 0.3;
|
355
|
+
// $alert-close-opacity-hover: 0.5;
|
356
|
+
// $alert-close-padding: 5px 4px 4px;
|
357
|
+
|
358
|
+
// We use this to control border radius
|
359
|
+
// $alert-radius: $global-radius;
|
360
|
+
|
361
|
+
//
|
362
|
+
// Breadcrumb Variables
|
363
|
+
//
|
364
|
+
|
365
|
+
// We use this to set the background color for the breadcrumb container.
|
366
|
+
// $crumb-bg: lighten($secondary-color, 5%);
|
367
|
+
|
368
|
+
// We use these to set the padding around the breadcrumbs.
|
369
|
+
// $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
|
370
|
+
// $crumb-side-padding: emCalc(12px);
|
371
|
+
|
372
|
+
// We use these to control border styles.
|
373
|
+
// $crumb-function-factor: 10%;
|
374
|
+
// $crumb-border-size: 1px;
|
375
|
+
// $crumb-border-style: solid;
|
376
|
+
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
|
377
|
+
// $crumb-radius: $button-radius;
|
378
|
+
|
379
|
+
// We use these to set various text styles for breadcrumbs.
|
380
|
+
// $crumb-font-size: emCalc(11px);
|
381
|
+
// $crumb-font-color: $primary-color;
|
382
|
+
// $crumb-font-color-current: #333;
|
383
|
+
// $crumb-font-color-unavailable: #999;
|
384
|
+
// $crumb-font-transform: uppercase;
|
385
|
+
// $crumb-link-decor: underline;
|
386
|
+
|
387
|
+
// We use these to control the slash between breadcrumbs
|
388
|
+
// $crumb-slash-color: #aaa;
|
389
|
+
// $crumb-slash: "/";
|
390
|
+
|
391
|
+
//
|
392
|
+
// Clearing Variables
|
393
|
+
//
|
394
|
+
|
395
|
+
// We use these to set the background colors for parts of Clearing.
|
396
|
+
// $clearing-bg: #111;
|
397
|
+
// $clearing-caption-bg: $clearing-bg;
|
398
|
+
// $clearing-carousel-bg: #111;
|
399
|
+
// $clearing-img-bg: $clearing-bg;
|
400
|
+
|
401
|
+
// We use these to style the close button
|
402
|
+
// $clearing-close-color: #fff;
|
403
|
+
// $clearing-close-size: 40px;
|
404
|
+
|
405
|
+
// We use these to style the arrows
|
406
|
+
// $clearing-arrow-size: 16px;
|
407
|
+
// $clearing-arrow-color: $clearing-close-color;
|
408
|
+
|
409
|
+
// We use these to style captions
|
410
|
+
// $clearing-caption-font-color: #fff;
|
411
|
+
// $clearing-caption-padding: 10px 30px;
|
412
|
+
|
413
|
+
// We use these to make the image and carousel height and style
|
414
|
+
// $clearing-active-img-height: 75%;
|
415
|
+
// $clearing-carousel-height: 150px;
|
416
|
+
// $clearing-carousel-thumb-width: 175px;
|
417
|
+
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
|
418
|
+
|
419
|
+
//
|
420
|
+
// Custom Form Variables
|
421
|
+
//
|
422
|
+
|
423
|
+
// We use these to control the basic form styles input styles
|
424
|
+
// $custom-form-border-color: #ccc;
|
425
|
+
// $custom-form-bg: #fff;
|
426
|
+
// $custom-form-bg-disabled: #ddd;
|
427
|
+
// $custom-form-check-color: #222;
|
428
|
+
|
429
|
+
// We use these to style the custom select form element.
|
430
|
+
// $custom-select-bg: #fff;
|
431
|
+
// $custom-select-fade-to-color: #f3f3f3;
|
432
|
+
// $custom-select-border-color: #ddd;
|
433
|
+
// $custom-select-triangle-color: #aaa;
|
434
|
+
// $custom-select-triangle-color-open: #222;
|
435
|
+
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
|
436
|
+
// $custom-select-margin-bottom: emCalc(20px);
|
437
|
+
// $custom-select-font-color-selected: #141414;
|
438
|
+
// $custom-select-disabled-color: #888;
|
439
|
+
|
440
|
+
// We use these to control the style of the custom select dropdown element.
|
441
|
+
// $custom-dropdown-height: 200px;
|
442
|
+
// $custom-dropdown-bg: #fff;
|
443
|
+
// $custom-dropdown-border-color: darken(#fff, 20%);
|
444
|
+
// $custom-dropdown-border-width: 1px;
|
445
|
+
// $custom-dropdown-border-style: solid;
|
446
|
+
// $custom-dropdown-font-color: #555;
|
447
|
+
// $custom-dropdown-font-size: emCalc(14px);
|
448
|
+
// $custom-dropdown-color-selected: #eeeeee;
|
449
|
+
// $custom-dropdown-font-color-selected: #000;
|
450
|
+
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
|
451
|
+
// $custom-dropdown-offset-top: none;
|
452
|
+
// $custom-dropdown-list-padding: emCalc(4px);
|
453
|
+
// $custom-dropdown-left-padding: emCalc(6px);
|
454
|
+
// $custom-dropdown-right-padding: emCalc(38px);
|
455
|
+
// $custom-dropdown-list-item-min-height: emCalc(24px);
|
456
|
+
|
457
|
+
//
|
458
|
+
// Dropdown Variables
|
459
|
+
//
|
460
|
+
|
461
|
+
// We use these to controls height and width styles.
|
462
|
+
// $f-dropdown-max-width: 200px;
|
463
|
+
// $f-dropdown-height: auto;
|
464
|
+
// $f-dropdown-max-height: none;
|
465
|
+
// $f-dropdown-margin-top: 2px;
|
466
|
+
|
467
|
+
// We use this to control the background color
|
468
|
+
// $f-dropdown-bg: #fff;
|
469
|
+
|
470
|
+
// We use this to set the border styles for dropdowns.
|
471
|
+
// $f-dropdown-border-style: solid;
|
472
|
+
// $f-dropdown-border-width: 1px;
|
473
|
+
// $f-dropdown-border-color: darken(#fff, 20%);
|
474
|
+
|
475
|
+
// We use these to style the triangle pip.
|
476
|
+
// $f-dropdown-triangle-size: 6px;
|
477
|
+
// $f-dropdown-triangle-color: #fff;
|
478
|
+
// $f-dropdown-triangle-side-offset: 10px;
|
479
|
+
|
480
|
+
// We use these to control styles for the list elements.
|
481
|
+
// $f-dropdown-list-style: none;
|
482
|
+
// $f-dropdown-font-color: #555;
|
483
|
+
// $f-dropdown-font-size: emCalc(14px);
|
484
|
+
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
|
485
|
+
// $f-dropdown-line-height: emCalc(18px);
|
486
|
+
// $f-dropdown-list-hover-bg: #eeeeee;
|
487
|
+
// $dropdown-mobile-left: 0;
|
488
|
+
|
489
|
+
// We use this to control the styles for when the dropdown has custom content.
|
490
|
+
// $f-dropdown-content-padding: emCalc(20px);
|
491
|
+
|
492
|
+
//
|
493
|
+
// Flex Video Variables
|
494
|
+
//
|
495
|
+
|
496
|
+
// We use these to control video container padding and margins
|
497
|
+
// $flex-video-padding-top: emCalc(25px);
|
498
|
+
// $flex-video-padding-bottom: 67.5%;
|
499
|
+
// $flex-video-margin-bottom: emCalc(16px);
|
500
|
+
|
501
|
+
// We use this to control widescreen bottom padding
|
502
|
+
// $flex-video-widescreen-padding-bottom: 57.25%;
|
503
|
+
|
504
|
+
//
|
505
|
+
// Inline List Variables
|
506
|
+
//
|
507
|
+
|
508
|
+
// We use this to control the margins and padding of the inline list.
|
509
|
+
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
|
510
|
+
// $inline-list-margin: 0 0;
|
511
|
+
// $inline-list-padding: 0;
|
512
|
+
|
513
|
+
// We use this to control the overflow of the inline list.
|
514
|
+
// $inline-list-overflow: hidden;
|
515
|
+
|
516
|
+
// We use this to control the list items
|
517
|
+
// $inline-list-display: block;
|
518
|
+
|
519
|
+
// We use this to control any elments within list items
|
520
|
+
// $inline-list-children-display: block;
|
521
|
+
|
522
|
+
//
|
523
|
+
// Joyride Variables
|
524
|
+
//
|
525
|
+
|
526
|
+
// Controlling default Joyride styles
|
527
|
+
// $joyride-tip-bg: rgb(0,0,0);
|
528
|
+
// $joyride-tip-default-width: 300px;
|
529
|
+
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
|
530
|
+
// $joyride-tip-border: solid 1px #555;
|
531
|
+
// $joyride-tip-radius: 4px;
|
532
|
+
// $joyride-tip-position-offset: 22px;
|
533
|
+
|
534
|
+
// Here, we're setting the tip dont styles
|
535
|
+
// $joyride-tip-font-color: #fff;
|
536
|
+
// $joyride-tip-font-size: emCalc(14px);
|
537
|
+
// $joyride-tip-header-weight: bold;
|
538
|
+
|
539
|
+
// This changes the nub size
|
540
|
+
// $joyride-tip-nub-size: 14px;
|
541
|
+
|
542
|
+
// This adjusts the styles for the timer when its enabled
|
543
|
+
// $joyride-tip-timer-width: 50px;
|
544
|
+
// $joyride-tip-timer-height: 3px;
|
545
|
+
// $joyride-tip-timer-color: #666;
|
546
|
+
|
547
|
+
// This changes up the styles for the close button
|
548
|
+
// $joyride-tip-close-color: #777;
|
549
|
+
// $joyride-tip-close-size: 30px;
|
550
|
+
// $joyride-tip-close-weight: normal;
|
551
|
+
|
552
|
+
// When Joyride is filling the screen, we use this style for the bg
|
553
|
+
// $joyride-screenfill: rgba(0,0,0,0.5);
|
554
|
+
|
555
|
+
//
|
556
|
+
// Keystroke Variables
|
557
|
+
//
|
558
|
+
|
559
|
+
// We use these to control text styles.
|
560
|
+
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
|
561
|
+
// $keystroke-font-size: emCalc(15px);
|
562
|
+
// $keystroke-font-color: #222;
|
563
|
+
// $keystroke-font-color-alt: #fff;
|
564
|
+
// $keystroke-function-factor: 7%;
|
565
|
+
|
566
|
+
// We use this to control keystroke padding.
|
567
|
+
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
|
568
|
+
|
569
|
+
// We use these to control background and border styles.
|
570
|
+
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
|
571
|
+
// $keystroke-border-style: solid;
|
572
|
+
// $keystroke-border-width: 1px;
|
573
|
+
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
|
574
|
+
// $keystroke-radius: $button-radius;
|
575
|
+
|
576
|
+
//
|
577
|
+
// Label Variables
|
578
|
+
//
|
579
|
+
|
580
|
+
// We use these to style the labels
|
581
|
+
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
|
582
|
+
// $label-radius: $button-radius;
|
583
|
+
|
584
|
+
// We use these to style the label text
|
585
|
+
// $label-font-size: emCalc(14px);
|
586
|
+
// $label-font-weight: bold;
|
587
|
+
|
588
|
+
//
|
589
|
+
// Orbit Settings
|
590
|
+
//
|
591
|
+
|
592
|
+
// We use these to control the caption styles
|
593
|
+
// $orbit-caption-bg-old-browser: #000;
|
594
|
+
// $orbit-caption-bg-old: rgb(0,0,0);
|
595
|
+
// $orbit-caption-bg: rgba(0,0,0,0.6);
|
596
|
+
// $orbit-caption-font-color: #fff;
|
597
|
+
|
598
|
+
// We use these to control the left/right nav styles
|
599
|
+
// $orbit-nav-bg-old: rgb(0,0,0);
|
600
|
+
// $orbit-nav-bg: rgba(0,0,0,0.6);
|
601
|
+
|
602
|
+
// We use these to control the timer styles
|
603
|
+
// $orbit-timer-bg-old: rgb(0,0,0);
|
604
|
+
// $orbit-timer-bg: rgba(0,0,0,0.6);
|
605
|
+
|
606
|
+
// We use these to control the bullet nav styles
|
607
|
+
// $orbit-bullet-nav-color: #999;
|
608
|
+
// $orbit-bullet-nav-color-active: #222;
|
609
|
+
|
610
|
+
// We use thes to controls the style of slide numbers
|
611
|
+
// $orbit-slide-number-bg: rgb(0,0,0);
|
612
|
+
// $orbit-slide-number-font-color: #fff;
|
613
|
+
// $orbit-slide-number-padding: emCalc(5px);
|
614
|
+
|
615
|
+
//
|
616
|
+
// Pagination Variables
|
617
|
+
//
|
618
|
+
|
619
|
+
// We use these to control the pagination container
|
620
|
+
// $pagination-height: emCalc(24px);
|
621
|
+
// $pagination-margin: emCalc(-5px);
|
622
|
+
|
623
|
+
// We use these to set the list-item properties
|
624
|
+
// $pagination-li-float: $default-float;
|
625
|
+
// $pagination-li-height: emCalc(24px);
|
626
|
+
// $pagination-li-font-color: #222;
|
627
|
+
// $pagination-li-font-size: emCalc(14px);
|
628
|
+
// $pagination-li-margin: emCalc(5px);
|
629
|
+
|
630
|
+
// We use these for the pagination anchor links
|
631
|
+
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
|
632
|
+
// $pagination-link-font-color: #999;
|
633
|
+
// $pagination-link-active-bg: darken(#fff, 10%);
|
634
|
+
|
635
|
+
// We use these for disabled anchor links
|
636
|
+
// $pagination-link-unavailable-cursor: default;
|
637
|
+
// $pagination-link-unavailable-font-color: #999;
|
638
|
+
// $pagination-link-unavailable-bg-active: transparent;
|
639
|
+
|
640
|
+
// We use these for currently selected anchor links
|
641
|
+
// $pagination-link-current-background: $primary-color;
|
642
|
+
// $pagination-link-current-font-color: #fff;
|
643
|
+
// $pagination-link-current-font-weight: bold;
|
644
|
+
// $pagination-link-current-cursor: default;
|
645
|
+
// $pagination-link-current-active-bg: $primary-color;
|
646
|
+
|
647
|
+
//
|
648
|
+
// Panel Variables
|
649
|
+
//
|
650
|
+
|
651
|
+
// We use these to control the background and border styles
|
652
|
+
// $panel-bg: darken(#fff, 5%);
|
653
|
+
// $panel-border-style: solid;
|
654
|
+
// $panel-border-size: 1px;
|
655
|
+
|
656
|
+
// We use this % to control how much we darken things on hover
|
657
|
+
// $panel-function-factor: 10%;
|
658
|
+
// $panel-border-color: darken($panel-bg, $panel-function-factor);
|
659
|
+
|
660
|
+
// We use these to set default inner padding and bottom margin
|
661
|
+
// $panel-margin-bottom: emCalc(20px);
|
662
|
+
// $panel-padding: emCalc(20px);
|
663
|
+
|
664
|
+
// We use these to set default font colors
|
665
|
+
// $panel-font-color: #333;
|
666
|
+
// $panel-font-color-alt: #fff;
|
667
|
+
|
668
|
+
//
|
669
|
+
// Pricing Table Variables
|
670
|
+
//
|
671
|
+
|
672
|
+
// We use this to control the border color
|
673
|
+
// $price-table-border: solid 1px #ddd;
|
674
|
+
|
675
|
+
// We use this to control the bottom margin of the pricing table
|
676
|
+
// $price-table-margin-bottom: emCalc(20px);
|
677
|
+
|
678
|
+
// We use these to control the title styles
|
679
|
+
// $price-title-bg: #ddd;
|
680
|
+
// $price-title-padding: emCalc(15px) emCalc(20px);
|
681
|
+
// $price-title-align: center;
|
682
|
+
// $price-title-color: #333;
|
683
|
+
// $price-title-weight: bold;
|
684
|
+
// $price-title-size: emCalc(16px);
|
685
|
+
|
686
|
+
// We use these to control the price styles
|
687
|
+
// $price-money-bg: #eee;
|
688
|
+
// $price-money-padding: emCalc(15px) emCalc(20px);
|
689
|
+
// $price-money-align: center;
|
690
|
+
// $price-money-color: #333;
|
691
|
+
// $price-money-weight: normal;
|
692
|
+
// $price-money-size: emCalc(20px);
|
693
|
+
|
694
|
+
// We use these to control the description styles
|
695
|
+
// $price-bg: #fff;
|
696
|
+
// $price-desc-color: #777;
|
697
|
+
// $price-desc-padding: emCalc(15px);
|
698
|
+
// $price-desc-align: center;
|
699
|
+
// $price-desc-font-size: emCalc(12px);
|
700
|
+
// $price-desc-weight: normal;
|
701
|
+
// $price-desc-line-height: 1.4;
|
702
|
+
// $price-desc-bottom-border: dotted 1px #ddd;
|
703
|
+
|
704
|
+
// We use these to control the list item styles
|
705
|
+
// $price-item-color: #333;
|
706
|
+
// $price-item-padding: emCalc(15px);
|
707
|
+
// $price-item-align: center;
|
708
|
+
// $price-item-font-size: emCalc(14px);
|
709
|
+
// $price-item-weight: normal;
|
710
|
+
// $price-item-bottom-border: dotted 1px #ddd;
|
711
|
+
|
712
|
+
// We use these to control the CTA area styles
|
713
|
+
// $price-cta-bg: #f5f5f5;
|
714
|
+
// $price-cta-align: center;
|
715
|
+
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
|
716
|
+
|
717
|
+
//
|
718
|
+
// Progress Bar Variables
|
719
|
+
//
|
720
|
+
|
721
|
+
// We use this to se the prog bar height
|
722
|
+
// $progress-bar-height: emCalc(25px);
|
723
|
+
|
724
|
+
// We use these to control the border styles
|
725
|
+
// $progress-bar-border-color: darken(#fff, 20%);
|
726
|
+
// $progress-bar-border-size: 1px;
|
727
|
+
// $progress-bar-border-style: solid;
|
728
|
+
// $progress-bar-border-radius: $button-radius;
|
729
|
+
|
730
|
+
// We use these to control the margin & padding
|
731
|
+
// $progress-bar-pad: emCalc(2px);
|
732
|
+
// $progress-bar-margin-bottom: emCalc(10px);
|
733
|
+
|
734
|
+
// We use these to set the meter colors
|
735
|
+
// $progress-meter-color: $primary-color;
|
736
|
+
// $progress-meter-secondary-color: $secondary-color;
|
737
|
+
// $progress-meter-success-color: $success-color;
|
738
|
+
// $progress-meter-alert-color: $alert-color;
|
739
|
+
|
740
|
+
// NEED TO FINISH THE LOGIC HERE
|
741
|
+
|
742
|
+
//
|
743
|
+
// Reveal Variables
|
744
|
+
//
|
745
|
+
|
746
|
+
// We use these to control the style of the reveal overlay.
|
747
|
+
// $reveal-overlay-bg: rgba(#000, .45);
|
748
|
+
// $reveal-overlay-bg-old: #000;
|
749
|
+
|
750
|
+
// We use these to control the style of the modal itself.
|
751
|
+
// $reveal-modal-bg: #fff;
|
752
|
+
// $reveal-position-top: 50px;
|
753
|
+
// $reveal-default-width: 80%;
|
754
|
+
// $reveal-modal-padding: emCalc(20px);
|
755
|
+
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
|
756
|
+
|
757
|
+
// We use these to style the reveal close button
|
758
|
+
// $reveal-close-font-size: emCalc(22px);
|
759
|
+
// $reveal-close-top: emCalc(8px);
|
760
|
+
// $reveal-close-side: emCalc(11px);
|
761
|
+
// $reveal-close-color: #aaa;
|
762
|
+
// $reveal-close-weight: bold;
|
763
|
+
|
764
|
+
// We use these to control the modal border
|
765
|
+
// $reveal-border-style: solid;
|
766
|
+
// $reveal-border-width: 1px;
|
767
|
+
// $reveal-border-color: #666;
|
768
|
+
|
769
|
+
//
|
770
|
+
// Section Variables
|
771
|
+
//
|
772
|
+
|
773
|
+
// We use these to set padding and hover factor
|
774
|
+
// $section-padding: emCalc(15px);
|
775
|
+
// $section-function-factor: 10%;
|
776
|
+
|
777
|
+
// These style the titles
|
778
|
+
// $section-title-color: #333;
|
779
|
+
// $section-title-bg: #efefef;
|
780
|
+
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
|
781
|
+
// $section-title-bg-active-tabs: #fff;
|
782
|
+
|
783
|
+
// Want to control border size, here ya go!
|
784
|
+
// $section-border-size: 1px;
|
785
|
+
// $section-border-style: solid;
|
786
|
+
// $section-border-color: #ccc;
|
787
|
+
|
788
|
+
// Control the color of the background and some size options
|
789
|
+
// $section-content-bg: #fff;
|
790
|
+
// $section-vertical-nav-min-width: emCalc(200px);
|
791
|
+
// $section-bottom-margin: emCalc(20px);
|
792
|
+
|
793
|
+
//
|
794
|
+
// Side Nav Variables
|
795
|
+
//
|
796
|
+
|
797
|
+
// We use this to control padding.
|
798
|
+
// $side-nav-padding: emCalc(14px) 0;
|
799
|
+
|
800
|
+
// We use these to control list styles.
|
801
|
+
// $side-nav-list-type: none;
|
802
|
+
// $side-nav-list-position: inside;
|
803
|
+
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
|
804
|
+
|
805
|
+
// We use these to control link styles.
|
806
|
+
// $side-nav-link-color: $primary-color;
|
807
|
+
// $side-nav-link-color-active: lighten(#000, 30%);
|
808
|
+
// $side-nav-font-size: emCalc(14px);
|
809
|
+
// $side-nav-font-weight: bold;
|
810
|
+
|
811
|
+
// We use these to control border styles
|
812
|
+
// $side-nav-divider-size: 1px;
|
813
|
+
// $side-nav-divider-style: solid;
|
814
|
+
// $side-nav-divider-color: darken(#fff, 10%);
|
815
|
+
|
816
|
+
//
|
817
|
+
// Sub Nav Variables
|
818
|
+
//
|
819
|
+
|
820
|
+
// We use these to control margin and padding
|
821
|
+
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
|
822
|
+
// $sub-nav-list-padding-top: emCalc(4px);
|
823
|
+
|
824
|
+
// We use this to control the definition
|
825
|
+
// $sub-nav-font-size: emCalc(14px);
|
826
|
+
// $sub-nav-font-color: #999;
|
827
|
+
// $sub-nav-font-weight: normal;
|
828
|
+
// $sub-nav-text-decoration: none;
|
829
|
+
// $sub-nav-border-radius: 1000px;
|
830
|
+
|
831
|
+
// We use these to control the active item styles
|
832
|
+
// $sub-nav-active-font-weight: bold;
|
833
|
+
// $sub-nav-active-bg: $primary-color;
|
834
|
+
// $sub-nav-active-color: #fff;
|
835
|
+
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
|
836
|
+
// $sub-nav-active-cursor: default;
|
837
|
+
|
838
|
+
//
|
839
|
+
// Switch Variables
|
840
|
+
//
|
841
|
+
|
842
|
+
// Controlling border styles and background colors for the switch container
|
843
|
+
// $switch-border-color: darken(#fff, 20%);
|
844
|
+
// $switch-border-style: solid;
|
845
|
+
// $switch-border-width: 1px;
|
846
|
+
// $switch-bg: #fff;
|
847
|
+
|
848
|
+
// We use these to control the switch heights for our default classes
|
849
|
+
// $switch-height-tny: 22px;
|
850
|
+
// $switch-height-sml: 28px;
|
851
|
+
// $switch-height-med: 36px;
|
852
|
+
// $switch-height-lrg: 44px;
|
853
|
+
// $switch-bottom-margin: emCalc(20px);
|
854
|
+
|
855
|
+
// We use these to control default font sizes for our classes.
|
856
|
+
// $switch-font-size-tny: 11px;
|
857
|
+
// $switch-font-size-sml: 12px;
|
858
|
+
// $switch-font-size-med: 14px;
|
859
|
+
// $switch-font-size-lrg: 17px;
|
860
|
+
// $switch-label-side-padding: 6px;
|
861
|
+
|
862
|
+
// We use these to style the switch-paddle
|
863
|
+
// $switch-paddle-bg: #fff;
|
864
|
+
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
|
865
|
+
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
|
866
|
+
// $switch-paddle-border-width: 1px;
|
867
|
+
// $switch-paddle-border-style: solid;
|
868
|
+
// $switch-paddle-transition-speed: .1s;
|
869
|
+
// $switch-paddle-transition-ease: ease-out;
|
870
|
+
// $switch-positive-color: lighten($success-color, 50%);
|
871
|
+
// $switch-negative-color: #f5f5f5;
|
872
|
+
|
873
|
+
// Outline Style for tabbing through switches
|
874
|
+
// $switch-label-outline: 1px dotted #888;
|
875
|
+
|
876
|
+
//
|
877
|
+
// Table Variables
|
878
|
+
//
|
879
|
+
|
880
|
+
// These control the background color for the table and even rows
|
881
|
+
// $table-bg: #fff;
|
882
|
+
// $table-even-row-bg: #f9f9f9;
|
883
|
+
|
884
|
+
// These control the table cell border style
|
885
|
+
// $table-border-style: solid;
|
886
|
+
// $table-border-size: 1px;
|
887
|
+
// $table-border-color: #ddd;
|
888
|
+
|
889
|
+
// These control the table head styles
|
890
|
+
// $table-head-bg: #f5f5f5;
|
891
|
+
// $table-head-font-size: emCalc(14px);
|
892
|
+
// $table-head-font-color: #222;
|
893
|
+
// $table-head-font-weight: bold;
|
894
|
+
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
|
895
|
+
|
896
|
+
// These control the row padding and font styles
|
897
|
+
// $table-row-padding: emCalc(9px) emCalc(10px);
|
898
|
+
// $table-row-font-size: emCalc(14px);
|
899
|
+
// $table-row-font-color: #222;
|
900
|
+
// $table-line-height: emCalc(18px);
|
901
|
+
|
902
|
+
// These are for controlling the display and margin of tables
|
903
|
+
// $table-display: table-cell;
|
904
|
+
// $table-margin-bottom: emCalc(20px);
|
905
|
+
|
906
|
+
//
|
907
|
+
// Image Thumbnail Variables
|
908
|
+
//
|
909
|
+
|
910
|
+
// We use these to control border styles
|
911
|
+
// $thumb-border-style: solid;
|
912
|
+
// $thumb-border-width: 4px;
|
913
|
+
// $thumb-border-color: #fff;
|
914
|
+
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
|
915
|
+
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
|
916
|
+
|
917
|
+
// Radius and transition speed for thumbs
|
918
|
+
// $thumb-radius: $global-radius;
|
919
|
+
// $thumb-transition-speed: 200ms;
|
920
|
+
|
921
|
+
//
|
922
|
+
// Tooltip Variables
|
923
|
+
//
|
924
|
+
// $has-tip-border-bottom: dotted 1px #ccc;
|
925
|
+
// $has-tip-font-weight: bold;
|
926
|
+
// $has-tip-font-color: #333;
|
927
|
+
// $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
|
928
|
+
// $has-tip-font-color-hover: $primary-color;
|
929
|
+
// $has-tip-cursor-type: help;
|
930
|
+
|
931
|
+
// $tooltip-padding: emCalc(8px);
|
932
|
+
// $tooltip-bg: #000;
|
933
|
+
// $tooltip-font-size: emCalc(15px);
|
934
|
+
// $tooltip-font-weight: bold;
|
935
|
+
// $tooltip-font-color: #fff;
|
936
|
+
// $tooltip-line-height: 1.3;
|
937
|
+
// $tooltip-close-font-size: emCalc(10px);
|
938
|
+
// $tooltip-close-font-weight: normal;
|
939
|
+
// $tooltip-close-font-color: #888;
|
940
|
+
// $tooltip-font-size-sml: emCalc(14px);
|
941
|
+
// $tooltip-radius: $global-radius;
|
942
|
+
// $tooltip-pip-size: 5px;
|
943
|
+
|
944
|
+
//
|
945
|
+
// Top Bar Variables
|
946
|
+
//
|
947
|
+
|
948
|
+
// Background color for the top bar
|
949
|
+
// $topbar-bg: #111;
|
950
|
+
|
951
|
+
// Height and margin
|
952
|
+
// $topbar-height: 45px;
|
953
|
+
// $topbar-margin-bottom: emCalc(30px);
|
954
|
+
|
955
|
+
// Control Input height for top bar
|
956
|
+
// $topbar-input-height: 2.45em;
|
957
|
+
|
958
|
+
// Controlling the styles for the title in the top bar
|
959
|
+
// $topbar-title-weight: bold;
|
960
|
+
// $topbar-title-font-size: emCalc(17px);
|
961
|
+
|
962
|
+
// Set the link colors and styles for top-level nav
|
963
|
+
// $topbar-link-color: #fff;
|
964
|
+
// $topbar-link-weight: bold;
|
965
|
+
// $topbar-link-font-size: emCalc(13px);
|
966
|
+
|
967
|
+
// Style the top bar dropdown elements
|
968
|
+
// $topbar-dropdown-bg: #333;
|
969
|
+
// $topbar-dropdown-link-color: #fff;
|
970
|
+
// $topbar-dropdown-toggle-size: 5px;
|
971
|
+
// $topbar-dropdown-toggle-color: #fff;
|
972
|
+
// $topbar-dropdown-toggle-alpha: 0.5;
|
973
|
+
|
974
|
+
// Top menu icon styles
|
975
|
+
// $topbar-menu-link-transform: uppercase;
|
976
|
+
// $topbar-menu-link-font-size: emCalc(13px);
|
977
|
+
// $topbar-menu-link-weight: bold;
|
978
|
+
// $topbar-menu-link-color: #fff;
|
979
|
+
// $topbar-menu-icon-color: #fff;
|
980
|
+
// $topbar-menu-link-color-toggled: #888;
|
981
|
+
// $topbar-menu-icon-color-toggled: #888;
|
982
|
+
|
983
|
+
// Transitions and breakpoint styles
|
984
|
+
// $topbar-transition-speed: 300ms;
|
985
|
+
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
|
986
|
+
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
|
987
|
+
|