jekyll 2.0.0.alpha.1 → 2.0.0.alpha.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +15 -0
  3. data/.travis.yml +27 -0
  4. data/History.markdown +66 -1
  5. data/LICENSE +2 -2
  6. data/README.markdown +2 -2
  7. data/Rakefile +4 -44
  8. data/bin/jekyll +10 -113
  9. data/docs/jp/CONTRIBUTING.jp.markdown +93 -0
  10. data/docs/jp/README.jp.markdown +69 -0
  11. data/features/create_sites.feature +12 -12
  12. data/features/drafts.feature +23 -2
  13. data/features/embed_filters.feature +7 -5
  14. data/features/include_tag.feature +7 -7
  15. data/features/markdown.feature +4 -4
  16. data/features/pagination.feature +2 -2
  17. data/features/permalinks.feature +7 -7
  18. data/features/post_data.feature +21 -21
  19. data/features/post_excerpts.feature +6 -6
  20. data/features/site_configuration.feature +17 -17
  21. data/features/site_data.feature +15 -15
  22. data/features/step_definitions/jekyll_steps.rb +4 -4
  23. data/features/support/env.rb +2 -2
  24. data/jekyll.gemspec +17 -284
  25. data/lib/jekyll.rb +21 -5
  26. data/lib/jekyll/command.rb +72 -20
  27. data/lib/jekyll/commands/build.rb +82 -58
  28. data/lib/jekyll/commands/docs.rb +30 -0
  29. data/lib/jekyll/commands/doctor.rb +18 -1
  30. data/lib/jekyll/commands/new.rb +19 -6
  31. data/lib/jekyll/commands/serve.rb +80 -49
  32. data/lib/jekyll/configuration.rb +3 -3
  33. data/lib/jekyll/converters/markdown/kramdown_parser.rb +1 -1
  34. data/lib/jekyll/converters/markdown/redcarpet_parser.rb +1 -0
  35. data/lib/jekyll/convertible.rb +19 -21
  36. data/lib/jekyll/draft.rb +5 -0
  37. data/lib/jekyll/excerpt.rb +5 -5
  38. data/lib/jekyll/layout.rb +2 -2
  39. data/lib/jekyll/layout_reader.rb +15 -2
  40. data/lib/jekyll/page.rb +17 -17
  41. data/lib/jekyll/post.rb +33 -33
  42. data/lib/jekyll/related_posts.rb +5 -5
  43. data/lib/jekyll/site.rb +84 -85
  44. data/lib/jekyll/static_file.rb +13 -0
  45. data/lib/jekyll/stevenson.rb +1 -1
  46. data/lib/jekyll/tags/highlight.rb +16 -6
  47. data/lib/jekyll/tags/include.rb +17 -17
  48. data/lib/jekyll/url.rb +2 -0
  49. data/lib/jekyll/utils.rb +79 -0
  50. data/lib/jekyll/version.rb +3 -0
  51. data/lib/site_template/_config.yml +3 -1
  52. data/lib/site_template/_includes/footer.html +61 -0
  53. data/lib/site_template/_includes/head.html +12 -0
  54. data/lib/site_template/_includes/header.html +27 -0
  55. data/lib/site_template/_layouts/default.html +9 -34
  56. data/lib/site_template/_layouts/page.html +14 -0
  57. data/lib/site_template/_layouts/post.html +11 -5
  58. data/lib/site_template/_posts/0000-00-00-this-post-demonstrates-post-content-styles.md +88 -0
  59. data/lib/site_template/about/index.md +10 -0
  60. data/lib/site_template/css/main.css +333 -100
  61. data/lib/site_template/feed.xml +21 -0
  62. data/lib/site_template/index.html +8 -4
  63. data/lib/site_template/projects/index.md +14 -0
  64. data/script/cibuild +0 -1
  65. data/script/rebund +1 -1
  66. data/site/_includes/analytics.html +2 -2
  67. data/site/_includes/css/normalize.css +1 -1
  68. data/site/_includes/css/style.css +28 -4
  69. data/site/_includes/docs_option.html +1 -1
  70. data/site/_includes/docs_ul.html +3 -3
  71. data/site/_includes/footer.html +1 -1
  72. data/site/_includes/header.html +2 -2
  73. data/site/_includes/news_item.html +1 -1
  74. data/site/_includes/primary-nav-items.html +4 -4
  75. data/site/_includes/section_nav.html +2 -2
  76. data/site/_includes/top.html +6 -7
  77. data/site/_layouts/news_item.html +1 -1
  78. data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +1 -1
  79. data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +1 -1
  80. data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +1 -1
  81. data/site/_posts/2014-03-24-jekyll-1-5-0-released.markdown +19 -0
  82. data/site/docs/assets.md +14 -0
  83. data/site/docs/configuration.md +65 -56
  84. data/site/docs/contributing.md +7 -2
  85. data/site/docs/deployment-methods.md +1 -1
  86. data/site/docs/github-pages.md +1 -1
  87. data/site/docs/history.md +21 -0
  88. data/site/docs/index.md +7 -1
  89. data/site/docs/installation.md +28 -0
  90. data/site/docs/migrations.md +1 -1
  91. data/site/docs/plugins.md +6 -0
  92. data/site/docs/structure.md +3 -3
  93. data/site/docs/templates.md +44 -44
  94. data/site/docs/usage.md +1 -1
  95. data/site/docs/variables.md +15 -2
  96. data/site/favicon.png +0 -0
  97. data/site/feed.xml +0 -1
  98. data/site/img/article-footer.png +0 -0
  99. data/site/img/footer-arrow.png +0 -0
  100. data/site/img/footer-logo.png +0 -0
  101. data/site/img/logo-2x.png +0 -0
  102. data/site/img/octojekyll.png +0 -0
  103. data/site/img/tube.png +0 -0
  104. data/site/img/tube1x.png +0 -0
  105. data/site/index.html +5 -5
  106. data/site/js/modernizr-2.7.1.min.js +4 -0
  107. data/test/helper.rb +11 -0
  108. data/test/source/_drafts/draft-properties.text +11 -0
  109. data/test/source/_posts/2011-04-12-md-extension.md +1 -1
  110. data/test/source/_posts/2014-01-06-permalink-traversal.md +5 -0
  111. data/test/source/exploit.md +5 -0
  112. data/test/source/static_files.html +4 -0
  113. data/test/test_configuration.rb +2 -2
  114. data/test/test_draft.rb +56 -0
  115. data/test/test_excerpt.rb +2 -2
  116. data/test/test_filters.rb +1 -1
  117. data/test/test_generated_site.rb +10 -1
  118. data/test/test_kramdown.rb +1 -1
  119. data/test/test_layout_reader.rb +17 -0
  120. data/test/test_page.rb +10 -0
  121. data/test/test_pager.rb +4 -2
  122. data/test/test_path_sanitization.rb +14 -0
  123. data/test/test_post.rb +12 -1
  124. data/test/test_sass.rb +1 -64
  125. data/test/test_site.rb +26 -1
  126. data/test/test_tags.rb +39 -2
  127. data/test/{test_core_ext.rb → test_utils.rb} +12 -12
  128. metadata +200 -86
  129. data/lib/jekyll/converters/sass.rb +0 -58
  130. data/lib/jekyll/core_ext.rb +0 -55
  131. data/lib/site_template/css/syntax.css +0 -60
  132. data/site/js/modernizr-2.5.3.min.js +0 -4
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ ---
5
+
6
+ This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/)
7
+
8
+ You can find the source code for the Jekyll new theme at: [github.com/jglovier/jekyll-new](https://github.com/jglovier/jekyll-new)
9
+
10
+ You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll)
@@ -1,10 +1,6 @@
1
- /*****************************************************************************/
2
- /*
3
- /* Common
4
- /*
5
- /*****************************************************************************/
1
+ /* Base */
2
+ /* ----------------------------------------------------------*/
6
3
 
