hydn 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +208 -0
  4. data/_config.yml +87 -0
  5. data/_includes/aboutme.html +27 -0
  6. data/_includes/comment.html +19 -0
  7. data/_includes/editior.html +35 -0
  8. data/_includes/footer.html +12 -0
  9. data/_includes/header.html +15 -0
  10. data/_includes/navigation.html +14 -0
  11. data/_includes/post-author-list.html +13 -0
  12. data/_includes/postlist-item.html +17 -0
  13. data/_includes/profile.html +0 -0
  14. data/_includes/search.html +16 -0
  15. data/_layouts/all-categories.html +25 -0
  16. data/_layouts/all-posts.html +38 -0
  17. data/_layouts/all-series.html +27 -0
  18. data/_layouts/all-tags.html +22 -0
  19. data/_layouts/author-page.html +55 -0
  20. data/_layouts/category-page.html +19 -0
  21. data/_layouts/default.html +45 -0
  22. data/_layouts/home.html +34 -0
  23. data/_layouts/page.html +5 -0
  24. data/_layouts/post.html +60 -0
  25. data/_layouts/search.html +37 -0
  26. data/_layouts/series-page.html +25 -0
  27. data/_sass/hydn/about_layout.scss +66 -0
  28. data/_sass/hydn/code.scss +194 -0
  29. data/_sass/hydn/footer.scss +33 -0
  30. data/_sass/hydn/header.scss +104 -0
  31. data/_sass/hydn/layout.scss +29 -0
  32. data/_sass/hydn/main.scss +48 -0
  33. data/_sass/hydn/nav.scss +0 -0
  34. data/_sass/hydn/postlist-item.scss +9 -0
  35. data/_sass/hydn/tagpost.scss +7 -0
  36. data/_sass/hydn/typo.scss +209 -0
  37. data/_sass/hydn/variables.scss +89 -0
  38. data/assets/css/style.scss +4 -0
  39. data/assets/img/hydn/about.webp +0 -0
  40. data/assets/img/hydn/about_aboutme.png +0 -0
  41. data/assets/img/hydn/about_all.png +0 -0
  42. data/assets/img/hydn/about_category.png +0 -0
  43. data/assets/img/hydn/about_disqus.jpg +0 -0
  44. data/assets/img/hydn/about_disqus_screen.jpg +0 -0
  45. data/assets/img/hydn/about_editior.png +0 -0
  46. data/assets/img/hydn/about_editior_2.png +0 -0
  47. data/assets/img/hydn/about_help.png +0 -0
  48. data/assets/img/hydn/about_help_icon.png +0 -0
  49. data/assets/img/hydn/about_home.png +0 -0
  50. data/assets/img/hydn/about_hydn_logo.png +0 -0
  51. data/assets/img/hydn/about_menu.png +0 -0
  52. data/assets/img/hydn/about_readme.png +0 -0
  53. data/assets/img/hydn/about_search.png +0 -0
  54. data/assets/img/hydn/about_search_console.png +0 -0
  55. data/assets/img/hydn/about_search_console.screen_01.png +0 -0
  56. data/assets/img/hydn/about_search_console.screen_02.png +0 -0
  57. data/assets/img/hydn/about_search_screen.png +0 -0
  58. data/assets/img/hydn/about_series.png +0 -0
  59. data/assets/img/hydn/about_series_screen.png +0 -0
  60. data/assets/img/hydn/about_tag.png +0 -0
  61. data/assets/img/hydn/about_top_image.png +0 -0
  62. data/assets/img/hydn/about_whoami.jpg +0 -0
  63. data/assets/img/hydn/author_text.png +0 -0
  64. data/assets/img/hydn/default-profile.png +0 -0
  65. data/assets/img/hydn/forest.jpg +0 -0
  66. data/assets/img/hydn/lake.jpg +0 -0
  67. data/assets/img/hydn/menu_white_24dp.svg +1 -0
  68. data/assets/img/hydn/scarlet.jpg +0 -0
  69. data/assets/img/hydn/search.png +0 -0
  70. data/assets/img/hydn/snow.jpg +0 -0
  71. data/assets/img/hydn/title.webp +0 -0
  72. data/assets/img/hydn/work.jpg +0 -0
  73. data/assets/tipuesearch/css/normalize.css +461 -0
  74. data/assets/tipuesearch/css/tipuesearch.css +251 -0
  75. data/assets/tipuesearch/search.png +0 -0
  76. data/assets/tipuesearch/tipuesearch.min.js +178 -0
  77. data/assets/tipuesearch/tipuesearch_content.js +83 -0
  78. data/assets/tipuesearch/tipuesearch_set.js +80 -0
  79. metadata +192 -0
