owl-cms 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/Gemfile +23 -0
  4. data/Gemfile.lock +87 -0
  5. data/README.md +3 -0
  6. data/Rakefile +8 -0
  7. data/bin/owl +88 -0
  8. data/config.ru +3 -0
  9. data/core/app.rb +21 -0
  10. data/core/assets/stylesheets/style.css +1 -0
  11. data/core/classes/cached.rb +36 -0
  12. data/core/classes/checker.rb +37 -0
  13. data/core/classes/error.rb +9 -0
  14. data/core/classes/other.rb +13 -0
  15. data/core/classes/page.rb +128 -0
  16. data/core/classes/partial.rb +13 -0
  17. data/core/classes/path.rb +35 -0
  18. data/core/classes/settings.rb +19 -0
  19. data/core/classes/theme.rb +48 -0
  20. data/core/helpers/base.rb +37 -0
  21. data/core/helpers/render.rb +26 -0
  22. data/core/helpers/truncate.rb +17 -0
  23. data/core/routes/admin.rb +13 -0
  24. data/core/routes/base.rb +18 -0
  25. data/core/routes/bootstrap.rb +30 -0
  26. data/core/routes/cache.rb +36 -0
  27. data/owl-cms.gemspec +25 -0
  28. data/sample/.cabi-data +0 -0
  29. data/sample/data/home/index.haml +21 -0
  30. data/sample/data/other/nav/links.yml +4 -0
  31. data/sample/data/page/about/index.haml +14 -0
  32. data/sample/data/page/contact-us/index.haml +11 -0
  33. data/sample/data/page/dynamic-page/index.haml +14 -0
  34. data/sample/data/page/no-front-matter/index.haml +7 -0
  35. data/sample/data/page/not-found/index.haml +7 -0
  36. data/sample/data/page/static-page/index.haml +14 -0
  37. data/sample/data/post/about-life/index.haml +8 -0
  38. data/sample/data/post/sample-post/index.haml +12 -0
  39. data/sample/data/post/technology/index.haml +9 -0
  40. data/sample/data/post/the-40-hour-workweek/index.haml +9 -0
  41. data/sample/data/post/things-are-changing/index.haml +9 -0
  42. data/sample/data/post/yet-another-post/index.haml +11 -0
  43. data/sample/plugins/my-plugin/plugin.rb +15 -0
  44. data/sample/settings.yml +7 -0
  45. data/sample/themes/base/assets/config.rb +26 -0
  46. data/sample/themes/base/assets/images/owl.svg +20 -0
  47. data/sample/themes/base/assets/javascripts/app/views/main.js +13 -0
  48. data/sample/themes/base/assets/javascripts/main.js +31 -0
  49. data/sample/themes/base/assets/javascripts/vendor/backbone.js +4 -0
  50. data/sample/themes/base/assets/javascripts/vendor/jquery.js +6 -0
  51. data/sample/themes/base/assets/javascripts/vendor/lodash.underscore.js +38 -0
  52. data/sample/themes/base/assets/javascripts/vendor/require.js +36 -0
  53. data/sample/themes/base/assets/scss/main.scss +19 -0
  54. data/sample/themes/base/assets/scss/modules/_all.scss +7 -0
  55. data/sample/themes/base/assets/scss/modules/_colors.scss +5 -0
  56. data/sample/themes/base/assets/scss/modules/_extensions.scss +11 -0
  57. data/sample/themes/base/assets/scss/modules/_mixins.scss +2 -0
  58. data/sample/themes/base/assets/scss/modules/_susy.scss +6 -0
  59. data/sample/themes/base/assets/scss/partials/_base.scss +26 -0
  60. data/sample/themes/base/assets/scss/partials/_buttons.scss +0 -0
  61. data/sample/themes/base/assets/scss/partials/_links.scss +15 -0
  62. data/sample/themes/base/assets/scss/partials/_main.scss +37 -0
  63. data/sample/themes/base/assets/scss/partials/_typography.scss +16 -0
  64. data/sample/themes/base/assets/scss/sections/_footer.scss +24 -0
  65. data/sample/themes/base/assets/scss/sections/_header.scss +18 -0
  66. data/sample/themes/base/assets/scss/sections/_home.scss +13 -0
  67. data/sample/themes/base/assets/scss/vendor/_normalize.scss +406 -0
  68. data/sample/themes/base/assets/stylesheets/main.css +587 -0
  69. data/sample/themes/base/layouts/default.haml +11 -0
  70. data/sample/themes/base/layouts/post.haml +17 -0
  71. data/sample/themes/base/partials/_footer.haml +11 -0
  72. data/sample/themes/base/partials/_ga.haml +10 -0
  73. data/sample/themes/base/partials/_head.haml +20 -0
  74. data/sample/themes/base/partials/_header.haml +7 -0
  75. data/sample/themes/base/settings.yml +4 -0
  76. data/test/test_basics.rb +50 -0
  77. data/test/test_data.rb +14 -0
  78. data/test/test_includes.rb +43 -0
  79. data/test/test_page.rb +47 -0
  80. metadata +612 -0
