jekyll-theme-nangka 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/footer.html +17 -0
  5. data/_includes/head.html +12 -0
  6. data/_includes/header.html +35 -0
  7. data/_includes/partial/analytics.html +10 -0
  8. data/_includes/partial/breadcrumb.html +37 -0
  9. data/_includes/partial/disqus.html +23 -0
  10. data/_includes/partial/manifest.html +52 -0
  11. data/_includes/partial/mini-bio.html +16 -0
  12. data/_includes/partial/post-item.html +40 -0
  13. data/_includes/partial/scrimage.html +26 -0
  14. data/_includes/svg/icon-facebook.svg +1 -0
  15. data/_includes/svg/icon-github.html +1 -0
  16. data/_includes/svg/icon-github.svg +1 -0
  17. data/_includes/svg/icon-twitter.html +1 -0
  18. data/_includes/svg/icon-twitter.svg +1 -0
  19. data/_layouts/blog.html +21 -0
  20. data/_layouts/compress.html +9 -0
  21. data/_layouts/default.html +17 -0
  22. data/_layouts/home.html +11 -0
  23. data/_layouts/page.html +11 -0
  24. data/_layouts/post.html +50 -0
  25. data/_sass/_base.scss +298 -0
  26. data/_sass/_layout.scss +270 -0
  27. data/_sass/_normalize.scss +525 -0
  28. data/_sass/_syntax-highlighting.scss +204 -0
  29. data/_sass/print.scss +102 -0
  30. data/assets/404.html +24 -0
  31. data/assets/blog.json +5 -0
  32. data/assets/browserconfig.xml +15 -0
  33. data/assets/crossdomain.xml +19 -0
  34. data/assets/css/main.scss +56 -0
  35. data/assets/humans.txt +21 -0
  36. data/assets/icons/114.png +0 -0
  37. data/assets/icons/120.png +0 -0
  38. data/assets/icons/144.png +0 -0
  39. data/assets/icons/150.png +0 -0
  40. data/assets/icons/152.png +0 -0
  41. data/assets/icons/16.png +0 -0
  42. data/assets/icons/180.png +0 -0
  43. data/assets/icons/192.png +0 -0
  44. data/assets/icons/256.png +0 -0
  45. data/assets/icons/310.png +0 -0
  46. data/assets/icons/32.png +0 -0
  47. data/assets/icons/36.png +0 -0
  48. data/assets/icons/48.png +0 -0
  49. data/assets/icons/512.png +0 -0
  50. data/assets/icons/57.png +0 -0
  51. data/assets/icons/60.png +0 -0
  52. data/assets/icons/70.png +0 -0
  53. data/assets/icons/72.png +0 -0
  54. data/assets/icons/76.png +0 -0
  55. data/assets/icons/96.png +0 -0
  56. data/assets/icons/favicon.ico +0 -0
  57. data/assets/icons/icon.svg +31 -0
  58. data/assets/images/avatar.jpg +0 -0
  59. data/assets/js/app.js +35 -0
  60. data/assets/js/sw.js +174 -0
  61. data/assets/manifest.json +70 -0
  62. data/assets/opensearch.xml +13 -0
  63. data/assets/robots.txt +7 -0
  64. data/assets/search.html +16 -0
  65. metadata +261 -0
