gollum 2.7.0 → 3.0.0

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

Potentially problematic release.


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

@@ -22,13 +22,13 @@ module Precious
22
22
  end
23
23
 
24
24
  def sanitize_empty_params(param)
25
- [nil,''].include?(param) ? nil : CGI.unescape(param)
25
+ [nil, ''].include?(param) ? nil : CGI.unescape(param)
26
26
  end
27
27
 
28
28
  # Ensure path begins with a single leading slash
29
29
  def clean_path(path)
30
30
  if path
31
- (path[0] != '/' ? path.insert(0, '/') : path).gsub(/\/{2,}/,'/')
31
+ (path[0] != '/' ? path.insert(0, '/') : path).gsub(/\/{2,}/, '/')
32
32
  end
33
33
  end
34
34
 
@@ -36,7 +36,7 @@ module Precious
36
36
  # Remove all double slashes
37
37
  def clean_url url
38
38
  return url if url.nil?
39
- url.gsub('%2F','/').gsub(/^\/+/,'').gsub('//','/')
39
+ url.gsub('%2F', '/').gsub(/^\/+/, '').gsub('//', '/')
40
40
  end
41
41
 
42
42
  end
@@ -46,7 +46,7 @@ a:hover, a:visited {
46
46
  }
47
47
 
48
48
  #head h1 {
49
- font-size: 33px;
49
+ font-size: 2.5em;
50
50
  float: left;
51
51
  line-height: normal;
52
52
  margin: 0;
@@ -2,19 +2,53 @@
2
2
  Gollum v3 Template
3
3
  */
4
4
 
