jekyll-darkred-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2d8c88d73af649c1d4a1ce4160d324990b85273770c1baff85217919345fca09
4
+ data.tar.gz: edfdd0c40961c097d1b510ee08a1d4fb133239249afc8a8123ea67725b04cf53
5
+ SHA512:
6
+ metadata.gz: 96cc2b5ed2074793538fd275714eeaef1de85c118b9186d2dba0fad501dcb726e3e3ae17fd84b73f3092de40e009c14650eb58723d8fe7dc1e280d4de8ac7bdb
7
+ data.tar.gz: 3747d1f7f2c5fdd4099bf03f159aeca0b15ed1c015b56c8b18b6cdaa0a3a4253d7a12f16033bbc946382f05c38a81ed117efeae7ac406ef13e33622d7b60ca55
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Kento Oki
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ ![IMAGE](image.png)
2
+
3
+ # jekyll-darkred-theme
4
+ A dark-red theme for Jekyll.
@@ -0,0 +1,11 @@
1
+ title: Jekyll Dark-Red Theme
2
+ description: "A dark-red theme for Jekyll."
3
+ lang: en
4
+
5
+ # copyright shown in footer
6
+ copyright_text: "Copyright © 2020 Jekyll Dark-Red Theme. All Rights Reserved."
7
+
8
+ # following configurations allow showing thumbnails on post list
9
+ post_thumbnails: true
10
+ post_default_thubnail: "/assets/images/a.jpg" # this image will shown if the thumbnail was not specified in the post
11
+ post_thumbnail_defaults: true # show default thumbnail in the post list
@@ -0,0 +1,15 @@
1
+ <footer>
2
+ <div class="wrapper">
3
+ <div class="footer-container row">
4
+ <div class="left col">
5
+ <a class="footer-title" href="{{ " /" | relative_url }}">{{ site.title }}</a>
6
+ {%- if site.description -%}
7
+ <span class="footer-description">{{ site.description }}</span>
8
+ {%- endif -%}
9
+ </div>
10
+ </div>
11
+ {%- if site.copyright_text -%}
12
+ <span class="copyright">{{ site.copyright_text }}</span>
13
+ {%- endif -%}
14
+ </div>
15
+ </footer>
@@ -0,0 +1,15 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ <title>{{ page.title | default: site.title }}</title>
6
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
7
+ <link rel="stylesheet" href="{{ '/assets/css/ress.min.css' | relative_url }}">
8
+ <link rel="preconnect" href="https://fonts.gstatic.com">
9
+ <link
10
+ href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap"
11
+ rel="stylesheet">
12
+ <link
13
+ href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap"
14
+ rel="stylesheet">
15
+ </head>
@@ -0,0 +1,16 @@
1
+ <header>
2
+ <div class="wrapper">
3
+ <a class="site-title" href="{{ "/" | relative_url }}">{{ site.title }}</a>
4
+ <div id="nav-anchor">
5
+ {%- include nav.html -%}
6
+ </div>
7
+ <div class="navigation" id="nav-drawer">
8
+ <input id="nav-input" type="checkbox" class="nav-unshown">
9
+ <label id="nav-open" for="nav-input"><span></span></label>
10
+ <label class="nav-unshown" id="nav-close" for="nav-input"></label>
11
+ <div id="nav-content">
12
+ {%- include nav.html -%}
13
+ </div>
14
+ </div>
15
+ </div>
16
+ </header>
@@ -0,0 +1,13 @@
1
+ {%- assign default_paths = site.pages | map: "path" -%}
2
+ {%- assign page_paths = site.header_pages | default: default_paths | reverse -%}
3
+
4
+ {%- if page_paths -%}
5
+ <nav class="navigation">
6
+ {%- for path in page_paths -%}
7
+ {%- assign x = site.pages | where: "path", path | first -%}
8
+ {%- if x.title -%}
9
+ <a class="nav-item" href="{{ x.url | relative_url }}">{{ x.title }}</a>
10
+ {%- endif -%}
11
+ {%- endfor -%}
12
+ </nav>
13
+ {%- endif -%}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="z404">
6
+ {{ content }}
7
+ </div>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: " en " }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+ {%- include header.html -%}
8
+ <main>
9
+ <div class="wrapper">
10
+ {{ content }}
11
+ </div>
12
+ </main>
13
+ {%- include footer.html -%}
14
+ </body>
15
+
16
+ </html>
@@ -0,0 +1,28 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div>
6
+ {%- if site.posts.size > 0 -%}
7
+ <ul class="posts-container">
8
+ {%- for post in site.posts -%}
9
+ <li>
10
+ <a href="{{ post.url | relative_url }}">
11
+ {%- if site.post_thumbnails -%}
12
+ {%- if post.thumbnail -%}
13
+ <img class="post-thumbnail" src="{{ post.thumbnail | relative_url }}" alt="">
14
+ {%- elsif site.post_thumbnail_defaults -%}
15
+ <img class="post-thumbnail" src="{{ site.post_default_thubnail | relative_url | default: "/assets/images/jekyll-og.png" }}" alt="">
16
+ {%- endif -%}
17
+ {%- endif -%}
18
+ <div class="post-detail-container">
19
+ <h1 class="post-title">{{ post.title }}</h1>
20
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
21
+ <span class="post-date">{{ post.date | date: date_format }}</span>
22
+ </div>
23
+ </a>
24
+ </li>
25
+ {%- endfor -%}
26
+ </ul>
27
+ {%- endif -%}
28
+ </div>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post-body" itemscope itemtype="http://schema.org/BlogPosting">
6
+ {{ content }}
7
+ </article>
@@ -0,0 +1,80 @@
1
+ @import "variables";
2
+ @import "mixins";
3
+
4
+ #nav-drawer {
5
+ display: none;
6
+ position: relative;
7
+ @include smartphone() {
8
+ display: flex;
9
+ align-items: flex-end;
10
+ }
11
+ }
12
+
13
+ .nav-unshown {
14
+ display: none;
15
+ }
16
+
17
+ #nav-open {
18
+ display: inline-block;
19
+ width: 30px;
20
+ height: 22px;
21
+ vertical-align: middle;
22
+ }
23
+
24
+ #nav-open span,
25
+ #nav-open span:before,
26
+ #nav-open span:after {
27
+ position: absolute;
28
+ height: 3px;
29
+ width: 25px;
30
+ border-radius: 3px;
31
+ background: #fff;
32
+ display: block;
33
+ content: "";
34
+ cursor: pointer;
35
+ }
36
+ #nav-open span:before {
37
+ bottom: -8px;
38
+ }
39
+ #nav-open span:after {
40
+ bottom: -16px;
41
+ }
42
+
43
+ #nav-close {
44
+ display: none;
45
+ position: fixed;
46
+ z-index: 99;
47
+ top: 0;
48
+ left: 0;
49
+ width: 100%;
50
+ height: 100%;
51
+ background: black;
52
+ opacity: 0;
53
+ transition: 0.3s ease-in-out;
54
+ }
55
+
56
+ #nav-content {
57
+ overflow: auto;
58
+ position: fixed;
59
+ top: 0;
60
+ left: 0;
61
+ z-index: 9999;
62
+ width: 90%;
63
+ max-width: 330px;
64
+ height: 100%;
65
+ background: $color-background;
66
+ transition: 0.3s ease-in-out;
67
+ -webkit-transform: translateX(-105%);
68
+ transform: translateX(-105%);
69
+ }
70
+
71
+ #nav-input:checked ~ #nav-close {
72
+ display: block;
73
+ opacity: 0.5;
74
+ }
75
+
76
+ #nav-input:checked ~ #nav-content {
77
+ -webkit-transform: translateX(0%);
78
+ transform: translateX(0%);
79
+ box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
80
+ }
@@ -0,0 +1,348 @@
1
+ @charset 'utf-8';
2
+ @import "variables";
3
+ @import "syntax_highlights";
4
+ @import "hamburger";
5
+ @import "mixins";
6
+
7
+ *,
8
+ *::before,
9
+ *::after {
10
+ box-sizing: border-box;
11
+ margin: 0;
12
+ }
13
+
14
+ body {
15
+ font-family: 'Open Sans', sans-serif;
16
+ background: $color-background;
17
+ color: $color-font;
18
+ min-height: 100vh;
19
+ display: flex;
20
+ flex-flow: column;
21
+ }
22
+
23
+ .wrapper {
24
+ max-width: 1024px;
25
+ width: 70%;
26
+ margin: 0 auto 0 auto;
27
+ padding: 0 20px 0 20px;
28
+
29
+ @include smartphone() {
30
+ width: 100%;
31
+ padding: 0 12px 0 12px;
32
+ }
33
+ }
34
+
35
+ #nav-anchor {
36
+ width: 100%;
37
+ display: flex;
38
+ flex-direction: column;
39
+ align-items: flex-end;
40
+ justify-content: flex-end;
41
+ @include smartphone() {
42
+ display: none;
43
+ }
44
+ }
45
+
46
+ header {
47
+ position: relative;
48
+ height: 60px;
49
+
50
+ display: flex;
51
+ align-items: center;
52
+
53
+ border-bottom: 1px solid $color-border;
54
+
55
+ .wrapper {
56
+ display: flex;
57
+ flex-direction: row;
58
+ align-items: center;
59
+ height: 100%;
60
+ }
61
+
62
+ .site-title {
63
+ @include no_text_decoration();
64
+ @include word_no_breaks();
65
+ font-size: 1.05rem;
66
+ font-weight: bold;
67
+ }
68
+
69
+ .navigation {
70
+ display: flex;
71
+ justify-content: flex-end;
72
+ align-items: center;
73
+
74
+ width: 100%;
75
+ height: 100%;
76
+
77
+ @include smartphone() {
78
+ flex-direction: column;
79
+ height: auto;
80
+ }
81
+
82
+ .nav-item {
83
+ @include no_text_decoration();
84
+ font-size: 0.9em;
85
+ margin-right: 20px;
86
+ height: 100%;
87
+
88
+ display: flex;
89
+ align-items: center;
90
+
91
+ @include smartphone() {
92
+ margin-right: 0;
93
+ justify-content: center;
94
+ text-align: center;
95
+ padding: 6px 12px 6px 12px;
96
+ font-size: 1.5rem;
97
+ margin-bottom: 12px;
98
+ }
99
+
100
+ &:first-child {
101
+ @include smartphone() {
102
+ padding-top: 20px;
103
+ }
104
+ }
105
+
106
+ &:last-child {
107
+ margin-right: 0;
108
+ @include smartphone() {
109
+ margin-bottom: 0;
110
+ }
111
+ }
112
+
113
+ &:hover {
114
+ text-decoration: underline;
115
+ }
116
+ }
117
+ }
118
+ }
119
+
120
+ main {
121
+ padding: 20px 0 20px 0;
122
+ flex: 1 0 auto;
123
+ }
124
+
125
+ .posts-container {
126
+ list-style: none;
127
+
128
+ display: flex;
129
+ flex-direction: column;
130
+
131
+ a {
132
+ @include no_text_decoration();
133
+ color: $color-font;
134
+ }
135
+
136
+ li {
137
+ width: 100%;
138
+
139
+ background: $color-background-inner;
140
+ width: 100%;
141
+ margin-bottom: 12px;
142
+
143
+ border-left: 2px solid $color-primary;
144
+
145
+ &:last-child {
146
+ margin-bottom: 0;
147
+ }
148
+
149
+ &:hover,
150
+ > a.post-title:hover {
151
+ opacity: 0.85;
152
+ }
153
+
154
+ > a {
155
+ width: 100%;
156
+ padding: 12px;
157
+
158
+ display: flex;
159
+ flex-direction: row;
160
+
161
+ @include smartphone() {
162
+ flex-direction: column;
163
+ }
164
+
165
+ .post-thumbnail {
166
+ width: 240px;
167
+ height: 135px;
168
+ margin-right: 12px;
169
+
170
+ @include smartphone() {
171
+ width: 100%;
172
+ height: auto;
173
+ margin-bottom: 12px;
174
+ }
175
+ }
176
+
177
+ .post-detail-container {
178
+ display: flex;
179
+ flex-direction: column;
180
+ }
181
+
182
+ .post-title {
183
+ font-size: 1.35rem;
184
+ font-weight: bold;
185
+
186
+ &::before {
187
+ content: " # ";
188
+ color: $color-font-thin;
189
+ }
190
+ }
191
+
192
+ .post-date {
193
+ font-family: "Source Code Pro", sans-serif;
194
+ color: $color-font-thin;
195
+ font-size: 0.95rem;
196
+ }
197
+ }
198
+ }
199
+ }
200
+
201
+ code {
202
+ font-family: "Source Code Pro", monospace, sans-serif !important;
203
+ }
204
+
205
+ .post-body {
206
+ width: 100%;
207
+
208
+ > * {
209
+ margin-bottom: 12px;
210
+ }
211
+
212
+ h1,
213
+ h2 {
214
+ border-bottom: 1px solid $color-border-thin;
215
+ }
216
+
217
+ h3 {
218
+ &::before {
219
+ content: " # ";
220
+ color: $color-font-thin;
221
+ }
222
+ }
223
+
224
+ ul,
225
+ ol {
226
+ margin-left: 20px;
227
+ }
228
+
229
+ table {
230
+ $_table_border: 1px solid $color-border-thin;
231
+ border: $_table_border;
232
+ border-collapse: collapse;
233
+
234
+ td,
235
+ th {
236
+ border: $_table_border;
237
+ padding: 6px 12px 6px 12px;
238
+ }
239
+
240
+ thead,
241
+ tbody {
242
+ tr {
243
+ border: $_table_border;
244
+ }
245
+ }
246
+
247
+ tbody {
248
+ tr {
249
+ &:nth-child(odd) {
250
+ background: $color-background-inner;
251
+ }
252
+ }
253
+ }
254
+ }
255
+
256
+ a {
257
+ color: $color-font-link;
258
+ &:visited {
259
+ color: $color-font-link-visited;
260
+ }
261
+ }
262
+
263
+ hr {
264
+ border-bottom-color: $color-border-thin;
265
+ }
266
+
267
+ .language-plaintext {
268
+ $_markup_font_family: "Source Code Pro", monospace, sans-serif;
269
+
270
+ &,
271
+ code {
272
+ font-family: $_markup_font_family !important;
273
+ }
274
+ }
275
+
276
+ .highlighter-rouge,
277
+ &.highlighter-rouge {
278
+ background: $color-background-inner;
279
+ padding: 2px 4px 2px 4px;
280
+ border-radius: 4px;
281
+ border: 1px solid $color-border-thin;
282
+
283
+ pre {
284
+ padding: 10px;
285
+ }
286
+ }
287
+ }
288
+
289
+ .z404 {
290
+ h1 {
291
+ font-size: 100px !important;
292
+ font-weight: bold !important;
293
+ }
294
+
295
+ display: flex;
296
+ flex-direction: column;
297
+ justify-content: center;
298
+ align-items: center;
299
+ }
300
+
301
+ footer {
302
+ width: 100%;
303
+ padding: 10px 0 10px 0;
304
+ border-top: 1px solid $color-primary;
305
+
306
+ display: flex;
307
+ flex-direction: column;
308
+
309
+ .footer-container {
310
+ display: flex;
311
+ }
312
+
313
+ .left {
314
+ max-width: 30%;
315
+ @include smartphone() {
316
+ max-width: 100%;
317
+ margin-bottom: 12px;
318
+ }
319
+ }
320
+
321
+ .copyright {
322
+ width: 100%;
323
+ font-size: 0.75rem;
324
+
325
+ display: flex;
326
+ justify-content: center;
327
+ }
328
+
329
+ .footer-description {
330
+ font-size: 0.9rem;
331
+ color: $color-font-thin;
332
+ }
333
+
334
+ .footer-title {
335
+ @include no_text_decoration();
336
+ color: $color-font;
337
+ }
338
+ }
339
+
340
+ .row {
341
+ display: flex;
342
+ flex-direction: row;
343
+ }
344
+
345
+ .col {
346
+ display: flex;
347
+ flex-direction: column;
348
+ }
@@ -0,0 +1,19 @@
1
+ @mixin no_text_decoration() {
2
+ text-decoration: none;
3
+ color: $color-font;
4
+ }
5
+
6
+ @mixin word_no_breaks() {
7
+ white-space: nowrap;
8
+ }
9
+
10
+ @mixin tablet() {
11
+ @media (max-width: (680px)) {
12
+ @content;
13
+ }
14
+ }
15
+ @mixin smartphone() {
16
+ @media (max-width: (480px)) {
17
+ @content;
18
+ }
19
+ }
@@ -0,0 +1,447 @@
1
+ body kbd {
2
+ display: inline-block;
3
+ padding: 3px 5px;
4
+ font: 11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
5
+ line-height: 10px;
6
+ color: #444d56;
7
+ vertical-align: middle;
8
+ background-color: #fafbfc;
9
+ border: 1px solid #d1d5da;
10
+ border-radius: 3px;
11
+ box-shadow: inset 0 -1px 0 #d1d5da;
12
+ }
13
+
14
+ body blockquote {
15
+ margin: 0;
16
+ }
17
+
18
+ body ol,
19
+ body ul {
20
+ padding-left: 0;
21
+ margin-top: 0;
22
+ margin-bottom: 0;
23
+ }
24
+
25
+ body ol ol,
26
+ body ul ol {
27
+ list-style-type: lower-roman;
28
+ }
29
+
30
+ body ol ol ol,
31
+ body ol ul ol,
32
+ body ul ol ol,
33
+ body ul ul ol {
34
+ list-style-type: lower-alpha;
35
+ }
36
+
37
+ body dd {
38
+ margin-left: 0;
39
+ }
40
+
41
+ body code,
42
+ body pre {
43
+ font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
44
+ font-size: 12px;
45
+ }
46
+
47
+ body pre {
48
+ margin-top: 0;
49
+ margin-bottom: 0;
50
+ }
51
+
52
+ body input::-webkit-inner-spin-button,
53
+ body input::-webkit-outer-spin-button {
54
+ margin: 0;
55
+ -webkit-appearance: none;
56
+ appearance: none;
57
+ }
58
+
59
+ body :checked+.radio-label {
60
+ position: relative;
61
+ z-index: 1;
62
+ border-color: #0366d6;
63
+ }
64
+
65
+ body .border {
66
+ border: 1px solid #e1e4e8!important;
67
+ }
68
+
69
+ body .border-0 {
70
+ border: 0!important;
71
+ }
72
+
73
+ body .border-bottom {
74
+ border-bottom: 1px solid #e1e4e8!important;
75
+ }
76
+
77
+ body .rounded-1 {
78
+ border-radius: 3px!important;
79
+ }
80
+
81
+ body .bg-white {
82
+ background-color: #fff!important;
83
+ }
84
+
85
+ body .bg-gray-light {
86
+ background-color: #fafbfc!important;
87
+ }
88
+
89
+ body .text-gray-light {
90
+ color: #6a737d!important;
91
+ }
92
+
93
+ body .mb-0 {
94
+ margin-bottom: 0!important;
95
+ }
96
+
97
+ body .my-2 {
98
+ margin-top: 8px!important;
99
+ margin-bottom: 8px!important;
100
+ }
101
+
102
+ body .pl-0 {
103
+ padding-left: 0!important;
104
+ }
105
+
106
+ body .py-0 {
107
+ padding-top: 0!important;
108
+ padding-bottom: 0!important;
109
+ }
110
+
111
+ body .pl-1 {
112
+ padding-left: 4px!important;
113
+ }
114
+
115
+ body .pl-2 {
116
+ padding-left: 8px!important;
117
+ }
118
+
119
+ body .py-2 {
120
+ padding-top: 8px!important;
121
+ padding-bottom: 8px!important;
122
+ }
123
+
124
+ body .pl-3,
125
+ body .px-3 {
126
+ padding-left: 16px!important;
127
+ }
128
+
129
+ body .px-3 {
130
+ padding-right: 16px!important;
131
+ }
132
+
133
+ body .pl-4 {
134
+ padding-left: 24px!important;
135
+ }
136
+
137
+ body .pl-5 {
138
+ padding-left: 32px!important;
139
+ }
140
+
141
+ body .pl-6 {
142
+ padding-left: 40px!important;
143
+ }
144
+
145
+ body .f6 {
146
+ font-size: 12px!important;
147
+ }
148
+
149
+ body .lh-condensed {
150
+ line-height: 1.25!important;
151
+ }
152
+
153
+ body .text-bold {
154
+ font-weight: 600!important;
155
+ }
156
+
157
+ body .pl-c {
158
+ color: #6a737d;
159
+ }
160
+
161
+ body .pl-c1,
162
+ body .pl-s .pl-v {
163
+ color: #005cc5;
164
+ }
165
+
166
+ body .pl-e,
167
+ body .pl-en {
168
+ color: #6f42c1;
169
+ }
170
+
171
+ body .pl-s .pl-s1,
172
+ body .pl-smi {
173
+ color: #24292e;
174
+ }
175
+
176
+ body .pl-ent {
177
+ color: #22863a;
178
+ }
179
+
180
+ body .pl-k {
181
+ color: #d73a49;
182
+ }
183
+
184
+ body .pl-pds,
185
+ body .pl-s,
186
+ body .pl-s .pl-pse .pl-s1,
187
+ body .pl-sr,
188
+ body .pl-sr .pl-cce,
189
+ body .pl-sr .pl-sra,
190
+ body .pl-sr .pl-sre {
191
+ color: #032f62;
192
+ }
193
+
194
+ body .pl-smw,
195
+ body .pl-v {
196
+ color: #e36209;
197
+ }
198
+
199
+ body .pl-bu {
200
+ color: #b31d28;
201
+ }
202
+
203
+ body .pl-ii {
204
+ color: #fafbfc;
205
+ background-color: #b31d28;
206
+ }
207
+
208
+ body .pl-c2 {
209
+ color: #fafbfc;
210
+ background-color: #d73a49;
211
+ }
212
+
213
+ body .pl-c2:before {
214
+ content: "^M";
215
+ }
216
+
217
+ body .pl-sr .pl-cce {
218
+ font-weight: 700;
219
+ color: #22863a;
220
+ }
221
+
222
+ body .pl-ml {
223
+ color: #735c0f;
224
+ }
225
+
226
+ body .pl-mh,
227
+ body .pl-mh .pl-en,
228
+ body .pl-ms {
229
+ font-weight: 700;
230
+ color: #005cc5;
231
+ }
232
+
233
+ body .pl-mi {
234
+ font-style: italic;
235
+ color: #24292e;
236
+ }
237
+
238
+ body .pl-mb {
239
+ font-weight: 700;
240
+ color: #24292e;
241
+ }
242
+
243
+ body .pl-md {
244
+ color: #b31d28;
245
+ background-color: #ffeef0;
246
+ }
247
+
248
+ body .pl-mi1 {
249
+ color: #22863a;
250
+ background-color: #f0fff4;
251
+ }
252
+
253
+ body .pl-mc {
254
+ color: #e36209;
255
+ background-color: #ffebda;
256
+ }
257
+
258
+ body .pl-mi2 {
259
+ color: #f6f8fa;
260
+ background-color: #005cc5;
261
+ }
262
+
263
+ body .pl-mdr {
264
+ font-weight: 700;
265
+ color: #6f42c1;
266
+ }
267
+
268
+ body .pl-ba {
269
+ color: #586069;
270
+ }
271
+
272
+ body .pl-sg {
273
+ color: #959da5;
274
+ }
275
+
276
+ body .pl-corl {
277
+ text-decoration: underline;
278
+ color: #032f62;
279
+ }
280
+
281
+ body .mb-0 {
282
+ margin-bottom: 0!important;
283
+ }
284
+
285
+ body .my-2 {
286
+ margin-bottom: 8px!important;
287
+ }
288
+
289
+ body .my-2 {
290
+ margin-top: 8px!important;
291
+ }
292
+
293
+ body .pl-0 {
294
+ padding-left: 0!important;
295
+ }
296
+
297
+ body .py-0 {
298
+ padding-top: 0!important;
299
+ padding-bottom: 0!important;
300
+ }
301
+
302
+ body .pl-1 {
303
+ padding-left: 4px!important;
304
+ }
305
+
306
+ body .pl-2 {
307
+ padding-left: 8px!important;
308
+ }
309
+
310
+ body .py-2 {
311
+ padding-top: 8px!important;
312
+ padding-bottom: 8px!important;
313
+ }
314
+
315
+ body .pl-3 {
316
+ padding-left: 16px!important;
317
+ }
318
+
319
+ body .pl-4 {
320
+ padding-left: 24px!important;
321
+ }
322
+
323
+ body .pl-5 {
324
+ padding-left: 32px!important;
325
+ }
326
+
327
+ body .pl-6 {
328
+ padding-left: 40px!important;
329
+ }
330
+
331
+ body .pl-7 {
332
+ padding-left: 48px!important;
333
+ }
334
+
335
+ body .pl-8 {
336
+ padding-left: 64px!important;
337
+ }
338
+
339
+ body .pl-9 {
340
+ padding-left: 80px!important;
341
+ }
342
+
343
+ body .pl-10 {
344
+ padding-left: 96px!important;
345
+ }
346
+
347
+ body .pl-11 {
348
+ padding-left: 112px!important;
349
+ }
350
+
351
+ body .pl-12 {
352
+ padding-left: 128px!important;
353
+ }
354
+
355
+ body hr {
356
+ border-bottom-color: #eee;
357
+ }
358
+
359
+ body kbd {
360
+ display: inline-block;
361
+ padding: 3px 5px;
362
+ font: 11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
363
+ line-height: 10px;
364
+ color: #444d56;
365
+ vertical-align: middle;
366
+ background-color: #fafbfc;
367
+ border: 1px solid #d1d5da;
368
+ border-radius: 3px;
369
+ box-shadow: inset 0 -1px 0 #d1d5da;
370
+ }
371
+
372
+ .highlight .c { color: #008800; } /* Comment */
373
+ .highlight .err { color: #ffffff } /* Error */
374
+ .highlight .esc { color: #ffffff } /* Escape */
375
+ .highlight .g { color: #ffffff } /* Generic */
376
+ .highlight .k { color: #569cd6; font-weight: bold } /* Keyword */
377
+ .highlight .l { color: #ffffff } /* Literal */
378
+ .highlight .n { color: #ffffff } /* Name */
379
+ .highlight .o { color: #ffffff } /* Operator */
380
+ .highlight .x { color: #ffffff } /* Other */
381
+ .highlight .p { color: #ffffff } /* Punctuation */
382
+ .highlight .ch { color: #008800; } /* Comment.Hashbang */
383
+ .highlight .cm { color: #008800; } /* Comment.Multiline */
384
+ .highlight .cp { color: rgb(172, 172, 172); font-weight: bold; } /* Comment.Preproc */
385
+ .highlight .cpf { color: #008800; } /* Comment.PreprocFile */
386
+ .highlight .c1 { color: #008800; } /* Comment.Single */
387
+ .highlight .cs { color: #008800; } /* Comment.Special */
388
+ .highlight .gd { color: #ffffff } /* Generic.Deleted */
389
+ .highlight .ge { color: #ffffff } /* Generic.Emph */
390
+ .highlight .gr { color: #ffffff } /* Generic.Error */
391
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
392
+ .highlight .gi { color: #ffffff } /* Generic.Inserted */
393
+ .highlight .go { color: #444444; } /* Generic.Output */
394
+ .highlight .gp { color: #ffffff } /* Generic.Prompt */
395
+ .highlight .gs { color: #ffffff } /* Generic.Strong */
396
+ .highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
397
+ .highlight .gt { color: #ffffff } /* Generic.Traceback */
398
+ .highlight .kc { color: #569cd6; font-weight: bold } /* Keyword.Constant */
399
+ .highlight .kd { color: #569cd6; font-weight: bold } /* Keyword.Declaration */
400
+ .highlight .kn { color: #569cd6; font-weight: bold } /* Keyword.Namespace */
401
+ .highlight .kp { color: #569cd6 } /* Keyword.Pseudo */
402
+ .highlight .kr { color: #569cd6; font-weight: bold } /* Keyword.Reserved */
403
+ .highlight .kt { color: #569cd6; font-weight: bold } /* Keyword.Type */
404
+ .highlight .ld { color: #ffffff } /* Literal.Date */
405
+ .highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */
406
+ .highlight .s { color: #e65c71 } /* Literal.String */
407
+ .highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
408
+ .highlight .nb { color: #ffffff } /* Name.Builtin */
409
+ .highlight .nc { color: #ffffff } /* Name.Class */
410
+ .highlight .no { color: #0086d2 } /* Name.Constant */
411
+ .highlight .nd { color: #ffffff } /* Name.Decorator */
412
+ .highlight .ni { color: #ffffff } /* Name.Entity */
413
+ .highlight .ne { color: #ffffff } /* Name.Exception */
414
+ .highlight .nf { color: #01cfff; font-weight: bold } /* Name.Function */
415
+ .highlight .nl { color: #ffffff } /* Name.Label */
416
+ .highlight .nn { color: #ffffff } /* Name.Namespace */
417
+ .highlight .nx { color: #ffffff } /* Name.Other */
418
+ .highlight .py { color: #ffffff } /* Name.Property */
419
+ .highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
420
+ .highlight .nv { color: #fb660a } /* Name.Variable */
421
+ .highlight .ow { color: #ffffff } /* Operator.Word */
422
+ .highlight .w { color: #888888 } /* Text.Whitespace */
423
+ .highlight .mb { color: #ffffff; } /* Literal.Number.Bin */
424
+ .highlight .mf { color: #ffffff; } /* Literal.Number.Float */
425
+ .highlight .mh { color: #ffffff; } /* Literal.Number.Hex */
426
+ .highlight .mi { color: #ffffff; } /* Literal.Number.Integer */
427
+ .highlight .mo { color: #ffffff; } /* Literal.Number.Oct */
428
+ .highlight .sa { color: #0086d2 } /* Literal.String.Affix */
429
+ .highlight .sb { color: #0086d2 } /* Literal.String.Backtick */
430
+ .highlight .sc { color: #0086d2 } /* Literal.String.Char */
431
+ .highlight .dl { color: #0086d2 } /* Literal.String.Delimiter */
432
+ .highlight .sd { color: #0086d2 } /* Literal.String.Doc */
433
+ .highlight .s2 { color: #0086d2 } /* Literal.String.Double */
434
+ .highlight .se { color: #0086d2 } /* Literal.String.Escape */
435
+ .highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */
436
+ .highlight .si { color: #0086d2 } /* Literal.String.Interpol */
437
+ .highlight .sx { color: #0086d2 } /* Literal.String.Other */
438
+ .highlight .sr { color: #0086d2 } /* Literal.String.Regex */
439
+ .highlight .s1 { color: #0086d2 } /* Literal.String.Single */
440
+ .highlight .ss { color: #0086d2 } /* Literal.String.Symbol */
441
+ .highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
442
+ .highlight .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */
443
+ .highlight .vc { color: #fb660a } /* Name.Variable.Class */
444
+ .highlight .vg { color: #fb660a } /* Name.Variable.Global */
445
+ .highlight .vi { color: #fb660a } /* Name.Variable.Instance */
446
+ .highlight .vm { color: #fb660a } /* Name.Variable.Magic */
447
+ .highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -0,0 +1,11 @@
1
+ @charset 'utf-8';
2
+
3
+ $color-primary: rgb(240, 0, 0);
4
+ $color-background: #29292e;
5
+ $color-background-inner: #303035;
6
+ $color-font: #fff;
7
+ $color-font-thin: rgb(194, 194, 194);
8
+ $color-border: $color-primary !default;
9
+ $color-border-thin: rgb(100, 100, 100);
10
+ $color-font-link: #2a7ae2;
11
+ $color-font-link-visited: #1756a9;
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'main';
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * ress.css • v3.0.1
3
+ * MIT License
4
+ * github.com/filipelinhares/ress
5
+ */html{box-sizing:border-box;-webkit-text-size-adjust:100%;word-break:normal;-moz-tab-size:4;tab-size:4}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}hr{overflow:visible;height:0}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[disabled]{cursor:default}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer;color:inherit}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;white-space:normal;max-width:100%}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}img{border-style:none}progress{vertical-align:baseline}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){position:absolute!important;clip:rect(0 0 0 0)!important}}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-darkred-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kento Oki
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-12-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 13.0.1
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 13.0.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 2.1.4
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 2.1.4
55
+ description:
56
+ email:
57
+ - hrn832@protonmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE
63
+ - README.md
64
+ - _config.yml
65
+ - _includes/footer.html
66
+ - _includes/head.html
67
+ - _includes/header.html
68
+ - _includes/nav.html
69
+ - _layouts/404.html
70
+ - _layouts/default.html
71
+ - _layouts/home.html
72
+ - _layouts/page.html
73
+ - _layouts/post.html
74
+ - _sass/hamburger.scss
75
+ - _sass/main.scss
76
+ - _sass/mixins.scss
77
+ - _sass/syntax_highlights.scss
78
+ - _sass/variables.scss
79
+ - assets/css/main.scss
80
+ - assets/css/ress.min.css
81
+ homepage: https://github.com/kkent030315/jekyll-darkred-theme
82
+ licenses:
83
+ - MIT
84
+ metadata: {}
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubygems_version: 3.1.4
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: A dark-red theme for Jekyll
104
+ test_files: []