chemistrykit 3.8.1 → 3.9.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/CHANGELOG.md +15 -5
- data/Gemfile +4 -0
- data/README.md +13 -1
- data/Rakefile +3 -3
- data/chemistrykit.gemspec +7 -3
- data/features/brew.feature +1 -1
- data/features/chemists.feature +56 -1
- data/features/concurrency.feature +2 -2
- data/features/exit_status.feature +1 -0
- data/features/logging.feature +88 -85
- data/features/reporting.feature +105 -0
- data/features/step_definitions/steps.rb +4 -4
- data/features/support/env.rb +1 -1
- data/features/tags.feature +1 -0
- data/lib/chemistrykit/chemist.rb +6 -1
- data/lib/chemistrykit/chemist/repository/csv_chemist_repository.rb +1 -1
- data/lib/chemistrykit/cli/cli.rb +33 -12
- data/lib/chemistrykit/configuration.rb +2 -2
- data/lib/chemistrykit/formula/formula_lab.rb +13 -0
- data/lib/chemistrykit/{parallel_tests_mods.rb → parallel_tests/rspec/runner.rb} +5 -5
- data/lib/chemistrykit/reporting/html_report_assembler.rb +170 -0
- data/lib/chemistrykit/rspec/html_formatter.rb +241 -0
- data/lib/chemistrykit/rspec/j_unit_formatter.rb +124 -0
- data/report/config.rb +28 -0
- data/report/index.html +213 -0
- data/report/javascripts/foundation/foundation.abide.js +194 -0
- data/report/javascripts/foundation/foundation.alerts.js +52 -0
- data/report/javascripts/foundation/foundation.clearing.js +516 -0
- data/report/javascripts/foundation/foundation.cookie.js +74 -0
- data/report/javascripts/foundation/foundation.dropdown.js +177 -0
- data/report/javascripts/foundation/foundation.forms.js +533 -0
- data/report/javascripts/foundation/foundation.interchange.js +280 -0
- data/report/javascripts/foundation/foundation.joyride.js +850 -0
- data/report/javascripts/foundation/foundation.js +440 -0
- data/report/javascripts/foundation/foundation.magellan.js +135 -0
- data/report/javascripts/foundation/foundation.orbit.js +412 -0
- data/report/javascripts/foundation/foundation.placeholder.js +179 -0
- data/report/javascripts/foundation/foundation.reveal.js +330 -0
- data/report/javascripts/foundation/foundation.section.js +400 -0
- data/report/javascripts/foundation/foundation.tooltips.js +208 -0
- data/report/javascripts/foundation/foundation.topbar.js +300 -0
- data/report/javascripts/vendor/custom.modernizr.js +4 -0
- data/report/javascripts/vendor/jquery.js +9789 -0
- data/report/sass/_normalize.scss +402 -0
- data/report/sass/_settings.scss +1301 -0
- data/report/sass/app.scss +571 -0
- data/report/stylesheets/app.css +3636 -0
- data/spec/integration/lib/chemistrykit/formula/formula_lab_spec.rb +26 -2
- data/spec/integration/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb +18 -0
- data/spec/support/evidence/results_0.html +30 -0
- data/spec/support/evidence/results_1.html +27 -0
- data/spec/unit/lib/chemistrykit/chemist/repository/csv_chemist_repository_spec.rb +15 -2
- data/spec/unit/lib/chemistrykit/chemist_spec.rb +17 -1
- data/spec/unit/lib/chemistrykit/configuration_spec.rb +2 -2
- data/spec/unit/lib/chemistrykit/formula/formula_lab_spec.rb +7 -0
- data/spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb +22 -0
- metadata +94 -13
- data/lib/chemistrykit/j_unit.rb +0 -121
@@ -0,0 +1,3636 @@
|
|
1
|
+
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
|
2
|
+
/* ==========================================================================
|
3
|
+
HTML5 display definitions
|
4
|
+
========================================================================== */
|
5
|
+
/**
|
6
|
+
* Correct `block` display not defined in IE 8/9.
|
7
|
+
*/
|
8
|
+
/* line 22, ../sass/_normalize.scss */
|
9
|
+
article,
|
10
|
+
aside,
|
11
|
+
details,
|
12
|
+
figcaption,
|
13
|
+
figure,
|
14
|
+
footer,
|
15
|
+
header,
|
16
|
+
hgroup,
|
17
|
+
main,
|
18
|
+
nav,
|
19
|
+
section,
|
20
|
+
summary {
|
21
|
+
display: block;
|
22
|
+
}
|
23
|
+
|
24
|
+
/**
|
25
|
+
* Correct `inline-block` display not defined in IE 8/9.
|
26
|
+
*/
|
27
|
+
/* line 32, ../sass/_normalize.scss */
|
28
|
+
audio,
|
29
|
+
canvas,
|
30
|
+
video {
|
31
|
+
display: inline-block;
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
36
|
+
* Remove excess height in iOS 5 devices.
|
37
|
+
*/
|
38
|
+
/* line 41, ../sass/_normalize.scss */
|
39
|
+
audio:not([controls]) {
|
40
|
+
display: none;
|
41
|
+
height: 0;
|
42
|
+
}
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Address styling not present in IE 8/9.
|
46
|
+
*/
|
47
|
+
/* line 50, ../sass/_normalize.scss */
|
48
|
+
[hidden] {
|
49
|
+
display: none;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* ==========================================================================
|
53
|
+
Base
|
54
|
+
========================================================================== */
|
55
|
+
/**
|
56
|
+
* 1. Prevent system color scheme's background color being used in Firefox, IE,
|
57
|
+
* and Opera.
|
58
|
+
* 2. Prevent system color scheme's text color being used in Firefox, IE, and
|
59
|
+
* Opera.
|
60
|
+
* 3. Set default font family to sans-serif.
|
61
|
+
* 4. Prevent iOS text size adjust after orientation change, without disabling
|
62
|
+
* user zoom.
|
63
|
+
*/
|
64
|
+
/* line 68, ../sass/_normalize.scss */
|
65
|
+
html {
|
66
|
+
background: #fff;
|
67
|
+
/* 1 */
|
68
|
+
color: #000;
|
69
|
+
/* 2 */
|
70
|
+
font-family: sans-serif;
|
71
|
+
/* 3 */
|
72
|
+
-ms-text-size-adjust: 100%;
|
73
|
+
/* 4 */
|
74
|
+
-webkit-text-size-adjust: 100%;
|
75
|
+
/* 4 */
|
76
|
+
}
|
77
|
+
|
78
|
+
/**
|
79
|
+
* Remove default margin.
|
80
|
+
*/
|
81
|
+
/* line 80, ../sass/_normalize.scss */
|
82
|
+
body {
|
83
|
+
margin: 0;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* ==========================================================================
|
87
|
+
Links
|
88
|
+
========================================================================== */
|
89
|
+
/**
|
90
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
91
|
+
*/
|
92
|
+
/* line 92, ../sass/_normalize.scss */
|
93
|
+
a:focus {
|
94
|
+
outline: thin dotted;
|
95
|
+
}
|
96
|
+
|
97
|
+
/**
|
98
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
99
|
+
*/
|
100
|
+
/* line 101, ../sass/_normalize.scss */
|
101
|
+
a:active,
|
102
|
+
a:hover {
|
103
|
+
outline: 0;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* ==========================================================================
|
107
|
+
Typography
|
108
|
+
========================================================================== */
|
109
|
+
/**
|
110
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
111
|
+
* contexts in Firefox 4+, Safari 5, and Chrome.
|
112
|
+
*/
|
113
|
+
/* line 114, ../sass/_normalize.scss */
|
114
|
+
h1 {
|
115
|
+
font-size: 2em;
|
116
|
+
margin: 0.67em 0;
|
117
|
+
}
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
121
|
+
*/
|
122
|
+
/* line 123, ../sass/_normalize.scss */
|
123
|
+
abbr[title] {
|
124
|
+
border-bottom: 1px dotted;
|
125
|
+
}
|
126
|
+
|
127
|
+
/**
|
128
|
+
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
129
|
+
*/
|
130
|
+
/* line 132, ../sass/_normalize.scss */
|
131
|
+
b,
|
132
|
+
strong {
|
133
|
+
font-weight: bold;
|
134
|
+
}
|
135
|
+
|
136
|
+
/**
|
137
|
+
* Address styling not present in Safari 5 and Chrome.
|
138
|
+
*/
|
139
|
+
/* line 140, ../sass/_normalize.scss */
|
140
|
+
dfn {
|
141
|
+
font-style: italic;
|
142
|
+
}
|
143
|
+
|
144
|
+
/**
|
145
|
+
* Address differences between Firefox and other browsers.
|
146
|
+
*/
|
147
|
+
/* line 148, ../sass/_normalize.scss */
|
148
|
+
hr {
|
149
|
+
-moz-box-sizing: content-box;
|
150
|
+
box-sizing: content-box;
|
151
|
+
height: 0;
|
152
|
+
}
|
153
|
+
|
154
|
+
/**
|
155
|
+
* Address styling not present in IE 8/9.
|
156
|
+
*/
|
157
|
+
/* line 158, ../sass/_normalize.scss */
|
158
|
+
mark {
|
159
|
+
background: #ff0;
|
160
|
+
color: #000;
|
161
|
+
}
|
162
|
+
|
163
|
+
/**
|
164
|
+
* Correct font family set oddly in Safari 5 and Chrome.
|
165
|
+
*/
|
166
|
+
/* line 170, ../sass/_normalize.scss */
|
167
|
+
code,
|
168
|
+
kbd,
|
169
|
+
pre,
|
170
|
+
samp {
|
171
|
+
font-family: monospace, serif;
|
172
|
+
font-size: 1em;
|
173
|
+
}
|
174
|
+
|
175
|
+
/**
|
176
|
+
* Improve readability of pre-formatted text in all browsers.
|
177
|
+
*/
|
178
|
+
/* line 179, ../sass/_normalize.scss */
|
179
|
+
pre {
|
180
|
+
white-space: pre-wrap;
|
181
|
+
}
|
182
|
+
|
183
|
+
/**
|
184
|
+
* Set consistent quote types.
|
185
|
+
*/
|
186
|
+
/* line 187, ../sass/_normalize.scss */
|
187
|
+
q {
|
188
|
+
quotes: "\201C" "\201D" "\2018" "\2019";
|
189
|
+
}
|
190
|
+
|
191
|
+
/**
|
192
|
+
* Address inconsistent and variable font size in all browsers.
|
193
|
+
*/
|
194
|
+
/* line 195, ../sass/_normalize.scss */
|
195
|
+
small {
|
196
|
+
font-size: 80%;
|
197
|
+
}
|
198
|
+
|
199
|
+
/**
|
200
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
201
|
+
*/
|
202
|
+
/* line 204, ../sass/_normalize.scss */
|
203
|
+
sub,
|
204
|
+
sup {
|
205
|
+
font-size: 75%;
|
206
|
+
line-height: 0;
|
207
|
+
position: relative;
|
208
|
+
vertical-align: baseline;
|
209
|
+
}
|
210
|
+
|
211
|
+
/* line 211, ../sass/_normalize.scss */
|
212
|
+
sup {
|
213
|
+
top: -0.5em;
|
214
|
+
}
|
215
|
+
|
216
|
+
/* line 215, ../sass/_normalize.scss */
|
217
|
+
sub {
|
218
|
+
bottom: -0.25em;
|
219
|
+
}
|
220
|
+
|
221
|
+
/* ==========================================================================
|
222
|
+
Embedded content
|
223
|
+
========================================================================== */
|
224
|
+
/**
|
225
|
+
* Remove border when inside `a` element in IE 8/9.
|
226
|
+
*/
|
227
|
+
/* line 227, ../sass/_normalize.scss */
|
228
|
+
img {
|
229
|
+
border: 0;
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
* Correct overflow displayed oddly in IE 9.
|
234
|
+
*/
|
235
|
+
/* line 235, ../sass/_normalize.scss */
|
236
|
+
svg:not(:root) {
|
237
|
+
overflow: hidden;
|
238
|
+
}
|
239
|
+
|
240
|
+
/* ==========================================================================
|
241
|
+
Figures
|
242
|
+
========================================================================== */
|
243
|
+
/**
|
244
|
+
* Address margin not present in IE 8/9 and Safari 5.
|
245
|
+
*/
|
246
|
+
/* line 247, ../sass/_normalize.scss */
|
247
|
+
figure {
|
248
|
+
margin: 0;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* ==========================================================================
|
252
|
+
Forms
|
253
|
+
========================================================================== */
|
254
|
+
/**
|
255
|
+
* Define consistent border, margin, and padding.
|
256
|
+
*/
|
257
|
+
/* line 259, ../sass/_normalize.scss */
|
258
|
+
fieldset {
|
259
|
+
border: 1px solid #c0c0c0;
|
260
|
+
margin: 0 2px;
|
261
|
+
padding: 0.35em 0.625em 0.75em;
|
262
|
+
}
|
263
|
+
|
264
|
+
/**
|
265
|
+
* 1. Correct `color` not being inherited in IE 8/9.
|
266
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
267
|
+
*/
|
268
|
+
/* line 270, ../sass/_normalize.scss */
|
269
|
+
legend {
|
270
|
+
border: 0;
|
271
|
+
/* 1 */
|
272
|
+
padding: 0;
|
273
|
+
/* 2 */
|
274
|
+
}
|
275
|
+
|
276
|
+
/**
|
277
|
+
* 1. Correct font family not being inherited in all browsers.
|
278
|
+
* 2. Correct font size not being inherited in all browsers.
|
279
|
+
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
280
|
+
*/
|
281
|
+
/* line 284, ../sass/_normalize.scss */
|
282
|
+
button,
|
283
|
+
input,
|
284
|
+
select,
|
285
|
+
textarea {
|
286
|
+
font-family: inherit;
|
287
|
+
/* 1 */
|
288
|
+
font-size: 100%;
|
289
|
+
/* 2 */
|
290
|
+
margin: 0;
|
291
|
+
/* 3 */
|
292
|
+
}
|
293
|
+
|
294
|
+
/**
|
295
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
296
|
+
* the UA stylesheet.
|
297
|
+
*/
|
298
|
+
/* line 296, ../sass/_normalize.scss */
|
299
|
+
button,
|
300
|
+
input {
|
301
|
+
line-height: normal;
|
302
|
+
}
|
303
|
+
|
304
|
+
/**
|
305
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
306
|
+
* All other form control elements do not inherit `text-transform` values.
|
307
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
|
308
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
309
|
+
*/
|
310
|
+
/* line 308, ../sass/_normalize.scss */
|
311
|
+
button,
|
312
|
+
select {
|
313
|
+
text-transform: none;
|
314
|
+
}
|
315
|
+
|
316
|
+
/**
|
317
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
318
|
+
* and `video` controls.
|
319
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
320
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
321
|
+
* `input` and others.
|
322
|
+
*/
|
323
|
+
/* line 323, ../sass/_normalize.scss */
|
324
|
+
button,
|
325
|
+
html input[type="button"],
|
326
|
+
input[type="reset"],
|
327
|
+
input[type="submit"] {
|
328
|
+
-webkit-appearance: button;
|
329
|
+
/* 2 */
|
330
|
+
cursor: pointer;
|
331
|
+
/* 3 */
|
332
|
+
}
|
333
|
+
|
334
|
+
/**
|
335
|
+
* Re-set default cursor for disabled elements.
|
336
|
+
*/
|
337
|
+
/* line 333, ../sass/_normalize.scss */
|
338
|
+
button[disabled],
|
339
|
+
html input[disabled] {
|
340
|
+
cursor: default;
|
341
|
+
}
|
342
|
+
|
343
|
+
/**
|
344
|
+
* 1. Address box sizing set to `content-box` in IE 8/9.
|
345
|
+
* 2. Remove excess padding in IE 8/9.
|
346
|
+
*/
|
347
|
+
/* line 343, ../sass/_normalize.scss */
|
348
|
+
input[type="checkbox"],
|
349
|
+
input[type="radio"] {
|
350
|
+
box-sizing: border-box;
|
351
|
+
/* 1 */
|
352
|
+
padding: 0;
|
353
|
+
/* 2 */
|
354
|
+
}
|
355
|
+
|
356
|
+
/**
|
357
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
358
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
359
|
+
* (include `-moz` to future-proof).
|
360
|
+
*/
|
361
|
+
/* line 354, ../sass/_normalize.scss */
|
362
|
+
input[type="search"] {
|
363
|
+
-webkit-appearance: textfield;
|
364
|
+
/* 1 */
|
365
|
+
-moz-box-sizing: content-box;
|
366
|
+
-webkit-box-sizing: content-box;
|
367
|
+
/* 2 */
|
368
|
+
box-sizing: content-box;
|
369
|
+
}
|
370
|
+
|
371
|
+
/**
|
372
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
373
|
+
* on OS X.
|
374
|
+
*/
|
375
|
+
/* line 367, ../sass/_normalize.scss */
|
376
|
+
input[type="search"]::-webkit-search-cancel-button,
|
377
|
+
input[type="search"]::-webkit-search-decoration {
|
378
|
+
-webkit-appearance: none;
|
379
|
+
}
|
380
|
+
|
381
|
+
/**
|
382
|
+
* Remove inner padding and border in Firefox 4+.
|
383
|
+
*/
|
384
|
+
/* line 376, ../sass/_normalize.scss */
|
385
|
+
button::-moz-focus-inner,
|
386
|
+
input::-moz-focus-inner {
|
387
|
+
border: 0;
|
388
|
+
padding: 0;
|
389
|
+
}
|
390
|
+
|
391
|
+
/**
|
392
|
+
* 1. Remove default vertical scrollbar in IE 8/9.
|
393
|
+
* 2. Improve readability and alignment in all browsers.
|
394
|
+
*/
|
395
|
+
/* line 386, ../sass/_normalize.scss */
|
396
|
+
textarea {
|
397
|
+
overflow: auto;
|
398
|
+
/* 1 */
|
399
|
+
vertical-align: top;
|
400
|
+
/* 2 */
|
401
|
+
}
|
402
|
+
|
403
|
+
/* ==========================================================================
|
404
|
+
Tables
|
405
|
+
========================================================================== */
|
406
|
+
/**
|
407
|
+
* Remove most spacing between table cells.
|
408
|
+
*/
|
409
|
+
/* line 399, ../sass/_normalize.scss */
|
410
|
+
table {
|
411
|
+
border-collapse: collapse;
|
412
|
+
border-spacing: 0;
|
413
|
+
}
|
414
|
+
|
415
|
+
/* line 264, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
416
|
+
*,
|
417
|
+
*:before,
|
418
|
+
*:after {
|
419
|
+
-moz-box-sizing: border-box;
|
420
|
+
-webkit-box-sizing: border-box;
|
421
|
+
box-sizing: border-box;
|
422
|
+
}
|
423
|
+
|
424
|
+
/* line 269, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
425
|
+
html,
|
426
|
+
body {
|
427
|
+
font-size: 16px;
|
428
|
+
}
|
429
|
+
|
430
|
+
/* line 272, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
431
|
+
body {
|
432
|
+
background: white;
|
433
|
+
color: #222222;
|
434
|
+
padding: 0;
|
435
|
+
margin: 0;
|
436
|
+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
437
|
+
font-weight: normal;
|
438
|
+
font-style: normal;
|
439
|
+
line-height: 1;
|
440
|
+
position: relative;
|
441
|
+
cursor: default;
|
442
|
+
}
|
443
|
+
|
444
|
+
/* line 285, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
445
|
+
a:hover {
|
446
|
+
cursor: pointer;
|
447
|
+
}
|
448
|
+
|
449
|
+
/* line 288, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
450
|
+
a:focus {
|
451
|
+
outline: none;
|
452
|
+
}
|
453
|
+
|
454
|
+
/* line 293, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
455
|
+
img,
|
456
|
+
object,
|
457
|
+
embed {
|
458
|
+
max-width: 100%;
|
459
|
+
height: auto;
|
460
|
+
}
|
461
|
+
|
462
|
+
/* line 296, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
463
|
+
object,
|
464
|
+
embed {
|
465
|
+
height: 100%;
|
466
|
+
}
|
467
|
+
|
468
|
+
/* line 297, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
469
|
+
img {
|
470
|
+
-ms-interpolation-mode: bicubic;
|
471
|
+
}
|
472
|
+
|
473
|
+
/* line 303, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
474
|
+
#map_canvas img,
|
475
|
+
#map_canvas embed,
|
476
|
+
#map_canvas object,
|
477
|
+
.map_canvas img,
|
478
|
+
.map_canvas embed,
|
479
|
+
.map_canvas object {
|
480
|
+
max-width: none !important;
|
481
|
+
}
|
482
|
+
|
483
|
+
/* line 308, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
484
|
+
.left {
|
485
|
+
float: left !important;
|
486
|
+
}
|
487
|
+
|
488
|
+
/* line 309, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
489
|
+
.right {
|
490
|
+
float: right !important;
|
491
|
+
}
|
492
|
+
|
493
|
+
/* line 310, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
494
|
+
.text-left {
|
495
|
+
text-align: left !important;
|
496
|
+
}
|
497
|
+
|
498
|
+
/* line 311, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
499
|
+
.text-right {
|
500
|
+
text-align: right !important;
|
501
|
+
}
|
502
|
+
|
503
|
+
/* line 312, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
504
|
+
.text-center {
|
505
|
+
text-align: center !important;
|
506
|
+
}
|
507
|
+
|
508
|
+
/* line 313, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
509
|
+
.text-justify {
|
510
|
+
text-align: justify !important;
|
511
|
+
}
|
512
|
+
|
513
|
+
/* line 314, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
514
|
+
.hide {
|
515
|
+
display: none;
|
516
|
+
}
|
517
|
+
|
518
|
+
/* line 320, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
519
|
+
.antialiased {
|
520
|
+
-webkit-font-smoothing: antialiased;
|
521
|
+
}
|
522
|
+
|
523
|
+
/* line 323, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
524
|
+
img {
|
525
|
+
display: inline-block;
|
526
|
+
vertical-align: middle;
|
527
|
+
}
|
528
|
+
|
529
|
+
/* line 333, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
530
|
+
textarea {
|
531
|
+
height: auto;
|
532
|
+
min-height: 50px;
|
533
|
+
}
|
534
|
+
|
535
|
+
/* line 336, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
536
|
+
select {
|
537
|
+
width: 100%;
|
538
|
+
}
|
539
|
+
|
540
|
+
/* Grid HTML Classes */
|
541
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
542
|
+
.row {
|
543
|
+
width: 100%;
|
544
|
+
margin-left: auto;
|
545
|
+
margin-right: auto;
|
546
|
+
margin-top: 0;
|
547
|
+
margin-bottom: 0;
|
548
|
+
max-width: 62.5em;
|
549
|
+
*zoom: 1;
|
550
|
+
}
|
551
|
+
/* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
552
|
+
.row:before, .row:after {
|
553
|
+
content: " ";
|
554
|
+
display: table;
|
555
|
+
}
|
556
|
+
/* line 122, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
557
|
+
.row:after {
|
558
|
+
clear: both;
|
559
|
+
}
|
560
|
+
/* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
561
|
+
.row.collapse .column,
|
562
|
+
.row.collapse .columns {
|
563
|
+
position: relative;
|
564
|
+
padding-left: 0;
|
565
|
+
padding-right: 0;
|
566
|
+
float: left;
|
567
|
+
}
|
568
|
+
/* line 124, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
569
|
+
.row .row {
|
570
|
+
width: auto;
|
571
|
+
margin-left: -0.9375em;
|
572
|
+
margin-right: -0.9375em;
|
573
|
+
margin-top: 0;
|
574
|
+
margin-bottom: 0;
|
575
|
+
max-width: none;
|
576
|
+
*zoom: 1;
|
577
|
+
}
|
578
|
+
/* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
579
|
+
.row .row:before, .row .row:after {
|
580
|
+
content: " ";
|
581
|
+
display: table;
|
582
|
+
}
|
583
|
+
/* line 122, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
584
|
+
.row .row:after {
|
585
|
+
clear: both;
|
586
|
+
}
|
587
|
+
/* line 125, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
588
|
+
.row .row.collapse {
|
589
|
+
width: auto;
|
590
|
+
margin: 0;
|
591
|
+
max-width: none;
|
592
|
+
*zoom: 1;
|
593
|
+
}
|
594
|
+
/* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
595
|
+
.row .row.collapse:before, .row .row.collapse:after {
|
596
|
+
content: " ";
|
597
|
+
display: table;
|
598
|
+
}
|
599
|
+
/* line 122, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
600
|
+
.row .row.collapse:after {
|
601
|
+
clear: both;
|
602
|
+
}
|
603
|
+
|
604
|
+
/* line 130, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
605
|
+
.column,
|
606
|
+
.columns {
|
607
|
+
position: relative;
|
608
|
+
padding-left: 0.9375em;
|
609
|
+
padding-right: 0.9375em;
|
610
|
+
width: 100%;
|
611
|
+
float: left;
|
612
|
+
}
|
613
|
+
|
614
|
+
@media only screen {
|
615
|
+
/* line 135, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
616
|
+
.column,
|
617
|
+
.columns {
|
618
|
+
position: relative;
|
619
|
+
padding-left: 0.9375em;
|
620
|
+
padding-right: 0.9375em;
|
621
|
+
float: left;
|
622
|
+
}
|
623
|
+
|
624
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
625
|
+
.small-1 {
|
626
|
+
position: relative;
|
627
|
+
width: 8.33333%;
|
628
|
+
}
|
629
|
+
|
630
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
631
|
+
.small-2 {
|
632
|
+
position: relative;
|
633
|
+
width: 16.66667%;
|
634
|
+
}
|
635
|
+
|
636
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
637
|
+
.small-3 {
|
638
|
+
position: relative;
|
639
|
+
width: 25%;
|
640
|
+
}
|
641
|
+
|
642
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
643
|
+
.small-4 {
|
644
|
+
position: relative;
|
645
|
+
width: 33.33333%;
|
646
|
+
}
|
647
|
+
|
648
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
649
|
+
.small-5 {
|
650
|
+
position: relative;
|
651
|
+
width: 41.66667%;
|
652
|
+
}
|
653
|
+
|
654
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
655
|
+
.small-6 {
|
656
|
+
position: relative;
|
657
|
+
width: 50%;
|
658
|
+
}
|
659
|
+
|
660
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
661
|
+
.small-7 {
|
662
|
+
position: relative;
|
663
|
+
width: 58.33333%;
|
664
|
+
}
|
665
|
+
|
666
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
667
|
+
.small-8 {
|
668
|
+
position: relative;
|
669
|
+
width: 66.66667%;
|
670
|
+
}
|
671
|
+
|
672
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
673
|
+
.small-9 {
|
674
|
+
position: relative;
|
675
|
+
width: 75%;
|
676
|
+
}
|
677
|
+
|
678
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
679
|
+
.small-10 {
|
680
|
+
position: relative;
|
681
|
+
width: 83.33333%;
|
682
|
+
}
|
683
|
+
|
684
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
685
|
+
.small-11 {
|
686
|
+
position: relative;
|
687
|
+
width: 91.66667%;
|
688
|
+
}
|
689
|
+
|
690
|
+
/* line 138, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
691
|
+
.small-12 {
|
692
|
+
position: relative;
|
693
|
+
width: 100%;
|
694
|
+
}
|
695
|
+
|
696
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
697
|
+
.small-offset-0 {
|
698
|
+
position: relative;
|
699
|
+
margin-left: 0%;
|
700
|
+
}
|
701
|
+
|
702
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
703
|
+
.small-offset-1 {
|
704
|
+
position: relative;
|
705
|
+
margin-left: 8.33333%;
|
706
|
+
}
|
707
|
+
|
708
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
709
|
+
.small-offset-2 {
|
710
|
+
position: relative;
|
711
|
+
margin-left: 16.66667%;
|
712
|
+
}
|
713
|
+
|
714
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
715
|
+
.small-offset-3 {
|
716
|
+
position: relative;
|
717
|
+
margin-left: 25%;
|
718
|
+
}
|
719
|
+
|
720
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
721
|
+
.small-offset-4 {
|
722
|
+
position: relative;
|
723
|
+
margin-left: 33.33333%;
|
724
|
+
}
|
725
|
+
|
726
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
727
|
+
.small-offset-5 {
|
728
|
+
position: relative;
|
729
|
+
margin-left: 41.66667%;
|
730
|
+
}
|
731
|
+
|
732
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
733
|
+
.small-offset-6 {
|
734
|
+
position: relative;
|
735
|
+
margin-left: 50%;
|
736
|
+
}
|
737
|
+
|
738
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
739
|
+
.small-offset-7 {
|
740
|
+
position: relative;
|
741
|
+
margin-left: 58.33333%;
|
742
|
+
}
|
743
|
+
|
744
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
745
|
+
.small-offset-8 {
|
746
|
+
position: relative;
|
747
|
+
margin-left: 66.66667%;
|
748
|
+
}
|
749
|
+
|
750
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
751
|
+
.small-offset-9 {
|
752
|
+
position: relative;
|
753
|
+
margin-left: 75%;
|
754
|
+
}
|
755
|
+
|
756
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
757
|
+
.small-offset-10 {
|
758
|
+
position: relative;
|
759
|
+
margin-left: 83.33333%;
|
760
|
+
}
|
761
|
+
|
762
|
+
/* line 145, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
763
|
+
[class*="column"] + [class*="column"]:last-child {
|
764
|
+
float: right;
|
765
|
+
}
|
766
|
+
|
767
|
+
/* line 146, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
768
|
+
[class*="column"] + [class*="column"].end {
|
769
|
+
float: left;
|
770
|
+
}
|
771
|
+
|
772
|
+
/* line 149, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
773
|
+
.column.small-centered,
|
774
|
+
.columns.small-centered {
|
775
|
+
position: relative;
|
776
|
+
margin-left: auto;
|
777
|
+
margin-right: auto;
|
778
|
+
float: none !important;
|
779
|
+
}
|
780
|
+
}
|
781
|
+
/* Styles for screens that are atleast 768px; */
|
782
|
+
@media only screen and (min-width: 768px) {
|
783
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
784
|
+
.large-1 {
|
785
|
+
position: relative;
|
786
|
+
width: 8.33333%;
|
787
|
+
}
|
788
|
+
|
789
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
790
|
+
.large-2 {
|
791
|
+
position: relative;
|
792
|
+
width: 16.66667%;
|
793
|
+
}
|
794
|
+
|
795
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
796
|
+
.large-3 {
|
797
|
+
position: relative;
|
798
|
+
width: 25%;
|
799
|
+
}
|
800
|
+
|
801
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
802
|
+
.large-4 {
|
803
|
+
position: relative;
|
804
|
+
width: 33.33333%;
|
805
|
+
}
|
806
|
+
|
807
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
808
|
+
.large-5 {
|
809
|
+
position: relative;
|
810
|
+
width: 41.66667%;
|
811
|
+
}
|
812
|
+
|
813
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
814
|
+
.large-6 {
|
815
|
+
position: relative;
|
816
|
+
width: 50%;
|
817
|
+
}
|
818
|
+
|
819
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
820
|
+
.large-7 {
|
821
|
+
position: relative;
|
822
|
+
width: 58.33333%;
|
823
|
+
}
|
824
|
+
|
825
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
826
|
+
.large-8 {
|
827
|
+
position: relative;
|
828
|
+
width: 66.66667%;
|
829
|
+
}
|
830
|
+
|
831
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
832
|
+
.large-9 {
|
833
|
+
position: relative;
|
834
|
+
width: 75%;
|
835
|
+
}
|
836
|
+
|
837
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
838
|
+
.large-10 {
|
839
|
+
position: relative;
|
840
|
+
width: 83.33333%;
|
841
|
+
}
|
842
|
+
|
843
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
844
|
+
.large-11 {
|
845
|
+
position: relative;
|
846
|
+
width: 91.66667%;
|
847
|
+
}
|
848
|
+
|
849
|
+
/* line 156, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
850
|
+
.large-12 {
|
851
|
+
position: relative;
|
852
|
+
width: 100%;
|
853
|
+
}
|
854
|
+
|
855
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
856
|
+
.row .large-offset-0 {
|
857
|
+
position: relative;
|
858
|
+
margin-left: 0%;
|
859
|
+
}
|
860
|
+
|
861
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
862
|
+
.row .large-offset-1 {
|
863
|
+
position: relative;
|
864
|
+
margin-left: 8.33333%;
|
865
|
+
}
|
866
|
+
|
867
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
868
|
+
.row .large-offset-2 {
|
869
|
+
position: relative;
|
870
|
+
margin-left: 16.66667%;
|
871
|
+
}
|
872
|
+
|
873
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
874
|
+
.row .large-offset-3 {
|
875
|
+
position: relative;
|
876
|
+
margin-left: 25%;
|
877
|
+
}
|
878
|
+
|
879
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
880
|
+
.row .large-offset-4 {
|
881
|
+
position: relative;
|
882
|
+
margin-left: 33.33333%;
|
883
|
+
}
|
884
|
+
|
885
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
886
|
+
.row .large-offset-5 {
|
887
|
+
position: relative;
|
888
|
+
margin-left: 41.66667%;
|
889
|
+
}
|
890
|
+
|
891
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
892
|
+
.row .large-offset-6 {
|
893
|
+
position: relative;
|
894
|
+
margin-left: 50%;
|
895
|
+
}
|
896
|
+
|
897
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
898
|
+
.row .large-offset-7 {
|
899
|
+
position: relative;
|
900
|
+
margin-left: 58.33333%;
|
901
|
+
}
|
902
|
+
|
903
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
904
|
+
.row .large-offset-8 {
|
905
|
+
position: relative;
|
906
|
+
margin-left: 66.66667%;
|
907
|
+
}
|
908
|
+
|
909
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
910
|
+
.row .large-offset-9 {
|
911
|
+
position: relative;
|
912
|
+
margin-left: 75%;
|
913
|
+
}
|
914
|
+
|
915
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
916
|
+
.row .large-offset-10 {
|
917
|
+
position: relative;
|
918
|
+
margin-left: 83.33333%;
|
919
|
+
}
|
920
|
+
|
921
|
+
/* line 160, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
922
|
+
.row .large-offset-11 {
|
923
|
+
position: relative;
|
924
|
+
margin-left: 91.66667%;
|
925
|
+
}
|
926
|
+
|
927
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
928
|
+
.push-1 {
|
929
|
+
position: relative;
|
930
|
+
left: 8.33333%;
|
931
|
+
right: auto;
|
932
|
+
}
|
933
|
+
|
934
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
935
|
+
.pull-1 {
|
936
|
+
position: relative;
|
937
|
+
right: 8.33333%;
|
938
|
+
left: auto;
|
939
|
+
}
|
940
|
+
|
941
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
942
|
+
.push-2 {
|
943
|
+
position: relative;
|
944
|
+
left: 16.66667%;
|
945
|
+
right: auto;
|
946
|
+
}
|
947
|
+
|
948
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
949
|
+
.pull-2 {
|
950
|
+
position: relative;
|
951
|
+
right: 16.66667%;
|
952
|
+
left: auto;
|
953
|
+
}
|
954
|
+
|
955
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
956
|
+
.push-3 {
|
957
|
+
position: relative;
|
958
|
+
left: 25%;
|
959
|
+
right: auto;
|
960
|
+
}
|
961
|
+
|
962
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
963
|
+
.pull-3 {
|
964
|
+
position: relative;
|
965
|
+
right: 25%;
|
966
|
+
left: auto;
|
967
|
+
}
|
968
|
+
|
969
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
970
|
+
.push-4 {
|
971
|
+
position: relative;
|
972
|
+
left: 33.33333%;
|
973
|
+
right: auto;
|
974
|
+
}
|
975
|
+
|
976
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
977
|
+
.pull-4 {
|
978
|
+
position: relative;
|
979
|
+
right: 33.33333%;
|
980
|
+
left: auto;
|
981
|
+
}
|
982
|
+
|
983
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
984
|
+
.push-5 {
|
985
|
+
position: relative;
|
986
|
+
left: 41.66667%;
|
987
|
+
right: auto;
|
988
|
+
}
|
989
|
+
|
990
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
991
|
+
.pull-5 {
|
992
|
+
position: relative;
|
993
|
+
right: 41.66667%;
|
994
|
+
left: auto;
|
995
|
+
}
|
996
|
+
|
997
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
998
|
+
.push-6 {
|
999
|
+
position: relative;
|
1000
|
+
left: 50%;
|
1001
|
+
right: auto;
|
1002
|
+
}
|
1003
|
+
|
1004
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1005
|
+
.pull-6 {
|
1006
|
+
position: relative;
|
1007
|
+
right: 50%;
|
1008
|
+
left: auto;
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1012
|
+
.push-7 {
|
1013
|
+
position: relative;
|
1014
|
+
left: 58.33333%;
|
1015
|
+
right: auto;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1019
|
+
.pull-7 {
|
1020
|
+
position: relative;
|
1021
|
+
right: 58.33333%;
|
1022
|
+
left: auto;
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1026
|
+
.push-8 {
|
1027
|
+
position: relative;
|
1028
|
+
left: 66.66667%;
|
1029
|
+
right: auto;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1033
|
+
.pull-8 {
|
1034
|
+
position: relative;
|
1035
|
+
right: 66.66667%;
|
1036
|
+
left: auto;
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1040
|
+
.push-9 {
|
1041
|
+
position: relative;
|
1042
|
+
left: 75%;
|
1043
|
+
right: auto;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1047
|
+
.pull-9 {
|
1048
|
+
position: relative;
|
1049
|
+
right: 75%;
|
1050
|
+
left: auto;
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1054
|
+
.push-10 {
|
1055
|
+
position: relative;
|
1056
|
+
left: 83.33333%;
|
1057
|
+
right: auto;
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1061
|
+
.pull-10 {
|
1062
|
+
position: relative;
|
1063
|
+
right: 83.33333%;
|
1064
|
+
left: auto;
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
/* line 164, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1068
|
+
.push-11 {
|
1069
|
+
position: relative;
|
1070
|
+
left: 91.66667%;
|
1071
|
+
right: auto;
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1075
|
+
.pull-11 {
|
1076
|
+
position: relative;
|
1077
|
+
right: 91.66667%;
|
1078
|
+
left: auto;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/* line 169, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1082
|
+
.column.large-centered,
|
1083
|
+
.columns.large-centered {
|
1084
|
+
position: relative;
|
1085
|
+
margin-left: auto;
|
1086
|
+
margin-right: auto;
|
1087
|
+
float: none !important;
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
/* line 172, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1091
|
+
.column.large-uncentered,
|
1092
|
+
.columns.large-uncentered {
|
1093
|
+
margin-left: 0;
|
1094
|
+
margin-right: 0;
|
1095
|
+
float: left !important;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
/* line 179, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_grid.scss */
|
1099
|
+
.column.large-uncentered.opposite,
|
1100
|
+
.columns.large-uncentered.opposite {
|
1101
|
+
float: right !important;
|
1102
|
+
}
|
1103
|
+
}
|
1104
|
+
/* Foundation Block Grids for below small breakpoint */
|
1105
|
+
@media only screen {
|
1106
|
+
/* line 50, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1107
|
+
[class*="block-grid-"] {
|
1108
|
+
display: block;
|
1109
|
+
padding: 0;
|
1110
|
+
margin: 0 -0.625em;
|
1111
|
+
*zoom: 1;
|
1112
|
+
}
|
1113
|
+
/* line 121, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
1114
|
+
[class*="block-grid-"]:before, [class*="block-grid-"]:after {
|
1115
|
+
content: " ";
|
1116
|
+
display: table;
|
1117
|
+
}
|
1118
|
+
/* line 122, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_global.scss */
|
1119
|
+
[class*="block-grid-"]:after {
|
1120
|
+
clear: both;
|
1121
|
+
}
|
1122
|
+
/* line 27, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1123
|
+
[class*="block-grid-"] > li {
|
1124
|
+
display: inline;
|
1125
|
+
height: auto;
|
1126
|
+
float: left;
|
1127
|
+
padding: 0 0.625em 1.25em;
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1131
|
+
.small-block-grid-1 > li {
|
1132
|
+
width: 100%;
|
1133
|
+
padding: 0 0.625em 1.25em;
|
1134
|
+
}
|
1135
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1136
|
+
.small-block-grid-1 > li:nth-of-type(n) {
|
1137
|
+
clear: none;
|
1138
|
+
}
|
1139
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1140
|
+
.small-block-grid-1 > li:nth-of-type(1n+1) {
|
1141
|
+
clear: both;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1145
|
+
.small-block-grid-2 > li {
|
1146
|
+
width: 50%;
|
1147
|
+
padding: 0 0.625em 1.25em;
|
1148
|
+
}
|
1149
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1150
|
+
.small-block-grid-2 > li:nth-of-type(n) {
|
1151
|
+
clear: none;
|
1152
|
+
}
|
1153
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1154
|
+
.small-block-grid-2 > li:nth-of-type(2n+1) {
|
1155
|
+
clear: both;
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1159
|
+
.small-block-grid-3 > li {
|
1160
|
+
width: 33.33333%;
|
1161
|
+
padding: 0 0.625em 1.25em;
|
1162
|
+
}
|
1163
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1164
|
+
.small-block-grid-3 > li:nth-of-type(n) {
|
1165
|
+
clear: none;
|
1166
|
+
}
|
1167
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1168
|
+
.small-block-grid-3 > li:nth-of-type(3n+1) {
|
1169
|
+
clear: both;
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1173
|
+
.small-block-grid-4 > li {
|
1174
|
+
width: 25%;
|
1175
|
+
padding: 0 0.625em 1.25em;
|
1176
|
+
}
|
1177
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1178
|
+
.small-block-grid-4 > li:nth-of-type(n) {
|
1179
|
+
clear: none;
|
1180
|
+
}
|
1181
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1182
|
+
.small-block-grid-4 > li:nth-of-type(4n+1) {
|
1183
|
+
clear: both;
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1187
|
+
.small-block-grid-5 > li {
|
1188
|
+
width: 20%;
|
1189
|
+
padding: 0 0.625em 1.25em;
|
1190
|
+
}
|
1191
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1192
|
+
.small-block-grid-5 > li:nth-of-type(n) {
|
1193
|
+
clear: none;
|
1194
|
+
}
|
1195
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1196
|
+
.small-block-grid-5 > li:nth-of-type(5n+1) {
|
1197
|
+
clear: both;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1201
|
+
.small-block-grid-6 > li {
|
1202
|
+
width: 16.66667%;
|
1203
|
+
padding: 0 0.625em 1.25em;
|
1204
|
+
}
|
1205
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1206
|
+
.small-block-grid-6 > li:nth-of-type(n) {
|
1207
|
+
clear: none;
|
1208
|
+
}
|
1209
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1210
|
+
.small-block-grid-6 > li:nth-of-type(6n+1) {
|
1211
|
+
clear: both;
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1215
|
+
.small-block-grid-7 > li {
|
1216
|
+
width: 14.28571%;
|
1217
|
+
padding: 0 0.625em 1.25em;
|
1218
|
+
}
|
1219
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1220
|
+
.small-block-grid-7 > li:nth-of-type(n) {
|
1221
|
+
clear: none;
|
1222
|
+
}
|
1223
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1224
|
+
.small-block-grid-7 > li:nth-of-type(7n+1) {
|
1225
|
+
clear: both;
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1229
|
+
.small-block-grid-8 > li {
|
1230
|
+
width: 12.5%;
|
1231
|
+
padding: 0 0.625em 1.25em;
|
1232
|
+
}
|
1233
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1234
|
+
.small-block-grid-8 > li:nth-of-type(n) {
|
1235
|
+
clear: none;
|
1236
|
+
}
|
1237
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1238
|
+
.small-block-grid-8 > li:nth-of-type(8n+1) {
|
1239
|
+
clear: both;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1243
|
+
.small-block-grid-9 > li {
|
1244
|
+
width: 11.11111%;
|
1245
|
+
padding: 0 0.625em 1.25em;
|
1246
|
+
}
|
1247
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1248
|
+
.small-block-grid-9 > li:nth-of-type(n) {
|
1249
|
+
clear: none;
|
1250
|
+
}
|
1251
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1252
|
+
.small-block-grid-9 > li:nth-of-type(9n+1) {
|
1253
|
+
clear: both;
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1257
|
+
.small-block-grid-10 > li {
|
1258
|
+
width: 10%;
|
1259
|
+
padding: 0 0.625em 1.25em;
|
1260
|
+
}
|
1261
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1262
|
+
.small-block-grid-10 > li:nth-of-type(n) {
|
1263
|
+
clear: none;
|
1264
|
+
}
|
1265
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1266
|
+
.small-block-grid-10 > li:nth-of-type(10n+1) {
|
1267
|
+
clear: both;
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1271
|
+
.small-block-grid-11 > li {
|
1272
|
+
width: 9.09091%;
|
1273
|
+
padding: 0 0.625em 1.25em;
|
1274
|
+
}
|
1275
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1276
|
+
.small-block-grid-11 > li:nth-of-type(n) {
|
1277
|
+
clear: none;
|
1278
|
+
}
|
1279
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1280
|
+
.small-block-grid-11 > li:nth-of-type(11n+1) {
|
1281
|
+
clear: both;
|
1282
|
+
}
|
1283
|
+
|
1284
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1285
|
+
.small-block-grid-12 > li {
|
1286
|
+
width: 8.33333%;
|
1287
|
+
padding: 0 0.625em 1.25em;
|
1288
|
+
}
|
1289
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1290
|
+
.small-block-grid-12 > li:nth-of-type(n) {
|
1291
|
+
clear: none;
|
1292
|
+
}
|
1293
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1294
|
+
.small-block-grid-12 > li:nth-of-type(12n+1) {
|
1295
|
+
clear: both;
|
1296
|
+
}
|
1297
|
+
}
|
1298
|
+
/* Foundation Block Grids for above small breakpoint */
|
1299
|
+
@media only screen and (min-width: 768px) {
|
1300
|
+
/* Remove small grid clearing */
|
1301
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1302
|
+
.small-block-grid-1 > li:nth-of-type(1n+1) {
|
1303
|
+
clear: none;
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1307
|
+
.small-block-grid-2 > li:nth-of-type(2n+1) {
|
1308
|
+
clear: none;
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1312
|
+
.small-block-grid-3 > li:nth-of-type(3n+1) {
|
1313
|
+
clear: none;
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1317
|
+
.small-block-grid-4 > li:nth-of-type(4n+1) {
|
1318
|
+
clear: none;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1322
|
+
.small-block-grid-5 > li:nth-of-type(5n+1) {
|
1323
|
+
clear: none;
|
1324
|
+
}
|
1325
|
+
|
1326
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1327
|
+
.small-block-grid-6 > li:nth-of-type(6n+1) {
|
1328
|
+
clear: none;
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1332
|
+
.small-block-grid-7 > li:nth-of-type(7n+1) {
|
1333
|
+
clear: none;
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1337
|
+
.small-block-grid-8 > li:nth-of-type(8n+1) {
|
1338
|
+
clear: none;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1342
|
+
.small-block-grid-9 > li:nth-of-type(9n+1) {
|
1343
|
+
clear: none;
|
1344
|
+
}
|
1345
|
+
|
1346
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1347
|
+
.small-block-grid-10 > li:nth-of-type(10n+1) {
|
1348
|
+
clear: none;
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1352
|
+
.small-block-grid-11 > li:nth-of-type(11n+1) {
|
1353
|
+
clear: none;
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
/* line 63, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1357
|
+
.small-block-grid-12 > li:nth-of-type(12n+1) {
|
1358
|
+
clear: none;
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1362
|
+
.large-block-grid-1 > li {
|
1363
|
+
width: 100%;
|
1364
|
+
padding: 0 0.625em 1.25em;
|
1365
|
+
}
|
1366
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1367
|
+
.large-block-grid-1 > li:nth-of-type(n) {
|
1368
|
+
clear: none;
|
1369
|
+
}
|
1370
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1371
|
+
.large-block-grid-1 > li:nth-of-type(1n+1) {
|
1372
|
+
clear: both;
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1376
|
+
.large-block-grid-2 > li {
|
1377
|
+
width: 50%;
|
1378
|
+
padding: 0 0.625em 1.25em;
|
1379
|
+
}
|
1380
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1381
|
+
.large-block-grid-2 > li:nth-of-type(n) {
|
1382
|
+
clear: none;
|
1383
|
+
}
|
1384
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1385
|
+
.large-block-grid-2 > li:nth-of-type(2n+1) {
|
1386
|
+
clear: both;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1390
|
+
.large-block-grid-3 > li {
|
1391
|
+
width: 33.33333%;
|
1392
|
+
padding: 0 0.625em 1.25em;
|
1393
|
+
}
|
1394
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1395
|
+
.large-block-grid-3 > li:nth-of-type(n) {
|
1396
|
+
clear: none;
|
1397
|
+
}
|
1398
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1399
|
+
.large-block-grid-3 > li:nth-of-type(3n+1) {
|
1400
|
+
clear: both;
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1404
|
+
.large-block-grid-4 > li {
|
1405
|
+
width: 25%;
|
1406
|
+
padding: 0 0.625em 1.25em;
|
1407
|
+
}
|
1408
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1409
|
+
.large-block-grid-4 > li:nth-of-type(n) {
|
1410
|
+
clear: none;
|
1411
|
+
}
|
1412
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1413
|
+
.large-block-grid-4 > li:nth-of-type(4n+1) {
|
1414
|
+
clear: both;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1418
|
+
.large-block-grid-5 > li {
|
1419
|
+
width: 20%;
|
1420
|
+
padding: 0 0.625em 1.25em;
|
1421
|
+
}
|
1422
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1423
|
+
.large-block-grid-5 > li:nth-of-type(n) {
|
1424
|
+
clear: none;
|
1425
|
+
}
|
1426
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1427
|
+
.large-block-grid-5 > li:nth-of-type(5n+1) {
|
1428
|
+
clear: both;
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1432
|
+
.large-block-grid-6 > li {
|
1433
|
+
width: 16.66667%;
|
1434
|
+
padding: 0 0.625em 1.25em;
|
1435
|
+
}
|
1436
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1437
|
+
.large-block-grid-6 > li:nth-of-type(n) {
|
1438
|
+
clear: none;
|
1439
|
+
}
|
1440
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1441
|
+
.large-block-grid-6 > li:nth-of-type(6n+1) {
|
1442
|
+
clear: both;
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1446
|
+
.large-block-grid-7 > li {
|
1447
|
+
width: 14.28571%;
|
1448
|
+
padding: 0 0.625em 1.25em;
|
1449
|
+
}
|
1450
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1451
|
+
.large-block-grid-7 > li:nth-of-type(n) {
|
1452
|
+
clear: none;
|
1453
|
+
}
|
1454
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1455
|
+
.large-block-grid-7 > li:nth-of-type(7n+1) {
|
1456
|
+
clear: both;
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1460
|
+
.large-block-grid-8 > li {
|
1461
|
+
width: 12.5%;
|
1462
|
+
padding: 0 0.625em 1.25em;
|
1463
|
+
}
|
1464
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1465
|
+
.large-block-grid-8 > li:nth-of-type(n) {
|
1466
|
+
clear: none;
|
1467
|
+
}
|
1468
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1469
|
+
.large-block-grid-8 > li:nth-of-type(8n+1) {
|
1470
|
+
clear: both;
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1474
|
+
.large-block-grid-9 > li {
|
1475
|
+
width: 11.11111%;
|
1476
|
+
padding: 0 0.625em 1.25em;
|
1477
|
+
}
|
1478
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1479
|
+
.large-block-grid-9 > li:nth-of-type(n) {
|
1480
|
+
clear: none;
|
1481
|
+
}
|
1482
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1483
|
+
.large-block-grid-9 > li:nth-of-type(9n+1) {
|
1484
|
+
clear: both;
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1488
|
+
.large-block-grid-10 > li {
|
1489
|
+
width: 10%;
|
1490
|
+
padding: 0 0.625em 1.25em;
|
1491
|
+
}
|
1492
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1493
|
+
.large-block-grid-10 > li:nth-of-type(n) {
|
1494
|
+
clear: none;
|
1495
|
+
}
|
1496
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1497
|
+
.large-block-grid-10 > li:nth-of-type(10n+1) {
|
1498
|
+
clear: both;
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1502
|
+
.large-block-grid-11 > li {
|
1503
|
+
width: 9.09091%;
|
1504
|
+
padding: 0 0.625em 1.25em;
|
1505
|
+
}
|
1506
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1507
|
+
.large-block-grid-11 > li:nth-of-type(n) {
|
1508
|
+
clear: none;
|
1509
|
+
}
|
1510
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1511
|
+
.large-block-grid-11 > li:nth-of-type(11n+1) {
|
1512
|
+
clear: both;
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1516
|
+
.large-block-grid-12 > li {
|
1517
|
+
width: 8.33333%;
|
1518
|
+
padding: 0 0.625em 1.25em;
|
1519
|
+
}
|
1520
|
+
/* line 40, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1521
|
+
.large-block-grid-12 > li:nth-of-type(n) {
|
1522
|
+
clear: none;
|
1523
|
+
}
|
1524
|
+
/* line 41, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_block-grid.scss */
|
1525
|
+
.large-block-grid-12 > li:nth-of-type(12n+1) {
|
1526
|
+
clear: both;
|
1527
|
+
}
|
1528
|
+
}
|
1529
|
+
/* line 110, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1530
|
+
p.lead {
|
1531
|
+
font-size: 1.21875em;
|
1532
|
+
line-height: 1.6;
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
/* line 115, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1536
|
+
.subheader {
|
1537
|
+
line-height: 1.4;
|
1538
|
+
color: #6f6f6f;
|
1539
|
+
font-weight: 300;
|
1540
|
+
margin-top: 0.2em;
|
1541
|
+
margin-bottom: 0.5em;
|
1542
|
+
}
|
1543
|
+
|
1544
|
+
/* Typography resets */
|
1545
|
+
/* line 144, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1546
|
+
div,
|
1547
|
+
dl,
|
1548
|
+
dt,
|
1549
|
+
dd,
|
1550
|
+
ul,
|
1551
|
+
ol,
|
1552
|
+
li,
|
1553
|
+
h1,
|
1554
|
+
h2,
|
1555
|
+
h3,
|
1556
|
+
h4,
|
1557
|
+
h5,
|
1558
|
+
h6,
|
1559
|
+
pre,
|
1560
|
+
form,
|
1561
|
+
p,
|
1562
|
+
blockquote,
|
1563
|
+
th,
|
1564
|
+
td {
|
1565
|
+
margin: 0;
|
1566
|
+
padding: 0;
|
1567
|
+
direction: ltr;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
/* Default Link Styles */
|
1571
|
+
/* line 151, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1572
|
+
a {
|
1573
|
+
color: #2712ad;
|
1574
|
+
text-decoration: none;
|
1575
|
+
line-height: inherit;
|
1576
|
+
}
|
1577
|
+
/* line 157, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1578
|
+
a:hover, a:focus {
|
1579
|
+
color: #221096;
|
1580
|
+
}
|
1581
|
+
/* line 159, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1582
|
+
a img {
|
1583
|
+
border: none;
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
/* Default paragraph styles */
|
1587
|
+
/* line 163, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1588
|
+
p {
|
1589
|
+
font-family: inherit;
|
1590
|
+
font-weight: normal;
|
1591
|
+
font-size: 1em;
|
1592
|
+
line-height: 1.6;
|
1593
|
+
margin-bottom: 1.25em;
|
1594
|
+
text-rendering: optimizeLegibility;
|
1595
|
+
}
|
1596
|
+
/* line 173, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1597
|
+
p aside {
|
1598
|
+
font-size: 0.875em;
|
1599
|
+
line-height: 1.35;
|
1600
|
+
font-style: italic;
|
1601
|
+
}
|
1602
|
+
|
1603
|
+
/* Default header styles */
|
1604
|
+
/* line 181, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1605
|
+
h1, h2, h3, h4, h5, h6 {
|
1606
|
+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
1607
|
+
font-weight: bold;
|
1608
|
+
font-style: normal;
|
1609
|
+
color: #222222;
|
1610
|
+
text-rendering: optimizeLegibility;
|
1611
|
+
margin-top: 0.2em;
|
1612
|
+
margin-bottom: 0.5em;
|
1613
|
+
line-height: 1.2125em;
|
1614
|
+
}
|
1615
|
+
/* line 191, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1616
|
+
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
1617
|
+
font-size: 60%;
|
1618
|
+
color: #6f6f6f;
|
1619
|
+
line-height: 0;
|
1620
|
+
}
|
1621
|
+
|
1622
|
+
/* line 198, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1623
|
+
h1 {
|
1624
|
+
font-size: 2.125em;
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
/* line 199, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1628
|
+
h2 {
|
1629
|
+
font-size: 1.6875em;
|
1630
|
+
}
|
1631
|
+
|
1632
|
+
/* line 200, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1633
|
+
h3 {
|
1634
|
+
font-size: 1.375em;
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
/* line 201, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1638
|
+
h4 {
|
1639
|
+
font-size: 1.125em;
|
1640
|
+
}
|
1641
|
+
|
1642
|
+
/* line 202, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1643
|
+
h5 {
|
1644
|
+
font-size: 1.125em;
|
1645
|
+
}
|
1646
|
+
|
1647
|
+
/* line 203, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1648
|
+
h6 {
|
1649
|
+
font-size: 1em;
|
1650
|
+
}
|
1651
|
+
|
1652
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1653
|
+
hr {
|
1654
|
+
border: solid #dddddd;
|
1655
|
+
border-width: 1px 0 0;
|
1656
|
+
clear: both;
|
1657
|
+
margin: 1.25em 0 1.1875em;
|
1658
|
+
height: 0;
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
/* Helpful Typography Defaults */
|
1662
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1663
|
+
em,
|
1664
|
+
i {
|
1665
|
+
font-style: italic;
|
1666
|
+
line-height: inherit;
|
1667
|
+
}
|
1668
|
+
|
1669
|
+
/* line 223, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1670
|
+
strong,
|
1671
|
+
b {
|
1672
|
+
font-weight: bold;
|
1673
|
+
line-height: inherit;
|
1674
|
+
}
|
1675
|
+
|
1676
|
+
/* line 228, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1677
|
+
small {
|
1678
|
+
font-size: 60%;
|
1679
|
+
line-height: inherit;
|
1680
|
+
}
|
1681
|
+
|
1682
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1683
|
+
code {
|
1684
|
+
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
1685
|
+
font-weight: bold;
|
1686
|
+
color: #b33500;
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
/* Lists */
|
1690
|
+
/* line 242, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1691
|
+
ul,
|
1692
|
+
ol,
|
1693
|
+
dl {
|
1694
|
+
font-size: 1em;
|
1695
|
+
line-height: 1.6;
|
1696
|
+
margin-bottom: 1.25em;
|
1697
|
+
list-style-position: outside;
|
1698
|
+
font-family: inherit;
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
/* line 250, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1702
|
+
ul, ol {
|
1703
|
+
margin-left: 0;
|
1704
|
+
}
|
1705
|
+
|
1706
|
+
/* Unordered Lists */
|
1707
|
+
/* line 258, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1708
|
+
ul li ul,
|
1709
|
+
ul li ol {
|
1710
|
+
margin-left: 1.25em;
|
1711
|
+
margin-bottom: 0;
|
1712
|
+
font-size: 1em;
|
1713
|
+
/* Override nested font-size change */
|
1714
|
+
}
|
1715
|
+
/* line 267, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1716
|
+
ul.square li ul, ul.circle li ul, ul.disc li ul {
|
1717
|
+
list-style: inherit;
|
1718
|
+
}
|
1719
|
+
/* line 270, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1720
|
+
ul.square {
|
1721
|
+
list-style-type: square;
|
1722
|
+
}
|
1723
|
+
/* line 271, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1724
|
+
ul.circle {
|
1725
|
+
list-style-type: circle;
|
1726
|
+
}
|
1727
|
+
/* line 272, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1728
|
+
ul.disc {
|
1729
|
+
list-style-type: disc;
|
1730
|
+
}
|
1731
|
+
/* line 273, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1732
|
+
ul.no-bullet {
|
1733
|
+
list-style: none;
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
/* Ordered Lists */
|
1737
|
+
/* line 280, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1738
|
+
ol li ul,
|
1739
|
+
ol li ol {
|
1740
|
+
margin-left: 1.25em;
|
1741
|
+
margin-bottom: 0;
|
1742
|
+
}
|
1743
|
+
|
1744
|
+
/* Definition Lists */
|
1745
|
+
/* line 289, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1746
|
+
dl dt {
|
1747
|
+
margin-bottom: 0.3em;
|
1748
|
+
font-weight: bold;
|
1749
|
+
}
|
1750
|
+
/* line 293, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1751
|
+
dl dd {
|
1752
|
+
margin-bottom: 0.75em;
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
/* Abbreviations */
|
1756
|
+
/* line 298, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1757
|
+
abbr,
|
1758
|
+
acronym {
|
1759
|
+
text-transform: uppercase;
|
1760
|
+
font-size: 90%;
|
1761
|
+
color: #222222;
|
1762
|
+
border-bottom: 1px dotted #dddddd;
|
1763
|
+
cursor: help;
|
1764
|
+
}
|
1765
|
+
|
1766
|
+
/* line 305, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1767
|
+
abbr {
|
1768
|
+
text-transform: none;
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
/* Blockquotes */
|
1772
|
+
/* line 310, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1773
|
+
blockquote {
|
1774
|
+
margin: 0 0 1.25em;
|
1775
|
+
padding: 0.5625em 1.25em 0 1.1875em;
|
1776
|
+
border-left: 1px solid #dddddd;
|
1777
|
+
}
|
1778
|
+
/* line 315, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1779
|
+
blockquote cite {
|
1780
|
+
display: block;
|
1781
|
+
font-size: 0.8125em;
|
1782
|
+
color: #555555;
|
1783
|
+
}
|
1784
|
+
/* line 319, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1785
|
+
blockquote cite:before {
|
1786
|
+
content: "\2014 \0020";
|
1787
|
+
}
|
1788
|
+
/* line 324, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1789
|
+
blockquote cite a,
|
1790
|
+
blockquote cite a:visited {
|
1791
|
+
color: #555555;
|
1792
|
+
}
|
1793
|
+
|
1794
|
+
/* line 330, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1795
|
+
blockquote,
|
1796
|
+
blockquote p {
|
1797
|
+
line-height: 1.6;
|
1798
|
+
color: #6f6f6f;
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
/* Microformats */
|
1802
|
+
/* line 336, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1803
|
+
.vcard {
|
1804
|
+
display: inline-block;
|
1805
|
+
margin: 0 0 1.25em 0;
|
1806
|
+
border: 1px solid #dddddd;
|
1807
|
+
padding: 0.625em 0.75em;
|
1808
|
+
}
|
1809
|
+
/* line 342, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1810
|
+
.vcard li {
|
1811
|
+
margin: 0;
|
1812
|
+
display: block;
|
1813
|
+
}
|
1814
|
+
/* line 346, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1815
|
+
.vcard .fn {
|
1816
|
+
font-weight: bold;
|
1817
|
+
font-size: 0.9375em;
|
1818
|
+
}
|
1819
|
+
|
1820
|
+
/* line 353, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1821
|
+
.vevent .summary {
|
1822
|
+
font-weight: bold;
|
1823
|
+
}
|
1824
|
+
/* line 355, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1825
|
+
.vevent abbr {
|
1826
|
+
cursor: default;
|
1827
|
+
text-decoration: none;
|
1828
|
+
font-weight: bold;
|
1829
|
+
border: none;
|
1830
|
+
padding: 0 0.0625em;
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
@media only screen and (min-width: 768px) {
|
1834
|
+
/* line 366, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1835
|
+
h1, h2, h3, h4, h5, h6 {
|
1836
|
+
line-height: 1.4;
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
/* line 367, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1840
|
+
h1 {
|
1841
|
+
font-size: 2.75em;
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
/* line 368, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1845
|
+
h2 {
|
1846
|
+
font-size: 2.3125em;
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
/* line 369, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1850
|
+
h3 {
|
1851
|
+
font-size: 1.6875em;
|
1852
|
+
}
|
1853
|
+
|
1854
|
+
/* line 370, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1855
|
+
h4 {
|
1856
|
+
font-size: 1.4375em;
|
1857
|
+
}
|
1858
|
+
}
|
1859
|
+
/*
|
1860
|
+
* Print styles.
|
1861
|
+
*
|
1862
|
+
* Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
|
1863
|
+
* Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
|
1864
|
+
*/
|
1865
|
+
/* line 381, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1866
|
+
.print-only {
|
1867
|
+
display: none !important;
|
1868
|
+
}
|
1869
|
+
|
1870
|
+
@media print {
|
1871
|
+
/* line 383, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1872
|
+
* {
|
1873
|
+
background: transparent !important;
|
1874
|
+
color: #000 !important;
|
1875
|
+
/* Black prints faster: h5bp.com/s */
|
1876
|
+
box-shadow: none !important;
|
1877
|
+
text-shadow: none !important;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
/* line 391, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1881
|
+
a,
|
1882
|
+
a:visited {
|
1883
|
+
text-decoration: underline;
|
1884
|
+
}
|
1885
|
+
|
1886
|
+
/* line 392, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1887
|
+
a[href]:after {
|
1888
|
+
content: " (" attr(href) ")";
|
1889
|
+
}
|
1890
|
+
|
1891
|
+
/* line 394, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1892
|
+
abbr[title]:after {
|
1893
|
+
content: " (" attr(title) ")";
|
1894
|
+
}
|
1895
|
+
|
1896
|
+
/* line 399, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1897
|
+
.ir a:after,
|
1898
|
+
a[href^="javascript:"]:after,
|
1899
|
+
a[href^="#"]:after {
|
1900
|
+
content: "";
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
/* line 402, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1904
|
+
pre,
|
1905
|
+
blockquote {
|
1906
|
+
border: 1px solid #999;
|
1907
|
+
page-break-inside: avoid;
|
1908
|
+
}
|
1909
|
+
|
1910
|
+
/* line 407, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1911
|
+
thead {
|
1912
|
+
display: table-header-group;
|
1913
|
+
/* h5bp.com/t */
|
1914
|
+
}
|
1915
|
+
|
1916
|
+
/* line 410, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1917
|
+
tr,
|
1918
|
+
img {
|
1919
|
+
page-break-inside: avoid;
|
1920
|
+
}
|
1921
|
+
|
1922
|
+
/* line 412, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1923
|
+
img {
|
1924
|
+
max-width: 100% !important;
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
@page {
|
1928
|
+
margin: 0.5cm;
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
/* line 418, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1932
|
+
p,
|
1933
|
+
h2,
|
1934
|
+
h3 {
|
1935
|
+
orphans: 3;
|
1936
|
+
widows: 3;
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
/* line 424, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1940
|
+
h2,
|
1941
|
+
h3 {
|
1942
|
+
page-break-after: avoid;
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
/* line 426, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1946
|
+
.hide-on-print {
|
1947
|
+
display: none !important;
|
1948
|
+
}
|
1949
|
+
|
1950
|
+
/* line 427, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1951
|
+
.print-only {
|
1952
|
+
display: block !important;
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
/* line 428, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1956
|
+
.hide-for-print {
|
1957
|
+
display: none !important;
|
1958
|
+
}
|
1959
|
+
|
1960
|
+
/* line 429, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_type.scss */
|
1961
|
+
.show-for-print {
|
1962
|
+
display: inherit !important;
|
1963
|
+
}
|
1964
|
+
}
|
1965
|
+
/* Sections */
|
1966
|
+
/* line 285, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
1967
|
+
[data-section=''], [data-section='auto'], .section-container.auto,
|
1968
|
+
[data-section='vertical-tabs'], .section-container.vertical-tabs,
|
1969
|
+
[data-section='vertical-nav'], .section-container.vertical-nav,
|
1970
|
+
[data-section='horizontal-nav'], .section-container.horizontal-nav,
|
1971
|
+
[data-section='accordion'], .section-container.accordion {
|
1972
|
+
width: 100%;
|
1973
|
+
position: relative;
|
1974
|
+
display: block;
|
1975
|
+
margin-bottom: 1.25em;
|
1976
|
+
}
|
1977
|
+
/* line 55, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
1978
|
+
[data-section=''][data-section-small-style], [data-section='auto'][data-section-small-style], .section-container.auto[data-section-small-style],
|
1979
|
+
[data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style],
|
1980
|
+
[data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style],
|
1981
|
+
[data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style],
|
1982
|
+
[data-section='accordion'][data-section-small-style], .section-container.accordion[data-section-small-style] {
|
1983
|
+
width: 100% !important;
|
1984
|
+
}
|
1985
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
1986
|
+
[data-section=''][data-section-small-style] > [data-section-region], [data-section=''][data-section-small-style] > section, [data-section=''][data-section-small-style] > .section, [data-section='auto'][data-section-small-style] > [data-section-region], [data-section='auto'][data-section-small-style] > section, [data-section='auto'][data-section-small-style] > .section, .section-container.auto[data-section-small-style] > [data-section-region], .section-container.auto[data-section-small-style] > section, .section-container.auto[data-section-small-style] > .section,
|
1987
|
+
[data-section='vertical-tabs'][data-section-small-style] > [data-section-region],
|
1988
|
+
[data-section='vertical-tabs'][data-section-small-style] > section,
|
1989
|
+
[data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section,
|
1990
|
+
[data-section='vertical-nav'][data-section-small-style] > [data-section-region],
|
1991
|
+
[data-section='vertical-nav'][data-section-small-style] > section,
|
1992
|
+
[data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section,
|
1993
|
+
[data-section='horizontal-nav'][data-section-small-style] > [data-section-region],
|
1994
|
+
[data-section='horizontal-nav'][data-section-small-style] > section,
|
1995
|
+
[data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section,
|
1996
|
+
[data-section='accordion'][data-section-small-style] > [data-section-region],
|
1997
|
+
[data-section='accordion'][data-section-small-style] > section,
|
1998
|
+
[data-section='accordion'][data-section-small-style] > .section, .section-container.accordion[data-section-small-style] > [data-section-region], .section-container.accordion[data-section-small-style] > section, .section-container.accordion[data-section-small-style] > .section {
|
1999
|
+
padding: 0 !important;
|
2000
|
+
margin: 0 !important;
|
2001
|
+
}
|
2002
|
+
/* line 61, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2003
|
+
[data-section=''][data-section-small-style] > [data-section-region] > [data-section-title], [data-section=''][data-section-small-style] > [data-section-region] > .title, [data-section=''][data-section-small-style] > section > [data-section-title], [data-section=''][data-section-small-style] > section > .title, [data-section=''][data-section-small-style] > .section > [data-section-title], [data-section=''][data-section-small-style] > .section > .title, [data-section='auto'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='auto'][data-section-small-style] > [data-section-region] > .title, [data-section='auto'][data-section-small-style] > section > [data-section-title], [data-section='auto'][data-section-small-style] > section > .title, [data-section='auto'][data-section-small-style] > .section > [data-section-title], [data-section='auto'][data-section-small-style] > .section > .title, .section-container.auto[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.auto[data-section-small-style] > [data-section-region] > .title, .section-container.auto[data-section-small-style] > section > [data-section-title], .section-container.auto[data-section-small-style] > section > .title, .section-container.auto[data-section-small-style] > .section > [data-section-title], .section-container.auto[data-section-small-style] > .section > .title,
|
2004
|
+
[data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title],
|
2005
|
+
[data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title,
|
2006
|
+
[data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title],
|
2007
|
+
[data-section='vertical-tabs'][data-section-small-style] > section > .title,
|
2008
|
+
[data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title],
|
2009
|
+
[data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title,
|
2010
|
+
[data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title],
|
2011
|
+
[data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title,
|
2012
|
+
[data-section='vertical-nav'][data-section-small-style] > section > [data-section-title],
|
2013
|
+
[data-section='vertical-nav'][data-section-small-style] > section > .title,
|
2014
|
+
[data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title],
|
2015
|
+
[data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title,
|
2016
|
+
[data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title],
|
2017
|
+
[data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title,
|
2018
|
+
[data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title],
|
2019
|
+
[data-section='horizontal-nav'][data-section-small-style] > section > .title,
|
2020
|
+
[data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title],
|
2021
|
+
[data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title,
|
2022
|
+
[data-section='accordion'][data-section-small-style] > [data-section-region] > [data-section-title],
|
2023
|
+
[data-section='accordion'][data-section-small-style] > [data-section-region] > .title,
|
2024
|
+
[data-section='accordion'][data-section-small-style] > section > [data-section-title],
|
2025
|
+
[data-section='accordion'][data-section-small-style] > section > .title,
|
2026
|
+
[data-section='accordion'][data-section-small-style] > .section > [data-section-title],
|
2027
|
+
[data-section='accordion'][data-section-small-style] > .section > .title, .section-container.accordion[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.accordion[data-section-small-style] > [data-section-region] > .title, .section-container.accordion[data-section-small-style] > section > [data-section-title], .section-container.accordion[data-section-small-style] > section > .title, .section-container.accordion[data-section-small-style] > .section > [data-section-title], .section-container.accordion[data-section-small-style] > .section > .title {
|
2028
|
+
width: 100% !important;
|
2029
|
+
}
|
2030
|
+
/* line 287, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2031
|
+
[data-section=''] > section, [data-section=''] > .section, [data-section=''] > [data-section-region], [data-section='auto'] > section, [data-section='auto'] > .section, [data-section='auto'] > [data-section-region], .section-container.auto > section, .section-container.auto > .section, .section-container.auto > [data-section-region],
|
2032
|
+
[data-section='vertical-tabs'] > section,
|
2033
|
+
[data-section='vertical-tabs'] > .section,
|
2034
|
+
[data-section='vertical-tabs'] > [data-section-region], .section-container.vertical-tabs > section, .section-container.vertical-tabs > .section, .section-container.vertical-tabs > [data-section-region],
|
2035
|
+
[data-section='vertical-nav'] > section,
|
2036
|
+
[data-section='vertical-nav'] > .section,
|
2037
|
+
[data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region],
|
2038
|
+
[data-section='horizontal-nav'] > section,
|
2039
|
+
[data-section='horizontal-nav'] > .section,
|
2040
|
+
[data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region],
|
2041
|
+
[data-section='accordion'] > section,
|
2042
|
+
[data-section='accordion'] > .section,
|
2043
|
+
[data-section='accordion'] > [data-section-region], .section-container.accordion > section, .section-container.accordion > .section, .section-container.accordion > [data-section-region] {
|
2044
|
+
margin: 0;
|
2045
|
+
}
|
2046
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2047
|
+
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title,
|
2048
|
+
[data-section='vertical-tabs'] > section > [data-section-title],
|
2049
|
+
[data-section='vertical-tabs'] > section > .title,
|
2050
|
+
[data-section='vertical-tabs'] > .section > [data-section-title],
|
2051
|
+
[data-section='vertical-tabs'] > .section > .title,
|
2052
|
+
[data-section='vertical-tabs'] > [data-section-region] > [data-section-title],
|
2053
|
+
[data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title,
|
2054
|
+
[data-section='vertical-nav'] > section > [data-section-title],
|
2055
|
+
[data-section='vertical-nav'] > section > .title,
|
2056
|
+
[data-section='vertical-nav'] > .section > [data-section-title],
|
2057
|
+
[data-section='vertical-nav'] > .section > .title,
|
2058
|
+
[data-section='vertical-nav'] > [data-section-region] > [data-section-title],
|
2059
|
+
[data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title,
|
2060
|
+
[data-section='horizontal-nav'] > section > [data-section-title],
|
2061
|
+
[data-section='horizontal-nav'] > section > .title,
|
2062
|
+
[data-section='horizontal-nav'] > .section > [data-section-title],
|
2063
|
+
[data-section='horizontal-nav'] > .section > .title,
|
2064
|
+
[data-section='horizontal-nav'] > [data-section-region] > [data-section-title],
|
2065
|
+
[data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title,
|
2066
|
+
[data-section='accordion'] > section > [data-section-title],
|
2067
|
+
[data-section='accordion'] > section > .title,
|
2068
|
+
[data-section='accordion'] > .section > [data-section-title],
|
2069
|
+
[data-section='accordion'] > .section > .title,
|
2070
|
+
[data-section='accordion'] > [data-section-region] > [data-section-title],
|
2071
|
+
[data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title {
|
2072
|
+
margin-bottom: 0;
|
2073
|
+
}
|
2074
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2075
|
+
[data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a,
|
2076
|
+
[data-section='vertical-tabs'] > section > [data-section-title] a,
|
2077
|
+
[data-section='vertical-tabs'] > section > .title a,
|
2078
|
+
[data-section='vertical-tabs'] > .section > [data-section-title] a,
|
2079
|
+
[data-section='vertical-tabs'] > .section > .title a,
|
2080
|
+
[data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a,
|
2081
|
+
[data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a,
|
2082
|
+
[data-section='vertical-nav'] > section > [data-section-title] a,
|
2083
|
+
[data-section='vertical-nav'] > section > .title a,
|
2084
|
+
[data-section='vertical-nav'] > .section > [data-section-title] a,
|
2085
|
+
[data-section='vertical-nav'] > .section > .title a,
|
2086
|
+
[data-section='vertical-nav'] > [data-section-region] > [data-section-title] a,
|
2087
|
+
[data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a,
|
2088
|
+
[data-section='horizontal-nav'] > section > [data-section-title] a,
|
2089
|
+
[data-section='horizontal-nav'] > section > .title a,
|
2090
|
+
[data-section='horizontal-nav'] > .section > [data-section-title] a,
|
2091
|
+
[data-section='horizontal-nav'] > .section > .title a,
|
2092
|
+
[data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a,
|
2093
|
+
[data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a,
|
2094
|
+
[data-section='accordion'] > section > [data-section-title] a,
|
2095
|
+
[data-section='accordion'] > section > .title a,
|
2096
|
+
[data-section='accordion'] > .section > [data-section-title] a,
|
2097
|
+
[data-section='accordion'] > .section > .title a,
|
2098
|
+
[data-section='accordion'] > [data-section-region] > [data-section-title] a,
|
2099
|
+
[data-section='accordion'] > [data-section-region] > .title a, .section-container.accordion > section > [data-section-title] a, .section-container.accordion > section > .title a, .section-container.accordion > .section > [data-section-title] a, .section-container.accordion > .section > .title a, .section-container.accordion > [data-section-region] > [data-section-title] a, .section-container.accordion > [data-section-region] > .title a {
|
2100
|
+
width: 100%;
|
2101
|
+
display: inline-block;
|
2102
|
+
white-space: nowrap;
|
2103
|
+
}
|
2104
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2105
|
+
[data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content,
|
2106
|
+
[data-section='vertical-tabs'] > section > [data-section-content],
|
2107
|
+
[data-section='vertical-tabs'] > section > .content,
|
2108
|
+
[data-section='vertical-tabs'] > .section > [data-section-content],
|
2109
|
+
[data-section='vertical-tabs'] > .section > .content,
|
2110
|
+
[data-section='vertical-tabs'] > [data-section-region] > [data-section-content],
|
2111
|
+
[data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content,
|
2112
|
+
[data-section='vertical-nav'] > section > [data-section-content],
|
2113
|
+
[data-section='vertical-nav'] > section > .content,
|
2114
|
+
[data-section='vertical-nav'] > .section > [data-section-content],
|
2115
|
+
[data-section='vertical-nav'] > .section > .content,
|
2116
|
+
[data-section='vertical-nav'] > [data-section-region] > [data-section-content],
|
2117
|
+
[data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content,
|
2118
|
+
[data-section='horizontal-nav'] > section > [data-section-content],
|
2119
|
+
[data-section='horizontal-nav'] > section > .content,
|
2120
|
+
[data-section='horizontal-nav'] > .section > [data-section-content],
|
2121
|
+
[data-section='horizontal-nav'] > .section > .content,
|
2122
|
+
[data-section='horizontal-nav'] > [data-section-region] > [data-section-content],
|
2123
|
+
[data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content,
|
2124
|
+
[data-section='accordion'] > section > [data-section-content],
|
2125
|
+
[data-section='accordion'] > section > .content,
|
2126
|
+
[data-section='accordion'] > .section > [data-section-content],
|
2127
|
+
[data-section='accordion'] > .section > .content,
|
2128
|
+
[data-section='accordion'] > [data-section-region] > [data-section-content],
|
2129
|
+
[data-section='accordion'] > [data-section-region] > .content, .section-container.accordion > section > [data-section-content], .section-container.accordion > section > .content, .section-container.accordion > .section > [data-section-content], .section-container.accordion > .section > .content, .section-container.accordion > [data-section-region] > [data-section-content], .section-container.accordion > [data-section-region] > .content {
|
2130
|
+
display: none;
|
2131
|
+
}
|
2132
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2133
|
+
[data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content,
|
2134
|
+
[data-section='vertical-tabs'] > section.active > [data-section-content],
|
2135
|
+
[data-section='vertical-tabs'] > section.active > .content,
|
2136
|
+
[data-section='vertical-tabs'] > .section.active > [data-section-content],
|
2137
|
+
[data-section='vertical-tabs'] > .section.active > .content,
|
2138
|
+
[data-section='vertical-tabs'] > [data-section-region].active > [data-section-content],
|
2139
|
+
[data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content,
|
2140
|
+
[data-section='vertical-nav'] > section.active > [data-section-content],
|
2141
|
+
[data-section='vertical-nav'] > section.active > .content,
|
2142
|
+
[data-section='vertical-nav'] > .section.active > [data-section-content],
|
2143
|
+
[data-section='vertical-nav'] > .section.active > .content,
|
2144
|
+
[data-section='vertical-nav'] > [data-section-region].active > [data-section-content],
|
2145
|
+
[data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content,
|
2146
|
+
[data-section='horizontal-nav'] > section.active > [data-section-content],
|
2147
|
+
[data-section='horizontal-nav'] > section.active > .content,
|
2148
|
+
[data-section='horizontal-nav'] > .section.active > [data-section-content],
|
2149
|
+
[data-section='horizontal-nav'] > .section.active > .content,
|
2150
|
+
[data-section='horizontal-nav'] > [data-section-region].active > [data-section-content],
|
2151
|
+
[data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content,
|
2152
|
+
[data-section='accordion'] > section.active > [data-section-content],
|
2153
|
+
[data-section='accordion'] > section.active > .content,
|
2154
|
+
[data-section='accordion'] > .section.active > [data-section-content],
|
2155
|
+
[data-section='accordion'] > .section.active > .content,
|
2156
|
+
[data-section='accordion'] > [data-section-region].active > [data-section-content],
|
2157
|
+
[data-section='accordion'] > [data-section-region].active > .content, .section-container.accordion > section.active > [data-section-content], .section-container.accordion > section.active > .content, .section-container.accordion > .section.active > [data-section-content], .section-container.accordion > .section.active > .content, .section-container.accordion > [data-section-region].active > [data-section-content], .section-container.accordion > [data-section-region].active > .content {
|
2158
|
+
display: block;
|
2159
|
+
}
|
2160
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2161
|
+
[data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active),
|
2162
|
+
[data-section='vertical-tabs'] > section:not(.active),
|
2163
|
+
[data-section='vertical-tabs'] > .section:not(.active),
|
2164
|
+
[data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active),
|
2165
|
+
[data-section='vertical-nav'] > section:not(.active),
|
2166
|
+
[data-section='vertical-nav'] > .section:not(.active),
|
2167
|
+
[data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active),
|
2168
|
+
[data-section='horizontal-nav'] > section:not(.active),
|
2169
|
+
[data-section='horizontal-nav'] > .section:not(.active),
|
2170
|
+
[data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active),
|
2171
|
+
[data-section='accordion'] > section:not(.active),
|
2172
|
+
[data-section='accordion'] > .section:not(.active),
|
2173
|
+
[data-section='accordion'] > [data-section-region]:not(.active), .section-container.accordion > section:not(.active), .section-container.accordion > .section:not(.active), .section-container.accordion > [data-section-region]:not(.active) {
|
2174
|
+
padding: 0 !important;
|
2175
|
+
}
|
2176
|
+
/* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2177
|
+
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title,
|
2178
|
+
[data-section='vertical-tabs'] > section > [data-section-title],
|
2179
|
+
[data-section='vertical-tabs'] > section > .title,
|
2180
|
+
[data-section='vertical-tabs'] > .section > [data-section-title],
|
2181
|
+
[data-section='vertical-tabs'] > .section > .title,
|
2182
|
+
[data-section='vertical-tabs'] > [data-section-region] > [data-section-title],
|
2183
|
+
[data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title,
|
2184
|
+
[data-section='vertical-nav'] > section > [data-section-title],
|
2185
|
+
[data-section='vertical-nav'] > section > .title,
|
2186
|
+
[data-section='vertical-nav'] > .section > [data-section-title],
|
2187
|
+
[data-section='vertical-nav'] > .section > .title,
|
2188
|
+
[data-section='vertical-nav'] > [data-section-region] > [data-section-title],
|
2189
|
+
[data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title,
|
2190
|
+
[data-section='horizontal-nav'] > section > [data-section-title],
|
2191
|
+
[data-section='horizontal-nav'] > section > .title,
|
2192
|
+
[data-section='horizontal-nav'] > .section > [data-section-title],
|
2193
|
+
[data-section='horizontal-nav'] > .section > .title,
|
2194
|
+
[data-section='horizontal-nav'] > [data-section-region] > [data-section-title],
|
2195
|
+
[data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title,
|
2196
|
+
[data-section='accordion'] > section > [data-section-title],
|
2197
|
+
[data-section='accordion'] > section > .title,
|
2198
|
+
[data-section='accordion'] > .section > [data-section-title],
|
2199
|
+
[data-section='accordion'] > .section > .title,
|
2200
|
+
[data-section='accordion'] > [data-section-region] > [data-section-title],
|
2201
|
+
[data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title {
|
2202
|
+
width: 100%;
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
/* line 296, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2206
|
+
.section-container.auto,
|
2207
|
+
.section-container.vertical-tabs,
|
2208
|
+
.section-container.vertical-nav,
|
2209
|
+
.section-container.horizontal-nav,
|
2210
|
+
.section-container.accordion {
|
2211
|
+
border-top: 1px solid #cccccc;
|
2212
|
+
}
|
2213
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2214
|
+
.section-container.auto > section > .title, .section-container.auto > .section > .title,
|
2215
|
+
.section-container.vertical-tabs > section > .title,
|
2216
|
+
.section-container.vertical-tabs > .section > .title,
|
2217
|
+
.section-container.vertical-nav > section > .title,
|
2218
|
+
.section-container.vertical-nav > .section > .title,
|
2219
|
+
.section-container.horizontal-nav > section > .title,
|
2220
|
+
.section-container.horizontal-nav > .section > .title,
|
2221
|
+
.section-container.accordion > section > .title,
|
2222
|
+
.section-container.accordion > .section > .title {
|
2223
|
+
background-color: #efefef;
|
2224
|
+
cursor: pointer;
|
2225
|
+
border: solid 1px #cccccc;
|
2226
|
+
}
|
2227
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2228
|
+
.section-container.auto > section > .title a, .section-container.auto > .section > .title a,
|
2229
|
+
.section-container.vertical-tabs > section > .title a,
|
2230
|
+
.section-container.vertical-tabs > .section > .title a,
|
2231
|
+
.section-container.vertical-nav > section > .title a,
|
2232
|
+
.section-container.vertical-nav > .section > .title a,
|
2233
|
+
.section-container.horizontal-nav > section > .title a,
|
2234
|
+
.section-container.horizontal-nav > .section > .title a,
|
2235
|
+
.section-container.accordion > section > .title a,
|
2236
|
+
.section-container.accordion > .section > .title a {
|
2237
|
+
padding: 0.9375em;
|
2238
|
+
color: #333333;
|
2239
|
+
font-size: 0.875em;
|
2240
|
+
background: none;
|
2241
|
+
}
|
2242
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2243
|
+
.section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover,
|
2244
|
+
.section-container.vertical-tabs > section > .title:hover,
|
2245
|
+
.section-container.vertical-tabs > .section > .title:hover,
|
2246
|
+
.section-container.vertical-nav > section > .title:hover,
|
2247
|
+
.section-container.vertical-nav > .section > .title:hover,
|
2248
|
+
.section-container.horizontal-nav > section > .title:hover,
|
2249
|
+
.section-container.horizontal-nav > .section > .title:hover,
|
2250
|
+
.section-container.accordion > section > .title:hover,
|
2251
|
+
.section-container.accordion > .section > .title:hover {
|
2252
|
+
background-color: #e2e2e2;
|
2253
|
+
}
|
2254
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2255
|
+
.section-container.auto > section > .content, .section-container.auto > .section > .content,
|
2256
|
+
.section-container.vertical-tabs > section > .content,
|
2257
|
+
.section-container.vertical-tabs > .section > .content,
|
2258
|
+
.section-container.vertical-nav > section > .content,
|
2259
|
+
.section-container.vertical-nav > .section > .content,
|
2260
|
+
.section-container.horizontal-nav > section > .content,
|
2261
|
+
.section-container.horizontal-nav > .section > .content,
|
2262
|
+
.section-container.accordion > section > .content,
|
2263
|
+
.section-container.accordion > .section > .content {
|
2264
|
+
padding: 0.9375em;
|
2265
|
+
background-color: white;
|
2266
|
+
border: solid 1px #cccccc;
|
2267
|
+
}
|
2268
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2269
|
+
.section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child,
|
2270
|
+
.section-container.vertical-tabs > section > .content > *:last-child,
|
2271
|
+
.section-container.vertical-tabs > .section > .content > *:last-child,
|
2272
|
+
.section-container.vertical-nav > section > .content > *:last-child,
|
2273
|
+
.section-container.vertical-nav > .section > .content > *:last-child,
|
2274
|
+
.section-container.horizontal-nav > section > .content > *:last-child,
|
2275
|
+
.section-container.horizontal-nav > .section > .content > *:last-child,
|
2276
|
+
.section-container.accordion > section > .content > *:last-child,
|
2277
|
+
.section-container.accordion > .section > .content > *:last-child {
|
2278
|
+
margin-bottom: 0;
|
2279
|
+
}
|
2280
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2281
|
+
.section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child,
|
2282
|
+
.section-container.vertical-tabs > section > .content > *:first-child,
|
2283
|
+
.section-container.vertical-tabs > .section > .content > *:first-child,
|
2284
|
+
.section-container.vertical-nav > section > .content > *:first-child,
|
2285
|
+
.section-container.vertical-nav > .section > .content > *:first-child,
|
2286
|
+
.section-container.horizontal-nav > section > .content > *:first-child,
|
2287
|
+
.section-container.horizontal-nav > .section > .content > *:first-child,
|
2288
|
+
.section-container.accordion > section > .content > *:first-child,
|
2289
|
+
.section-container.accordion > .section > .content > *:first-child {
|
2290
|
+
padding-top: 0;
|
2291
|
+
}
|
2292
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2293
|
+
.section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video),
|
2294
|
+
.section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video),
|
2295
|
+
.section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video),
|
2296
|
+
.section-container.vertical-nav > section > .content > *:last-child:not(.flex-video),
|
2297
|
+
.section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video),
|
2298
|
+
.section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video),
|
2299
|
+
.section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video),
|
2300
|
+
.section-container.accordion > section > .content > *:last-child:not(.flex-video),
|
2301
|
+
.section-container.accordion > .section > .content > *:last-child:not(.flex-video) {
|
2302
|
+
padding-bottom: 0;
|
2303
|
+
}
|
2304
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2305
|
+
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title,
|
2306
|
+
.section-container.vertical-tabs > section.active > .title,
|
2307
|
+
.section-container.vertical-tabs > .section.active > .title,
|
2308
|
+
.section-container.vertical-nav > section.active > .title,
|
2309
|
+
.section-container.vertical-nav > .section.active > .title,
|
2310
|
+
.section-container.horizontal-nav > section.active > .title,
|
2311
|
+
.section-container.horizontal-nav > .section.active > .title,
|
2312
|
+
.section-container.accordion > section.active > .title,
|
2313
|
+
.section-container.accordion > .section.active > .title {
|
2314
|
+
background: #d5d5d5;
|
2315
|
+
}
|
2316
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2317
|
+
.section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a,
|
2318
|
+
.section-container.vertical-tabs > section.active > .title a,
|
2319
|
+
.section-container.vertical-tabs > .section.active > .title a,
|
2320
|
+
.section-container.vertical-nav > section.active > .title a,
|
2321
|
+
.section-container.vertical-nav > .section.active > .title a,
|
2322
|
+
.section-container.horizontal-nav > section.active > .title a,
|
2323
|
+
.section-container.horizontal-nav > .section.active > .title a,
|
2324
|
+
.section-container.accordion > section.active > .title a,
|
2325
|
+
.section-container.accordion > .section.active > .title a {
|
2326
|
+
color: #333333;
|
2327
|
+
}
|
2328
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2329
|
+
.section-container.auto > section:not(.active), .section-container.auto > .section:not(.active),
|
2330
|
+
.section-container.vertical-tabs > section:not(.active),
|
2331
|
+
.section-container.vertical-tabs > .section:not(.active),
|
2332
|
+
.section-container.vertical-nav > section:not(.active),
|
2333
|
+
.section-container.vertical-nav > .section:not(.active),
|
2334
|
+
.section-container.horizontal-nav > section:not(.active),
|
2335
|
+
.section-container.horizontal-nav > .section:not(.active),
|
2336
|
+
.section-container.accordion > section:not(.active),
|
2337
|
+
.section-container.accordion > .section:not(.active) {
|
2338
|
+
padding: 0 !important;
|
2339
|
+
}
|
2340
|
+
/* line 243, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2341
|
+
.section-container.auto > section > .title, .section-container.auto > .section > .title,
|
2342
|
+
.section-container.vertical-tabs > section > .title,
|
2343
|
+
.section-container.vertical-tabs > .section > .title,
|
2344
|
+
.section-container.vertical-nav > section > .title,
|
2345
|
+
.section-container.vertical-nav > .section > .title,
|
2346
|
+
.section-container.horizontal-nav > section > .title,
|
2347
|
+
.section-container.horizontal-nav > .section > .title,
|
2348
|
+
.section-container.accordion > section > .title,
|
2349
|
+
.section-container.accordion > .section > .title {
|
2350
|
+
border-top: none;
|
2351
|
+
}
|
2352
|
+
|
2353
|
+
/* line 303, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2354
|
+
[data-section='tabs'], .section-container.tabs {
|
2355
|
+
width: 100%;
|
2356
|
+
position: relative;
|
2357
|
+
display: block;
|
2358
|
+
margin-bottom: 1.25em;
|
2359
|
+
}
|
2360
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2361
|
+
[data-section='tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.tabs:not([data-section-resized]):not([data-section-small-style]) {
|
2362
|
+
visibility: hidden;
|
2363
|
+
}
|
2364
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2365
|
+
[data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title {
|
2366
|
+
margin-bottom: 0;
|
2367
|
+
}
|
2368
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2369
|
+
[data-section='tabs'] > section > [data-section-title] a, [data-section='tabs'] > section > .title a, [data-section='tabs'] > .section > [data-section-title] a, [data-section='tabs'] > .section > .title a, [data-section='tabs'] > [data-section-region] > [data-section-title] a, [data-section='tabs'] > [data-section-region] > .title a, .section-container.tabs > section > [data-section-title] a, .section-container.tabs > section > .title a, .section-container.tabs > .section > [data-section-title] a, .section-container.tabs > .section > .title a, .section-container.tabs > [data-section-region] > [data-section-title] a, .section-container.tabs > [data-section-region] > .title a {
|
2370
|
+
width: 100%;
|
2371
|
+
display: inline-block;
|
2372
|
+
white-space: nowrap;
|
2373
|
+
}
|
2374
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2375
|
+
[data-section='tabs'] > section > [data-section-content], [data-section='tabs'] > section > .content, [data-section='tabs'] > .section > [data-section-content], [data-section='tabs'] > .section > .content, [data-section='tabs'] > [data-section-region] > [data-section-content], [data-section='tabs'] > [data-section-region] > .content, .section-container.tabs > section > [data-section-content], .section-container.tabs > section > .content, .section-container.tabs > .section > [data-section-content], .section-container.tabs > .section > .content, .section-container.tabs > [data-section-region] > [data-section-content], .section-container.tabs > [data-section-region] > .content {
|
2376
|
+
display: none;
|
2377
|
+
}
|
2378
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2379
|
+
[data-section='tabs'] > section.active > [data-section-content], [data-section='tabs'] > section.active > .content, [data-section='tabs'] > .section.active > [data-section-content], [data-section='tabs'] > .section.active > .content, [data-section='tabs'] > [data-section-region].active > [data-section-content], [data-section='tabs'] > [data-section-region].active > .content, .section-container.tabs > section.active > [data-section-content], .section-container.tabs > section.active > .content, .section-container.tabs > .section.active > [data-section-content], .section-container.tabs > .section.active > .content, .section-container.tabs > [data-section-region].active > [data-section-content], .section-container.tabs > [data-section-region].active > .content {
|
2380
|
+
display: block;
|
2381
|
+
}
|
2382
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2383
|
+
[data-section='tabs'] > section:not(.active), [data-section='tabs'] > .section:not(.active), [data-section='tabs'] > [data-section-region]:not(.active), .section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active), .section-container.tabs > [data-section-region]:not(.active) {
|
2384
|
+
padding: 0 !important;
|
2385
|
+
}
|
2386
|
+
/* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2387
|
+
[data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title {
|
2388
|
+
width: auto;
|
2389
|
+
position: absolute;
|
2390
|
+
top: 0;
|
2391
|
+
left: 0;
|
2392
|
+
}
|
2393
|
+
|
2394
|
+
/* line 310, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2395
|
+
.section-container.tabs {
|
2396
|
+
border: none;
|
2397
|
+
}
|
2398
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2399
|
+
.section-container.tabs > section > .title, .section-container.tabs > .section > .title {
|
2400
|
+
background-color: #efefef;
|
2401
|
+
cursor: pointer;
|
2402
|
+
border: solid 1px #cccccc;
|
2403
|
+
}
|
2404
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2405
|
+
.section-container.tabs > section > .title a, .section-container.tabs > .section > .title a {
|
2406
|
+
padding: 0.9375em;
|
2407
|
+
color: #333333;
|
2408
|
+
font-size: 0.875em;
|
2409
|
+
background: none;
|
2410
|
+
}
|
2411
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2412
|
+
.section-container.tabs > section > .title:hover, .section-container.tabs > .section > .title:hover {
|
2413
|
+
background-color: #e2e2e2;
|
2414
|
+
}
|
2415
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2416
|
+
.section-container.tabs > section > .content, .section-container.tabs > .section > .content {
|
2417
|
+
padding: 0.9375em;
|
2418
|
+
background-color: white;
|
2419
|
+
border: solid 1px #cccccc;
|
2420
|
+
}
|
2421
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2422
|
+
.section-container.tabs > section > .content > *:last-child, .section-container.tabs > .section > .content > *:last-child {
|
2423
|
+
margin-bottom: 0;
|
2424
|
+
}
|
2425
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2426
|
+
.section-container.tabs > section > .content > *:first-child, .section-container.tabs > .section > .content > *:first-child {
|
2427
|
+
padding-top: 0;
|
2428
|
+
}
|
2429
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2430
|
+
.section-container.tabs > section > .content > *:last-child:not(.flex-video), .section-container.tabs > .section > .content > *:last-child:not(.flex-video) {
|
2431
|
+
padding-bottom: 0;
|
2432
|
+
}
|
2433
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2434
|
+
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
|
2435
|
+
background: white;
|
2436
|
+
}
|
2437
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2438
|
+
.section-container.tabs > section.active > .title a, .section-container.tabs > .section.active > .title a {
|
2439
|
+
color: #333333;
|
2440
|
+
}
|
2441
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2442
|
+
.section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active) {
|
2443
|
+
padding: 0 !important;
|
2444
|
+
}
|
2445
|
+
/* line 249, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2446
|
+
.section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
|
2447
|
+
border-bottom: 0;
|
2448
|
+
}
|
2449
|
+
|
2450
|
+
@media only screen and (min-width: 768px) {
|
2451
|
+
/* line 319, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2452
|
+
[data-section=''], [data-section='auto'], .section-container.auto {
|
2453
|
+
width: 100%;
|
2454
|
+
position: relative;
|
2455
|
+
display: block;
|
2456
|
+
margin-bottom: 1.25em;
|
2457
|
+
}
|
2458
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2459
|
+
[data-section='']:not([data-section-resized]):not([data-section-small-style]), [data-section='auto']:not([data-section-resized]):not([data-section-small-style]), .section-container.auto:not([data-section-resized]):not([data-section-small-style]) {
|
2460
|
+
visibility: hidden;
|
2461
|
+
}
|
2462
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2463
|
+
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title {
|
2464
|
+
margin-bottom: 0;
|
2465
|
+
}
|
2466
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2467
|
+
[data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a {
|
2468
|
+
width: 100%;
|
2469
|
+
display: inline-block;
|
2470
|
+
white-space: nowrap;
|
2471
|
+
}
|
2472
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2473
|
+
[data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content {
|
2474
|
+
display: none;
|
2475
|
+
}
|
2476
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2477
|
+
[data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content {
|
2478
|
+
display: block;
|
2479
|
+
}
|
2480
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2481
|
+
[data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active) {
|
2482
|
+
padding: 0 !important;
|
2483
|
+
}
|
2484
|
+
/* line 132, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2485
|
+
[data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title {
|
2486
|
+
width: auto;
|
2487
|
+
position: absolute;
|
2488
|
+
top: 0;
|
2489
|
+
left: 0;
|
2490
|
+
}
|
2491
|
+
|
2492
|
+
/* line 326, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2493
|
+
.section-container.auto {
|
2494
|
+
border: none;
|
2495
|
+
}
|
2496
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2497
|
+
.section-container.auto > section > .title, .section-container.auto > .section > .title {
|
2498
|
+
background-color: #efefef;
|
2499
|
+
cursor: pointer;
|
2500
|
+
border: solid 1px #cccccc;
|
2501
|
+
}
|
2502
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2503
|
+
.section-container.auto > section > .title a, .section-container.auto > .section > .title a {
|
2504
|
+
padding: 0.9375em;
|
2505
|
+
color: #333333;
|
2506
|
+
font-size: 0.875em;
|
2507
|
+
background: none;
|
2508
|
+
}
|
2509
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2510
|
+
.section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover {
|
2511
|
+
background-color: #e2e2e2;
|
2512
|
+
}
|
2513
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2514
|
+
.section-container.auto > section > .content, .section-container.auto > .section > .content {
|
2515
|
+
padding: 0.9375em;
|
2516
|
+
background-color: white;
|
2517
|
+
border: solid 1px #cccccc;
|
2518
|
+
}
|
2519
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2520
|
+
.section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child {
|
2521
|
+
margin-bottom: 0;
|
2522
|
+
}
|
2523
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2524
|
+
.section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child {
|
2525
|
+
padding-top: 0;
|
2526
|
+
}
|
2527
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2528
|
+
.section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video) {
|
2529
|
+
padding-bottom: 0;
|
2530
|
+
}
|
2531
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2532
|
+
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
|
2533
|
+
background: white;
|
2534
|
+
}
|
2535
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2536
|
+
.section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a {
|
2537
|
+
color: #333333;
|
2538
|
+
}
|
2539
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2540
|
+
.section-container.auto > section:not(.active), .section-container.auto > .section:not(.active) {
|
2541
|
+
padding: 0 !important;
|
2542
|
+
}
|
2543
|
+
/* line 249, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2544
|
+
.section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
|
2545
|
+
border-bottom: 0;
|
2546
|
+
}
|
2547
|
+
|
2548
|
+
/* line 333, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2549
|
+
[data-section='vertical-tabs'], .section-container.vertical-tabs {
|
2550
|
+
width: 100%;
|
2551
|
+
position: relative;
|
2552
|
+
display: block;
|
2553
|
+
margin-bottom: 1.25em;
|
2554
|
+
}
|
2555
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2556
|
+
[data-section='vertical-tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-tabs:not([data-section-resized]):not([data-section-small-style]) {
|
2557
|
+
visibility: hidden;
|
2558
|
+
}
|
2559
|
+
/* line 55, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2560
|
+
[data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style] {
|
2561
|
+
width: 100% !important;
|
2562
|
+
}
|
2563
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2564
|
+
[data-section='vertical-tabs'][data-section-small-style] > [data-section-region], [data-section='vertical-tabs'][data-section-small-style] > section, [data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section {
|
2565
|
+
padding: 0 !important;
|
2566
|
+
margin: 0 !important;
|
2567
|
+
}
|
2568
|
+
/* line 61, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2569
|
+
[data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > section > .title, [data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title {
|
2570
|
+
width: 100% !important;
|
2571
|
+
}
|
2572
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2573
|
+
[data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title {
|
2574
|
+
margin-bottom: 0;
|
2575
|
+
}
|
2576
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2577
|
+
[data-section='vertical-tabs'] > section > [data-section-title] a, [data-section='vertical-tabs'] > section > .title a, [data-section='vertical-tabs'] > .section > [data-section-title] a, [data-section='vertical-tabs'] > .section > .title a, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a, [data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a {
|
2578
|
+
width: 100%;
|
2579
|
+
display: inline-block;
|
2580
|
+
white-space: nowrap;
|
2581
|
+
}
|
2582
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2583
|
+
[data-section='vertical-tabs'] > section > [data-section-content], [data-section='vertical-tabs'] > section > .content, [data-section='vertical-tabs'] > .section > [data-section-content], [data-section='vertical-tabs'] > .section > .content, [data-section='vertical-tabs'] > [data-section-region] > [data-section-content], [data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content {
|
2584
|
+
display: none;
|
2585
|
+
}
|
2586
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2587
|
+
[data-section='vertical-tabs'] > section.active > [data-section-content], [data-section='vertical-tabs'] > section.active > .content, [data-section='vertical-tabs'] > .section.active > [data-section-content], [data-section='vertical-tabs'] > .section.active > .content, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-content], [data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content {
|
2588
|
+
display: block;
|
2589
|
+
}
|
2590
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2591
|
+
[data-section='vertical-tabs'] > section:not(.active), [data-section='vertical-tabs'] > .section:not(.active), [data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active) {
|
2592
|
+
padding: 0 !important;
|
2593
|
+
}
|
2594
|
+
/* line 143, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2595
|
+
[data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title {
|
2596
|
+
position: absolute;
|
2597
|
+
top: 0;
|
2598
|
+
left: 0;
|
2599
|
+
width: 12.5em;
|
2600
|
+
}
|
2601
|
+
/* line 150, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2602
|
+
[data-section='vertical-tabs'] > section.active, [data-section='vertical-tabs'] > .section.active, [data-section='vertical-tabs'] > [data-section-region].active, .section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active, .section-container.vertical-tabs > [data-section-region].active {
|
2603
|
+
padding-left: 12.5em;
|
2604
|
+
}
|
2605
|
+
/* line 153, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2606
|
+
[data-section='vertical-tabs'] > section.active > [data-section-title], [data-section='vertical-tabs'] > section.active > .title, [data-section='vertical-tabs'] > .section.active > [data-section-title], [data-section='vertical-tabs'] > .section.active > .title, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-title], [data-section='vertical-tabs'] > [data-section-region].active > .title, .section-container.vertical-tabs > section.active > [data-section-title], .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > [data-section-title], .section-container.vertical-tabs > .section.active > .title, .section-container.vertical-tabs > [data-section-region].active > [data-section-title], .section-container.vertical-tabs > [data-section-region].active > .title {
|
2607
|
+
width: 12.5em;
|
2608
|
+
}
|
2609
|
+
|
2610
|
+
/* line 340, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2611
|
+
.section-container.vertical-tabs {
|
2612
|
+
border: none;
|
2613
|
+
}
|
2614
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2615
|
+
.section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > .title {
|
2616
|
+
background-color: #efefef;
|
2617
|
+
cursor: pointer;
|
2618
|
+
border: solid 1px #cccccc;
|
2619
|
+
}
|
2620
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2621
|
+
.section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > .title a {
|
2622
|
+
padding: 0.9375em;
|
2623
|
+
color: #333333;
|
2624
|
+
font-size: 0.875em;
|
2625
|
+
background: none;
|
2626
|
+
}
|
2627
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2628
|
+
.section-container.vertical-tabs > section > .title:hover, .section-container.vertical-tabs > .section > .title:hover {
|
2629
|
+
background-color: #e2e2e2;
|
2630
|
+
}
|
2631
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2632
|
+
.section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > .content {
|
2633
|
+
padding: 0.9375em;
|
2634
|
+
background-color: white;
|
2635
|
+
border: solid 1px #cccccc;
|
2636
|
+
}
|
2637
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2638
|
+
.section-container.vertical-tabs > section > .content > *:last-child, .section-container.vertical-tabs > .section > .content > *:last-child {
|
2639
|
+
margin-bottom: 0;
|
2640
|
+
}
|
2641
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2642
|
+
.section-container.vertical-tabs > section > .content > *:first-child, .section-container.vertical-tabs > .section > .content > *:first-child {
|
2643
|
+
padding-top: 0;
|
2644
|
+
}
|
2645
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2646
|
+
.section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video), .section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video) {
|
2647
|
+
padding-bottom: 0;
|
2648
|
+
}
|
2649
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2650
|
+
.section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title {
|
2651
|
+
background: #d5d5d5;
|
2652
|
+
}
|
2653
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2654
|
+
.section-container.vertical-tabs > section.active > .title a, .section-container.vertical-tabs > .section.active > .title a {
|
2655
|
+
color: #333333;
|
2656
|
+
}
|
2657
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2658
|
+
.section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active) {
|
2659
|
+
padding: 0 !important;
|
2660
|
+
}
|
2661
|
+
/* line 257, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2662
|
+
.section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active {
|
2663
|
+
padding-left: 12.4375em;
|
2664
|
+
}
|
2665
|
+
/* line 260, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2666
|
+
.section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title {
|
2667
|
+
background-color: #d5d5d5;
|
2668
|
+
}
|
2669
|
+
|
2670
|
+
/* line 347, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2671
|
+
[data-section='vertical-nav'], .section-container.vertical-nav {
|
2672
|
+
width: 100%;
|
2673
|
+
position: relative;
|
2674
|
+
display: block;
|
2675
|
+
margin-bottom: 1.25em;
|
2676
|
+
}
|
2677
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2678
|
+
[data-section='vertical-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-nav:not([data-section-resized]):not([data-section-small-style]) {
|
2679
|
+
visibility: hidden;
|
2680
|
+
}
|
2681
|
+
/* line 55, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2682
|
+
[data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style] {
|
2683
|
+
width: 100% !important;
|
2684
|
+
}
|
2685
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2686
|
+
[data-section='vertical-nav'][data-section-small-style] > [data-section-region], [data-section='vertical-nav'][data-section-small-style] > section, [data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section {
|
2687
|
+
padding: 0 !important;
|
2688
|
+
margin: 0 !important;
|
2689
|
+
}
|
2690
|
+
/* line 61, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2691
|
+
[data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-nav'][data-section-small-style] > section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > section > .title, [data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title {
|
2692
|
+
width: 100% !important;
|
2693
|
+
}
|
2694
|
+
/* line 349, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2695
|
+
[data-section='vertical-nav'] > section, [data-section='vertical-nav'] > .section, [data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region] {
|
2696
|
+
position: relative;
|
2697
|
+
display: inline-block;
|
2698
|
+
}
|
2699
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2700
|
+
[data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title {
|
2701
|
+
margin-bottom: 0;
|
2702
|
+
}
|
2703
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2704
|
+
[data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a {
|
2705
|
+
width: 100%;
|
2706
|
+
display: inline-block;
|
2707
|
+
white-space: nowrap;
|
2708
|
+
}
|
2709
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2710
|
+
[data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content {
|
2711
|
+
display: none;
|
2712
|
+
}
|
2713
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2714
|
+
[data-section='vertical-nav'] > section.active > [data-section-content], [data-section='vertical-nav'] > section.active > .content, [data-section='vertical-nav'] > .section.active > [data-section-content], [data-section='vertical-nav'] > .section.active > .content, [data-section='vertical-nav'] > [data-section-region].active > [data-section-content], [data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content {
|
2715
|
+
display: block;
|
2716
|
+
}
|
2717
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2718
|
+
[data-section='vertical-nav'] > section:not(.active), [data-section='vertical-nav'] > .section:not(.active), [data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active) {
|
2719
|
+
padding: 0 !important;
|
2720
|
+
}
|
2721
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2722
|
+
[data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title {
|
2723
|
+
position: static;
|
2724
|
+
width: auto;
|
2725
|
+
}
|
2726
|
+
/* line 168, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2727
|
+
[data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a {
|
2728
|
+
display: block;
|
2729
|
+
}
|
2730
|
+
/* line 171, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2731
|
+
[data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content {
|
2732
|
+
position: absolute;
|
2733
|
+
top: 0;
|
2734
|
+
left: 0;
|
2735
|
+
z-index: 999;
|
2736
|
+
min-width: 12.5em;
|
2737
|
+
}
|
2738
|
+
|
2739
|
+
/* line 354, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2740
|
+
.section-container.vertical-nav {
|
2741
|
+
border: none;
|
2742
|
+
}
|
2743
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2744
|
+
.section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title {
|
2745
|
+
background-color: #efefef;
|
2746
|
+
cursor: pointer;
|
2747
|
+
border: solid 1px #cccccc;
|
2748
|
+
}
|
2749
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2750
|
+
.section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a {
|
2751
|
+
padding: 0.9375em;
|
2752
|
+
color: #333333;
|
2753
|
+
font-size: 0.875em;
|
2754
|
+
background: none;
|
2755
|
+
}
|
2756
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2757
|
+
.section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover {
|
2758
|
+
background-color: #e2e2e2;
|
2759
|
+
}
|
2760
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2761
|
+
.section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > .content {
|
2762
|
+
padding: 0.9375em;
|
2763
|
+
background-color: white;
|
2764
|
+
border: solid 1px #cccccc;
|
2765
|
+
}
|
2766
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2767
|
+
.section-container.vertical-nav > section > .content > *:last-child, .section-container.vertical-nav > .section > .content > *:last-child {
|
2768
|
+
margin-bottom: 0;
|
2769
|
+
}
|
2770
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2771
|
+
.section-container.vertical-nav > section > .content > *:first-child, .section-container.vertical-nav > .section > .content > *:first-child {
|
2772
|
+
padding-top: 0;
|
2773
|
+
}
|
2774
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2775
|
+
.section-container.vertical-nav > section > .content > *:last-child:not(.flex-video), .section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video) {
|
2776
|
+
padding-bottom: 0;
|
2777
|
+
}
|
2778
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2779
|
+
.section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title {
|
2780
|
+
background: #d5d5d5;
|
2781
|
+
}
|
2782
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2783
|
+
.section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a {
|
2784
|
+
color: #333333;
|
2785
|
+
}
|
2786
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2787
|
+
.section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active) {
|
2788
|
+
padding: 0 !important;
|
2789
|
+
}
|
2790
|
+
|
2791
|
+
/* line 361, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2792
|
+
[data-section='horizontal-nav'], .section-container.horizontal-nav {
|
2793
|
+
width: 100%;
|
2794
|
+
position: relative;
|
2795
|
+
display: block;
|
2796
|
+
margin-bottom: 1.25em;
|
2797
|
+
}
|
2798
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2799
|
+
[data-section='horizontal-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.horizontal-nav:not([data-section-resized]):not([data-section-small-style]) {
|
2800
|
+
visibility: hidden;
|
2801
|
+
}
|
2802
|
+
/* line 55, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2803
|
+
[data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style] {
|
2804
|
+
width: 100% !important;
|
2805
|
+
}
|
2806
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2807
|
+
[data-section='horizontal-nav'][data-section-small-style] > [data-section-region], [data-section='horizontal-nav'][data-section-small-style] > section, [data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section {
|
2808
|
+
padding: 0 !important;
|
2809
|
+
margin: 0 !important;
|
2810
|
+
}
|
2811
|
+
/* line 61, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2812
|
+
[data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > section > .title, [data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title {
|
2813
|
+
width: 100% !important;
|
2814
|
+
}
|
2815
|
+
/* line 363, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2816
|
+
[data-section='horizontal-nav'] > section, [data-section='horizontal-nav'] > .section, [data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region] {
|
2817
|
+
position: relative;
|
2818
|
+
float: left;
|
2819
|
+
}
|
2820
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2821
|
+
[data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title {
|
2822
|
+
margin-bottom: 0;
|
2823
|
+
}
|
2824
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2825
|
+
[data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a {
|
2826
|
+
width: 100%;
|
2827
|
+
display: inline-block;
|
2828
|
+
white-space: nowrap;
|
2829
|
+
}
|
2830
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2831
|
+
[data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content {
|
2832
|
+
display: none;
|
2833
|
+
}
|
2834
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2835
|
+
[data-section='horizontal-nav'] > section.active > [data-section-content], [data-section='horizontal-nav'] > section.active > .content, [data-section='horizontal-nav'] > .section.active > [data-section-content], [data-section='horizontal-nav'] > .section.active > .content, [data-section='horizontal-nav'] > [data-section-region].active > [data-section-content], [data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content {
|
2836
|
+
display: block;
|
2837
|
+
}
|
2838
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2839
|
+
[data-section='horizontal-nav'] > section:not(.active), [data-section='horizontal-nav'] > .section:not(.active), [data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active) {
|
2840
|
+
padding: 0 !important;
|
2841
|
+
}
|
2842
|
+
/* line 186, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2843
|
+
[data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title {
|
2844
|
+
position: static;
|
2845
|
+
width: auto;
|
2846
|
+
}
|
2847
|
+
/* line 189, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2848
|
+
[data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a {
|
2849
|
+
display: block;
|
2850
|
+
}
|
2851
|
+
/* line 192, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2852
|
+
[data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content {
|
2853
|
+
width: auto;
|
2854
|
+
position: absolute;
|
2855
|
+
top: 0;
|
2856
|
+
left: 0;
|
2857
|
+
z-index: 999;
|
2858
|
+
min-width: 12.5em;
|
2859
|
+
}
|
2860
|
+
|
2861
|
+
/* line 368, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2862
|
+
.section-container.horizontal-nav {
|
2863
|
+
background: #efefef;
|
2864
|
+
border: 1px solid #cccccc;
|
2865
|
+
}
|
2866
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2867
|
+
.section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title {
|
2868
|
+
background-color: #efefef;
|
2869
|
+
cursor: pointer;
|
2870
|
+
border: solid 1px #cccccc;
|
2871
|
+
}
|
2872
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2873
|
+
.section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a {
|
2874
|
+
padding: 0.9375em;
|
2875
|
+
color: #333333;
|
2876
|
+
font-size: 0.875em;
|
2877
|
+
background: none;
|
2878
|
+
}
|
2879
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2880
|
+
.section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover {
|
2881
|
+
background-color: #e2e2e2;
|
2882
|
+
}
|
2883
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2884
|
+
.section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > .content {
|
2885
|
+
padding: 0.9375em;
|
2886
|
+
background-color: white;
|
2887
|
+
border: solid 1px #cccccc;
|
2888
|
+
}
|
2889
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2890
|
+
.section-container.horizontal-nav > section > .content > *:last-child, .section-container.horizontal-nav > .section > .content > *:last-child {
|
2891
|
+
margin-bottom: 0;
|
2892
|
+
}
|
2893
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2894
|
+
.section-container.horizontal-nav > section > .content > *:first-child, .section-container.horizontal-nav > .section > .content > *:first-child {
|
2895
|
+
padding-top: 0;
|
2896
|
+
}
|
2897
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2898
|
+
.section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video) {
|
2899
|
+
padding-bottom: 0;
|
2900
|
+
}
|
2901
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2902
|
+
.section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title {
|
2903
|
+
background: #d5d5d5;
|
2904
|
+
}
|
2905
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2906
|
+
.section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a {
|
2907
|
+
color: #333333;
|
2908
|
+
}
|
2909
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2910
|
+
.section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active) {
|
2911
|
+
padding: 0 !important;
|
2912
|
+
}
|
2913
|
+
}
|
2914
|
+
/* line 378, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2915
|
+
.no-js [data-section], .no-js .section-container {
|
2916
|
+
width: 100%;
|
2917
|
+
position: relative;
|
2918
|
+
display: block;
|
2919
|
+
margin-bottom: 1.25em;
|
2920
|
+
}
|
2921
|
+
/* line 55, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2922
|
+
.no-js [data-section][data-section-small-style], .no-js .section-container[data-section-small-style] {
|
2923
|
+
width: 100% !important;
|
2924
|
+
}
|
2925
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2926
|
+
.no-js [data-section][data-section-small-style] > [data-section-region], .no-js [data-section][data-section-small-style] > section, .no-js [data-section][data-section-small-style] > .section, .no-js .section-container[data-section-small-style] > [data-section-region], .no-js .section-container[data-section-small-style] > section, .no-js .section-container[data-section-small-style] > .section {
|
2927
|
+
padding: 0 !important;
|
2928
|
+
margin: 0 !important;
|
2929
|
+
}
|
2930
|
+
/* line 61, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2931
|
+
.no-js [data-section][data-section-small-style] > [data-section-region] > [data-section-title], .no-js [data-section][data-section-small-style] > [data-section-region] > .title, .no-js [data-section][data-section-small-style] > section > [data-section-title], .no-js [data-section][data-section-small-style] > section > .title, .no-js [data-section][data-section-small-style] > .section > [data-section-title], .no-js [data-section][data-section-small-style] > .section > .title, .no-js .section-container[data-section-small-style] > [data-section-region] > [data-section-title], .no-js .section-container[data-section-small-style] > [data-section-region] > .title, .no-js .section-container[data-section-small-style] > section > [data-section-title], .no-js .section-container[data-section-small-style] > section > .title, .no-js .section-container[data-section-small-style] > .section > [data-section-title], .no-js .section-container[data-section-small-style] > .section > .title {
|
2932
|
+
width: 100% !important;
|
2933
|
+
}
|
2934
|
+
/* line 380, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2935
|
+
.no-js [data-section] > section, .no-js [data-section] > .section, .no-js [data-section] > [data-section-region], .no-js .section-container > section, .no-js .section-container > .section, .no-js .section-container > [data-section-region] {
|
2936
|
+
margin: 0;
|
2937
|
+
}
|
2938
|
+
/* line 102, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2939
|
+
.no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title {
|
2940
|
+
margin-bottom: 0;
|
2941
|
+
}
|
2942
|
+
/* line 104, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2943
|
+
.no-js [data-section] > section > [data-section-title] a, .no-js [data-section] > section > .title a, .no-js [data-section] > .section > [data-section-title] a, .no-js [data-section] > .section > .title a, .no-js [data-section] > [data-section-region] > [data-section-title] a, .no-js [data-section] > [data-section-region] > .title a, .no-js .section-container > section > [data-section-title] a, .no-js .section-container > section > .title a, .no-js .section-container > .section > [data-section-title] a, .no-js .section-container > .section > .title a, .no-js .section-container > [data-section-region] > [data-section-title] a, .no-js .section-container > [data-section-region] > .title a {
|
2944
|
+
width: 100%;
|
2945
|
+
display: inline-block;
|
2946
|
+
white-space: nowrap;
|
2947
|
+
}
|
2948
|
+
/* line 111, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2949
|
+
.no-js [data-section] > section > [data-section-content], .no-js [data-section] > section > .content, .no-js [data-section] > .section > [data-section-content], .no-js [data-section] > .section > .content, .no-js [data-section] > [data-section-region] > [data-section-content], .no-js [data-section] > [data-section-region] > .content, .no-js .section-container > section > [data-section-content], .no-js .section-container > section > .content, .no-js .section-container > .section > [data-section-content], .no-js .section-container > .section > .content, .no-js .section-container > [data-section-region] > [data-section-content], .no-js .section-container > [data-section-region] > .content {
|
2950
|
+
display: none;
|
2951
|
+
}
|
2952
|
+
/* line 116, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2953
|
+
.no-js [data-section] > section.active > [data-section-content], .no-js [data-section] > section.active > .content, .no-js [data-section] > .section.active > [data-section-content], .no-js [data-section] > .section.active > .content, .no-js [data-section] > [data-section-region].active > [data-section-content], .no-js [data-section] > [data-section-region].active > .content, .no-js .section-container > section.active > [data-section-content], .no-js .section-container > section.active > .content, .no-js .section-container > .section.active > [data-section-content], .no-js .section-container > .section.active > .content, .no-js .section-container > [data-section-region].active > [data-section-content], .no-js .section-container > [data-section-region].active > .content {
|
2954
|
+
display: block;
|
2955
|
+
}
|
2956
|
+
/* line 119, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2957
|
+
.no-js [data-section] > section:not(.active), .no-js [data-section] > .section:not(.active), .no-js [data-section] > [data-section-region]:not(.active), .no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active), .no-js .section-container > [data-section-region]:not(.active) {
|
2958
|
+
padding: 0 !important;
|
2959
|
+
}
|
2960
|
+
/* line 126, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2961
|
+
.no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title {
|
2962
|
+
width: 100%;
|
2963
|
+
}
|
2964
|
+
/* line 384, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2965
|
+
.no-js .section-container {
|
2966
|
+
border-top: 1px solid #cccccc;
|
2967
|
+
}
|
2968
|
+
/* line 207, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2969
|
+
.no-js .section-container > section > .title, .no-js .section-container > .section > .title {
|
2970
|
+
background-color: #efefef;
|
2971
|
+
cursor: pointer;
|
2972
|
+
border: solid 1px #cccccc;
|
2973
|
+
}
|
2974
|
+
/* line 211, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2975
|
+
.no-js .section-container > section > .title a, .no-js .section-container > .section > .title a {
|
2976
|
+
padding: 0.9375em;
|
2977
|
+
color: #333333;
|
2978
|
+
font-size: 0.875em;
|
2979
|
+
background: none;
|
2980
|
+
}
|
2981
|
+
/* line 217, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2982
|
+
.no-js .section-container > section > .title:hover, .no-js .section-container > .section > .title:hover {
|
2983
|
+
background-color: #e2e2e2;
|
2984
|
+
}
|
2985
|
+
/* line 220, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2986
|
+
.no-js .section-container > section > .content, .no-js .section-container > .section > .content {
|
2987
|
+
padding: 0.9375em;
|
2988
|
+
background-color: white;
|
2989
|
+
border: solid 1px #cccccc;
|
2990
|
+
}
|
2991
|
+
/* line 225, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2992
|
+
.no-js .section-container > section > .content > *:last-child, .no-js .section-container > .section > .content > *:last-child {
|
2993
|
+
margin-bottom: 0;
|
2994
|
+
}
|
2995
|
+
/* line 226, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
2996
|
+
.no-js .section-container > section > .content > *:first-child, .no-js .section-container > .section > .content > *:first-child {
|
2997
|
+
padding-top: 0;
|
2998
|
+
}
|
2999
|
+
/* line 227, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
3000
|
+
.no-js .section-container > section > .content > *:last-child:not(.flex-video), .no-js .section-container > .section > .content > *:last-child:not(.flex-video) {
|
3001
|
+
padding-bottom: 0;
|
3002
|
+
}
|
3003
|
+
/* line 231, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
3004
|
+
.no-js .section-container > section.active > .title, .no-js .section-container > .section.active > .title {
|
3005
|
+
background: #d5d5d5;
|
3006
|
+
}
|
3007
|
+
/* line 233, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
3008
|
+
.no-js .section-container > section.active > .title a, .no-js .section-container > .section.active > .title a {
|
3009
|
+
color: #333333;
|
3010
|
+
}
|
3011
|
+
/* line 237, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
3012
|
+
.no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active) {
|
3013
|
+
padding: 0 !important;
|
3014
|
+
}
|
3015
|
+
/* line 243, ../../../../../.rvm/gems/ruby-1.9.3-p429@chemistrykit/gems/zurb-foundation-4.3.1/scss/foundation/components/_section.scss */
|
3016
|
+
.no-js .section-container > section > .title, .no-js .section-container > .section > .title {
|
3017
|
+
border-top: none;
|
3018
|
+
}
|
3019
|
+
|
3020
|
+
/* Ruby code, style similar to vibrant ink */
|
3021
|
+
/* line 64, ../sass/app.scss */
|
3022
|
+
.ruby {
|
3023
|
+
font-size: 12px;
|
3024
|
+
font-family: monospace;
|
3025
|
+
color: white;
|
3026
|
+
background-color: #333;
|
3027
|
+
padding: 0.2em 0 0.3em 0;
|
3028
|
+
}
|
3029
|
+
|
3030
|
+
/* line 74, ../sass/app.scss */
|
3031
|
+
code {
|
3032
|
+
color: #eee;
|
3033
|
+
}
|
3034
|
+
|
3035
|
+
/* line 78, ../sass/app.scss */
|
3036
|
+
.ruby .keyword {
|
3037
|
+
color: #FF6600;
|
3038
|
+
}
|
3039
|
+
|
3040
|
+
/* line 79, ../sass/app.scss */
|
3041
|
+
.ruby .constant {
|
3042
|
+
color: #339999;
|
3043
|
+
}
|
3044
|
+
|
3045
|
+
/* line 80, ../sass/app.scss */
|
3046
|
+
.ruby .attribute {
|
3047
|
+
color: white;
|
3048
|
+
}
|
3049
|
+
|
3050
|
+
/* line 81, ../sass/app.scss */
|
3051
|
+
.ruby .global {
|
3052
|
+
color: white;
|
3053
|
+
}
|
3054
|
+
|
3055
|
+
/* line 82, ../sass/app.scss */
|
3056
|
+
.ruby .module {
|
3057
|
+
color: white;
|
3058
|
+
}
|
3059
|
+
|
3060
|
+
/* line 83, ../sass/app.scss */
|
3061
|
+
.ruby .class {
|
3062
|
+
color: white;
|
3063
|
+
}
|
3064
|
+
|
3065
|
+
/* line 84, ../sass/app.scss */
|
3066
|
+
.ruby .string {
|
3067
|
+
color: #c9f76f;
|
3068
|
+
}
|
3069
|
+
|
3070
|
+
/* line 85, ../sass/app.scss */
|
3071
|
+
.ruby .ident {
|
3072
|
+
color: white;
|
3073
|
+
}
|
3074
|
+
|
3075
|
+
/* line 86, ../sass/app.scss */
|
3076
|
+
.ruby .method {
|
3077
|
+
color: #FFCC00;
|
3078
|
+
}
|
3079
|
+
|
3080
|
+
/* line 87, ../sass/app.scss */
|
3081
|
+
.ruby .number {
|
3082
|
+
color: white;
|
3083
|
+
}
|
3084
|
+
|
3085
|
+
/* line 88, ../sass/app.scss */
|
3086
|
+
.ruby .char {
|
3087
|
+
color: white;
|
3088
|
+
}
|
3089
|
+
|
3090
|
+
/* line 89, ../sass/app.scss */
|
3091
|
+
.ruby .comment {
|
3092
|
+
color: #9933CC;
|
3093
|
+
}
|
3094
|
+
|
3095
|
+
/* line 90, ../sass/app.scss */
|
3096
|
+
.ruby .symbol {
|
3097
|
+
color: white;
|
3098
|
+
}
|
3099
|
+
|
3100
|
+
/* line 91, ../sass/app.scss */
|
3101
|
+
.ruby .regex {
|
3102
|
+
color: #44B4CC;
|
3103
|
+
}
|
3104
|
+
|
3105
|
+
/* line 92, ../sass/app.scss */
|
3106
|
+
.ruby .punct {
|
3107
|
+
color: white;
|
3108
|
+
}
|
3109
|
+
|
3110
|
+
/* line 93, ../sass/app.scss */
|
3111
|
+
.ruby .escape {
|
3112
|
+
color: white;
|
3113
|
+
}
|
3114
|
+
|
3115
|
+
/* line 94, ../sass/app.scss */
|
3116
|
+
.ruby .interp {
|
3117
|
+
color: white;
|
3118
|
+
}
|
3119
|
+
|
3120
|
+
/* line 95, ../sass/app.scss */
|
3121
|
+
.ruby .expr {
|
3122
|
+
color: white;
|
3123
|
+
}
|
3124
|
+
|
3125
|
+
/* line 97, ../sass/app.scss */
|
3126
|
+
.ruby .offending {
|
3127
|
+
background-color: #666;
|
3128
|
+
}
|
3129
|
+
|
3130
|
+
/* line 98, ../sass/app.scss */
|
3131
|
+
.ruby .linenum {
|
3132
|
+
width: 75px;
|
3133
|
+
padding: 0.2em 1em 0.2em 1em;
|
3134
|
+
color: #ccc;
|
3135
|
+
background-color: #222;
|
3136
|
+
}
|
3137
|
+
|
3138
|
+
/* line 105, ../sass/app.scss */
|
3139
|
+
.passing {
|
3140
|
+
border: 2px solid #659700;
|
3141
|
+
background-color: #c9f76f;
|
3142
|
+
}
|
3143
|
+
/* line 107, ../sass/app.scss */
|
3144
|
+
.passing h1, .passing h2, .passing h3 {
|
3145
|
+
color: #659700;
|
3146
|
+
}
|
3147
|
+
|
3148
|
+
/* line 113, ../sass/app.scss */
|
3149
|
+
.passing-color {
|
3150
|
+
color: #659700;
|
3151
|
+
}
|
3152
|
+
|
3153
|
+
/* line 117, ../sass/app.scss */
|
3154
|
+
.failing {
|
3155
|
+
border: 2px solid #ff4c00;
|
3156
|
+
background-color: #fc9b71;
|
3157
|
+
}
|
3158
|
+
/* line 119, ../sass/app.scss */
|
3159
|
+
.failing h1, .failing h2, .failing h3 {
|
3160
|
+
color: #ff4c00;
|
3161
|
+
}
|
3162
|
+
|
3163
|
+
/* line 125, ../sass/app.scss */
|
3164
|
+
.failing-color {
|
3165
|
+
color: #ff4c00;
|
3166
|
+
}
|
3167
|
+
|
3168
|
+
/* line 129, ../sass/app.scss */
|
3169
|
+
.pending {
|
3170
|
+
border: 2px solid #ffca00;
|
3171
|
+
background-color: #fcdf71;
|
3172
|
+
}
|
3173
|
+
/* line 131, ../sass/app.scss */
|
3174
|
+
.pending h1, .pending h2, .pending h3 {
|
3175
|
+
color: #ffca00;
|
3176
|
+
}
|
3177
|
+
|
3178
|
+
/* line 137, ../sass/app.scss */
|
3179
|
+
.pending-color {
|
3180
|
+
color: #ffca00;
|
3181
|
+
}
|
3182
|
+
|
3183
|
+
/* line 141, ../sass/app.scss */
|
3184
|
+
.reaction-color {
|
3185
|
+
color: #2712ad;
|
3186
|
+
}
|
3187
|
+
|
3188
|
+
/* line 146, ../sass/app.scss */
|
3189
|
+
.summary .row {
|
3190
|
+
margin-bottom: 1em;
|
3191
|
+
}
|
3192
|
+
/* line 149, ../sass/app.scss */
|
3193
|
+
.summary .status {
|
3194
|
+
border-width: 10px;
|
3195
|
+
-webkit-border-radius: 10px;
|
3196
|
+
-moz-border-radius: 10px;
|
3197
|
+
-ms-border-radius: 10px;
|
3198
|
+
-o-border-radius: 10px;
|
3199
|
+
border-radius: 10px;
|
3200
|
+
}
|
3201
|
+
/* line 152, ../sass/app.scss */
|
3202
|
+
.summary .status h1 {
|
3203
|
+
font-size: 5em;
|
3204
|
+
margin-bottom: 0.25em;
|
3205
|
+
padding-left: .2em;
|
3206
|
+
}
|
3207
|
+
/* line 158, ../sass/app.scss */
|
3208
|
+
.summary .details {
|
3209
|
+
border: 2px solid #DDD;
|
3210
|
+
-webkit-border-radius: 10px;
|
3211
|
+
-moz-border-radius: 10px;
|
3212
|
+
-ms-border-radius: 10px;
|
3213
|
+
-o-border-radius: 10px;
|
3214
|
+
border-radius: 10px;
|
3215
|
+
}
|
3216
|
+
/* line 161, ../sass/app.scss */
|
3217
|
+
.summary .details li {
|
3218
|
+
text-align: center;
|
3219
|
+
padding-top: 1.5em;
|
3220
|
+
}
|
3221
|
+
/* line 164, ../sass/app.scss */
|
3222
|
+
.summary .details li i {
|
3223
|
+
font-size: 3em;
|
3224
|
+
}
|
3225
|
+
/* line 167, ../sass/app.scss */
|
3226
|
+
.summary .details li p {
|
3227
|
+
font-weight: bold;
|
3228
|
+
margin-bottom: 0em;
|
3229
|
+
}
|
3230
|
+
|
3231
|
+
/* line 175, ../sass/app.scss */
|
3232
|
+
.example-group {
|
3233
|
+
-webkit-border-radius: 10px;
|
3234
|
+
-moz-border-radius: 10px;
|
3235
|
+
-ms-border-radius: 10px;
|
3236
|
+
-o-border-radius: 10px;
|
3237
|
+
border-radius: 10px;
|
3238
|
+
margin-bottom: 1em;
|
3239
|
+
}
|
3240
|
+
|
3241
|
+
/* line 181, ../sass/app.scss */
|
3242
|
+
.row .example {
|
3243
|
+
-webkit-border-radius: 4px;
|
3244
|
+
-moz-border-radius: 4px;
|
3245
|
+
-ms-border-radius: 4px;
|
3246
|
+
-o-border-radius: 4px;
|
3247
|
+
border-radius: 4px;
|
3248
|
+
margin-bottom: .5em;
|
3249
|
+
}
|
3250
|
+
|
3251
|
+
/* line 187, ../sass/app.scss */
|
3252
|
+
.examples {
|
3253
|
+
padding-left: .5em;
|
3254
|
+
padding-right: .5em;
|
3255
|
+
}
|
3256
|
+
|
3257
|
+
/* line 192, ../sass/app.scss */
|
3258
|
+
.example-heading {
|
3259
|
+
font-size: 1.2em;
|
3260
|
+
}
|
3261
|
+
/* line 193, ../sass/app.scss */
|
3262
|
+
.example-heading p {
|
3263
|
+
font-weight: bold;
|
3264
|
+
margin-bottom: 0em;
|
3265
|
+
}
|
3266
|
+
|
3267
|
+
/* line 201, ../sass/app.scss */
|
3268
|
+
.example-body {
|
3269
|
+
padding-top: 1em;
|
3270
|
+
}
|
3271
|
+
/* line 203, ../sass/app.scss */
|
3272
|
+
.example-body .row {
|
3273
|
+
margin-bottom: 1em;
|
3274
|
+
}
|
3275
|
+
|
3276
|
+
/* line 210, ../sass/app.scss */
|
3277
|
+
.highlight {
|
3278
|
+
background: #2B2B2B;
|
3279
|
+
color: #E6E1DC;
|
3280
|
+
border-radius: 4px;
|
3281
|
+
padding: 1px 10px;
|
3282
|
+
padding: 15px;
|
3283
|
+
margin-bottom: 1em;
|
3284
|
+
}
|
3285
|
+
|
3286
|
+
/* line 220, ../sass/app.scss */
|
3287
|
+
.highlight .hll {
|
3288
|
+
background-color: #ffc;
|
3289
|
+
}
|
3290
|
+
|
3291
|
+
/* line 225, ../sass/app.scss */
|
3292
|
+
.highlight .c {
|
3293
|
+
color: #BC9458;
|
3294
|
+
font-style: italic;
|
3295
|
+
}
|
3296
|
+
|
3297
|
+
/* line 231, ../sass/app.scss */
|
3298
|
+
.highlight .err {
|
3299
|
+
color: #E6E1DC;
|
3300
|
+
}
|
3301
|
+
|
3302
|
+
/* line 236, ../sass/app.scss */
|
3303
|
+
.highlight .g {
|
3304
|
+
color: #E6E1DC;
|
3305
|
+
}
|
3306
|
+
|
3307
|
+
/* line 241, ../sass/app.scss */
|
3308
|
+
.highlight .k {
|
3309
|
+
color: #CC7833;
|
3310
|
+
}
|
3311
|
+
|
3312
|
+
/* line 246, ../sass/app.scss */
|
3313
|
+
.highlight .l {
|
3314
|
+
color: #E6E1DC;
|
3315
|
+
}
|
3316
|
+
|
3317
|
+
/* line 251, ../sass/app.scss */
|
3318
|
+
.highlight .n {
|
3319
|
+
color: #E6E1DC;
|
3320
|
+
}
|
3321
|
+
|
3322
|
+
/* line 256, ../sass/app.scss */
|
3323
|
+
.highlight .o {
|
3324
|
+
color: #E6E1DC;
|
3325
|
+
}
|
3326
|
+
|
3327
|
+
/* line 261, ../sass/app.scss */
|
3328
|
+
.highlight .x {
|
3329
|
+
color: #E6E1DC;
|
3330
|
+
}
|
3331
|
+
|
3332
|
+
/* line 266, ../sass/app.scss */
|
3333
|
+
.highlight .p {
|
3334
|
+
color: #E6E1DC;
|
3335
|
+
}
|
3336
|
+
|
3337
|
+
/* line 271, ../sass/app.scss */
|
3338
|
+
.highlight .cm {
|
3339
|
+
color: #BC9458;
|
3340
|
+
font-style: italic;
|
3341
|
+
}
|
3342
|
+
|
3343
|
+
/* line 277, ../sass/app.scss */
|
3344
|
+
.highlight .cp {
|
3345
|
+
color: #CC7833;
|
3346
|
+
}
|
3347
|
+
|
3348
|
+
/* line 282, ../sass/app.scss */
|
3349
|
+
.highlight .c1 {
|
3350
|
+
color: #BC9458;
|
3351
|
+
font-style: italic;
|
3352
|
+
}
|
3353
|
+
|
3354
|
+
/* line 288, ../sass/app.scss */
|
3355
|
+
.highlight .cs {
|
3356
|
+
color: #BC9458;
|
3357
|
+
font-style: italic;
|
3358
|
+
}
|
3359
|
+
|
3360
|
+
/* line 294, ../sass/app.scss */
|
3361
|
+
.highlight .gd {
|
3362
|
+
color: #E6E1DC;
|
3363
|
+
background-color: #600;
|
3364
|
+
}
|
3365
|
+
|
3366
|
+
/* line 300, ../sass/app.scss */
|
3367
|
+
.highlight .ge {
|
3368
|
+
color: #E6E1DC;
|
3369
|
+
}
|
3370
|
+
|
3371
|
+
/* line 305, ../sass/app.scss */
|
3372
|
+
.highlight .gr {
|
3373
|
+
color: #FFF;
|
3374
|
+
background-color: #900;
|
3375
|
+
}
|
3376
|
+
|
3377
|
+
/* line 311, ../sass/app.scss */
|
3378
|
+
.highlight .gh {
|
3379
|
+
color: #FFF;
|
3380
|
+
}
|
3381
|
+
|
3382
|
+
/* line 316, ../sass/app.scss */
|
3383
|
+
.highlight .gi {
|
3384
|
+
color: #E6E1DC;
|
3385
|
+
background-color: #144212;
|
3386
|
+
}
|
3387
|
+
|
3388
|
+
/* line 322, ../sass/app.scss */
|
3389
|
+
.highlight .go {
|
3390
|
+
color: #E6E1DC;
|
3391
|
+
}
|
3392
|
+
|
3393
|
+
/* line 327, ../sass/app.scss */
|
3394
|
+
.highlight .gp {
|
3395
|
+
color: #E6E1DC;
|
3396
|
+
}
|
3397
|
+
|
3398
|
+
/* line 332, ../sass/app.scss */
|
3399
|
+
.highlight .gs {
|
3400
|
+
color: #E6E1DC;
|
3401
|
+
}
|
3402
|
+
|
3403
|
+
/* line 337, ../sass/app.scss */
|
3404
|
+
.highlight .gu {
|
3405
|
+
color: #FFF;
|
3406
|
+
}
|
3407
|
+
|
3408
|
+
/* line 342, ../sass/app.scss */
|
3409
|
+
.highlight .gt {
|
3410
|
+
color: #E6E1DC;
|
3411
|
+
}
|
3412
|
+
|
3413
|
+
/* line 347, ../sass/app.scss */
|
3414
|
+
.highlight .kc {
|
3415
|
+
color: #CC7833;
|
3416
|
+
}
|
3417
|
+
|
3418
|
+
/* line 352, ../sass/app.scss */
|
3419
|
+
.highlight .kd {
|
3420
|
+
color: #CC7833;
|
3421
|
+
}
|
3422
|
+
|
3423
|
+
/* line 357, ../sass/app.scss */
|
3424
|
+
.highlight .kn {
|
3425
|
+
color: #CC7833;
|
3426
|
+
}
|
3427
|
+
|
3428
|
+
/* line 362, ../sass/app.scss */
|
3429
|
+
.highlight .kp {
|
3430
|
+
color: #CC7833;
|
3431
|
+
}
|
3432
|
+
|
3433
|
+
/* line 367, ../sass/app.scss */
|
3434
|
+
.highlight .kr {
|
3435
|
+
color: #CC7833;
|
3436
|
+
}
|
3437
|
+
|
3438
|
+
/* line 372, ../sass/app.scss */
|
3439
|
+
.highlight .kt {
|
3440
|
+
color: #DA4939;
|
3441
|
+
}
|
3442
|
+
|
3443
|
+
/* line 377, ../sass/app.scss */
|
3444
|
+
.highlight .ld {
|
3445
|
+
color: #E6E1DC;
|
3446
|
+
}
|
3447
|
+
|
3448
|
+
/* line 382, ../sass/app.scss */
|
3449
|
+
.highlight .m {
|
3450
|
+
color: #A5C261;
|
3451
|
+
}
|
3452
|
+
|
3453
|
+
/* line 387, ../sass/app.scss */
|
3454
|
+
.highlight .s {
|
3455
|
+
color: #A5C261;
|
3456
|
+
}
|
3457
|
+
|
3458
|
+
/* line 392, ../sass/app.scss */
|
3459
|
+
.highlight .na {
|
3460
|
+
color: #FFC66D;
|
3461
|
+
}
|
3462
|
+
|
3463
|
+
/* line 397, ../sass/app.scss */
|
3464
|
+
.highlight .nb {
|
3465
|
+
color: #E6E1DC;
|
3466
|
+
}
|
3467
|
+
|
3468
|
+
/* line 402, ../sass/app.scss */
|
3469
|
+
.highlight .nc {
|
3470
|
+
color: #E6E1DC;
|
3471
|
+
}
|
3472
|
+
|
3473
|
+
/* line 407, ../sass/app.scss */
|
3474
|
+
.highlight .no {
|
3475
|
+
color: #6D9CBE;
|
3476
|
+
}
|
3477
|
+
|
3478
|
+
/* line 412, ../sass/app.scss */
|
3479
|
+
.highlight .nd {
|
3480
|
+
color: #E6E1DC;
|
3481
|
+
}
|
3482
|
+
|
3483
|
+
/* line 417, ../sass/app.scss */
|
3484
|
+
.highlight .ni {
|
3485
|
+
color: #E6E1DC;
|
3486
|
+
}
|
3487
|
+
|
3488
|
+
/* line 422, ../sass/app.scss */
|
3489
|
+
.highlight .ne {
|
3490
|
+
color: #E6E1DC;
|
3491
|
+
}
|
3492
|
+
|
3493
|
+
/* line 427, ../sass/app.scss */
|
3494
|
+
.highlight .nf {
|
3495
|
+
color: #FFC66D;
|
3496
|
+
}
|
3497
|
+
|
3498
|
+
/* line 432, ../sass/app.scss */
|
3499
|
+
.highlight .nl {
|
3500
|
+
color: #E6E1DC;
|
3501
|
+
}
|
3502
|
+
|
3503
|
+
/* line 437, ../sass/app.scss */
|
3504
|
+
.highlight .nn {
|
3505
|
+
color: #E6E1DC;
|
3506
|
+
}
|
3507
|
+
|
3508
|
+
/* line 442, ../sass/app.scss */
|
3509
|
+
.highlight .nx {
|
3510
|
+
color: #E6E1DC;
|
3511
|
+
}
|
3512
|
+
|
3513
|
+
/* line 447, ../sass/app.scss */
|
3514
|
+
.highlight .py {
|
3515
|
+
color: #E6E1DC;
|
3516
|
+
}
|
3517
|
+
|
3518
|
+
/* line 452, ../sass/app.scss */
|
3519
|
+
.highlight .nt {
|
3520
|
+
color: #CC7833;
|
3521
|
+
}
|
3522
|
+
|
3523
|
+
/* line 457, ../sass/app.scss */
|
3524
|
+
.highlight .nv {
|
3525
|
+
color: #D0D0FF;
|
3526
|
+
}
|
3527
|
+
|
3528
|
+
/* line 462, ../sass/app.scss */
|
3529
|
+
.highlight .ow {
|
3530
|
+
color: #E6E1DC;
|
3531
|
+
}
|
3532
|
+
|
3533
|
+
/* line 467, ../sass/app.scss */
|
3534
|
+
.highlight .w {
|
3535
|
+
color: #E6E1DC;
|
3536
|
+
}
|
3537
|
+
|
3538
|
+
/* line 472, ../sass/app.scss */
|
3539
|
+
.highlight .mf {
|
3540
|
+
color: #A5C261;
|
3541
|
+
}
|
3542
|
+
|
3543
|
+
/* line 477, ../sass/app.scss */
|
3544
|
+
.highlight .mh {
|
3545
|
+
color: #A5C261;
|
3546
|
+
}
|
3547
|
+
|
3548
|
+
/* line 482, ../sass/app.scss */
|
3549
|
+
.highlight .mi {
|
3550
|
+
color: #A5C261;
|
3551
|
+
}
|
3552
|
+
|
3553
|
+
/* line 487, ../sass/app.scss */
|
3554
|
+
.highlight .mo {
|
3555
|
+
color: #A5C261;
|
3556
|
+
}
|
3557
|
+
|
3558
|
+
/* line 492, ../sass/app.scss */
|
3559
|
+
.highlight .sb {
|
3560
|
+
color: #A5C261;
|
3561
|
+
}
|
3562
|
+
|
3563
|
+
/* line 497, ../sass/app.scss */
|
3564
|
+
.highlight .sc {
|
3565
|
+
color: #A5C261;
|
3566
|
+
}
|
3567
|
+
|
3568
|
+
/* line 502, ../sass/app.scss */
|
3569
|
+
.highlight .sd {
|
3570
|
+
color: #A5C261;
|
3571
|
+
}
|
3572
|
+
|
3573
|
+
/* line 507, ../sass/app.scss */
|
3574
|
+
.highlight .s2 {
|
3575
|
+
color: #A5C261;
|
3576
|
+
}
|
3577
|
+
|
3578
|
+
/* line 512, ../sass/app.scss */
|
3579
|
+
.highlight .se {
|
3580
|
+
color: #A5C261;
|
3581
|
+
}
|
3582
|
+
|
3583
|
+
/* line 517, ../sass/app.scss */
|
3584
|
+
.highlight .sh {
|
3585
|
+
color: #A5C261;
|
3586
|
+
}
|
3587
|
+
|
3588
|
+
/* line 522, ../sass/app.scss */
|
3589
|
+
.highlight .si {
|
3590
|
+
color: #A5C261;
|
3591
|
+
}
|
3592
|
+
|
3593
|
+
/* line 527, ../sass/app.scss */
|
3594
|
+
.highlight .sx {
|
3595
|
+
color: #A5C261;
|
3596
|
+
}
|
3597
|
+
|
3598
|
+
/* line 532, ../sass/app.scss */
|
3599
|
+
.highlight .sr {
|
3600
|
+
color: #A5C261;
|
3601
|
+
}
|
3602
|
+
|
3603
|
+
/* line 537, ../sass/app.scss */
|
3604
|
+
.highlight .s1 {
|
3605
|
+
color: #A5C261;
|
3606
|
+
}
|
3607
|
+
|
3608
|
+
/* line 542, ../sass/app.scss */
|
3609
|
+
.highlight .ss {
|
3610
|
+
color: #A5C261;
|
3611
|
+
}
|
3612
|
+
|
3613
|
+
/* line 547, ../sass/app.scss */
|
3614
|
+
.highlight .bp {
|
3615
|
+
color: #E6E1DC;
|
3616
|
+
}
|
3617
|
+
|
3618
|
+
/* line 552, ../sass/app.scss */
|
3619
|
+
.highlight .vc {
|
3620
|
+
color: #D0D0FF;
|
3621
|
+
}
|
3622
|
+
|
3623
|
+
/* line 557, ../sass/app.scss */
|
3624
|
+
.highlight .vg {
|
3625
|
+
color: #D0D0FF;
|
3626
|
+
}
|
3627
|
+
|
3628
|
+
/* line 562, ../sass/app.scss */
|
3629
|
+
.highlight .vi {
|
3630
|
+
color: #D0D0FF;
|
3631
|
+
}
|
3632
|
+
|
3633
|
+
/* line 567, ../sass/app.scss */
|
3634
|
+
.highlight .il {
|
3635
|
+
color: #A5C261;
|
3636
|
+
}
|