@@ -0,0 +1,18 @@
1
+
2
+ header{
3
+
4
+ border-bottom: 1px solid $lightgrey;
5
+
6
+ h1{
7
+ $font-size: 44px;
8
+ @include adjust-font-size-to( $font-size );
9
+ @include rhythm($base-line-mult, 0, 0, 0, $font-size);
10
+ }
11
+
12
+ h3{
13
+ color: lighten($base-font-color, 20%);
14
+ font-style: italic;
15
+ font-weight: $regular;
16
+ }
17
+
18
+ }
@@ -0,0 +1,13 @@
1
+
2
+ html[data-path="/home"]{
3
+
4
+ article{
5
+ border-bottom: 1px solid $lightgrey;
6
+ padding: rhythm(4) 0;
7
+
8
+ &:last-child{ border-bottom: 0; };
9
+
10
+ h2{ @include rhythm(0, 0, 0, $base-line-mult, $h2) }
11
+ }
12
+
13
+ }
@@ -0,0 +1,406 @@
1
+ /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Correct `block` display not defined in IE 8/9.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+
26
+ /**
27
+ * Correct `inline-block` display not defined in IE 8/9.
28
+ */
29
+
30
+ audio,
31
+ canvas,
32
+ video {
33
+ display: inline-block;
34
+ }
35
+
36
+ /**
37
+ * Prevent modern browsers from displaying `audio` without controls.
38
+ * Remove excess height in iOS 5 devices.
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ height: 0;
44
+ }
45
+
46
+ /**
47
+ * Address `[hidden]` styling not present in IE 8/9.
48
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
49
+ */
50
+
51
+ [hidden],
52
+ template {
53
+ display: none;
54
+ }
55
+
56
+ /* ==========================================================================
57
+ Base
58
+ ========================================================================== */
59
+
60
+ /**
61
+ * 1. Set default font family to sans-serif.
62
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
63
+ * user zoom.
64
+ */
65
+
66
+ html {
67
+ font-family: sans-serif; /* 1 */
68
+ -ms-text-size-adjust: 100%; /* 2 */
69
+ -webkit-text-size-adjust: 100%; /* 2 */
70
+ }
71
+
72
+ /**
73
+ * Remove default margin.
74
+ */
75
+
76
+ body {
77
+ margin: 0;
78
+ }
79
+
80
+ /* ==========================================================================
81
+ Links
82
+ ========================================================================== */
83
+
84
+ /**
85
+ * Remove the gray background color from active links in IE 10.
86
+ */
87
+
88
+ a {
89
+ background: transparent;
90
+ }
91
+
92
+ /**
93
+ * Address `outline` inconsistency between Chrome and other browsers.
94
+ */
95
+
96
+ a:focus {
97
+ outline: thin dotted;
98
+ }
99
+
100
+ /**
101
+ * Improve readability when focused and also mouse hovered in all browsers.
102
+ */
103
+
104
+ a:active,
105
+ a:hover {
106
+ outline: 0;
107
+ }
108
+
109
+ /* ==========================================================================
110
+ Typography
111
+ ========================================================================== */
112
+
113
+ /**
114
+ * Address variable `h1` font-size and margin within `section` and `article`
115
+ * contexts in Firefox 4+, Safari 5, and Chrome.
116
+ */
117
+
118
+ h1 {
119
+ font-size: 2em;
120
+ margin: 0.67em 0;
121
+ }
122
+
123
+ /**
124
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
125
+ */
126
+
127
+ abbr[title] {
128
+ border-bottom: 1px dotted;
129
+ }
130
+
131
+ /**
132
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
133
+ */
134
+
135
+ b,
136
+ strong {
137
+ font-weight: bold;
138
+ }
139
+
140
+ /**
141
+ * Address styling not present in Safari 5 and Chrome.
142
+ */
143
+
144
+ dfn {
145
+ font-style: italic;
146
+ }
147
+
148
+ /**
149
+ * Address differences between Firefox and other browsers.
150
+ */
151
+
152
+ hr {
153
+ -moz-box-sizing: content-box;
154
+ box-sizing: content-box;
155
+ height: 0;
156
+ }
157
+
158
+ /**
159
+ * Address styling not present in IE 8/9.
160
+ */
161
+
162
+ mark {
163
+ background: #ff0;
164
+ color: #000;
165
+ }
166
+
167
+ /**
168
+ * Correct font family set oddly in Safari 5 and Chrome.
169
+ */
170
+
171
+ code,
172
+ kbd,
173
+ pre,
174
+ samp {
175
+ font-family: monospace, serif;
176
+ font-size: 1em;
177
+ }
178
+
179
+ /**
180
+ * Improve readability of pre-formatted text in all browsers.
181
+ */
182
+
183
+ pre {
184
+ white-space: pre-wrap;
185
+ }
186
+
187
+ /**
188
+ * Set consistent quote types.
189
+ */
190
+
191
+ q {
192
+ quotes: "\201C" "\201D" "\2018" "\2019";
193
+ }
194
+
195
+ /**
196
+ * Address inconsistent and variable font size in all browsers.
197
+ */
198
+
199
+ small {
200
+ font-size: 80%;
201
+ }
202
+
203
+ /**
204
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
205
+ */
206
+
207
+ sub,
208
+ sup {
209
+ font-size: 75%;
210
+ line-height: 0;
211
+ position: relative;
212
+ vertical-align: baseline;
213
+ }
214
+
215
+ sup {
216
+ top: -0.5em;
217
+ }
218
+
219
+ sub {
220
+ bottom: -0.25em;
221
+ }
222
+
223
+ /* ==========================================================================
224
+ Embedded content
225
+ ========================================================================== */
226
+
227
+ /**
228
+ * Remove border when inside `a` element in IE 8/9.
229
+ */
230
+
231
+ img {
232
+ border: 0;
233
+ }
234
+
235
+ /**
236
+ * Correct overflow displayed oddly in IE 9.
237
+ */
238
+
239
+ svg:not(:root) {
240
+ overflow: hidden;
241
+ }
242
+
243
+ /* ==========================================================================
244
+ Figures
245
+ ========================================================================== */
246
+
247
+ /**
248
+ * Address margin not present in IE 8/9 and Safari 5.
249
+ */
250
+
251
+ figure {
252
+ margin: 0;
253
+ }
254
+
255
+ /* ==========================================================================
256
+ Forms
257
+ ========================================================================== */
258
+
259
+ /**
260
+ * Define consistent border, margin, and padding.
261
+ */
262
+
263
+ fieldset {
264
+ border: 1px solid #c0c0c0;
265
+ margin: 0 2px;
266
+ padding: 0.35em 0.625em 0.75em;
267
+ }
268
+
269
+ /**
270
+ * 1. Correct `color` not being inherited in IE 8/9.
271
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
272
+ */
273
+
274
+ legend {
275
+ border: 0; /* 1 */
276
+ padding: 0; /* 2 */
277
+ }
278
+
279
+ /**
280
+ * 1. Correct font family not being inherited in all browsers.
281
+ * 2. Correct font size not being inherited in all browsers.
282
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
283
+ */
284
+
285
+ button,
286
+ input,
287
+ select,
288
+ textarea {
289
+ font-family: inherit; /* 1 */
290
+ font-size: 100%; /* 2 */
291
+ margin: 0; /* 3 */
292
+ }
293
+
294
+ /**
295
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
296
+ * the UA stylesheet.
297
+ */
298
+
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
+
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
+
324
+ button,
325
+ html input[type="button"], /* 1 */
326
+ input[type="reset"],
327
+ input[type="submit"] {
328
+ -webkit-appearance: button; /* 2 */
329
+ cursor: pointer; /* 3 */
330
+ }
331
+
332
+ /**
333
+ * Re-set default cursor for disabled elements.
334
+ */
335
+
336
+ button[disabled],
337
+ html input[disabled] {
338
+ cursor: default;
339
+ }
340
+
341
+ /**
342
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
343
+ * 2. Remove excess padding in IE 8/9/10.
344
+ */
345
+
346
+ input[type="checkbox"],
347
+ input[type="radio"] {
348
+ box-sizing: border-box; /* 1 */
349
+ padding: 0; /* 2 */
350
+ }
351
+
352
+ /**
353
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
354
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
355
+ * (include `-moz` to future-proof).
356
+ */
357
+
358
+ input[type="search"] {
359
+ -webkit-appearance: textfield; /* 1 */
360
+ -moz-box-sizing: content-box;
361
+ -webkit-box-sizing: content-box; /* 2 */
362
+ box-sizing: content-box;
363
+ }
364
+
365
+ /**
366
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
367
+ * on OS X.
368
+ */
369
+
370
+ input[type="search"]::-webkit-search-cancel-button,
371
+ input[type="search"]::-webkit-search-decoration {
372
+ -webkit-appearance: none;
373
+ }
374
+
375
+ /**
376
+ * Remove inner padding and border in Firefox 4+.
377
+ */
378
+
379
+ button::-moz-focus-inner,
380
+ input::-moz-focus-inner {
381
+ border: 0;
382
+ padding: 0;
383
+ }
384
+
385
+ /**
386
+ * 1. Remove default vertical scrollbar in IE 8/9.
387
+ * 2. Improve readability and alignment in all browsers.
388
+ */
389
+
390
+ textarea {
391
+ overflow: auto; /* 1 */
392
+ vertical-align: top; /* 2 */
393
+ }
394
+
395
+ /* ==========================================================================
396
+ Tables
397
+ ========================================================================== */
398
+
399
+ /**
400
+ * Remove most spacing between table cells.
401
+ */
402
+
403
+ table {
404
+ border-collapse: collapse;
405
+ border-spacing: 0;
406
+ }
@@ -0,0 +1,587 @@
1
+ /* normalize.css v2.1.3 | 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, ../scss/vendor/_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
+ * Correct `inline-block` display not defined in IE 8/9.
25
+ */
26
+ /* line 32, ../scss/vendor/_normalize.scss */
27
+ audio,
28
+ canvas,
29
+ video {
30
+ display: inline-block; }
31
+
32
+ /**
33
+ * Prevent modern browsers from displaying `audio` without controls.
34
+ * Remove excess height in iOS 5 devices.
35
+ */
36
+ /* line 41, ../scss/vendor/_normalize.scss */
37
+ audio:not([controls]) {
38
+ display: none;
39
+ height: 0; }
40
+
41
+ /**
42
+ * Address `[hidden]` styling not present in IE 8/9.
43
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
44
+ */
45
+ /* line 52, ../scss/vendor/_normalize.scss */
46
+ [hidden],
47
+ template {
48
+ display: none; }
49
+
50
+ /* ==========================================================================
51
+ Base
52
+ ========================================================================== */
53
+ /**
54
+ * 1. Set default font family to sans-serif.
55
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
56
+ * user zoom.
57
+ */
58
+ /* line 66, ../scss/vendor/_normalize.scss */
59
+ html {
60
+ font-family: sans-serif;
61
+ /* 1 */
62
+ -ms-text-size-adjust: 100%;
63
+ /* 2 */
64
+ -webkit-text-size-adjust: 100%;
65
+ /* 2 */ }
66
+
67
+ /**
68
+ * Remove default margin.
69
+ */
70
+ /* line 76, ../scss/vendor/_normalize.scss */
71
+ body {
72
+ margin: 0; }
73
+
74
+ /* ==========================================================================
75
+ Links
76
+ ========================================================================== */
77
+ /**
78
+ * Remove the gray background color from active links in IE 10.
79
+ */
80
+ /* line 88, ../scss/vendor/_normalize.scss */
81
+ a {
82
+ background: transparent; }
83
+
84
+ /**
85
+ * Address `outline` inconsistency between Chrome and other browsers.
86
+ */
87
+ /* line 96, ../scss/vendor/_normalize.scss */
88
+ a:focus {
89
+ outline: thin dotted; }
90
+
91
+ /**
92
+ * Improve readability when focused and also mouse hovered in all browsers.
93
+ */
94
+ /* line 105, ../scss/vendor/_normalize.scss */
95
+ a:active,
96
+ a:hover {
97
+ outline: 0; }
98
+
99
+ /* ==========================================================================
100
+ Typography
101
+ ========================================================================== */
102
+ /**
103
+ * Address variable `h1` font-size and margin within `section` and `article`
104
+ * contexts in Firefox 4+, Safari 5, and Chrome.
105
+ */
106
+ /* line 118, ../scss/vendor/_normalize.scss */
107
+ h1 {
108
+ font-size: 2em;
109
+ margin: 0.67em 0; }
110
+
111
+ /**
112
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
113
+ */
114
+ /* line 127, ../scss/vendor/_normalize.scss */
115
+ abbr[title] {
116
+ border-bottom: 1px dotted; }
117
+
118
+ /**
119
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
120
+ */
121
+ /* line 136, ../scss/vendor/_normalize.scss */
122
+ b,
123
+ strong {
124
+ font-weight: bold; }
125
+
126
+ /**
127
+ * Address styling not present in Safari 5 and Chrome.
128
+ */
129
+ /* line 144, ../scss/vendor/_normalize.scss */
130
+ dfn {
131
+ font-style: italic; }
132
+
133
+ /**
134
+ * Address differences between Firefox and other browsers.
135
+ */
136
+ /* line 152, ../scss/vendor/_normalize.scss */
137
+ hr {
138
+ -moz-box-sizing: content-box;
139
+ box-sizing: content-box;
140
+ height: 0; }
141
+
142
+ /**
143
+ * Address styling not present in IE 8/9.
144
+ */
145
+ /* line 162, ../scss/vendor/_normalize.scss */
146
+ mark {
147
+ background: #ff0;
148
+ color: #000; }
149
+
150
+ /**
151
+ * Correct font family set oddly in Safari 5 and Chrome.
152
+ */
153
+ /* line 174, ../scss/vendor/_normalize.scss */
154
+ code,
155
+ kbd,
156
+ pre,
157
+ samp {
158
+ font-family: monospace, serif;
159
+ font-size: 1em; }
160
+
161
+ /**
162
+ * Improve readability of pre-formatted text in all browsers.
163
+ */
164
+ /* line 183, ../scss/vendor/_normalize.scss */
165
+ pre {
166
+ white-space: pre-wrap; }
167
+
168
+ /**
169
+ * Set consistent quote types.
170
+ */
171
+ /* line 191, ../scss/vendor/_normalize.scss */
172
+ q {
173
+ quotes: "\201C" "\201D" "\2018" "\2019"; }
174
+
175
+ /**
176
+ * Address inconsistent and variable font size in all browsers.
177
+ */
178
+ /* line 199, ../scss/vendor/_normalize.scss */
179
+ small {
180
+ font-size: 80%; }
181
+
182
+ /**
183
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
184
+ */
185
+ /* line 208, ../scss/vendor/_normalize.scss */
186
+ sub,
187
+ sup {
188
+ font-size: 75%;
189
+ line-height: 0;
190
+ position: relative;
191
+ vertical-align: baseline; }
192
+
193
+ /* line 215, ../scss/vendor/_normalize.scss */
194
+ sup {
195
+ top: -0.5em; }
196
+
197
+ /* line 219, ../scss/vendor/_normalize.scss */
198
+ sub {
199
+ bottom: -0.25em; }
200
+
201
+ /* ==========================================================================
202
+ Embedded content
203
+ ========================================================================== */
204
+ /**
205
+ * Remove border when inside `a` element in IE 8/9.
206
+ */
207
+ /* line 231, ../scss/vendor/_normalize.scss */
208
+ img {
209
+ border: 0; }
210
+
211
+ /**
212
+ * Correct overflow displayed oddly in IE 9.
213
+ */
214
+ /* line 239, ../scss/vendor/_normalize.scss */
215
+ svg:not(:root) {
216
+ overflow: hidden; }
217
+
218
+ /* ==========================================================================
219
+ Figures
220
+ ========================================================================== */
221
+ /**
222
+ * Address margin not present in IE 8/9 and Safari 5.
223
+ */
224
+ /* line 251, ../scss/vendor/_normalize.scss */
225
+ figure {
226
+ margin: 0; }
227
+
228
+ /* ==========================================================================
229
+ Forms
230
+ ========================================================================== */
231
+ /**
232
+ * Define consistent border, margin, and padding.
233
+ */
234
+ /* line 263, ../scss/vendor/_normalize.scss */
235
+ fieldset {
236
+ border: 1px solid #c0c0c0;
237
+ margin: 0 2px;
238
+ padding: 0.35em 0.625em 0.75em; }
239
+
240
+ /**
241
+ * 1. Correct `color` not being inherited in IE 8/9.
242
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
243
+ */
244
+ /* line 274, ../scss/vendor/_normalize.scss */
245
+ legend {
246
+ border: 0;
247
+ /* 1 */
248
+ padding: 0;
249
+ /* 2 */ }
250
+
251
+ /**
252
+ * 1. Correct font family not being inherited in all browsers.
253
+ * 2. Correct font size not being inherited in all browsers.
254
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
255
+ */
256
+ /* line 288, ../scss/vendor/_normalize.scss */
257
+ button,
258
+ input,
259
+ select,
260
+ textarea {
261
+ font-family: inherit;
262
+ /* 1 */
263
+ font-size: 100%;
264
+ /* 2 */
265
+ margin: 0;
266
+ /* 3 */ }
267
+
268
+ /**
269
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
270
+ * the UA stylesheet.
271
+ */
272
+ /* line 300, ../scss/vendor/_normalize.scss */
273
+ button,
274
+ input {
275
+ line-height: normal; }
276
+
277
+ /**
278
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
279
+ * All other form control elements do not inherit `text-transform` values.
280
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
281
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
282
+ */
283
+ /* line 312, ../scss/vendor/_normalize.scss */
284
+ button,
285
+ select {
286
+ text-transform: none; }
287
+
288
+ /**
289
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
290
+ * and `video` controls.
291
+ * 2. Correct inability to style clickable `input` types in iOS.
292
+ * 3. Improve usability and consistency of cursor style between image-type
293
+ * `input` and others.
294
+ */
295
+ /* line 327, ../scss/vendor/_normalize.scss */
296
+ button,
297
+ html input[type="button"],
298
+ input[type="reset"],
299
+ input[type="submit"] {
300
+ -webkit-appearance: button;
301
+ /* 2 */
302
+ cursor: pointer;
303
+ /* 3 */ }
304
+
305
+ /**
306
+ * Re-set default cursor for disabled elements.
307
+ */
308
+ /* line 337, ../scss/vendor/_normalize.scss */
309
+ button[disabled],
310
+ html input[disabled] {
311
+ cursor: default; }
312
+
313
+ /**
314
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
315
+ * 2. Remove excess padding in IE 8/9/10.
316
+ */
317
+ /* line 347, ../scss/vendor/_normalize.scss */
318
+ input[type="checkbox"],
319
+ input[type="radio"] {
320
+ box-sizing: border-box;
321
+ /* 1 */
322
+ padding: 0;
323
+ /* 2 */ }
324
+
325
+ /**
326
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
327
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
328
+ * (include `-moz` to future-proof).
329
+ */
330
+ /* line 358, ../scss/vendor/_normalize.scss */
331
+ input[type="search"] {
332
+ -webkit-appearance: textfield;
333
+ /* 1 */
334
+ -moz-box-sizing: content-box;
335
+ -webkit-box-sizing: content-box;
336
+ /* 2 */
337
+ box-sizing: content-box; }
338
+
339
+ /**
340
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
341
+ * on OS X.
342
+ */
343
+ /* line 371, ../scss/vendor/_normalize.scss */
344
+ input[type="search"]::-webkit-search-cancel-button,
345
+ input[type="search"]::-webkit-search-decoration {
346
+ -webkit-appearance: none; }
347
+
348
+ /**
349
+ * Remove inner padding and border in Firefox 4+.
350
+ */
351
+ /* line 380, ../scss/vendor/_normalize.scss */
352
+ button::-moz-focus-inner,
353
+ input::-moz-focus-inner {
354
+ border: 0;
355
+ padding: 0; }
356
+
357
+ /**
358
+ * 1. Remove default vertical scrollbar in IE 8/9.
359
+ * 2. Improve readability and alignment in all browsers.
360
+ */
361
+ /* line 390, ../scss/vendor/_normalize.scss */
362
+ textarea {
363
+ overflow: auto;
364
+ /* 1 */
365
+ vertical-align: top;
366
+ /* 2 */ }
367
+
368
+ /* ==========================================================================
369
+ Tables
370
+ ========================================================================== */
371
+ /**
372
+ * Remove most spacing between table cells.
373
+ */
374
+ /* line 403, ../scss/vendor/_normalize.scss */
375
+ table {
376
+ border-collapse: collapse;
377
+ border-spacing: 0; }
378
+
379
+ /* line 3, ../scss/modules/_extensions.scss */
380
+ .container {
381
+ *zoom: 1;
382
+ max-width: 59em;
383
+ _width: 59em;
384
+ padding-left: 1em;
385
+ padding-right: 1em;
386
+ margin-left: auto;
387
+ margin-right: auto;
388
+ width: 100%;
389
+ max-width: 100%; }
390
+ /* line 38, ../../../../../../../../../../../Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
391
+ .container:after {
392
+ content: "";
393
+ display: table;
394
+ clear: both; }
395
+
396
+ /* line 9, ../scss/modules/_extensions.scss */
397
+ .clearfix, footer {
398
+ overflow: hidden;
399
+ *zoom: 1; }
400
+
401
+ /* line 61, ../../../../../../../../../../../Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/compass/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */
402
+ * html {
403
+ font-size: 100%; }
404
+
405
+ /* line 64, ../../../../../../../../../../../Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/compass/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */
406
+ html {
407
+ font-size: 16px;
408
+ line-height: 0.375em; }
409
+
410
+ /* line 7, ../scss/partials/_main.scss */
411
+ body {
412
+ font-family: "PT Sans", sans;
413
+ color: #333333;
414
+ background: #f9f9f9;
415
+ padding: 3.75em 0;
416
+ line-height: 1.5em; }
417
+ /* line 14, ../../../../../../../../../../../Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/susy/sass/susy/_grid.scss */
418
+ body * {
419
+ -webkit-box-sizing: border-box;
420
+ -moz-box-sizing: border-box;
421
+ box-sizing: border-box; }
422
+
423
+ /* line 17, ../scss/partials/_main.scss */
424
+ .container {
425
+ background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(100, 100, 225, 0.25)), color-stop(6.77966%, rgba(100, 100, 225, 0.25)), color-stop(6.77966%, rgba(0, 0, 0, 0)), color-stop(8.47458%, rgba(0, 0, 0, 0)), color-stop(8.47458%, rgba(100, 100, 225, 0.25)), color-stop(15.25424%, rgba(100, 100, 225, 0.25)), color-stop(15.25424%, rgba(0, 0, 0, 0)), color-stop(16.94915%, rgba(0, 0, 0, 0)), color-stop(16.94915%, rgba(100, 100, 225, 0.25)), color-stop(23.72881%, rgba(100, 100, 225, 0.25)), color-stop(23.72881%, rgba(0, 0, 0, 0)), color-stop(25.42373%, rgba(0, 0, 0, 0)), color-stop(25.42373%, rgba(100, 100, 225, 0.25)), color-stop(32.20339%, rgba(100, 100, 225, 0.25)), color-stop(32.20339%, rgba(0, 0, 0, 0)), color-stop(33.89831%, rgba(0, 0, 0, 0)), color-stop(33.89831%, rgba(100, 100, 225, 0.25)), color-stop(40.67797%, rgba(100, 100, 225, 0.25)), color-stop(40.67797%, rgba(0, 0, 0, 0)), color-stop(42.37288%, rgba(0, 0, 0, 0)), color-stop(42.37288%, rgba(100, 100, 225, 0.25)), color-stop(49.15254%, rgba(100, 100, 225, 0.25)), color-stop(49.15254%, rgba(0, 0, 0, 0)), color-stop(50.84746%, rgba(0, 0, 0, 0)), color-stop(50.84746%, rgba(100, 100, 225, 0.25)), color-stop(57.62712%, rgba(100, 100, 225, 0.25)), color-stop(57.62712%, rgba(0, 0, 0, 0)), color-stop(59.32203%, rgba(0, 0, 0, 0)), color-stop(59.32203%, rgba(100, 100, 225, 0.25)), color-stop(66.10169%, rgba(100, 100, 225, 0.25)), color-stop(66.10169%, rgba(0, 0, 0, 0)), color-stop(67.79661%, rgba(0, 0, 0, 0)), color-stop(67.79661%, rgba(100, 100, 225, 0.25)), color-stop(74.57627%, rgba(100, 100, 225, 0.25)), color-stop(74.57627%, rgba(0, 0, 0, 0)), color-stop(76.27119%, rgba(0, 0, 0, 0)), color-stop(76.27119%, rgba(100, 100, 225, 0.25)), color-stop(83.05085%, rgba(100, 100, 225, 0.25)), color-stop(83.05085%, rgba(0, 0, 0, 0)), color-stop(84.74576%, rgba(0, 0, 0, 0)), color-stop(84.74576%, rgba(100, 100, 225, 0.25)), color-stop(91.52542%, rgba(100, 100, 225, 0.25)), color-stop(91.52542%, rgba(0, 0, 0, 0)), color-stop(93.22034%, rgba(0, 0, 0, 0)), color-stop(93.22034%, rgba(100, 100, 225, 0.25)), color-stop(100.0%, rgba(100, 100, 225, 0.25)), color-stop(100.0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
426
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
427
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
428
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
429
+ background-image: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(100, 100, 225, 0.25) 0%, rgba(100, 100, 225, 0.25) 6.77966%, rgba(0, 0, 0, 0) 6.77966%, rgba(0, 0, 0, 0) 8.47458%, rgba(100, 100, 225, 0.25) 8.47458%, rgba(100, 100, 225, 0.25) 15.25424%, rgba(0, 0, 0, 0) 15.25424%, rgba(0, 0, 0, 0) 16.94915%, rgba(100, 100, 225, 0.25) 16.94915%, rgba(100, 100, 225, 0.25) 23.72881%, rgba(0, 0, 0, 0) 23.72881%, rgba(0, 0, 0, 0) 25.42373%, rgba(100, 100, 225, 0.25) 25.42373%, rgba(100, 100, 225, 0.25) 32.20339%, rgba(0, 0, 0, 0) 32.20339%, rgba(0, 0, 0, 0) 33.89831%, rgba(100, 100, 225, 0.25) 33.89831%, rgba(100, 100, 225, 0.25) 40.67797%, rgba(0, 0, 0, 0) 40.67797%, rgba(0, 0, 0, 0) 42.37288%, rgba(100, 100, 225, 0.25) 42.37288%, rgba(100, 100, 225, 0.25) 49.15254%, rgba(0, 0, 0, 0) 49.15254%, rgba(0, 0, 0, 0) 50.84746%, rgba(100, 100, 225, 0.25) 50.84746%, rgba(100, 100, 225, 0.25) 57.62712%, rgba(0, 0, 0, 0) 57.62712%, rgba(0, 0, 0, 0) 59.32203%, rgba(100, 100, 225, 0.25) 59.32203%, rgba(100, 100, 225, 0.25) 66.10169%, rgba(0, 0, 0, 0) 66.10169%, rgba(0, 0, 0, 0) 67.79661%, rgba(100, 100, 225, 0.25) 67.79661%, rgba(100, 100, 225, 0.25) 74.57627%, rgba(0, 0, 0, 0) 74.57627%, rgba(0, 0, 0, 0) 76.27119%, rgba(100, 100, 225, 0.25) 76.27119%, rgba(100, 100, 225, 0.25) 83.05085%, rgba(0, 0, 0, 0) 83.05085%, rgba(0, 0, 0, 0) 84.74576%, rgba(100, 100, 225, 0.25) 84.74576%, rgba(100, 100, 225, 0.25) 91.52542%, rgba(0, 0, 0, 0) 91.52542%, rgba(0, 0, 0, 0) 93.22034%, rgba(100, 100, 225, 0.25) 93.22034%, rgba(100, 100, 225, 0.25) 100.0%, rgba(0, 0, 0, 0) 100.0%, rgba(0, 0, 0, 0) 100%);
430
+ background-position: left top;
431
+ -webkit-background-origin: content;
432
+ -moz-background-origin: content;
433
+ -ms-background-origin: content-box;
434
+ -o-background-origin: content-box;
435
+ background-origin: content-box;
436
+ -webkit-background-clip: content-box;
437
+ -moz-background-clip: content-box;
438
+ background-clip: content-box;
439
+ max-width: 40em; }
440
+ /* line 22, ../scss/partials/_main.scss */
441
+ .container.main {
442
+ padding-top: 1.5em;
443
+ padding-bottom: 1.5em;
444
+ background: white;
445
+ -webkit-border-radius: 1px;
446
+ -moz-border-radius: 1px;
447
+ -ms-border-radius: 1px;
448
+ -o-border-radius: 1px;
449
+ border-radius: 1px;
450
+ -webkit-box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.05);
451
+ -moz-box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.05);
452
+ box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.05); }
453
+
454
+ /* line 32, ../scss/partials/_main.scss */
455
+ hr {
456
+ height: 1px;
457
+ border-width: 0;
458
+ margin: 2.25em 0;
459
+ box-shadow: 0 1px 0 #eeeeee; }
460
+
461
+ /* line 3, ../scss/partials/_typography.scss */
462
+ p {
463
+ font-size: 1em;
464
+ line-height: 1.5em;
465
+ margin-top: 1.5em;
466
+ padding-top: 0em;
467
+ padding-bottom: 0em;
468
+ margin-bottom: 1.5em; }
469
+
470
+ /* line 11, ../scss/partials/_typography.scss */
471
+ h1 {
472
+ font-family: "PT Serif", serif;
473
+ font-size: 2em;
474
+ line-height: 1.125em;
475
+ margin-top: 0.75em;
476
+ padding-top: 0em;
477
+ padding-bottom: 0em;
478
+ margin-bottom: 0.75em; }
479
+
480
+ /* line 11, ../scss/partials/_typography.scss */
481
+ h2 {
482
+ font-family: "PT Serif", serif;
483
+ font-size: 1.5em;
484
+ line-height: 1.25em;
485
+ margin-top: 1em;
486
+ padding-top: 0em;
487
+ padding-bottom: 0em;
488
+ margin-bottom: 1em; }
489
+
490
+ /* line 11, ../scss/partials/_typography.scss */
491
+ h3 {
492
+ font-family: "PT Serif", serif;
493
+ font-size: 1.125em;
494
+ line-height: 1.33333em;
495
+ margin-top: 1.33333em;
496
+ padding-top: 0em;
497
+ padding-bottom: 0em;
498
+ margin-bottom: 1.33333em; }
499
+
500
+ /* line 11, ../scss/partials/_typography.scss */
501
+ h4 {
502
+ font-family: "PT Serif", serif;
503
+ font-size: 1em;
504
+ line-height: 1.5em;
505
+ margin-top: 1.5em;
506
+ padding-top: 0em;
507
+ padding-bottom: 0em;
508
+ margin-bottom: 1.5em; }
509
+
510
+ /* line 11, ../scss/partials/_typography.scss */
511
+ h5 {
512
+ font-family: "PT Serif", serif;
513
+ font-size: 0.8125em;
514
+ line-height: 1.38462em;
515
+ margin-top: 1.84615em;
516
+ padding-top: 0em;
517
+ padding-bottom: 0em;
518
+ margin-bottom: 1.84615em; }
519
+
520
+ /* line 11, ../scss/partials/_typography.scss */
521
+ h6 {
522
+ font-family: "PT Serif", serif;
523
+ font-size: 0.75em;
524
+ line-height: 1.5em;
525
+ margin-top: 2em;
526
+ padding-top: 0em;
527
+ padding-bottom: 0em;
528
+ margin-bottom: 2em; }
529
+
530
+ /* line 5, ../scss/partials/_links.scss */
531
+ a, a:hover, a:active, a:visited {
532
+ color: black;
533
+ text-decoration: none;
534
+ border-bottom: 1px solid #a2a2a2; }
535
+ /* line 11, ../scss/partials/_links.scss */
536
+ a:hover {
537
+ border-bottom: 0; }
538
+
539
+ /* line 2, ../scss/sections/_header.scss */
540
+ header {
541
+ border-bottom: 1px solid #eeeeee; }
542
+ /* line 6, ../scss/sections/_header.scss */
543
+ header h1 {
544
+ font-size: 2.75em;
545
+ line-height: 1.09091em;
546
+ margin-top: 0.54545em;
547
+ padding-top: 0em;
548
+ padding-bottom: 0em;
549
+ margin-bottom: 0em; }
550
+ /* line 12, ../scss/sections/_header.scss */
551
+ header h3 {
552
+ color: #666666;
553
+ font-style: italic;
554
+ font-weight: 400; }
555
+
556
+ /* line 1, ../scss/sections/_footer.scss */
557
+ footer {
558
+ border-top: 1px solid #eeeeee;
559
+ margin-top: 1.5em;
560
+ padding: 1.5em 0;
561
+ font-size: 0.875em;
562
+ line-height: 1.28571em; }
563
+ /* line 11, ../scss/sections/_footer.scss */
564
+ footer ul {
565
+ margin: 0;
566
+ padding: 0;
567
+ float: right; }
568
+ /* line 16, ../scss/sections/_footer.scss */
569
+ footer ul li {
570
+ text-align: right;
571
+ list-style-type: none;
572
+ float: left;
573
+ margin-left: 0.75em; }
574
+
575
+ /* line 4, ../scss/sections/_home.scss */
576
+ html[data-path="/home"] article {
577
+ border-bottom: 1px solid #eeeeee;
578
+ padding: 1.5em 0; }
579
+ /* line 8, ../scss/sections/_home.scss */
580
+ html[data-path="/home"] article:last-child {
581
+ border-bottom: 0; }
582
+ /* line 10, ../scss/sections/_home.scss */
583
+ html[data-path="/home"] article h2 {
584
+ margin-top: 0em;
585
+ padding-top: 0em;
586
+ padding-bottom: 0em;
587
+ margin-bottom: 1em; }