helios_aim 0.2.2

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