jekyll-import 0.1.0.beta4 → 0.1.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/History.markdown +5 -0
  3. data/Rakefile +114 -11
  4. data/jekyll-import.gemspec +67 -2
  5. data/lib/jekyll-import.rb +3 -5
  6. data/lib/jekyll-import/importer.rb +6 -0
  7. data/lib/jekyll-import/importers/rss.rb +2 -2
  8. data/lib/jekyll-import/importers/s9y.rb +1 -1
  9. data/lib/jekyll-import/importers/textpattern.rb +1 -1
  10. data/site/.gitignore +4 -0
  11. data/site/CNAME +1 -0
  12. data/site/README +1 -0
  13. data/site/_config.yml +7 -0
  14. data/site/_includes/analytics.html +32 -0
  15. data/site/_includes/docs_contents.html +10 -0
  16. data/site/_includes/docs_contents_mobile.html +14 -0
  17. data/site/_includes/docs_option.html +11 -0
  18. data/site/_includes/docs_ul.html +20 -0
  19. data/site/_includes/footer.html +15 -0
  20. data/site/_includes/header.html +18 -0
  21. data/site/_includes/news_contents.html +23 -0
  22. data/site/_includes/news_contents_mobile.html +11 -0
  23. data/site/_includes/news_item.html +24 -0
  24. data/site/_includes/primary-nav-items.html +14 -0
  25. data/site/_includes/section_nav.html +22 -0
  26. data/site/_includes/top.html +17 -0
  27. data/site/_layouts/default.html +12 -0
  28. data/site/_layouts/docs.html +29 -0
  29. data/site/_layouts/news.html +19 -0
  30. data/site/_layouts/news_item.html +27 -0
  31. data/site/_posts/2013-11-09-jekyll-import-0-1-0-beta4-release.markdown +23 -0
  32. data/site/_posts/2013-11-18-jekyll-import-0-1-0-rc1-released.markdown +17 -0
  33. data/site/css/gridism.css +110 -0
  34. data/site/css/normalize.css +1 -0
  35. data/site/css/pygments.css +70 -0
  36. data/site/css/style.css +946 -0
  37. data/site/docs/contributing.md +8 -0
  38. data/site/docs/csv.md +25 -0
  39. data/site/docs/drupal6.md +24 -0
  40. data/site/docs/drupal7.md +24 -0
  41. data/site/docs/enki.md +23 -0
  42. data/site/docs/google_reader.md +19 -0
  43. data/site/docs/history.md +7 -0
  44. data/site/docs/index.md +17 -0
  45. data/site/docs/installation.md +26 -0
  46. data/site/docs/joomla.md +26 -0
  47. data/site/docs/jrnl.md +23 -0
  48. data/site/docs/marley.md +20 -0
  49. data/site/docs/mephisto.md +23 -0
  50. data/site/docs/mt.md +23 -0
  51. data/site/docs/posterous.md +25 -0
  52. data/site/docs/rss.md +19 -0
  53. data/site/docs/s9y.md +19 -0
  54. data/site/docs/textpattern.md +30 -0
  55. data/site/docs/third-party.md +30 -0
  56. data/site/docs/tumblr.md +24 -0
  57. data/site/docs/typo.md +26 -0
  58. data/site/docs/usage.md +28 -0
  59. data/site/docs/wordpress.md +31 -0
  60. data/site/docs/wordpressdotcom.md +44 -0
  61. data/site/favicon.png +0 -0
  62. data/site/feed.xml +36 -0
  63. data/site/img/article-footer.png +0 -0
  64. data/site/img/footer-arrow.png +0 -0
  65. data/site/img/footer-logo.png +0 -0
  66. data/site/img/logo-2x.png +0 -0
  67. data/site/img/octojekyll.png +0 -0
  68. data/site/img/tube.png +0 -0
  69. data/site/img/tube1x.png +0 -0
  70. data/site/index.html +100 -0
  71. data/site/js/modernizr-2.5.3.min.js +4 -0
  72. data/site/news/index.html +10 -0
  73. data/site/news/releases/index.html +10 -0
  74. metadata +68 -3
