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,48 @@
1
+ // You can import web fonts at here.
2
+ // If you want to use HTML to import web fonts, go to _layouts/default.
3
+
4
+ @import "./variables.scss";
5
+
6
+ * {
7
+ margin: 0;
8
+ }
9
+
10
+ body {
11
+ font-family: $font-main;
12
+ }
13
+
14
+ li {
15
+ list-style-type: none;
16
+ }
17
+
18
+ a {
19
+ text-decoration: none;
20
+ color: $color-text-link;
21
+ }
22
+
23
+ a:hover {
24
+ text-decoration: underline;
25
+ }
26
+
27
+ a:visited {
28
+ color: $color-text-link-visited;
29
+ }
30
+
31
+ code, pre {
32
+ font-family: $font-mono;
33
+ }
34
+
35
+ %flex-center {
36
+ display: flex;
37
+ justify-content: center;
38
+ align-items: center;
39
+ }
40
+
41
+ @import "./layout.scss";
42
+ @import "./typo.scss";
43
+ @import "./code.scss";
44
+ @import "./about_layout.scss";
45
+ @import "./tagpost.scss";
46
+ @import "./header.scss";
47
+ @import "./footer.scss";
48
+ @import "./postlist-item.scss";
File without changes
@@ -0,0 +1,9 @@
1
+ .postlist {
2
+ border-bottom: 1px solid #efefef;
3
+ margin: 48px 0;
4
+
5
+ .postlist-title,
6
+ .postlist-excerpt {
7
+ margin-bottom: $text-margin-bottom;
8
+ }
9
+ }
@@ -0,0 +1,7 @@
1
+ .tagbox {
2
+ display: grid;
3
+ padding: 5px 0px 5px 5px;
4
+ margin-bottom: 5px;
5
+ border-bottom: 3px solid #efefef;
6
+ font-size: 18px;
7
+ }
@@ -0,0 +1,209 @@
1
+ h1 {
2
+ font-size: $font-size-1;
3
+ font-weight: 700;
4
+ letter-spacing: -1.5px;
5
+ color: $color-text-soft;
6
+ }
7
+
8
+ h2 {
9
+ font-size: $font-size-2;
10
+ font-weight: 700;
11
+ letter-spacing: -0.5px;
12
+ color: $color-text-soft;
13
+ }
14
+
15
+ h3 {
16
+ font-size: $font-size-3;
17
+ font-weight: 700;
18
+ color: $color-text-soft;
19
+ }
20
+
21
+ h4 {
22
+ font-size: $font-size-4;
23
+ font-weight: 700;
24
+ letter-spacing: 0.2px;
25
+ color: $color-text;
26
+ }
27
+
28
+ h5 {
29
+ font-size: $font-size-5;
30
+ font-weight: 700;
31
+ color: $color-text;
32
+ }
33
+
34
+ h6 {
35
+ font-size: $font-size-6;
36
+ font-weight: 700;
37
+ color: $color-text;
38
+ }
39
+
40
+ p,
41
+ ol,
42
+ ul {
43
+ font-size: $font-size-p;
44
+ font-weight: 400;
45
+ line-height: 1.7;
46
+ color: $color-text;
47
+ }
48
+
49
+ p.meta {
50
+ font-size: 14px;
51
+ font-weight: 700;
52
+ color: $color-text;
53
+ }
54
+
55
+ h1,
56
+ h2,
57
+ h3,
58
+ h4,
59
+ h5,
60
+ h6,
61
+ p,
62
+ ol,
63
+ ul {
64
+ margin: 0;
65
+ }
66
+
67
+ %typo-margin {
68
+ h1 {
69
+ margin-top: $text-margin-top-1;
70
+ margin-bottom: $text-margin-bottom;
71
+ }
72
+
73
+ h2 {
74
+ margin-top: $text-margin-top-2;
75
+ margin-bottom: $text-margin-bottom;
76
+ }
77
+
78
+ h3 {
79
+ margin-top: $text-margin-top-3;
80
+ margin-bottom: $text-margin-bottom;
81
+ }
82
+
83
+ h4 {
84
+ margin-top: $text-margin-top-4;
85
+ margin-bottom: $text-margin-bottom;
86
+ }
87
+
88
+ h5 {
89
+ margin-top: $text-margin-top-5;
90
+ margin-bottom: $text-margin-bottom;
91
+ }
92
+
93
+ h6 {
94
+ margin-top: $text-margin-top-6;
95
+ margin-bottom: $text-margin-bottom;
96
+ }
97
+
98
+ p,
99
+ ol,
100
+ ul {
101
+ margin-top: $text-margin-top-p;
102
+ margin-bottom: $text-margin-bottom;
103
+ }
104
+
105
+ p.meta {
106
+ margin: 0 0 8px;
107
+ }
108
+ }
109
+
110
+ .typo-margin {
111
+ @extend %typo-margin;
112
+ }
113
+
114
+ article {
115
+ @extend %typo-margin;
116
+
117
+ margin: 0 auto;
118
+ padding: 40px 0 40px;
119
+ > * {
120
+ padding: 0 $gap;
121
+ }
122
+
123
+ div[class*="language"] {
124
+ padding: 0;
125
+ margin: 20px 0;
126
+ pre {
127
+ padding: $gap;
128
+ line-height: 1.5;
129
+ border-radius: $gap;
130
+ overflow: auto;
131
+ code {
132
+ color: white;
133
+ }
134
+ }
135
+ }
136
+
137
+ a,
138
+ a > code {
139
+ color: $color-text-link;
140
+ }
141
+
142
+ img {
143
+ max-width: 100%;
144
+ }
145
+
146
+ blockquote {
147
+ background-color: $color-background-gray;
148
+ margin: 24px 0;
149
+ padding: 20px;
150
+ border-radius: 20px;
151
+ p {
152
+ margin: 0;
153
+ color: $color-text-hard;
154
+ }
155
+ }
156
+
157
+ ol,
158
+ ul {
159
+ margin: 24px 20px;
160
+ }
161
+
162
+ li {
163
+ margin: 8px 0;
164
+ }
165
+
166
+ ul ul,
167
+ ul ol,
168
+ ol ul,
169
+ ol ol {
170
+ margin: 8px 0 8px 32px;
171
+ padding: 0;
172
+ }
173
+
174
+ li::marker {
175
+ font-weight: 700;
176
+ }
177
+
178
+ ol > li {
179
+ list-style-type: numeric;
180
+ }
181
+
182
+ ul > li {
183
+ list-style-type: disc;
184
+ }
185
+
186
+ table {
187
+ display: block;
188
+ margin-bottom: $text-margin-bottom;
189
+ width: 100%;
190
+ text-align: left;
191
+ border-collapse: collapse;
192
+ tr {
193
+ &:nth-child(even) {
194
+ background-color: $color-background-diff;
195
+ }
196
+ }
197
+ th, td {
198
+ padding: 8px 12px;
199
+ }
200
+ th {
201
+ background-color: $color-background-gray;
202
+ border: 1px solid $color-background-gray;
203
+ }
204
+ td {
205
+ border: 1px solid $color-background-gray;
206
+ }
207
+ }
208
+ }
209
+
@@ -0,0 +1,89 @@
1
+ /* BRAND COLOR
2
+ - TODO
3
+ */
4
+ $color-primary: rgb(26, 194, 157);
5
+ $color-primary-light: rgb(110, 240, 212);
6
+ $color-primary-dark: rgb(10, 117, 94);
7
+
8
+ $color-secondary: rgb(138, 42, 216);
9
+ $color-secondary-light: rgb(171, 83, 243);
10
+ $color-secondary-dark: rgb(92, 23, 148);
11
+
12
+
13
+ /* BACKGROUND COLOR
14
+ - DIFF color is TODO
15
+ - GRAY color is TODO
16
+ */
17
+ $color-background: #f5f5f5;
18
+ $color-background-diff: #f4f4f4;
19
+ $color-background-gray: #e0e0e0;
20
+
21
+
22
+ /* TEXT COLOR
23
+ - SOFT color is for big text.
24
+ - HARD color is for text
25
+ where more contrast is required (such as quote).
26
+ */
27
+ $color-text: #0d0d0d;
28
+ $color-text-soft: #333333;
29
+ $color-text-hard: #000000;
30
+
31
+ $color-text-link: rgb(26, 87, 167);
32
+ $color-text-link-visited: rgb(75, 36, 167);
33
+
34
+
35
+ /* DARK MODE
36
+ - TODO
37
+ */
38
+ $color-dark-background: rgb(27, 27, 27);
39
+ $color-dark-background-diff: rgb(14, 14, 14);
40
+ $color-dark-background-gray: rgb(44, 44, 44);
41
+
42
+ $color-dark-text: rgb(255, 255, 255);
43
+ $color-dark-text-soft: rgb(255, 255, 255);
44
+ $color-dark-text-hard: rgb(255, 255, 255);
45
+
46
+ $color-dark-text-link: rgb(110, 173, 255);
47
+ $color-dark-text-link-visited: rgb(176, 142, 255);
48
+
49
+
50
+ /* FONT
51
+ - TODO
52
+ */
53
+ $font-sans: "Pretendard", "Inter", "Noto Sans KR", sans-serif;
54
+ $font-serif: "Noto Serif KR", serif;
55
+ $font-display: "Outfit", "Montserrat", sans-serif;
56
+ $font-mono: "Roboto Mono", "Jetbrains Mono", "Fira Code", "Fira Mono", monospace;
57
+ $font-main: $font-sans;
58
+
59
+
60
+ /* FONT SIZE
61
+ - TODO
62
+ */
63
+ $font-size-p: 1rem;
64
+
65
+ $font-size-1: 3rem;
66
+ $font-size-2: 2.5rem;
67
+ $font-size-3: 2rem;
68
+ $font-size-4: 1.5rem;
69
+ $font-size-5: 1.25rem;
70
+ $font-size-6: 1rem;
71
+
72
+
73
+ /* TEXT MARGIN FOR POST ARTICLE
74
+ - IMPORTANT: It applies ONLY in <article> tag.
75
+ */
76
+ $text-margin-bottom: 1rem;
77
+ $text-margin-top-weight: 1.5;
78
+
79
+
80
+ /* ADVANCED TEXT MARGIN FOR POST ARTICLE
81
+ - You CAN edit this, but we highly recommend not editing this.
82
+ */
83
+ $text-margin-top-p: 0;
84
+ $text-margin-top-1: $font-size-1 * $text-margin-top-weight;
85
+ $text-margin-top-2: $font-size-2 * $text-margin-top-weight;
86
+ $text-margin-top-3: $font-size-3 * $text-margin-top-weight;
87
+ $text-margin-top-4: $font-size-4 * $text-margin-top-weight;
88
+ $text-margin-top-5: $font-size-5 * $text-margin-top-weight;
89
+ $text-margin-top-6: $font-size-6 * $text-margin-top-weight;
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "hydn/main";
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" fill="#FFF"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>
Binary file
Binary file
Binary file
Binary file
Binary file