@@ -0,0 +1,461 @@
1
+ /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /**
4
+ * 1. Change the default font family in all browsers (opinionated).
5
+ * 2. Correct the line height in all browsers.
6
+ * 3. Prevent adjustments of font size after orientation changes in
7
+ * IE on Windows Phone and in iOS.
8
+ */
9
+
10
+ /* Document
11
+ ========================================================================== */
12
+
13
+ html {
14
+ font-family: sans-serif; /* 1 */
15
+ line-height: 1.15; /* 2 */
16
+ -ms-text-size-adjust: 100%; /* 3 */
17
+ -webkit-text-size-adjust: 100%; /* 3 */
18
+ }
19
+
20
+ /* Sections
21
+ ========================================================================== */
22
+
23
+ /**
24
+ * Remove the margin in all browsers (opinionated).
25
+ */
26
+
27
+ body {
28
+ margin: 0;
29
+ }
30
+
31
+ /**
32
+ * Add the correct display in IE 9-.
33
+ */
34
+
35
+ article,
36
+ aside,
37
+ footer,
38
+ header,
39
+ nav,
40
+ section {
41
+ display: block;
42
+ }
43
+
44
+ /**
45
+ * Correct the font size and margin on `h1` elements within `section` and
46
+ * `article` contexts in Chrome, Firefox, and Safari.
47
+ */
48
+
49
+ h1 {
50
+ font-size: 2em;
51
+ margin: 0.67em 0;
52
+ }
53
+
54
+ /* Grouping content
55
+ ========================================================================== */
56
+
57
+ /**
58
+ * Add the correct display in IE 9-.
59
+ * 1. Add the correct display in IE.
60
+ */
61
+
62
+ figcaption,
63
+ figure,
64
+ main { /* 1 */
65
+ display: block;
66
+ }
67
+
68
+ /**
69
+ * Add the correct margin in IE 8.
70
+ */
71
+
72
+ figure {
73
+ margin: 1em 40px;
74
+ }
75
+
76
+ /**
77
+ * 1. Add the correct box sizing in Firefox.
78
+ * 2. Show the overflow in Edge and IE.
79
+ */
80
+
81
+ hr {
82
+ box-sizing: content-box; /* 1 */
83
+ height: 0; /* 1 */
84
+ overflow: visible; /* 2 */
85
+ }
86
+
87
+ /**
88
+ * 1. Correct the inheritance and scaling of font size in all browsers.
89
+ * 2. Correct the odd `em` font sizing in all browsers.
90
+ */
91
+
92
+ pre {
93
+ font-family: monospace, monospace; /* 1 */
94
+ font-size: 1em; /* 2 */
95
+ }
96
+
97
+ /* Text-level semantics
98
+ ========================================================================== */
99
+
100
+ /**
101
+ * 1. Remove the gray background on active links in IE 10.
102
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
103
+ */
104
+
105
+ a {
106
+ background-color: transparent; /* 1 */
107
+ -webkit-text-decoration-skip: objects; /* 2 */
108
+ }
109
+
110
+ /**
111
+ * Remove the outline on focused links when they are also active or hovered
112
+ * in all browsers (opinionated).
113
+ */
114
+
115
+ a:active,
116
+ a:hover {
117
+ outline-width: 0;
118
+ }
119
+
120
+ /**
121
+ * 1. Remove the bottom border in Firefox 39-.
122
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
123
+ */
124
+
125
+ abbr[title] {
126
+ border-bottom: none; /* 1 */
127
+ text-decoration: underline; /* 2 */
128
+ text-decoration: underline dotted; /* 2 */
129
+ }
130
+
131
+ /**
132
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
133
+ */
134
+
135
+ b,
136
+ strong {
137
+ font-weight: inherit;
138
+ }
139
+
140
+ /**
141
+ * Add the correct font weight in Chrome, Edge, and Safari.
142
+ */
143
+
144
+ b,
145
+ strong {
146
+ font-weight: bolder;
147
+ }
148
+
149
+ /**
150
+ * 1. Correct the inheritance and scaling of font size in all browsers.
151
+ * 2. Correct the odd `em` font sizing in all browsers.
152
+ */
153
+
154
+ code,
155
+ kbd,
156
+ samp {
157
+ font-family: monospace, monospace; /* 1 */
158
+ font-size: 1em; /* 2 */
159
+ }
160
+
161
+ /**
162
+ * Add the correct font style in Android 4.3-.
163
+ */
164
+
165
+ dfn {
166
+ font-style: italic;
167
+ }
168
+
169
+ /**
170
+ * Add the correct background and color in IE 9-.
171
+ */
172
+
173
+ mark {
174
+ background-color: #ff0;
175
+ color: #000;
176
+ }
177
+
178
+ /**
179
+ * Add the correct font size in all browsers.
180
+ */
181
+
182
+ small {
183
+ font-size: 80%;
184
+ }
185
+
186
+ /**
187
+ * Prevent `sub` and `sup` elements from affecting the line height in
188
+ * all browsers.
189
+ */
190
+
191
+ sub,
192
+ sup {
193
+ font-size: 75%;
194
+ line-height: 0;
195
+ position: relative;
196
+ vertical-align: baseline;
197
+ }
198
+
199
+ sub {
200
+ bottom: -0.25em;
201
+ }
202
+
203
+ sup {
204
+ top: -0.5em;
205
+ }
206
+
207
+ /* Embedded content
208
+ ========================================================================== */
209
+
210
+ /**
211
+ * Add the correct display in IE 9-.
212
+ */
213
+
214
+ audio,
215
+ video {
216
+ display: inline-block;
217
+ }
218
+
219
+ /**
220
+ * Add the correct display in iOS 4-7.
221
+ */
222
+
223
+ audio:not([controls]) {
224
+ display: none;
225
+ height: 0;
226
+ }
227
+
228
+ /**
229
+ * Remove the border on images inside links in IE 10-.
230
+ */
231
+
232
+ img {
233
+ border-style: none;
234
+ }
235
+
236
+ /**
237
+ * Hide the overflow in IE.
238
+ */
239
+
240
+ svg:not(:root) {
241
+ overflow: hidden;
242
+ }
243
+
244
+ /* Forms
245
+ ========================================================================== */
246
+
247
+ /**
248
+ * 1. Change the font styles in all browsers (opinionated).
249
+ * 2. Remove the margin in Firefox and Safari.
250
+ */
251
+
252
+ button,
253
+ input,
254
+ optgroup,
255
+ select,
256
+ textarea {
257
+ font-family: sans-serif; /* 1 */
258
+ font-size: 100%; /* 1 */
259
+ line-height: 1.15; /* 1 */
260
+ margin: 0; /* 2 */
261
+ }
262
+
263
+ /**
264
+ * Show the overflow in IE.
265
+ * 1. Show the overflow in Edge.
266
+ */
267
+
268
+ button,
269
+ input { /* 1 */
270
+ overflow: visible;
271
+ }
272
+
273
+ /**
274
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
275
+ * 1. Remove the inheritance of text transform in Firefox.
276
+ */
277
+
278
+ button,
279
+ select { /* 1 */
280
+ text-transform: none;
281
+ }
282
+
283
+ /**
284
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
285
+ * controls in Android 4.
286
+ * 2. Correct the inability to style clickable types in iOS and Safari.
287
+ */
288
+
289
+ button,
290
+ html [type="button"], /* 1 */
291
+ [type="reset"],
292
+ [type="submit"] {
293
+ -webkit-appearance: button; /* 2 */
294
+ }
295
+
296
+ /**
297
+ * Remove the inner border and padding in Firefox.
298
+ */
299
+
300
+ button::-moz-focus-inner,
301
+ [type="button"]::-moz-focus-inner,
302
+ [type="reset"]::-moz-focus-inner,
303
+ [type="submit"]::-moz-focus-inner {
304
+ border-style: none;
305
+ padding: 0;
306
+ }
307
+
308
+ /**
309
+ * Restore the focus styles unset by the previous rule.
310
+ */
311
+
312
+ button:-moz-focusring,
313
+ [type="button"]:-moz-focusring,
314
+ [type="reset"]:-moz-focusring,
315
+ [type="submit"]:-moz-focusring {
316
+ outline: 1px dotted ButtonText;
317
+ }
318
+
319
+ /**
320
+ * Change the border, margin, and padding in all browsers (opinionated).
321
+ */
322
+
323
+ fieldset {
324
+ border: 1px solid #c0c0c0;
325
+ margin: 0 2px;
326
+ padding: 0.35em 0.625em 0.75em;
327
+ }
328
+
329
+ /**
330
+ * 1. Correct the text wrapping in Edge and IE.
331
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
332
+ * 3. Remove the padding so developers are not caught out when they zero out
333
+ * `fieldset` elements in all browsers.
334
+ */
335
+
336
+ legend {
337
+ box-sizing: border-box; /* 1 */
338
+ color: inherit; /* 2 */
339
+ display: table; /* 1 */
340
+ max-width: 100%; /* 1 */
341
+ padding: 0; /* 3 */
342
+ white-space: normal; /* 1 */
343
+ }
344
+
345
+ /**
346
+ * 1. Add the correct display in IE 9-.
347
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
348
+ */
349
+
350
+ progress {
351
+ display: inline-block; /* 1 */
352
+ vertical-align: baseline; /* 2 */
353
+ }
354
+
355
+ /**
356
+ * Remove the default vertical scrollbar in IE.
357
+ */
358
+
359
+ textarea {
360
+ overflow: auto;
361
+ }
362
+
363
+ /**
364
+ * 1. Add the correct box sizing in IE 10-.
365
+ * 2. Remove the padding in IE 10-.
366
+ */
367
+
368
+ [type="checkbox"],
369
+ [type="radio"] {
370
+ box-sizing: border-box; /* 1 */
371
+ padding: 0; /* 2 */
372
+ }
373
+
374
+ /**
375
+ * Correct the cursor style of increment and decrement buttons in Chrome.
376
+ */
377
+
378
+ [type="number"]::-webkit-inner-spin-button,
379
+ [type="number"]::-webkit-outer-spin-button {
380
+ height: auto;
381
+ }
382
+
383
+ /**
384
+ * 1. Correct the odd appearance in Chrome and Safari.
385
+ * 2. Correct the outline style in Safari.
386
+ */
387
+
388
+ [type="search"] {
389
+ -webkit-appearance: textfield; /* 1 */
390
+ outline-offset: -2px; /* 2 */
391
+ }
392
+
393
+ /**
394
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
395
+ */
396
+
397
+ [type="search"]::-webkit-search-cancel-button,
398
+ [type="search"]::-webkit-search-decoration {
399
+ -webkit-appearance: none;
400
+ }
401
+
402
+ /**
403
+ * 1. Correct the inability to style clickable types in iOS and Safari.
404
+ * 2. Change font properties to `inherit` in Safari.
405
+ */
406
+
407
+ ::-webkit-file-upload-button {
408
+ -webkit-appearance: button; /* 1 */
409
+ font: inherit; /* 2 */
410
+ }
411
+
412
+ /* Interactive
413
+ ========================================================================== */
414
+
415
+ /*
416
+ * Add the correct display in IE 9-.
417
+ * 1. Add the correct display in Edge, IE, and Firefox.
418
+ */
419
+
420
+ details, /* 1 */
421
+ menu {
422
+ display: block;
423
+ }
424
+
425
+ /*
426
+ * Add the correct display in all browsers.
427
+ */
428
+
429
+ summary {
430
+ display: list-item;
431
+ }
432
+
433
+ /* Scripting
434
+ ========================================================================== */
435
+
436
+ /**
437
+ * Add the correct display in IE 9-.
438
+ */
439
+
440
+ canvas {
441
+ display: inline-block;
442
+ }
443
+
444
+ /**
445
+ * Add the correct display in IE.
446
+ */
447
+
448
+ template {
449
+ display: none;
450
+ }
451
+
452
+ /* Hidden
453
+ ========================================================================== */
454
+
455
+ /**
456
+ * Add the correct display in IE 10-.
457
+ */
458
+
459
+ [hidden] {
460
+ display: none;
461
+ }
@@ -0,0 +1,251 @@
1
+
2
+ /*
3
+ Tipue Search 6.1
4
+ Copyright (c) 2017 Tipue
5
+ Tipue Search is released under the MIT License
6
+ http://www.tipue.com/search
7
+ */
8
+
9
+
10
+ /* fonts */
11
+
12
+
13
+ #tipue_search_input, #tipue_search_foot_boxes
14
+ {
15
+ font: 300 14px/1 Roboto, sans-serif;
16
+ }
17
+ #tipue_search_results_count, #tipue_search_warning, .tipue_search_content_url, .tipue_search_content_debug, .tipue_search_related_text
18
+ {
19
+ font: 300 14px/1.7 Roboto, sans-serif;
20
+ }
21
+ .tipue_search_content_title
22
+ {
23
+ font: 100 26px/1.7 Roboto, sans-serif;
24
+ }
25
+ .tipue_search_content_text, .tipue_search_related_title
26
+ {
27
+ font: 300 15px/1.7 Roboto, sans-serif;
28
+ }
29
+ .tipue_search_content_bold, .tipue_search_related_bold
30
+ {
31
+ font-weight: 400;
32
+ }
33
+
34
+
35
+ /* search box */
36
+
37
+
38
+ #tipue_search_input
39
+ {
40
+ color: #333;
41
+ max-width: 210px;
42
+ padding: 17px;
43
+ border: 2px solid #e3e3e3;
44
+ border-radius: 0;
45
+ -moz-appearance: none;
46
+ -webkit-appearance: none;
47
+ box-shadow: none;
48
+ outline: 0;
49
+ margin: 0;
50
+ }
51
+ .tipue_search_icon
52
+ {
53
+ width: 24px;
54
+ height: 24px;
55
+ }
56
+ .tipue_search_left
57
+ {
58
+ float: left;
59
+ padding: 15px 9px 0 0;
60
+ }
61
+ .tipue_search_right
62
+ {
63
+ float: left;
64
+ }
65
+
66
+
67
+ /* search results */
68
+
69
+
70
+ #tipue_search_content
71
+ {
72
+ max-width: 950px;
73
+ padding-top: 15px;
74
+ margin: 0;
75
+ }
76
+ #tipue_search_results_count
77
+ {
78
+ color: #333;
79
+ }
80
+ #tipue_search_warning
81
+ {
82
+ color: #333;
83
+ margin: 7px 0;
84
+ }
85
+ #tipue_search_warning a
86
+ {
87
+ color: #5396ea;
88
+ text-decoration: none;
89
+ }
90
+ #tipue_search_warning a:hover
91
+ {
92
+ color: #555;
93
+ }
94
+ .tipue_search_content_title
95
+ {
96
+ color: #666;
97
+ margin-top: 21px;
98
+ }
99
+ .tipue_search_content_title a
100
+ {
101
+ color: #666;
102
+ text-decoration: none;
103
+ }
104
+ .tipue_search_content_title a:hover
105
+ {
106
+ color: #666;
107
+ }
108
+ .tipue_search_content_url
109
+ {
110
+ word-wrap: break-word;
111
+ hyphens: auto;
112
+ }
113
+ .tipue_search_content_url a, .tipue_search_related_text a
114
+ {
115
+ color: #5396ea;
116
+ text-decoration: none;
117
+ }
118
+ .tipue_search_content_url a:hover, .tipue_search_related_text a:hover, .tipue_search_related_before, .tipue_search_related_after
119
+ {
120
+ color: #555;
121
+ }
122
+ .tipue_search_content_text
123
+ {
124
+ color: #333;
125
+ word-wrap: break-word;
126
+ hyphens: auto;
127
+ margin-top: 5px;
128
+ }
129
+ .tipue_search_content_bold
130
+ {
131
+ color: #333;
132
+ }
133
+ .tipue_search_content_debug
134
+ {
135
+ color: #333;
136
+ margin: 5px 0;
137
+ }
138
+ .tipue_search_related_title
139
+ {
140
+ color: #333;
141
+ margin: 26px 0 7px 0;
142
+ }
143
+ .tipue_search_related_cols
144
+ {
145
+ -webkit-columns: 230px 2;
146
+ -moz-columns: 230px 2;
147
+ columns: 230px 2;
148
+ }
149
+
150
+ #tipue_search_foot
151
+ {
152
+ margin: 51px 0 21px 0;
153
+ }
154
+ #tipue_search_foot_boxes
155
+ {
156
+ padding: 0;
157
+ margin: 0;
158
+ cursor: pointer;
159
+ }
160
+ #tipue_search_foot_boxes li
161
+ {
162
+ list-style: none;
163
+ margin: 0;
164
+ padding: 0;
165
+ display: inline;
166
+ }
167
+ #tipue_search_foot_boxes li a
168
+ {
169
+ padding: 10px 17px 11px 17px;
170
+ background-color: #fff;
171
+ border: 1px solid #e3e3e3;
172
+ border-radius: 1px;
173
+ color: #333;
174
+ margin-right: 7px;
175
+ text-decoration: none;
176
+ text-align: center;
177
+ }
178
+ #tipue_search_foot_boxes li.current
179
+ {
180
+ padding: 10px 17px 11px 17px;
181
+ background: #f6f6f6;
182
+ border: 1px solid #e3e3e3;
183
+ border-radius: 1px;
184
+ color: #333;
185
+ margin-right: 7px;
186
+ text-align: center;
187
+ }
188
+ #tipue_search_foot_boxes li a:hover
189
+ {
190
+ background: #f6f6f6;
191
+ }
192
+
193
+
194
+ /* spinner */
195
+
196
+
197
+ .tipue_search_spinner
198
+ {
199
+ width: 50px;
200
+ height: 28px;
201
+ }
202
+ .tipue_search_spinner > div
203
+ {
204
+ background-color: #e3e3e3;
205
+ height: 100%;
206
+ width: 2px;
207
+ display: inline-block;
208
+ margin-right: 2px;
209
+ -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
210
+ animation: stretchdelay 1.2s infinite ease-in-out;
211
+ }
212
+ .tipue_search_spinner .tipue_search_rect2
213
+ {
214
+ -webkit-animation-delay: -1.1s;
215
+ animation-delay: -1.1s;
216
+ }
217
+ .tipue_search_spinner .tipue_search_rect3
218
+ {
219
+ -webkit-animation-delay: -1.0s;
220
+ animation-delay: -1.0s;
221
+ }
222
+ @-webkit-keyframes stretchdelay
223
+ {
224
+ 0%, 40%, 100%
225
+ {
226
+ -webkit-transform: scaleY(0.4)
227
+ }
228
+ 20%
229
+ {
230
+ -webkit-transform: scaleY(1.0)
231
+ }
232
+ }
233
+ @keyframes stretchdelay
234
+ {
235
+ 0%, 40%, 100%
236
+ {
237
+ transform: scaleY(0.4);
238
+ -webkit-transform: scaleY(0.4);
239
+ }
240
+ 20%
241
+ {
242
+ transform: scaleY(1.0);
243
+ -webkit-transform: scaleY(1.0);
244
+ }
245
+ }
246
+
247
+
248
+
249
+
250
+
251
+
Binary file