@@ -0,0 +1,946 @@
1
+ /* Base */
2
+
3
+ * {
4
+ box-sizing: border-box;
5
+ -webkit-box-sizing: border-box;
6
+ -moz-box-sizing: border-box;
7
+ }
8
+
9
+ body {
10
+ font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
11
+ font-size: 21px;
12
+ font-weight: 300;
13
+ color: #ddd;
14
+ background: #333;
15
+ border-top: 5px solid #fc0;
16
+ box-shadow: inset 0 3px 30px rgba(0,0,0,.3);
17
+ text-shadow: 0 1px 3px rgba(0,0,0,.5);
18
+ }
19
+
20
+ .clear {
21
+ display: block;
22
+ }
23
+
24
+ .clear:after {
25
+ content: " ";
26
+ display: block;
27
+ height: 0;
28
+ clear: both;
29
+ visibility: hidden;
30
+ }
31
+
32
+ /* Sections */
33
+
34
+ body > header, body > section, body > footer {
35
+ float: left;
36
+ width: 100%;
37
+ clear: both;
38
+ }
39
+
40
+ /* Header */
41
+
42
+ body > header h1, body > header nav {
43
+ display: inline-block;
44
+ }
45
+
46
+ body > header h1 span {
47
+ display: none;
48
+ }
49
+
50
+ nav ul {
51
+ padding: 0;
52
+ margin: 0;
53
+ }
54
+
55
+ nav li {
56
+ display: inline-block;
57
+ }
58
+
59
+ .main-nav {
60
+ margin-top: 52px;
61
+ }
62
+
63
+ .main-nav li {
64
+ margin-right: 10px;
65
+ }
66
+
67
+ .main-nav li a {
68
+ border-radius: 5px;
69
+ font-weight: 800;
70
+ font-size: 14px;
71
+ padding: 0.5em 1em;
72
+ text-shadow: none;
73
+ text-transform: uppercase;
74
+ transition: all .25s;
75
+ -moz-transition: all .25s;
76
+ -webkit-transition: all .25s;
77
+ }
78
+
79
+ .main-nav li a:hover {
80
+ background: #252525;
81
+ box-shadow: inset 0 1px 3px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.1);
82
+ text-shadow: 0 1px 3px rgba(0,0,0,.5);
83
+ }
84
+
85
+ .main-nav li.current a {
86
+ background: #fc0;
87
+ color: #222;
88
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 1px 5px rgba(0,0,0,.5);
89
+ text-shadow: 0 1px 0 rgba(255,255,255,.3);
90
+ }
91
+
92
+ .mobile-nav ul {
93
+ overflow: hidden;
94
+ width: 100%;
95
+ display: table;
96
+ }
97
+
98
+ .mobile-nav a {
99
+ float: left;
100
+ width: 100%;
101
+ background: #333;
102
+ color: #fc0;
103
+ text-align: center;
104
+ text-transform: uppercase;
105
+ font-size: 14px;
106
+ font-weight: 800;
107
+ padding: 5px;
108
+ border-radius: 5px;
109
+ }
110
+
111
+ .mobile-nav .current a {
112
+ background: #fc0;
113
+ color: #222;
114
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 1px 5px rgba(0,0,0,.5);
115
+ text-shadow: 0 1px 0 rgba(255,255,255,.3);
116
+ }
117
+
118
+ .mobile-nav li {
119
+ display: table-cell;
120
+ width: 25%;
121
+ padding: 8px;
122
+ }
123
+
124
+ @media (max-width: 768px){
125
+ .main-nav ul {
126
+ text-align: right;
127
+ }
128
+ }
129
+ @media (max-width: 830px){
130
+ .main-nav .show-on-mobiles {
131
+ display: inline;
132
+ }
133
+ .main-nav .hide-on-mobiles {
134
+ display: none;
135
+ }
136
+ }
137
+
138
+ /* Footer */
139
+
140
+ body > footer {
141
+ background: #222;
142
+ font-size: 16px;
143
+ padding-bottom: 5px;
144
+ color: #888;
145
+ margin-top: 40px;
146
+ }
147
+
148
+ body > footer a {
149
+ color: #fff;
150
+ }
151
+
152
+ body > footer .align-right p, body > footer img {
153
+ display: inline-block;
154
+ }
155
+
156
+ body > footer img {
157
+ position: relative;
158
+ top: 8px;
159
+ margin-left: 5px;
160
+ width: 100px;
161
+ height: 30px;
162
+ opacity: .8;
163
+ padding: 1px;
164
+ -webkit-transition: opacity .2s;
165
+ -moz-transition: opacity .2s;
166
+ transition: opacity .2s;
167
+ }
168
+
169
+ body > footer a:hover img {
170
+ opacity: 1;
171
+ }
172
+
173
+ @media (max-width: 568px){
174
+ footer .one-third p {
175
+ margin-bottom: 0;
176
+ }
177
+ footer .two-thirds p {
178
+ margin-top: -20px;
179
+ }
180
+ }
181
+
182
+ /* Intro */
183
+
184
+ .intro .unit {
185
+ padding: 10px 0 40px;
186
+ }
187
+
188
+ .intro p {
189
+ font-size: 1.75em;
190
+ line-height: 1em;
191
+ margin: 0;
192
+ }
193
+
194
+ @media (min-width: 569px){
195
+ .intro p {
196
+ font-size: 3.2em;
197
+ }
198
+ }
199
+
200
+ /* Quickstart */
201
+
202
+ .quickstart {
203
+ background: #3F1F1F;
204
+ color: #fff;
205
+ margin: 60px 0;
206
+ box-shadow: inset 0 3px 10px rgba(0,0,0,.4);
207
+ }
208
+
209
+ .quickstart .content {
210
+ padding: 0px 0;
211
+ }
212
+
213
+ .quickstart h4 {
214
+ font-size: 24px;
215
+ line-height: 24px;
216
+ margin-top: 20px;
217
+ text-shadow: 0 1px 3px rgba(0,0,0,.8);
218
+ }
219
+
220
+ .quickstart .code {
221
+ font-size: 12px;
222
+ display: block;
223
+ margin: 0 0 -30px;
224
+ }
225
+
226
+ @media (min-width: 768px){
227
+ .quickstart .code {
228
+ font-size: 18px;
229
+ margin: -30px 0;
230
+ float: right;
231
+ }
232
+ .quickstart h4 {
233
+ margin: 50px 0 0;
234
+ text-align: center;
235
+ }
236
+ }
237
+
238
+ /* Code */
239
+
240
+ .quickstart .code {
241
+ display: block;
242
+ padding: 0;
243
+ font-family: Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;
244
+ line-height: 1.3em;
245
+ }
246
+
247
+ .quickstart .code .title {
248
+ display: block;
249
+ text-align: center;
250
+ margin: 0 20px;
251
+ padding: 5px 0;
252
+ border-radius: 5px 5px 0 0;
253
+ box-shadow: 0 3px 10px rgba(0,0,0,.5);
254
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
255
+ font-size: 16px;
256
+ font-weight: normal;
257
+ color: #444;
258
+ text-shadow: 0 1px 0 rgba(255,255,255,.5);
259
+ background: #f7f7f7;
260
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjclIiBzdG9wLWNvbG9yPSIjY2ZjZmNmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FhYWFhYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
261
+ background: -moz-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaaaaa 100%);
262
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(7%,#cfcfcf), color-stop(100%,#aaaaaa));
263
+ background: -webkit-linear-gradient(top, #f7f7f7 0%,#cfcfcf 7%,#aaaaaa 100%);
264
+ background: -o-linear-gradient(top, #f7f7f7 0%,#cfcfcf 7%,#aaaaaa 100%);
265
+ background: -ms-linear-gradient(top, #f7f7f7 0%,#cfcfcf 7%,#aaaaaa 100%);
266
+ background: linear-gradient(top, #f7f7f7 0%,#cfcfcf 7%,#aaaaaa 100%);
267
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#aaaaaa',GradientType=0 );
268
+ border-bottom: 1px solid #111;
269
+ }
270
+
271
+ .quickstart .code .shell {
272
+ padding: 20px;
273
+ text-shadow: none;
274
+ margin: 0 20px;
275
+ background: #3d3d3d;
276
+ border-radius: 0 0 5px 5px;
277
+ box-shadow: 0 5px 30px rgba(0,0,0,.3);
278
+ }
279
+
280
+ .quickstart .code .line {
281
+ display: block;
282
+ margin: 0;
283
+ padding: 0;
284
+ }
285
+
286
+ .quickstart .code .line span {
287
+ display: inline-block;
288
+ }
289
+
290
+ .quickstart .code .path {
291
+ color: #87ceeb;
292
+ }
293
+
294
+ .quickstart .code .prompt {
295
+ color: #cd5c5c;
296
+ }
297
+
298
+ .quickstart .code .command {
299
+ color: #f0e68c;
300
+ }
301
+
302
+ .quickstart .code .output {
303
+ color: #888;
304
+ }
305
+
306
+ /* Free Hosting */
307
+
308
+ .free-hosting .pane {
309
+ background: #444;
310
+ border-radius: 10px;
311
+ text-shadow: none;
312
+ position: relative;
313
+ padding: 0 20px 30px;
314
+ }
315
+
316
+ .free-hosting img {
317
+ margin: -30px 0 0;
318
+ width: 180px;
319
+ height: 150px;
320
+ }
321
+
322
+ .free-hosting h2 {
323
+ font-size: 28px;
324
+ }
325
+
326
+ .free-hosting p,
327
+ .free-hosting a {
328
+ font-size: 16px;
329
+ }
330
+
331
+ .free-hosting p {
332
+ margin: .75em 0;
333
+ }
334
+
335
+ @media (min-width: 768px){
336
+ .free-hosting img {
337
+ float: left;
338
+ margin: -20px -30px -30px -50px;
339
+ width: 300px;
340
+ height: 251px;
341
+ }
342
+ .free-hosting .pane-content {
343
+ margin-top: 35px;
344
+ padding-right: 30px;
345
+ }
346
+ .free-hosting p,
347
+ .free-hosting a {
348
+ font-size: 18px;
349
+ }
350
+ .free-hosting .pane:after {
351
+ content: " ";
352
+ float: right;
353
+ background: url(../img/footer-arrow.png) top left no-repeat;
354
+ width: 73px;
355
+ height: 186px;
356
+ position: absolute;
357
+ right: 0;
358
+ bottom: -30px;
359
+ }
360
+ }
361
+
362
+ /* Article - Used for both docs and news */
363
+
364
+
365
+ article {
366
+ background: #444;
367
+ border-radius: 10px;
368
+ padding: 20px;
369
+ margin: 0 10px;
370
+ box-shadow: 0 3px 10px rgba(0,0,0,.1);
371
+ font-size: 16px;
372
+ }
373
+
374
+ @media (max-width: 480px){
375
+ article ul {
376
+ padding-left: 20px;
377
+ }
378
+ }
379
+
380
+ @media (max-width: 568px){
381
+ article {
382
+ margin: 0;
383
+ }
384
+ }
385
+
386
+ @media (min-width: 768px){
387
+ article {
388
+ padding: 40px 40px 30px;
389
+ font-size: 21px;
390
+ }
391
+ }
392
+
393
+ /* Right-side nav - used by both docs and news */
394
+
395
+ aside {
396
+ padding-top: 30px;
397
+ }
398
+
399
+ aside h4 {
400
+ text-transform: uppercase;
401
+ font-size: 14px;
402
+ font-weight: 700;
403
+ padding: 0 0 10px 30px;
404
+ margin-left: -30px;
405
+ display: inline-block;
406
+ border-bottom: 1px solid #c00;
407
+ }
408
+
409
+ aside ul {
410
+ padding-left: 0;
411
+ }
412
+
413
+ aside ul:first-child {
414
+ margin-top: 0;
415
+ }
416
+
417
+ aside li {
418
+ list-style-type: none;
419
+ }
420
+
421
+ aside li a {
422
+ font-size: 16px;
423
+ position: relative
424
+ }
425
+
426
+ aside li.current a:before {
427
+ content: "";
428
+ border-color: transparent transparent transparent #444;
429
+ border-style: solid;
430
+ border-width: 10px;
431
+ width: 0;
432
+ height: 0;
433
+ position: absolute;
434
+ top: 0;
435
+ left: -30px;
436
+ }
437
+
438
+ /* Documentation */
439
+
440
+ .docs article {
441
+ min-height: 800px;
442
+ }
443
+
444
+ .docs .content {
445
+ padding: 0;
446
+ }
447
+
448
+ .section-nav {
449
+ text-align: center;
450
+ padding-top: 40px;
451
+ position: relative;
452
+ background: url(../img/article-footer.png) top center no-repeat;
453
+ margin: 40px -20px 10px;
454
+ }
455
+
456
+ .section-nav > div {
457
+ width: 49.5%;
458
+ }
459
+
460
+ .section-nav a, .section-nav span {
461
+ color: #fff;
462
+ font-size: 16px;
463
+ text-transform: uppercase;
464
+ font-weight: 700;
465
+ padding: 8px 12px 10px;
466
+ border-radius: 5px;
467
+ /*border: 1px solid #333;*/
468
+ box-shadow: 0 1px 3px rgba(0,0,0,.3), inset 0 1px 1px rgba(255,255,255,.5);
469
+ background: #777;
470
+ }
471
+
472
+ .section-nav a:hover {
473
+ color: #fff;
474
+ background: #888;
475
+ }
476
+
477
+ .section-nav .next, .section-nav .prev {
478
+ position: relative;
479
+ }
480
+
481
+ .section-nav .next:after, .section-nav .prev:before {
482
+ font-size: 36px;
483
+ color: #222;
484
+ font-weight: 800;
485
+ text-shadow: 0 1px 0 rgba(255,255,255,.4);
486
+ position: absolute;
487
+ top: -7px;
488
+ }
489
+
490
+ .section-nav .next:after {
491
+ content: "›";
492
+ right: 10px;
493
+ }
494
+
495
+ .section-nav .prev:before {
496
+ content: "‹";
497
+ left: 10px;
498
+ }
499
+
500
+ .section-nav .prev, .section-nav .prev:hover {
501
+ /*float: left;*/
502
+ padding-left: 30px;
503
+ }
504
+
505
+ .section-nav .next, .section-nav .next:hover {
506
+ /*float: right;*/
507
+ padding-right: 30px;
508
+ }
509
+
510
+ .section-nav .disabled {
511
+ opacity: .5;
512
+ /*filter: alpha*/
513
+ cursor: default;
514
+ }
515
+
516
+ .docs-nav-mobile select {
517
+ width: 100%;
518
+ }
519
+
520
+ /* News */
521
+
522
+ article h2:first-child {
523
+ margin-top: 0;
524
+ }
525
+
526
+ .post-category,
527
+ .post-meta {
528
+ display: inline-block;
529
+ vertical-align: middle;
530
+ font-size: .8em;
531
+ }
532
+
533
+ .post-category {
534
+ display: inline-block;
535
+ margin-left: -30px;
536
+ padding: 6px 10px 8px;
537
+ padding-left: 50px;
538
+ border-radius: 0 5px 5px 0;
539
+ position: relative;
540
+ box-shadow: 0 1px 5px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(0,0,0,.3);
541
+ background: #9e2812;
542
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzllMjgxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZjBkMGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
543
+ background: -moz-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);
544
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9e2812), color-stop(100%,#6f0d0d));
545
+ background: -webkit-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
546
+ background: -o-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
547
+ background: -ms-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
548
+ background: linear-gradient(to bottom, #9e2812 0%,#6f0d0d 100%);
549
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e2812', endColorstr='#6f0d0d',GradientType=0 );
550
+ }
551
+
552
+ .label {
553
+ float: left;
554
+ text-transform: uppercase;
555
+ font-weight: bold;
556
+ text-shadow: 0 -1px 0 rgba(0,0,0,.5);
557
+ }
558
+
559
+ @media (max-width: 568px){
560
+ .post-category {
561
+ padding-left: 30px;
562
+ }
563
+ }
564
+
565
+ @media (min-width: 768px){
566
+ .post-category {
567
+ margin-left: -50px;
568
+ }
569
+ }
570
+
571
+ .post-category:before {
572
+ content: "";
573
+ position: absolute;
574
+ top: -10px;
575
+ left: 0px;
576
+ border-color: transparent #6f0d0d #6f0d0d transparent;
577
+ border-style: solid;
578
+ border-width: 5px;
579
+ width: 0;
580
+ height: 0;
581
+ }
582
+
583
+ .avatar {
584
+ width: 24px;
585
+ height: 24px;
586
+ border-radius: 3px;
587
+ display: inline-block;
588
+ vertical-align: middle;
589
+ }
590
+
591
+ .post-meta {
592
+ padding: 5px 0;
593
+ color: #aaa;
594
+ font-weight: 600;
595
+ text-shadow: 0 -1px 0 #000;
596
+ }
597
+
598
+ .post-date,
599
+ .post-author {
600
+ margin-left: 10px;
601
+ }
602
+
603
+ .news article + article {
604
+ margin-top: -10px;
605
+ border-radius: 0 0 10px 10px;
606
+ border-top: 1px solid #555;
607
+ box-shadow: 0 -1px 0 #2f2f2f;
608
+ }
609
+
610
+ /* Code Highlighting */
611
+
612
+
613
+ pre, code {
614
+ white-space: pre;
615
+ display: inline-block;
616
+ margin: 0;
617
+ padding: 0;
618
+ font-family: Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;
619
+ font-size: 14px;
620
+ padding: 0 .5em;
621
+ line-height: 1.8em;
622
+ }
623
+
624
+ @media (min-width: 768px){
625
+ pre, code {
626
+ font-size: 16px;
627
+ }
628
+ }
629
+
630
+ .highlight, p > pre, p > code, p > nobr > code, li > code, h5 > code, .note > code {
631
+ background: #333;
632
+ color: #fff;
633
+ border-radius: 5px;
634
+ box-shadow: inset 0 1px 10px rgba(0,0,0,.3),
635
+ 0 1px 0 rgba(255,255,255,.1),
636
+ 0 -1px 0 rgba(0,0,0,.5);
637
+ }
638
+
639
+ .note code {
640
+ background-color: rgba(0,0,0,0.2);
641
+ margin-left: 2.5px;
642
+ margin-right: 2.5px;
643
+ font-size: 0.8em;
644
+ }
645
+
646
+ .highlight {
647
+ padding: 10px 0;
648
+ width: 100%;
649
+ overflow: auto;
650
+ }
651
+
652
+ /* HTML Elements */
653
+
654
+ h1, h2, h3, h4, h5, h6 {
655
+ margin: 0;
656
+ }
657
+
658
+ a {
659
+ color: #fc0;
660
+ text-decoration: none;
661
+ transition: all .25s;
662
+ -moz-transition: all .25s;
663
+ -webkit-transition: all .25s;
664
+ }
665
+
666
+ a:hover {
667
+ color: #f90;
668
+ }
669
+
670
+ strong {
671
+ font-weight: 700;
672
+ }
673
+
674
+ p {
675
+ line-height: 1.5em;
676
+ }
677
+
678
+ .left { float: left; }
679
+ .right { float: right; }
680
+ .align-right { text-align: right; }
681
+ .align-left { text-align: left; }
682
+ .align-center { text-align: center; }
683
+
684
+ /* Article HTML */
685
+
686
+ article h2,
687
+ article h3,
688
+ article h4,
689
+ article h5,
690
+ article h6 {
691
+ margin: 1em 0;
692
+ }
693
+
694
+ article h4 {
695
+ color: #fff;
696
+ }
697
+
698
+ h5, h6 {
699
+ font-size: 1em;
700
+ font-style: italic;
701
+ }
702
+
703
+ article ul li p {
704
+ margin: 0;
705
+ }
706
+
707
+ article ul li, article ol li {
708
+ line-height: 1.5em;
709
+ margin-bottom: 0.5em;
710
+ }
711
+
712
+ article ul li blockquote {
713
+ margin: 10px 0;
714
+ }
715
+
716
+ blockquote {
717
+ border-left: 2px solid #777;
718
+ padding-left: 20px;
719
+ font-style: italic;
720
+ font-size: 18px;
721
+ font-weight: 500;
722
+ }
723
+
724
+
725
+ /* Tables */
726
+
727
+ table {
728
+ width: 100%;
729
+ background: #555;
730
+ margin: .5em 0;
731
+ border-radius: 5px;
732
+ box-shadow: 0 1px 3px rgba(0,0,0,.3);
733
+ }
734
+
735
+ thead {
736
+ border-top-left-radius: 5px;
737
+ border-top-right-radius: 5px;
738
+ color: #fff;
739
+ background: #3a3a3a;
740
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNhM2EzYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxZTFlMWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
741
+ background: -moz-linear-gradient(top, #3a3a3a 0%, #1e1e1e 100%);
742
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a3a3a), color-stop(100%,#1e1e1e));
743
+ background: -webkit-linear-gradient(top, #3a3a3a 0%,#1e1e1e 100%);
744
+ background: -o-linear-gradient(top, #3a3a3a 0%,#1e1e1e 100%);
745
+ background: -ms-linear-gradient(top, #3a3a3a 0%,#1e1e1e 100%);
746
+ background: linear-gradient(to bottom, #3a3a3a 0%,#1e1e1e 100%);
747
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a3a3a', endColorstr='#1e1e1e',GradientType=0 );
748
+ }
749
+
750
+ thead th {
751
+ position: relative;
752
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
753
+ }
754
+
755
+ thead th:first-child {
756
+ border-top-left-radius: 5px;
757
+ }
758
+
759
+ thead th:last-child {
760
+ border-top-right-radius: 5px;
761
+ }
762
+
763
+ td {
764
+ padding: .5em .75em;
765
+ }
766
+
767
+ td p {
768
+ margin: 0;
769
+ }
770
+
771
+ th {
772
+ text-transform: uppercase;
773
+ font-size: 16px;
774
+ padding: .5em .75em;
775
+ text-shadow: 0 -1px 0 rgba(0,0,0,.9);
776
+ color: #888;
777
+ }
778
+
779
+ tbody td {
780
+ border-top: 1px solid rgba(0,0,0,.1);
781
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
782
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
783
+ background: -moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
784
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.1)), color-stop(100%,rgba(255,255,255,0)));
785
+ background: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0) 100%);
786
+ background: -o-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0) 100%);
787
+ background: -ms-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0) 100%);
788
+ background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0) 100%);
789
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#00ffffff',GradientType=0 );
790
+ }
791
+
792
+ td p {
793
+ font-size: 16px;
794
+ }
795
+
796
+ td p code {
797
+ font-size: 14px;
798
+ }
799
+
800
+ code.option, th .option, code.filter, th .filter {
801
+ color: #50B600;
802
+ }
803
+
804
+ code.flag, th .flag, code.output, th .output {
805
+ color: #049DCE;
806
+ }
807
+
808
+ code.option, code.flag, code.filter, code.output {
809
+ margin-bottom: 2px;
810
+ }
811
+
812
+ /* Note types */
813
+
814
+ .note {
815
+ margin: 30px 0;
816
+ margin-left: -30px;
817
+ padding: 20px 20px 24px;
818
+ padding-left: 50px;
819
+ border-radius: 0 5px 5px 0;
820
+ position: relative;
821
+ box-shadow: 0 1px 5px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 0 rgba(0,0,0,.3);
822
+ background: #7e6d42;
823
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdlNmQ0MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1YzRlMzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
824
+ background: -moz-linear-gradient(top, #7e6d42 0%, #5c4e35 100%);
825
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7e6d42), color-stop(100%,#5c4e35));
826
+ background: -webkit-linear-gradient(top, #7e6d42 0%,#5c4e35 100%);
827
+ background: -o-linear-gradient(top, #7e6d42 0%,#5c4e35 100%);
828
+ background: -ms-linear-gradient(top, #7e6d42 0%,#5c4e35 100%);
829
+ background: linear-gradient(to bottom, #7e6d42 0%,#5c4e35 100%);
830
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7e6d42', endColorstr='#5c4e35',GradientType=0 );
831
+ }
832
+
833
+ @media (max-width: 568px){
834
+ .note {
835
+ margin-right: -30px;
836
+ }
837
+ }
838
+
839
+ @media (min-width: 768px){
840
+ .note {
841
+ margin-left: -50px;
842
+ }
843
+ }
844
+
845
+ .note:before {
846
+ content: "";
847
+ position: absolute;
848
+ top: -10px;
849
+ left: 0px;
850
+ border-color: transparent #222 #222 transparent;
851
+ border-style: solid;
852
+ border-width: 5px;
853
+ width: 0;
854
+ height: 0;
855
+ }
856
+
857
+ .note h5, .note p {
858
+ margin: 0;
859
+ color: #fff;
860
+ }
861
+
862
+ .note h5 {
863
+ line-height: 1.5em;
864
+ font-weight: 800;
865
+ font-style: normal;
866
+ }
867
+
868
+ .note p {
869
+ font-weight: 400;
870
+ font-size: .75em;
871
+ }
872
+
873
+ .info {
874
+ background: #0389aa;
875
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAzODlhYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDYxN2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
876
+ background: -moz-linear-gradient(top, #0389aa 0%, #00617f 100%);
877
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0389aa), color-stop(100%,#00617f));
878
+ background: -webkit-linear-gradient(top, #0389aa 0%,#00617f 100%);
879
+ background: -o-linear-gradient(top, #0389aa 0%,#00617f 100%);
880
+ background: -ms-linear-gradient(top, #0389aa 0%,#00617f 100%);
881
+ background: linear-gradient(to bottom, #0389aa 0%,#00617f 100%);
882
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0389aa', endColorstr='#00617f',GradientType=0 );
883
+ }
884
+
885
+ .warning {
886
+ background: #9e2812;
887
+ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzllMjgxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZjBkMGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
888
+ background: -moz-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);
889
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9e2812), color-stop(100%,#6f0d0d));
890
+ background: -webkit-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
891
+ background: -o-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
892
+ background: -ms-linear-gradient(top, #9e2812 0%,#6f0d0d 100%);
893
+ background: linear-gradient(to bottom, #9e2812 0%,#6f0d0d 100%);
894
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e2812', endColorstr='#6f0d0d',GradientType=0 );
895
+ }
896
+
897
+ .info:before {
898
+ border-color: transparent #00617f #00617f transparent;
899
+ }
900
+
901
+ .warning:before {
902
+ border-color: transparent #6f0d0d #6f0d0d transparent;
903
+ }
904
+
905
+ .note:after {
906
+ content: "★";
907
+ color: #fc0;
908
+ position: absolute;
909
+ top: 14px;
910
+ left: 14px;
911
+ font-size: 28px;
912
+ font-weight: bold;
913
+ text-shadow: 0 -1px 0 rgba(0,0,0,.5);
914
+ }
915
+
916
+ .info:after {
917
+ content: "ⓘ";
918
+ color: #fff;
919
+ position: absolute;
920
+ top: 15px;
921
+ left: 15px;
922
+ font-size: 28px;
923
+ font-weight: bold;
924
+ text-shadow: 0 -1px 0 rgba(0,0,0,.5);
925
+ }
926
+
927
+ .warning:after {
928
+ content: "‼";
929
+ color: #fc0;
930
+ position: absolute;
931
+ top: 15px;
932
+ left: 15px;
933
+ font-size: 32px;
934
+ font-weight: bold;
935
+ text-shadow: 0 -1px 0 rgba(0,0,0,.5);
936
+ }
937
+
938
+ /* Responsive tables */
939
+
940
+ @media (max-width: 768px){
941
+ .mobile-side-scroller {
942
+ overflow-x: scroll;
943
+ margin: 0 -40px;
944
+ padding: 0 10px;
945
+ }
946
+ }