@@ -0,0 +1,525 @@
1
+ // =============================================================================
2
+ // Normalize.scss based on Nicolas Gallagher and Jonathan Neal's
3
+ // normalize.css v2.1.3 | MIT License | git.io/normalize
4
+ // =============================================================================
5
+
6
+ // =============================================================================
7
+ // Normalize.scss settings
8
+ // =============================================================================
9
+
10
+
11
+ // Set to true if you want to add support for IE6 and IE7
12
+ // Notice: setting to true might render some elements
13
+ // slightly differently than when set to false
14
+ $legacy_support_for_ie: false !default; // Used also in Compass
15
+
16
+
17
+ // Set the default font family here so you don't have to override it later
18
+ $normalized_font_family: sans-serif !default;
19
+
20
+ $normalize_headings: true !default;
21
+
22
+ $h1_font_size: 2em !default;
23
+ $h2_font_size: 1.5em !default;
24
+ $h3_font_size: 1.17em !default;
25
+ $h4_font_size: 1em !default;
26
+ $h5_font_size: 0.83em !default;
27
+ $h6_font_size: 0.75em !default;
28
+
29
+ $h1_margin: 0.67em 0 !default;
30
+ $h2_margin: 0.83em 0 !default;
31
+ $h3_margin: 1em 0 !default;
32
+ $h4_margin: 1.33em 0 !default;
33
+ $h5_margin: 1.67em 0 !default;
34
+ $h6_margin: 2.33em 0 !default;
35
+
36
+ $background: #fff !default;
37
+ $color: #000 !default;
38
+
39
+ // =============================================================================
40
+ // HTML5 display definitions
41
+ // =============================================================================
42
+
43
+ // Corrects block display not defined in IE6/7/8/9 & FF3
44
+
45
+ article,
46
+ aside,
47
+ details,
48
+ figcaption,
49
+ figure,
50
+ footer,
51
+ header,
52
+ hgroup,
53
+ nav,
54
+ section,
55
+ summary {
56
+ display: block;
57
+ }
58
+
59
+ // Corrects inline-block display not defined in IE6/7/8/9 & FF3
60
+
61
+ audio,
62
+ canvas,
63
+ video {
64
+ display: inline-block;
65
+ @if $legacy_support_for_ie {
66
+ *display: inline;
67
+ *zoom: 1;
68
+ }
69
+ }
70
+
71
+ // 1. Prevents modern browsers from displaying 'audio' without controls
72
+ // 2. Remove excess height in iOS5 devices
73
+
74
+ audio:not([controls]) {
75
+ display: none; // 1
76
+ height: 0; // 2
77
+ }
78
+
79
+ //
80
+ // Address `[hidden]` styling not present in IE 8/9.
81
+ // Hide the `template` element in IE, Safari, and Firefox < 22.
82
+ //
83
+
84
+ [hidden], template {
85
+ display: none;
86
+ }
87
+
88
+ // =============================================================================
89
+ // Base
90
+ // =============================================================================
91
+
92
+ // 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
93
+ // http://clagnut.com/blog/348/#c790
94
+ // 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
95
+ // www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
96
+
97
+ html {
98
+ @if $legacy_support_for_ie {
99
+ font-size: 100%; // 1
100
+ }
101
+ background: $background;
102
+ color: $color;
103
+ -webkit-text-size-adjust: 100%; // 2
104
+ -ms-text-size-adjust: 100%; // 2
105
+ }
106
+
107
+ // Addresses font-family inconsistency between 'textarea' and other form elements.
108
+
109
+ html,
110
+ button,
111
+ input,
112
+ select,
113
+ textarea {
114
+ font-family: $normalized_font_family;
115
+ }
116
+
117
+ // Addresses margins handled incorrectly in IE6/7
118
+
119
+ body {
120
+ margin: 0;
121
+ }
122
+
123
+ // =============================================================================
124
+ // Links
125
+ // =============================================================================
126
+
127
+ // 1. Remove the gray background color from active links in IE 10.
128
+ // 2. Addresses outline displayed oddly in Chrome
129
+ // 3. Improves readability when focused and also mouse hovered in all browsers
130
+ // people.opera.com/patrickl/experiments/keyboard/test
131
+
132
+ a {
133
+ // 1
134
+
135
+ background: transparent;
136
+
137
+ // 2
138
+
139
+ &:focus {
140
+ outline: thin dotted;
141
+ }
142
+
143
+ // 3
144
+
145
+ &:hover,
146
+ &:active {
147
+ outline: 0;
148
+ }
149
+ }
150
+
151
+ // =============================================================================
152
+ // Typography
153
+ // =============================================================================
154
+
155
+ // Addresses font sizes and margins set differently in IE6/7
156
+ // Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
157
+
158
+ @if $normalize_headings == true {
159
+ h1 {
160
+ font-size: $h1_font_size;
161
+ margin: $h1_margin;
162
+ }
163
+
164
+ h2 {
165
+ font-size: $h2_font_size;
166
+ margin: $h2_margin;
167
+ }
168
+
169
+ h3 {
170
+ font-size: $h3_font_size;
171
+ margin: $h3_margin;
172
+ }
173
+
174
+ h4 {
175
+ font-size: $h4_font_size;
176
+ margin: $h4_margin;
177
+ }
178
+
179
+ h5 {
180
+ font-size: $h5_font_size;
181
+ margin: $h5_margin;
182
+ }
183
+
184
+ h6 {
185
+ font-size: $h6_font_size;
186
+ margin: $h6_margin;
187
+ }
188
+ }
189
+
190
+ // Addresses styling not present in IE 8/9, S5, Chrome
191
+
192
+ abbr[title] {
193
+ border-bottom: 1px dotted;
194
+ }
195
+
196
+ // Addresses style set to 'bolder' in FF3+, S4/5, Chrome
197
+
198
+ b,
199
+ strong {
200
+ font-weight: bold;
201
+ }
202
+
203
+ @if $legacy_support_for_ie {
204
+ blockquote {
205
+ margin: 1em 40px;
206
+ }
207
+ }
208
+
209
+ // Addresses styling not present in S5, Chrome
210
+
211
+ dfn {
212
+ font-style: italic;
213
+ }
214
+
215
+ // Addresses styling not present in IE6/7/8/9
216
+
217
+ mark {
218
+ background: #ff0;
219
+ color: #000;
220
+ }
221
+
222
+ // Addresses margins set differently in IE6/7
223
+ @if $legacy_support_for_ie {
224
+ p,
225
+ pre {
226
+ margin: 1em 0;
227
+ }
228
+ }
229
+
230
+ // Corrects font family set oddly in IE6, S4/5, Chrome
231
+ // en.wikipedia.org/wiki/User:Davidgothberg/Test59
232
+
233
+ code,
234
+ kbd,
235
+ pre,
236
+ samp {
237
+ font-family: monospace, serif;
238
+ @if $legacy_support_for_ie {
239
+ _font-family: 'courier new', monospace;
240
+ }
241
+ font-size: 1em;
242
+ }
243
+
244
+ // Improves readability of pre-formatted text in all browsers
245
+
246
+ pre {
247
+ white-space: pre;
248
+ white-space: pre-wrap;
249
+ word-wrap: break-word;
250
+ }
251
+
252
+ // Set consistent quote types.
253
+
254
+ q {
255
+ quotes: "\201C" "\201D" "\2018" "\2019";
256
+ }
257
+
258
+ // 1. Addresses CSS quotes not supported in IE6/7
259
+ // 2. Addresses quote property not supported in S4
260
+
261
+ // 1
262
+ @if $legacy_support_for_ie {
263
+ q {
264
+ quotes: none;
265
+ }
266
+ }
267
+
268
+ // 2
269
+ q {
270
+ &:before,
271
+ &:after {
272
+ content: '';
273
+ content: none;
274
+ }
275
+ }
276
+
277
+ // Address inconsistent and variable font size in all browsers.
278
+
279
+ small {
280
+ font-size: 80%;
281
+ }
282
+
283
+ // Prevents sub and sup affecting line-height in all browsers
284
+ // gist.github.com/413930
285
+
286
+ sub,
287
+ sup {
288
+ font-size: 75%;
289
+ line-height: 0;
290
+ position: relative;
291
+ vertical-align: baseline;
292
+ }
293
+
294
+ sup {
295
+ top: -0.5em;
296
+ }
297
+
298
+ sub {
299
+ bottom: -0.25em;
300
+ }
301
+
302
+ // =============================================================================
303
+ // Lists
304
+ // =============================================================================
305
+
306
+ // Addresses margins set differently in IE6/7
307
+ @if $legacy_support_for_ie {
308
+ dl,
309
+ menu,
310
+ ol,
311
+ ul {
312
+ margin: 1em 0;
313
+ }
314
+ }
315
+
316
+ @if $legacy_support_for_ie {
317
+ dd {
318
+ margin: 0 0 0 40px;
319
+ }
320
+ }
321
+
322
+ // Addresses paddings set differently in IE6/7
323
+ @if $legacy_support_for_ie {
324
+ menu,
325
+ ol,
326
+ ul {
327
+ padding: 0 0 0 40px;
328
+ }
329
+ }
330
+
331
+ // Corrects list images handled incorrectly in IE7
332
+
333
+ nav {
334
+ ul,
335
+ ol {
336
+ @if $legacy_support_for_ie {
337
+ list-style-image: none;
338
+ }
339
+ }
340
+ }
341
+
342
+ // =============================================================================
343
+ // Embedded content
344
+ // =============================================================================
345
+
346
+ // 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
347
+ // 2. Improves image quality when scaled in IE7
348
+ // code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
349
+
350
+ img {
351
+ border: 0; // 1
352
+ @if $legacy_support_for_ie {
353
+ -ms-interpolation-mode: bicubic; // 2
354
+ }
355
+ }
356
+
357
+ // Corrects overflow displayed oddly in IE9
358
+
359
+ svg:not(:root) {
360
+ overflow: hidden;
361
+ }
362
+
363
+ // =============================================================================
364
+ // Figures
365
+ // =============================================================================
366
+
367
+ // Addresses margin not present in IE6/7/8/9, S5, O11
368
+
369
+ figure {
370
+ margin: 0;
371
+ }
372
+
373
+ // =============================================================================
374
+ // Forms
375
+ // =============================================================================
376
+
377
+ // Corrects margin displayed oddly in IE6/7
378
+ @if $legacy_support_for_ie {
379
+ form {
380
+ margin: 0;
381
+ }
382
+ }
383
+
384
+ // Define consistent border, margin, and padding
385
+
386
+ fieldset {
387
+ border: 1px solid #c0c0c0;
388
+ margin: 0 2px;
389
+ padding: 0.35em 0.625em 0.75em;
390
+ }
391
+
392
+ // 1. Corrects color not being inherited in IE6/7/8/9
393
+ // 2. Remove padding so people aren't caught out if they zero out fieldsets.
394
+ // 3. Corrects text not wrapping in FF3
395
+ // 4. Corrects alignment displayed oddly in IE6/7
396
+
397
+ legend {
398
+ border: 0; // 1
399
+ padding: 0; // 2
400
+ white-space: normal; // 3
401
+ @if $legacy_support_for_ie {
402
+ *margin-left: -7px; // 4
403
+ }
404
+ }
405
+
406
+ // 1. Correct font family not being inherited in all browsers.
407
+ // 2. Corrects font size not being inherited in all browsers
408
+ // 3. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
409
+ // 4. Improves appearance and consistency in all browsers
410
+
411
+ button,
412
+ input,
413
+ select,
414
+ textarea {
415
+ font-family: inherit; // 1
416
+ font-size: 100%; // 2
417
+ margin: 0; // 3
418
+ vertical-align: baseline; // 4
419
+ @if $legacy_support_for_ie {
420
+ *vertical-align: middle; // 4
421
+ }
422
+ }
423
+
424
+ // Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
425
+
426
+ button, input {
427
+ line-height: normal;
428
+ }
429
+
430
+ // Address inconsistent `text-transform` inheritance for `button` and `select`.
431
+ // All other form control elements do not inherit `text-transform` values.
432
+ // Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
433
+ // Correct `select` style inheritance in Firefox 4+ and Opera.
434
+
435
+ button,
436
+ select {
437
+ text-transform: none;
438
+ }
439
+
440
+ // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
441
+ // and `video` controls
442
+ // 2. Corrects inability to style clickable 'input' types in iOS
443
+ // 3. Improves usability and consistency of cursor style between image-type
444
+ // 'input' and others
445
+ // 4. Removes inner spacing in IE7 without affecting normal text inputs
446
+ // Known issue: inner spacing remains in IE6
447
+
448
+ button,
449
+ html input[type="button"], // 1
450
+ input[type="reset"],
451
+ input[type="submit"] {
452
+ -webkit-appearance: button; // 2
453
+ cursor: pointer; // 3
454
+ @if $legacy_support_for_ie {
455
+ *overflow: visible; // 4
456
+ }
457
+ }
458
+
459
+ // Re-set default cursor for disabled elements
460
+
461
+ button[disabled],
462
+ input[disabled] {
463
+ cursor: default;
464
+ }
465
+
466
+ // Removes inner padding and border in FF3+
467
+ // www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
468
+
469
+ button, input {
470
+ &::-moz-focus-inner {
471
+ border: 0;
472
+ padding: 0;
473
+ }
474
+ }
475
+
476
+ // 1. Removes default vertical scrollbar in IE6/7/8/9
477
+ // 2. Improves readability and alignment in all browsers
478
+
479
+ textarea {
480
+ overflow: auto; // 1
481
+ vertical-align: top; // 2
482
+ }
483
+
484
+ // =============================================================================
485
+ // Tables
486
+ // =============================================================================
487
+
488
+ // Remove most spacing between table cells
489
+
490
+ table {
491
+ border-collapse: collapse;
492
+ border-spacing: 0;
493
+ }
494
+
495
+ input {
496
+ // 1. Addresses appearance set to searchfield in S5, Chrome
497
+ // 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
498
+ &[type="search"] {
499
+ -webkit-appearance: textfield; // 1
500
+ -moz-box-sizing: content-box;
501
+ -webkit-box-sizing: content-box; // 2
502
+ box-sizing: content-box;
503
+
504
+ // Remove inner padding and search cancel button in Safari 5 and Chrome
505
+ // on OS X.
506
+ &::-webkit-search-cancel-button,
507
+ &::-webkit-search-decoration {
508
+ -webkit-appearance: none;
509
+ }
510
+ }
511
+
512
+ // 1. Address box sizing set to `content-box` in IE 8/9/10.
513
+ // 2. Remove excess padding in IE 8/9/10.
514
+ // 3. Removes excess padding in IE7
515
+ // Known issue: excess padding remains in IE6
516
+ &[type="checkbox"],
517
+ &[type="radio"] {
518
+ box-sizing: border-box; // 1
519
+ padding: 0; // 2
520
+ @if $legacy_support_for_ie {
521
+ *height: 13px; // 3
522
+ *width: 13px; // 3
523
+ }
524
+ }
525
+ }
@@ -0,0 +1,204 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #f7f7f7;
6
+
7
+ .highlighter-rouge & {
8
+ background: #f7f7f7;
9
+ margin: 15px 0;
10
+ }
11
+
12
+ .c {
13
+ color: #998;
14
+ font-style: italic;
15
+ } // Comment
16
+ .err {
17
+ color: #a61717;
18
+ background-color: #e3d2d2;
19
+ } // Error
20
+ .k {
21
+ font-weight: bold;
22
+ } // Keyword
23
+ .o {
24
+ font-weight: bold;
25
+ } // Operator
26
+ .cm {
27
+ color: #998;
28
+ font-style: italic;
29
+ } // Comment.Multiline
30
+ .cp {
31
+ color: #999;
32
+ font-weight: bold;
33
+ } // Comment.Preproc
34
+ .c1 {
35
+ color: #998;
36
+ font-style: italic;
37
+ } // Comment.Single
38
+ .cs {
39
+ color: #999;
40
+ font-weight: bold;
41
+ font-style: italic;
42
+ } // Comment.Special
43
+ .gd {
44
+ color: #000;
45
+ background-color: #fdd;
46
+ } // Generic.Deleted
47
+ .gd .x {
48
+ color: #000;
49
+ background-color: #faa;
50
+ } // Generic.Deleted.Specific
51
+ .ge {
52
+ font-style: italic;
53
+ } // Generic.Emph
54
+ .gr {
55
+ color: #a00;
56
+ } // Generic.Error
57
+ .gh {
58
+ color: #999;
59
+ } // Generic.Heading
60
+ .gi {
61
+ color: #000;
62
+ background-color: #dfd;
63
+ } // Generic.Inserted
64
+ .gi .x {
65
+ color: #000;
66
+ background-color: #afa;
67
+ } // Generic.Inserted.Specific
68
+ .go {
69
+ color: #888;
70
+ } // Generic.Output
71
+ .gp {
72
+ color: #555;
73
+ } // Generic.Prompt
74
+ .gs {
75
+ font-weight: bold;
76
+ } // Generic.Strong
77
+ .gu {
78
+ color: #aaa;
79
+ } // Generic.Subheading
80
+ .gt {
81
+ color: #a00;
82
+ } // Generic.Traceback
83
+ .kc {
84
+ font-weight: bold;
85
+ } // Keyword.Constant
86
+ .kd {
87
+ font-weight: bold;
88
+ } // Keyword.Declaration
89
+ .kp {
90
+ font-weight: bold;
91
+ } // Keyword.Pseudo
92
+ .kr {
93
+ font-weight: bold;
94
+ } // Keyword.Reserved
95
+ .kt {
96
+ color: #458;
97
+ font-weight: bold;
98
+ } // Keyword.Type
99
+ .m {
100
+ color: #099;
101
+ } // Literal.Number
102
+ .s {
103
+ color: #d14;
104
+ } // Literal.String
105
+ .na {
106
+ color: #008080;
107
+ } // Name.Attribute
108
+ .nb {
109
+ color: #0086B3;
110
+ } // Name.Builtin
111
+ .nc {
112
+ color: #458;
113
+ font-weight: bold;
114
+ } // Name.Class
115
+ .no {
116
+ color: #008080;
117
+ } // Name.Constant
118
+ .ni {
119
+ color: #800080;
120
+ } // Name.Entity
121
+ .ne {
122
+ color: #900;
123
+ font-weight: bold;
124
+ } // Name.Exception
125
+ .nf {
126
+ color: #900;
127
+ font-weight: bold;
128
+ } // Name.Function
129
+ .nn {
130
+ color: #555;
131
+ } // Name.Namespace
132
+ .nt {
133
+ color: #000080;
134
+ } // Name.Tag
135
+ .nv {
136
+ color: #008080;
137
+ } // Name.Variable
138
+ .ow {
139
+ font-weight: bold;
140
+ } // Operator.Word
141
+ .w {
142
+ color: #bbb;
143
+ } // Text.Whitespace
144
+ .mf {
145
+ color: #099;
146
+ } // Literal.Number.Float
147
+ .mh {
148
+ color: #099;
149
+ } // Literal.Number.Hex
150
+ .mi {
151
+ color: #099;
152
+ } // Literal.Number.Integer
153
+ .mo {
154
+ color: #099;
155
+ } // Literal.Number.Oct
156
+ .sb {
157
+ color: #d14;
158
+ } // Literal.String.Backtick
159
+ .sc {
160
+ color: #d14;
161
+ } // Literal.String.Char
162
+ .sd {
163
+ color: #d14;
164
+ } // Literal.String.Doc
165
+ .s2 {
166
+ color: #d14;
167
+ } // Literal.String.Double
168
+ .se {
169
+ color: #d14;
170
+ } // Literal.String.Escape
171
+ .sh {
172
+ color: #d14;
173
+ } // Literal.String.Heredoc
174
+ .si {
175
+ color: #d14;
176
+ } // Literal.String.Interpol
177
+ .sx {
178
+ color: #d14;
179
+ } // Literal.String.Other
180
+ .sr {
181
+ color: #009926;
182
+ } // Literal.String.Regex
183
+ .s1 {
184
+ color: #d14;
185
+ } // Literal.String.Single
186
+ .ss {
187
+ color: #990073;
188
+ } // Literal.String.Symbol
189
+ .bp {
190
+ color: #999;
191
+ } // Name.Builtin.Pseudo
192
+ .vc {
193
+ color: #008080;
194
+ } // Name.Variable.Class
195
+ .vg {
196
+ color: #008080;
197
+ } // Name.Variable.Global
198
+ .vi {
199
+ color: #008080;
200
+ } // Name.Variable.Instance
201
+ .il {
202
+ color: #099;
203
+ } // Literal.Number.Integer.Long
204
+ }