7
- /* Global Reset */
8
4
  * {
9
5
  margin: 0;
10
6
  padding: 0;
@@ -14,154 +10,391 @@ html, body { height: 100%; }
14
10
 
15
11
  body {
16
12
  background-color: #FFF;
17
- font: 13.34px Helvetica, Arial, sans-serif;
18
- font-size: small;
19
- text-align: center;
13
+ font-family: Helvetica, Arial, sans-serif;
14
+ font-size: 16px;
15
+ line-height: 1.5;
16
+ font-weight: 300;
17
+ background-color: #fdfdfd;
20
18
  }
21
19
 
22
- h1, h2, h3, h4, h5, h6 {
23
- font-size: 100%; }
20
+ h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: 400; }
24
21
 
25
- h1 { margin-bottom: 1em; }
26
- p { margin: 1em 0; }
22
+ a { color: #2a7ae2; text-decoration: none; }
23
+ a:hover { color: #000; text-decoration: underline; }
24
+ a:visited { color: #205caa; }
27
25
 
28
- a { color: #00a; }
29
- a:hover { color: #000; }
30
- a:visited { color: #a0a; }
26
+ /* Utility */
31
27
 
32
- /*****************************************************************************/
33
- /*
34
- /* Home
35
- /*
36
- /*****************************************************************************/
37
- .posts {
38
- list-style-type: none;
39
- margin-bottom: 2em;
28
+ .wrap:before,
29
+ .wrap:after { content:""; display:table; }
30
+ .wrap:after { clear: both; }
31
+ .wrap {
32
+ max-width: 800px;
33
+ padding: 0 30px;
34
+ margin: 0 auto;
35
+ zoom: 1;
40
36
  }
41
37
 
42
- .posts li {
43
- line-height: 1.75em;
44
- }
45
38
 
46
- .posts span {
47
- color: #aaa;
48
- font-family: Monaco, "Courier New", monospace;
49
- font-size: 80%;
39
+ /* Layout Styles */
40
+ /* ----------------------------------------------------------*/
41
+
42
+ /* Site header */
43
+
44
+ .site-header {
45
+ border-top: 5px solid #333;
46
+ border-bottom: 1px solid #e8e8e8;
47
+ min-height: 56px;
48
+ background-color: white;
50
49
  }
51
50
 
52
- /*****************************************************************************/
53
- /*
54
- /* Site
55
- /*
56
- /*****************************************************************************/
51
+ .site-title,
52
+ .site-title:hover,
53
+ .site-title:visited {
54
+ display: block;
55
+ color: #333;
56
+ font-size: 26px;
57
+ letter-spacing: -1px;
58
+ float: left;
59
+ line-height: 56px;
60
+ position: relative;
61
+ z-index: 1;
62
+ }
57
63
 
58
- .site {
59
- font-size: 115%;
60
- text-align: justify;
61
- width: 42em;
62
- margin: 0 auto 2em;
63
- padding-top: 3em;
64
- line-height: 1.5em;
64
+ .site-nav {
65
+ float: right;
66
+ line-height: 56px;
65
67
  }
66
68
 
67
- @media screen and (max-width: 44em) {
68
- .site {
69
- width: 90%;
70
- }
69
+ .site-nav .menu-icon { display: none; }
70
+
71
+ .site-nav .page-link {
72
+ margin-left: 20px;
73
+ color: #727272;
74
+ letter-spacing: -.5px;
71
75
  }
72
76
 
73
- .header a {
74
- font-weight: bold;
75
- text-decoration: none;
77
+ /* Site footer */
78
+
79
+ .site-footer {
80
+ border-top: 1px solid #e8e8e8;
81
+ padding: 30px 0;
76
82
  }
77
83
 
78
- .title {
79
- display: inline-block;
80
- margin-bottom: 2em;
84
+ .footer-heading {
85
+ font-size: 18px;
86
+ font-weight: 300;
87
+ letter-spacing: -.5px;
88
+ margin-bottom: 15px;
81
89
  }
82
90
 
83
- .title a {
84
- color: #a00;
91
+ .site-footer .column { float: left; margin-bottom: 15px; }
92
+
93
+ .footer-col-1 {
94
+ width: 270px; /*fallback*/
95
+ width: -webkit-calc(35% - 10px);
96
+ width: -moz-calc(35% - 10px);
97
+ width: -o-calc(35% - 10px);
98
+ width: calc(35% - 10px);
99
+ margin-right: 10px
100
+ }
101
+ .footer-col-2 {
102
+ width: 175px; /*fallback*/
103
+ width: -webkit-calc(23.125% - 10px);
104
+ width: -moz-calc(23.125% - 10px);
105
+ width: -o-calc(23.125% - 10px);
106
+ width: calc(23.125% - 10px);
107
+ margin-right: 10px
85
108
  }
109
+ .footer-col-3 {
110
+ width: 335px; /*fallback*/
111
+ width: -webkit-calc(41.875%);
112
+ width: -moz-calc(41.875%);
113
+ width: -o-calc(41.875%);
114
+ width: calc(41.875%);
115
+ }
116
+
117
+ .site-footer ul { list-style: none; }
86
118
 
87
- .title a:hover {
88
- color: #000;
119
+ .site-footer li,
120
+ .site-footer p {
121
+ font-size: 15px;
122
+ letter-spacing: -.3px;
123
+ color: #828282;
89
124
  }
90
125
 
91
- .header a.extra {
92
- color: #aaa;
93
- margin-left: 1em;
126
+ .github-icon-svg,
127
+ .twitter-icon-svg {
128
+ display: inline-block;
129
+ width: 16px;
130
+ height: 16px;
131
+ position: relative;
132
+ top: 3px;
94
133
  }
95
134
 
96
- .header a.extra:hover {
97
- color: #000;
135
+
136
+ /* Page Content styles */
137
+ /* ----------------------------------------------------------*/
138
+
139
+ .page-content {
140
+ padding: 30px 0;
141
+ background-color: #fff;
98
142
  }
99
143
 
100
- .meta {
101
- color: #aaa;
144
+
145
+ /* Home styles */
146
+ /* ----------------------------------------------------------*/
147
+
148
+ .home h1 { margin-bottom: 25px; }
149
+
150
+ .posts { list-style-type: none; }
151
+
152
+ .posts li { margin-bottom: 30px; }
153
+
154
+ .posts .post-link {
155
+ font-size: 24px;
156
+ letter-spacing: -1px;
157
+ line-height: 1;
102
158
  }
103
159
 
104
- .footer {
105
- font-size: 80%;
106
- color: #666;
107
- border-top: 4px solid #eee;
108
- margin-top: 2em;
109
- overflow: hidden;
160
+ .posts .post-date {
161
+ display: block;
162
+ font-size: 15px;
163
+ color: #818181;
110
164
  }
111
165
 
112
- .footer .contact {
113
- float: left;
114
- margin-right: 3em;
166
+
167
+ /* Post styles */
168
+ /* ----------------------------------------------------------*/
169
+
170
+ .post-header { margin: 10px 0 30px; }
171
+
172
+ .post-header h1 {
173
+ font-size: 42px;
174
+ letter-spacing: -1.75px;
175
+ line-height: 1;
176
+ font-weight: 300;
115
177
  }
116
178
 
117
- .footer .contact a {
118
- color: #8085C1;
179
+ .post-header .meta {
180
+ font-size: 15px;
181
+ color: #818181;
182
+ margin-top: 5px;
119
183
  }
120
184
 
121
- .footer .rss {
122
- margin-top: 1.1em;
123
- margin-right: -.2em;
124
- float: right;
185
+ .post-content { margin: 0 0 30px; }
186
+
187
+ .post-content > * { margin: 20px 0; }
188
+
189
+
190
+ .post-content h1,
191
+ .post-content h2,
192
+ .post-content h3,
193
+ .post-content h4,
194
+ .post-content h5,
195
+ .post-content h6 {
196
+ line-height: 1;
197
+ font-weight: 300;
198
+ margin: 40px 0 20px;
125
199
  }
126
200
 
127
- .footer .rss img {
128
- border: 0;
201
+ .post-content h2 {
202
+ font-size: 32px;
203
+ letter-spacing: -1.25px;
129
204
  }
130
205
 
131
- /*****************************************************************************/
132
- /*
133
- /* Posts
134
- /*
135
- /*****************************************************************************/
206
+ .post-content h3 {
207
+ font-size: 26px;
208
+ letter-spacing: -1px;
209
+ }
136
210
 
137
- /* standard */
138
- .post pre {
139
- border: 1px solid #ddd;
140
- background-color: #eef;
141
- padding: 0 .4em;
211
+ .post-content h4 {
212
+ font-size: 20px;
213
+ letter-spacing: -1px;
142
214
  }
143
215
 
144
- .post ul, .post ol {
145
- margin-left: 1.35em;
216
+ .post-content blockquote {
217
+ border-left: 4px solid #e8e8e8;
218
+ padding-left: 20px;
219
+ font-size: 18px;
220
+ opacity: .6;
221
+ letter-spacing: -1px;
222
+ font-style: italic;
223
+ margin: 30px 0;
146
224
  }
147
225
 
226
+ .post-content ul,
227
+ .post-content ol { padding-left: 20px; }
228
+
229
+ .post pre,
148
230
  .post code {
149
- border: 1px solid #ddd;
231
+ border: 1px solid #d5d5e9;
150
232
  background-color: #eef;
151
- padding: 0 .2em;
233
+ padding: 8px 12px;
234
+ border-radius: 3px;
235
+ font-size: 15px;
152
236
  }
153
237
 
154
- .post pre code {
155
- border: none;
156
- }
238
+ .post code { padding: 1px 5px; }
239
+
240
+ .post ul,
241
+ .post ol { margin-left: 1.35em; }
242
+
243
+ .post pre code { border: none; }
157
244
 
158
245
  /* terminal */
159
246
  .post pre.terminal {
160
247
  border: 1px solid #000;
161
248
  background-color: #333;
162
249
  color: #FFF;
250
+ border-radius: 3px;
163
251
  }
164
252
 
165
- .post pre.terminal code {
166
- background-color: #333;
253
+ .post pre.terminal code { background-color: #333; }
254
+
255
+ /* Syntax highlighting styles */
256
+ /* ----------------------------------------------------------*/
257
+
258
+ .highlight { background: #ffffff; }
259
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
260
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
261
+ .highlight .k { font-weight: bold } /* Keyword */
262
+ .highlight .o { font-weight: bold } /* Operator */
263
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
264
+ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
265
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
266
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
267
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
268
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
269
+ .highlight .ge { font-style: italic } /* Generic.Emph */
270
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
271
+ .highlight .gh { color: #999999 } /* Generic.Heading */
272
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
273
+ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
274
+ .highlight .go { color: #888888 } /* Generic.Output */
275
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
276
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
277
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
278
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
279
+ .highlight .kc { font-weight: bold } /* Keyword.Constant */
280
+ .highlight .kd { font-weight: bold } /* Keyword.Declaration */
281
+ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
282
+ .highlight .kr { font-weight: bold } /* Keyword.Reserved */
283
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
284
+ .highlight .m { color: #009999 } /* Literal.Number */
285
+ .highlight .s { color: #d14 } /* Literal.String */
286
+ .highlight .na { color: #008080 } /* Name.Attribute */
287
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
288
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
289
+ .highlight .no { color: #008080 } /* Name.Constant */
290
+ .highlight .ni { color: #800080 } /* Name.Entity */
291
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
292
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
293
+ .highlight .nn { color: #555555 } /* Name.Namespace */
294
+ .highlight .nt { color: #000080 } /* Name.Tag */
295
+ .highlight .nv { color: #008080 } /* Name.Variable */
296
+ .highlight .ow { font-weight: bold } /* Operator.Word */
297
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
298
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
299
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
300
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
301
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
302
+ .highlight .sb { color: #d14 } /* Literal.String.Backtick */
303
+ .highlight .sc { color: #d14 } /* Literal.String.Char */
304
+ .highlight .sd { color: #d14 } /* Literal.String.Doc */
305
+ .highlight .s2 { color: #d14 } /* Literal.String.Double */
306
+ .highlight .se { color: #d14 } /* Literal.String.Escape */
307
+ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
308
+ .highlight .si { color: #d14 } /* Literal.String.Interpol */
309
+ .highlight .sx { color: #d14 } /* Literal.String.Other */
310
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
311
+ .highlight .s1 { color: #d14 } /* Literal.String.Single */
312
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
313
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
314
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
315
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
316
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
317
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
318
+
319
+
320
+ /* media queries */
321
+ /* ----------------------------------------------------------*/
322
+
323
+
324
+ @media screen and (max-width: 750px) {
325
+
326
+ .footer-col-1 { width: 50%; }
327
+
328
+ .footer-col-2 {
329
+ width: 45%; /*fallback*/
330
+ width: -webkit-calc(50% - 10px);
331
+ width: -moz-calc(50% - 10px);
332
+ width: -o-calc(50% - 10px);
333
+ width: calc(50% - 10px);
334
+ margin-right: 0;
335
+ }
336
+
337
+ .site-footer .column.footer-col-3 {
338
+ width: auto;
339
+ float: none;
340
+ clear: both;
341
+ }
342
+
167
343
  }
344
+
345
+ @media screen and (max-width: 600px) {
346
+
347
+ .wrap { padding: 0 12px; }
348
+
349
+ .site-nav {
350
+ position: fixed;
351
+ z-index: 10;
352
+ top: 14px; right: 8px;
353
+ background-color: white;
354
+ border-radius: 5px;
355
+ border: 1px solid #e8e8e8;
356
+ }
357
+
358
+ .site-nav .menu-icon {
359
+ display: block;
360
+ font-size: 24px;
361
+ color: #505050;
362
+ float: right;
363
+ width: 36px;
364
+ text-align: center;
365
+ line-height: 36px;
366
+ }
367
+
368
+ .site-nav .menu-icon svg { width: 18px; height: 16px; }
369
+
370
+ .site-nav .trigger {
371
+ clear: both;
372
+ margin-bottom: 5px;
373
+ display: none;
374
+ }
375
+
376
+ .site-nav:hover .trigger { display: block; }
377
+
378
+ .site-nav .page-link {
379
+ display: block;
380
+ text-align: right;
381
+ line-height: 1.25;
382
+ padding: 5px 10px;
383
+ margin: 0;
384
+ }
385
+
386
+ .post-header h1 { font-size: 36px; }
387
+ .post-content h2 { font-size: 28px; }
388
+ .post-content h3 { font-size: 22px; }
389
+ .post-content h4 { font-size: 18px; }
390
+ .post-content blockquote { padding-left: 10px; }
391
+ .post-content ul,
392
+ .post-content ol { padding-left: 10px; }
393
+
394
+ .site-footer .column {
395
+ float: none;
396
+ clear: both;
397
+ width: auto;
398
+ margin: 0 0 15px; }
399
+
400
+ }