5
+ @font-face {
6
+ font-family: 'FontAwesome';
7
+ src: url('../fonts/fontawesome-webfont.eot?v=4.0.3');
8
+ src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ .fa {
14
+ display: inline-block;
15
+ font: normal normal 16px FontAwesome;
16
+ line-height: 1;
17
+ text-decoration: none;
18
+ -webkit-font-smoothing: antialiased;
19
+ -moz-osx-font-smoothing: grayscale;
20
+ }
21
+
22
+ .fa-link:before {
23
+ content: "\f0c1";
24
+ }
25
+
5
26
  /* margin & padding reset*/
6
27
  * {
7
28
  margin: 0;
8
29
  padding: 0;
9
30
  }
10
31
 
32
+ div {
33
+ display: block;
34
+ }
35
+
36
+ html {
37
+ font-family: sans-serif;
38
+ -ms-text-size-adjust: 100%;
39
+ -webkit-text-size-adjust: 100%;
40
+ }
41
+
11
42
  html, body {
12
43
  color: #333;
13
44
  }
14
45
 
15
46
  body {
16
- font: 13.34px helvetica,arial,freesans,clean,sans-serif;
47
+ background-color: white;
48
+ font: 13.34px Helvetica, arial, freesans, clean, sans-serif;
49
+ font-size: small;
17
50
  line-height: 1.4;
51
+ min-width: 980px;
18
52
  }
19
53
 
20
54
  img {
@@ -30,26 +64,46 @@ a.absent {
30
64
  color: #c00;
31
65
  }
32
66
 
33
- .markdown-body a[id].wiki-toc-anchor {
67
+ a:focus {
68
+ outline: thin dotted;
69
+ }
70
+
71
+ a:active, a:hover {
72
+ outline: 0;
73
+ }
74
+
75
+ .markdown-body a.anchor:focus {
76
+ outline: none;
77
+ }
78
+
79
+ .markdown-body a[id].wiki-toc-anchor {
34
80
  color: inherit;
35
81
  text-decoration: none;
36
82
  }
37
83
 
38
84
  .markdown-body {
39
- font-size: 14px;
40
- line-height: 1.6;
85
+ padding: 30px;
86
+ font-size: 15px;
87
+ line-height: 1.7;
88
+ overflow: hidden;
89
+ word-wrap: break-word;
41
90
  }
42
- .markdown-body>*:first-child {
43
- margin-top: 0!important;
91
+
92
+ .markdown-body > *:first-child {
93
+ margin-top: 0 !important;
44
94
  }
45
- .markdown-body>*:last-child {
46
- margin-bottom: 0!important;
95
+
96
+ .markdown-body > *:last-child {
97
+ margin-bottom: 0 !important;
47
98
  }
99
+
48
100
  .markdown-body a.absent {
49
101
  color: #c00;
50
102
  }
103
+
51
104
  .markdown-body a.anchor {
52
105
  display: block;
106
+ padding-right: 6px;
53
107
  padding-left: 30px;
54
108
  margin-left: -30px;
55
109
  cursor: pointer;
@@ -58,28 +112,43 @@ a.absent {
58
112
  left: 0;
59
113
  bottom: 0;
60
114
  }
115
+
61
116
  .markdown-body h1,
62
117
  .markdown-body h2,
63
118
  .markdown-body h3,
64
119
  .markdown-body h4,
65
120
  .markdown-body h5,
66
121
  .markdown-body h6 {
67
- margin: 20px 0 10px;
122
+ margin: 1em 0 15px;
68
123
  padding: 0;
69
124
  font-weight: bold;
70
- -webkit-font-smoothing: antialiased;
125
+ line-height: 1.7;
71
126
  cursor: text;
72
127
  position: relative;
128
+ -webkit-font-smoothing: antialiased;
129
+ text-rendering: optimizeLegibility;
73
130
  }
74
- .markdown-body h1:hover a.anchor,
75
- .markdown-body h2:hover a.anchor,
76
- .markdown-body h3:hover a.anchor,
77
- .markdown-body h4:hover a.anchor,
78
- .markdown-body h5:hover a.anchor,
79
- .markdown-body h6:hover a.anchor {
80
- background: url(../images/pin-20.png) no-repeat left center;
131
+
132
+ .markdown-body h1 .fa-link, .markdown-body h2 .fa-link, .markdown-body h3 .fa-link, .markdown-body h4 .fa-link, .markdown-body h5 .fa-link, .markdown-body h6 .fa-link {
133
+ display: none;
81
134
  text-decoration: none;
135
+ color: #000;
82
136
  }
137
+
138
+ .markdown-body h1:hover a.anchor .fa-link,
139
+ .markdown-body h2:hover a.anchor .fa-link,
140
+ .markdown-body h3:hover a.anchor .fa-link,
141
+ .markdown-body h4:hover a.anchor .fa-link,
142
+ .markdown-body h5:hover a.anchor .fa-link,
143
+ .markdown-body h6:hover a.anchor .fa-link {
144
+ text-decoration: none;
145
+ line-height: 1;
146
+ padding-left: 8px;
147
+ margin-left: -30px;
148
+ top: 15%;
149
+ display: inline-block;
150
+ }
151
+
83
152
  .markdown-body h1 tt,
84
153
  .markdown-body h1 code,
85
154
  .markdown-body h2 tt,
@@ -94,30 +163,38 @@ a.absent {
94
163
  .markdown-body h6 code {
95
164
  font-size: inherit;
96
165
  }
166
+
97
167
  .markdown-body h1 {
98
- font-size: 28px;
168
+ font-size: 2.5em;
169
+ border-bottom: 1px solid #ddd;
99
170
  color: #000;
100
171
  margin-top: 20px;
101
172
  margin-bottom: 10px;
102
173
  }
174
+
103
175
  .markdown-body h2 {
104
- font-size: 24px;
105
- border-bottom: 1px solid #ccc;
176
+ font-size: 2em;
177
+ border-bottom: 1px solid #eee;
106
178
  color: #000;
107
179
  }
180
+
108
181
  .markdown-body h3 {
109
- font-size: 18px;
182
+ font-size: 1.5em;
110
183
  }
184
+
111
185
  .markdown-body h4 {
112
- font-size: 16px;
186
+ font-size: 1.2em;
113
187
  }
188
+
114
189
  .markdown-body h5 {
115
- font-size: 14px;
190
+ font-size: 1em;
116
191
  }
192
+
117
193
  .markdown-body h6 {
118
194
  color: #777;
119
- font-size: 14px;
195
+ font-size: 1em;
120
196
  }
197
+
121
198
  .markdown-body p,
122
199
  .markdown-body blockquote,
123
200
  .markdown-body ul,
@@ -126,12 +203,13 @@ a.absent {
126
203
  .markdown-body table,
127
204
  .markdown-body pre,
128
205
  .markdown-body hr {
129
- margin: 0px 0;
130
- margin-bottom: 15px;
206
+ margin: 15px 0;
131
207
  }
208
+
132
209
  .markdown-body li {
133
210
  margin: 0px;
134
211
  }
212
+
135
213
  .markdown-body hr {
136
214
  background: transparent url(../images/dirty-shade.png) repeat-x 0 0;
137
215
  border: 0 none;
@@ -139,16 +217,19 @@ a.absent {
139
217
  height: 4px;
140
218
  padding: 0;
141
219
  }
142
- .markdown-body>h1:first-child,
143
- .markdown-body>h2:first-child,
144
- .markdown-body>h3:first-child,
145
- .markdown-body>h4:first-child,
146
- .markdown-body>h5:first-child,
147
- .markdown-body>h6:first-child {
220
+
221
+ .markdown-body > h1:first-child,
222
+ .markdown-body > h2:first-child,
223
+ .markdown-body > h3:first-child,
224
+ .markdown-body > h4:first-child,
225
+ .markdown-body > h5:first-child,
226
+ .markdown-body > h6:first-child {
148
227
  }
149
- .markdown-body h1+h2+h3{
228
+
229
+ .markdown-body h1 + h2 + h3 {
150
230
  margin-top: 30px;
151
231
  }
232
+
152
233
  .markdown-body a:first-child h1,
153
234
  .markdown-body a:first-child h2,
154
235
  .markdown-body a:first-child h3,
@@ -158,32 +239,29 @@ a.absent {
158
239
  margin-top: 0;
159
240
  padding-top: 0;
160
241
  }
161
- .markdown-body h1+p,
162
- .markdown-body h2+p,
163
- .markdown-body h3+p,
164
- .markdown-body h4+p,
165
- .markdown-body h5+p,
166
- .markdown-body h6+p {
242
+
243
+ .markdown-body h1 + p,
244
+ .markdown-body h2 + p,
245
+ .markdown-body h3 + p,
246
+ .markdown-body h4 + p,
247
+ .markdown-body h5 + p,
248
+ .markdown-body h6 + p {
167
249
  margin-top: 0;
168
250
  }
251
+
169
252
  .markdown-body li p.first {
170
253
  display: inline-block;
171
254
  }
255
+
172
256
  .markdown-body ul,
173
257
  .markdown-body ol {
174
258
  padding-left: 30px;
175
259
  }
176
- .markdown-body ul li>:first-child,
177
- .markdown-body ol li>:first-child {
178
- margin-top: 0;
179
- }
180
- .markdown-body ul li>:last-child,
181
- .markdown-body ol li>:last-child {
182
- margin-bottom: 0;
183
- }
260
+
184
261
  .markdown-body dl {
185
262
  padding: 0;
186
263
  }
264
+
187
265
  .markdown-body dl dt {
188
266
  font-size: 14px;
189
267
  font-weight: bold;
@@ -191,53 +269,67 @@ a.absent {
191
269
  padding: 0;
192
270
  margin: 15px 0 5px;
193
271
  }
272
+
194
273
  .markdown-body dl dt:first-child {
195
274
  padding: 0;
196
275
  }
197
- .markdown-body dl dt>:first-child {
276
+
277
+ .markdown-body dl dt > :first-child {
198
278
  margin-top: 0;
199
279
  }
200
- .markdown-body dl dt>:last-child {
280
+
281
+ .markdown-body dl dt > :last-child {
201
282
  margin-bottom: 0;
202
283
  }
284
+
203
285
  .markdown-body dl dd {
204
286
  margin: 0 0 15px;
205
287
  padding: 0 15px;
206
288
  }
207
- .markdown-body dl dd>:first-child {
289
+
290
+ .markdown-body dl dd > :first-child {
208
291
  margin-top: 0;
209
292
  }
210
- .markdown-body dl dd>:last-child {
293
+
294
+ .markdown-body dl dd > :last-child {
211
295
  margin-bottom: 0;
212
296
  }
297
+
213
298
  .markdown-body blockquote {
214
299
  border-left: 4px solid #DDD;
215
300
  padding: 0 15px;
216
301
  color: #777;
217
302
  }
218
- .markdown-body blockquote>:first-child {
303
+
304
+ .markdown-body blockquote > :first-child {
219
305
  margin-top: 0;
220
306
  }
221
- .markdown-body blockquote>:last-child {
307
+
308
+ .markdown-body blockquote > :last-child {
222
309
  margin-bottom: 0;
223
310
  }
311
+
224
312
  .markdown-body table {
225
313
  padding: 0;
226
314
  border-collapse: collapse;
227
315
  border-spacing: 0;
228
316
  }
317
+
229
318
  .markdown-body table tr {
230
319
  border-top: 1px solid #ccc;
231
320
  background-color: #fff;
232
321
  margin: 0;
233
322
  padding: 0;
234
323
  }
324
+
235
325
  .markdown-body table tr:nth-child(2n) {
236
326
  background-color: #f8f8f8;
237
327
  }
328
+
238
329
  .markdown-body table tr th {
239
330
  font-weight: bold;
240
331
  }
332
+
241
333
  .markdown-body table tr th,
242
334
  .markdown-body table tr td {
243
335
  border: 1px solid #ccc;
@@ -245,22 +337,27 @@ a.absent {
245
337
  margin: 0;
246
338
  padding: 6px 13px;
247
339
  }
248
- .markdown-body table tr th>:first-child,
249
- .markdown-body table tr td>:first-child {
340
+
341
+ .markdown-body table tr th > :first-child,
342
+ .markdown-body table tr td > :first-child {
250
343
  margin-top: 0;
251
344
  }
252
- .markdown-body table tr th>:last-child,
253
- .markdown-body table tr td>:last-child {
345
+
346
+ .markdown-body table tr th > :last-child,
347
+ .markdown-body table tr td > :last-child {
254
348
  margin-bottom: 0;
255
349
  }
350
+
256
351
  .markdown-body img {
257
352
  max-width: 100%;
258
353
  }
354
+
259
355
  .markdown-body span.frame {
260
356
  display: block;
261
357
  overflow: hidden;
262
358
  }
263
- .markdown-body span.frame>span {
359
+
360
+ .markdown-body span.frame > span {
264
361
  border: 1px solid #ddd;
265
362
  display: block;
266
363
  float: left;
@@ -269,67 +366,87 @@ a.absent {
269
366
  padding: 7px;
270
367
  width: auto;
271
368
  }
369
+
272
370
  .markdown-body span.frame span img {
273
371
  display: block;
274
372
  float: left;
275
373
  }
374
+
276
375
  .markdown-body span.frame span span {
277
376
  clear: both;
278
377
  color: #333;
279
378
  display: block;
280
379
  padding: 5px 0 0;
281
380
  }
381
+
282
382
  .markdown-body span.align-center {
283
383
  display: block;
284
384
  overflow: hidden;
285
385
  clear: both;
286
386
  }
287
- .markdown-body span.align-center>span {
387
+
388
+ .markdown-body span.align-center > span {
288
389
  display: block;
289
390
  overflow: hidden;
290
391
  margin: 13px auto 0;
291
392
  text-align: center;
292
393
  }
394
+
293
395
  .markdown-body span.align-center span img {
294
396
  margin: 0 auto;
295
397
  text-align: center;
296
398
  }
399
+
297
400
  .markdown-body span.align-right {
298
401
  display: block;
299
402
  overflow: hidden;
300
403
  clear: both;
301
404
  }
302
- .markdown-body span.align-right>span {
405
+
406
+ .markdown-body span.align-right > span {
303
407
  display: block;
304
408
  overflow: hidden;
305
409
  margin: 13px 0 0;
306
410
  text-align: right;
307
411
  }
412
+
308
413
  .markdown-body span.align-right span img {
309
414
  margin: 0;
310
415
  text-align: right;
311
416
  }
417
+
312
418
  .markdown-body span.float-left {
313
419
  display: block;
314
420
  margin-right: 13px;
315
421
  overflow: hidden;
316
422
  float: left;
317
423
  }
424
+
318
425
  .markdown-body span.float-left span {
319
426
  margin: 13px 0 0;
320
427
  }
428
+
321
429
  .markdown-body span.float-right {
322
430
  display: block;
323
431
  margin-left: 13px;
324
432
  overflow: hidden;
325
433
  float: right;
326
434
  }
327
- .markdown-body span.float-right>span {
435
+
436
+ .markdown-body span.float-right > span {
328
437
  display: block;
329
438
  overflow: hidden;
330
439
  margin: 13px auto 0;
331
440
  text-align: right;
332
441
  }
442
+
443
+ .markdown-body code,
444
+ .markdown-body pre,
445
+ .markdown-body tt {
446
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
447
+ font-size: 12px;
448
+ }
449
+
333
450
  .markdown-body code,
334
451
  .markdown-body tt {
335
452
  margin: 0 2px;
@@ -339,14 +456,16 @@ a.absent {
339
456
  background-color: #f8f8f8;
340
457
  border-radius: 3px;
341
458
  }
342
- .markdown-body pre>tt,
343
- .markdown-body pre>code {
459
+
460
+ .markdown-body pre > tt,
461
+ .markdown-body pre > code {
344
462
  margin: 0;
345
463
  padding: 0;
346
464
  white-space: pre;
347
465
  border: none;
348
466
  background: transparent;
349
467
  }
468
+
350
469
  .markdown-body pre {
351
470
  background-color: #f8f8f8;
352
471
  border: 1px solid #ccc;
@@ -356,16 +475,19 @@ a.absent {
356
475
  padding: 6px 10px;
357
476
  border-radius: 3px;
358
477
  }
478
+
359
479
  .markdown-body pre pre,
360
480
  .markdown-body pre code,
361
481
  .markdown-body pre tt {
362
482
  background-color: transparent;
363
483
  border: none;
364
484
  }
485
+
365
486
  .markdown-body pre pre {
366
487
  margin: 0;
367
488
  padding: 0;
368
489
  }
490
+
369
491
  .toc {
370
492
  background-color: #F7F7F7;
371
493
  border: 1px solid #ddd;
@@ -373,6 +495,7 @@ a.absent {
373
495
  margin: 0;
374
496
  border-radius: 3px;
375
497
  }
498
+
376
499
  .toc-title {
377
500
  color: #888;
378
501
  font-size: 14px;
@@ -381,250 +504,325 @@ a.absent {
381
504
  border-bottom: 1px solid #ddd;
382
505
  margin-bottom: 3px;
383
506
  }
507
+
384
508
  .toc ul {
385
509
  padding-left: 10px;
386
510
  margin: 0;
387
511
  }
388
- .toc>ul {
512
+
513
+ .toc > ul {
389
514
  margin-left: 10px;
390
515
  font-size: 17px;
391
516
  }
517
+
392
518
  .toc ul ul {
393
519
  font-size: 15px;
394
520
  }
521
+
395
522
  .toc ul ul ul {
396
523
  font-size: 14px;
397
524
  }
398
- .toc ul li{
525
+
526
+ .toc ul li {
399
527
  margin: 0;
400
528
  }
529
+
401
530
  #header-content .toc,
402
531
  #footer-content .toc,
403
532
  #sidebar-content .toc {
404
533
  border: none;
405
534
  }
535
+
406
536
  .highlight {
407
537
  background: #fff;
408
538
  }
539
+
409
540
  .highlight .c {
410
541
  color: #998;
411
542
  font-style: italic;
412
543
  }
544
+
413
545
  .highlight .err {
414
546
  color: #a61717;
415
547
  background-color: #e3d2d2;
416
548
  }
549
+
417
550
  .highlight .k {
418
551
  font-weight: bold;
419
552
  }
553
+
420
554
  .highlight .o {
421
555
  font-weight: bold;
422
556
  }
557
+
423
558
  .highlight .cm {
424
559
  color: #998;
425
560
  font-style: italic;
426
561
  }
562
+
427
563
  .highlight .cp {
428
564
  color: #999;
429
565
  font-weight: bold;
430
566
  }
567
+
431
568
  .highlight .c1 {
432
569
  color: #998;
433
570
  font-style: italic;
434
571
  }
572
+
435
573
  .highlight .cs {
436
574
  color: #999;
437
575
  font-weight: bold;
438
576
  font-style: italic;
439
577
  }
578
+
440
579
  .highlight .gd {
441
580
  color: #000;
442
581
  background-color: #fdd;
443
582
  }
583
+
444
584
  .highlight .gd .x {
445
585
  color: #000;
446
586
  background-color: #faa;
447
587
  }
588
+
448
589
  .highlight .ge {
449
590
  font-style: italic;
450
591
  }
592
+
451
593
  .highlight .gr {
452
594
  color: #a00;
453
595
  }
596
+
454
597
  .highlight .gh {
455
598
  color: #999;
456
599
  }
600
+
457
601
  .highlight .gi {
458
602
  color: #000;
459
603
  background-color: #dfd;
460
604
  }
605
+
461
606
  .highlight .gi .x {
462
607
  color: #000;
463
608
  background-color: #afa;
464
609
  }
610
+
465
611
  .highlight .go {
466
612
  color: #888;
467
613
  }
614
+
468
615
  .highlight .gp {
469
616
  color: #555;
470
617
  }
618
+
471
619
  .highlight .gs {
472
620
  font-weight: bold;
473
621
  }
622
+
474
623
  .highlight .gu {
475
624
  color: #800080;
476
625
  font-weight: bold;
477
626
  }
627
+
478
628
  .highlight .gt {
479
629
  color: #a00;
480
630
  }
631
+
481
632
  .highlight .kc {
482
633
  font-weight: bold;
483
634
  }
635
+
484
636
  .highlight .kd {
485
637
  font-weight: bold;
486
638
  }
639
+
487
640
  .highlight .kn {
488
641
  font-weight: bold;
489
642
  }
643
+
490
644
  .highlight .kp {
491
645
  font-weight: bold;
492
646
  }
647
+
493
648
  .highlight .kr {
494
649
  font-weight: bold;
495
650
  }
651
+
496
652
  .highlight .kt {
497
653
  color: #458;
498
654
  font-weight: bold;
499
655
  }
656
+
500
657
  .highlight .m {
501
658
  color: #099;
502
659
  }
660
+
503
661
  .highlight .s {
504
662
  color: #d14;
505
663
  }
664
+
506
665
  .highlight .na {
507
666
  color: #008080;
508
667
  }
668
+
509
669
  .highlight .nb {
510
670
  color: #0086B3;
511
671
  }
672
+
512
673
  .highlight .nc {
513
674
  color: #458;
514
675
  font-weight: bold;
515
676
  }
677
+
516
678
  .highlight .no {
517
679
  color: #008080;
518
680
  }
681
+
519
682
  .highlight .ni {
520
683
  color: #800080;
521
684
  }
685
+
522
686
  .highlight .ne {
523
687
  color: #900;
524
688
  font-weight: bold;
525
689
  }
690
+
526
691
  .highlight .nf {
527
692
  color: #900;
528
693
  font-weight: bold;
529
694
  }
695
+
530
696
  .highlight .nn {
531
697
  color: #555;
532
698
  }
699
+
533
700
  .highlight .nt {
534
701
  color: #000080;
535
702
  }
703
+
536
704
  .highlight .nv {
537
705
  color: #008080;
538
706
  }
707
+
539
708
  .highlight .ow {
540
709
  font-weight: bold;
541
710
  }
711
+
542
712
  .highlight .w {
543
713
  color: #bbb;
544
714
  }
715
+
545
716
  .highlight .mf {
546
717
  color: #099;
547
718
  }
719
+
548
720
  .highlight .mh {
549
721
  color: #099;
550
722
  }
723
+
551
724
  .highlight .mi {
552
725
  color: #099;
553
726
  }
727
+
554
728
  .highlight .mo {
555
729
  color: #099;
556
730
  }
731
+
557
732
  .highlight .sb {
558
733
  color: #d14;
559
734
  }
735
+
560
736
  .highlight .sc {
561
737
  color: #d14;
562
738
  }
739
+
563
740
  .highlight .sd {
564
741
  color: #d14;
565
742
  }
743
+
566
744
  .highlight .s2 {
567
745
  color: #d14;
568
746
  }
747
+
569
748
  .highlight .se {
570
749
  color: #d14;
571
750
  }
751
+
572
752
  .highlight .sh {
573
753
  color: #d14;
574
754
  }
755
+
575
756
  .highlight .si {
576
757
  color: #d14;
577
758
  }
759
+
578
760
  .highlight .sx {
579
761
  color: #d14;
580
762
  }
763
+
581
764
  .highlight .sr {
582
765
  color: #009926;
583
766
  }
767
+
584
768
  .highlight .s1 {
585
769
  color: #d14;
586
770
  }
771
+
587
772
  .highlight .ss {
588
773
  color: #990073;
589
774
  }
775
+
590
776
  .highlight .bp {
591
777
  color: #999;
592
778
  }
779
+
593
780
  .highlight .vc {
594
781
  color: #008080;
595
782
  }
783
+
596
784
  .highlight .vg {
597
785
  color: #008080;
598
786
  }
787
+
599
788
  .highlight .vi {
600
789
  color: #008080;
601
790
  }
791
+
602
792
  .highlight .il {
603
793
  color: #099;
604
794
  }
795
+
605
796
  .highlight .gc {
606
797
  color: #999;
607
798
  background-color: #EAF2F5;
608
799
  }
800
+
609
801
  .type-csharp .highlight .k {
610
802
  color: #00F;
611
803
  }
804
+
612
805
  .type-csharp .highlight .kt {
613
806
  color: #00F;
614
807
  }
808
+
615
809
  .type-csharp .highlight .nf {
616
810
  color: #000;
617
811
  font-weight: normal;
618
812
  }
813
+
619
814
  .type-csharp .highlight .nc {
620
815
  color: #2B91AF;
621
816
  }
817
+
622
818
  .type-csharp .highlight .nn {
623
819
  color: #000;
624
820
  }
821
+
625
822
  .type-csharp .highlight .s {
626
823
  color: #A31515;
627
824
  }
825
+
628
826
  .type-csharp .highlight .sc {
629
827
  color: #A31515;
630
828
  }