jekyll-theme-mnc 1.0.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.
- checksums.yaml +7 -0
- data/CODE_OF_CONDUCT.md +133 -0
- data/LICENSE.txt +21 -0
- data/README.md +330 -0
- data/_includes/analytics.html +0 -0
- data/_includes/custom-head.html +2 -0
- data/_includes/feed-subscription.html +1 -0
- data/_includes/footer.html +8 -0
- data/_includes/head.html +15 -0
- data/_includes/header-list.html +30 -0
- data/_includes/header.html +29 -0
- data/_includes/post-list-item.html +11 -0
- data/_includes/search-duckduckgo.html +13 -0
- data/_includes/social.html +62 -0
- data/_includes/tumblelog-feed-subscription.html +1 -0
- data/_layouts/category.html +18 -0
- data/_layouts/default.html +11 -0
- data/_layouts/error.html +28 -0
- data/_layouts/home.html +32 -0
- data/_layouts/page.html +17 -0
- data/_layouts/post.html +42 -0
- data/_layouts/redirect.html +31 -0
- data/_layouts/tumblelog.html +39 -0
- data/_sass/jekyll-theme-mnc/_base.scss +245 -0
- data/_sass/jekyll-theme-mnc/_layout.scss +341 -0
- data/_sass/jekyll-theme-mnc/custom-styles.scss +2 -0
- data/_sass/jekyll-theme-mnc/custom-variables.scss +1 -0
- data/_sass/jekyll-theme-mnc/initialize.scss +52 -0
- data/_sass/jekyll-theme-mnc/skins/auto.scss +363 -0
- data/_sass/jekyll-theme-mnc/skins/classic.scss +5 -0
- data/_sass/jekyll-theme-mnc/skins/dark.scss +5 -0
- data/_sass/jekyll-theme-mnc/skins/solarized-dark.scss +5 -0
- data/_sass/jekyll-theme-mnc/skins/solarized-light.scss +5 -0
- data/_sass/jekyll-theme-mnc/skins/solarized.scss +201 -0
- data/assets/css/style.scss +7 -0
- data/assets/jekyll-theme-mnc-social-icons.svg +41 -0
- metadata +155 -0
@@ -0,0 +1,341 @@
|
|
1
|
+
// Header
|
2
|
+
body > header {
|
3
|
+
border-top: 5px solid $border-color-03;
|
4
|
+
border-bottom: 1px solid $border-color-01;
|
5
|
+
min-height: $spacing-unit * 1.865;
|
6
|
+
line-height: $base-line-height * $base-font-size * 2.25;
|
7
|
+
|
8
|
+
// Positioning context for the mobile navigation icon
|
9
|
+
position: relative;
|
10
|
+
|
11
|
+
> div > a {
|
12
|
+
position: absolute;
|
13
|
+
left: 0;
|
14
|
+
top: 0;
|
15
|
+
// transform: translateY(-100%);
|
16
|
+
// transition: transform 0.3s;
|
17
|
+
|
18
|
+
& :focus {
|
19
|
+
transform: translateY(0%);
|
20
|
+
color: red;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
& a,
|
25
|
+
& a:visited {
|
26
|
+
color: $site-title-color;
|
27
|
+
}
|
28
|
+
|
29
|
+
h2 {
|
30
|
+
@include relative-font-size(1.625);
|
31
|
+
font-weight: 300;
|
32
|
+
letter-spacing: -1px;
|
33
|
+
margin-bottom: 0;
|
34
|
+
float: left;
|
35
|
+
|
36
|
+
@include media-query($on-tablet) {
|
37
|
+
// padding-right: 45px;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
nav {
|
42
|
+
position: absolute;
|
43
|
+
margin-top: 9px;
|
44
|
+
right: calc($spacing-unit / 2);
|
45
|
+
background-color: $background-color;
|
46
|
+
border: 1px solid $border-color-01;
|
47
|
+
border-radius: 5px;
|
48
|
+
text-align: right;
|
49
|
+
float: right;
|
50
|
+
line-height: $base-line-height * $base-font-size * 2.25 - 18px;
|
51
|
+
|
52
|
+
details > a {
|
53
|
+
padding-right: 9px;
|
54
|
+
}
|
55
|
+
|
56
|
+
summary::-webkit-details-marker { display: none; }
|
57
|
+
summary {
|
58
|
+
cursor: pointer;
|
59
|
+
list-style: none;
|
60
|
+
line-height: 16px;
|
61
|
+
padding: 10px 9px 8px;
|
62
|
+
|
63
|
+
> svg path {
|
64
|
+
fill: $border-color-03;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
a {
|
69
|
+
color: $text-color;
|
70
|
+
line-height: $base-line-height;
|
71
|
+
display: block;
|
72
|
+
padding: 5px 0;
|
73
|
+
|
74
|
+
&:last-child {
|
75
|
+
padding-bottom: 10px;
|
76
|
+
}
|
77
|
+
margin-left: 20px;
|
78
|
+
}
|
79
|
+
|
80
|
+
@media screen and (min-width: $on-medium) {
|
81
|
+
position: absolute;
|
82
|
+
right: calc((100% - #{$content-width} + #{$spacing-unit} * 2) / 2);
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
// Main
|
89
|
+
body > main {
|
90
|
+
padding: $spacing-unit 0;
|
91
|
+
flex: 1 0 auto;
|
92
|
+
|
93
|
+
|
94
|
+
// Home page, category page
|
95
|
+
> div {
|
96
|
+
> h1 {
|
97
|
+
@include relative-font-size(2);
|
98
|
+
line-height: 1.2em;
|
99
|
+
}
|
100
|
+
|
101
|
+
> p {}
|
102
|
+
|
103
|
+
> h2 {
|
104
|
+
@include relative-font-size(1.75);
|
105
|
+
margin-bottom: 0;
|
106
|
+
}
|
107
|
+
|
108
|
+
> article {
|
109
|
+
&:not(:first-child) {
|
110
|
+
margin-top: $spacing-unit;
|
111
|
+
}
|
112
|
+
|
113
|
+
> header {
|
114
|
+
margin-bottom: 0;
|
115
|
+
}
|
116
|
+
|
117
|
+
> header dt,
|
118
|
+
> header dd {
|
119
|
+
display: inline;
|
120
|
+
}
|
121
|
+
> header dt:after {
|
122
|
+
content: ":\00a0";
|
123
|
+
}
|
124
|
+
> header dt:not(:first-child):before {
|
125
|
+
content: " • ";
|
126
|
+
}
|
127
|
+
|
128
|
+
> header > time {}
|
129
|
+
|
130
|
+
> header > h3 {
|
131
|
+
@include relative-font-size(1.5);
|
132
|
+
margin-bottom: 1px;
|
133
|
+
line-height: 1.2;
|
134
|
+
}
|
135
|
+
|
136
|
+
+ p {
|
137
|
+
margin-top: $spacing-unit;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
|
143
|
+
// Page, Post
|
144
|
+
> article {
|
145
|
+
> header > img {
|
146
|
+
margin-bottom: calc($spacing-unit / 2);
|
147
|
+
}
|
148
|
+
|
149
|
+
> header > h1 {
|
150
|
+
@include relative-font-size(2);
|
151
|
+
// margin-bottom: 0; for only post b/c meta
|
152
|
+
}
|
153
|
+
|
154
|
+
> header dt,
|
155
|
+
> header dd {
|
156
|
+
display: inline;
|
157
|
+
}
|
158
|
+
> header dt:after {
|
159
|
+
content: ":\00a0";
|
160
|
+
}
|
161
|
+
> header dt:not(:first-child):before {
|
162
|
+
content: " • ";
|
163
|
+
}
|
164
|
+
|
165
|
+
> div {
|
166
|
+
margin-bottom: $spacing-unit;
|
167
|
+
|
168
|
+
h1, h2, h3, h4, h5, h6 { margin-top: $spacing-unit; }
|
169
|
+
|
170
|
+
h2 {
|
171
|
+
@include relative-font-size(1.75);
|
172
|
+
|
173
|
+
@media screen and (min-width: $on-large) {
|
174
|
+
@include relative-font-size(2);
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
h3 {
|
179
|
+
@include relative-font-size(1.375);
|
180
|
+
|
181
|
+
@media screen and (min-width: $on-large) {
|
182
|
+
@include relative-font-size(1.625);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
h4 {
|
187
|
+
@include relative-font-size(1.25);
|
188
|
+
}
|
189
|
+
|
190
|
+
h5 {
|
191
|
+
@include relative-font-size(1.125);
|
192
|
+
}
|
193
|
+
|
194
|
+
h6 {
|
195
|
+
@include relative-font-size(1.0625);
|
196
|
+
}
|
197
|
+
|
198
|
+
img {
|
199
|
+
display: block;
|
200
|
+
margin: 0 auto calc($spacing-unit / 2);
|
201
|
+
}
|
202
|
+
|
203
|
+
figcaption { text-align: center; }
|
204
|
+
}
|
205
|
+
|
206
|
+
|
207
|
+
// Home, Post
|
208
|
+
> header {
|
209
|
+
margin-bottom: $spacing-unit;
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
// Tumblelog
|
215
|
+
> h1 {
|
216
|
+
@include relative-font-size(2);
|
217
|
+
line-height: 1.2em;
|
218
|
+
margin-bottom: $spacing-unit;
|
219
|
+
}
|
220
|
+
|
221
|
+
> article {
|
222
|
+
> header > h2 {
|
223
|
+
@include relative-font-size(2);
|
224
|
+
margin-bottom: 1px;
|
225
|
+
line-height: 1.2;
|
226
|
+
}
|
227
|
+
|
228
|
+
> div > h2 {
|
229
|
+
@include relative-font-size(1.75);
|
230
|
+
line-height: 1.15;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
|
234
|
+
|
235
|
+
article > header * {
|
236
|
+
margin-bottom: 0;
|
237
|
+
}
|
238
|
+
|
239
|
+
article > header > h1 {
|
240
|
+
margin-bottom: calc($spacing-unit / 2);
|
241
|
+
}
|
242
|
+
|
243
|
+
article > header > time,
|
244
|
+
article > header > dl {
|
245
|
+
font-size: $small-font-size;
|
246
|
+
color: $brand-color;
|
247
|
+
}
|
248
|
+
|
249
|
+
article > header > h1 {
|
250
|
+
@include relative-font-size(2.625);
|
251
|
+
letter-spacing: -1px;
|
252
|
+
line-height: 1.15;
|
253
|
+
|
254
|
+
@media screen and (min-width: $on-large) {
|
255
|
+
@include relative-font-size(2.625);
|
256
|
+
}
|
257
|
+
}
|
258
|
+
}
|
259
|
+
|
260
|
+
|
261
|
+
// Footer
|
262
|
+
body > footer {
|
263
|
+
border-top: 1px solid $border-color-01;
|
264
|
+
padding: $spacing-unit 0;
|
265
|
+
|
266
|
+
* {
|
267
|
+
color: $brand-color;
|
268
|
+
}
|
269
|
+
|
270
|
+
h2 {
|
271
|
+
@include relative-font-size(1.125);
|
272
|
+
margin-bottom: calc($spacing-unit / 2);
|
273
|
+
|
274
|
+
> a,
|
275
|
+
> a:visited { color: $site-title-color; }
|
276
|
+
|
277
|
+
span {
|
278
|
+
margin-left: calc($spacing-unit / 5);
|
279
|
+
a {
|
280
|
+
padding: calc($spacing-unit / 5);
|
281
|
+
&:hover { color: $border-color-02; }
|
282
|
+
svg {
|
283
|
+
color: $brand-color;
|
284
|
+
width: 1em;
|
285
|
+
height: 1em;
|
286
|
+
display: inline-block;
|
287
|
+
fill: currentColor;
|
288
|
+
vertical-align: text-bottom;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
}
|
293
|
+
|
294
|
+
p,
|
295
|
+
form {
|
296
|
+
@include relative-font-size(0.9375);
|
297
|
+
}
|
298
|
+
|
299
|
+
p {
|
300
|
+
margin-bottom: calc($spacing-unit / 2);
|
301
|
+
}
|
302
|
+
|
303
|
+
input[type="search"] {
|
304
|
+
width: 100%;
|
305
|
+
font-size: $base-font-size;
|
306
|
+
border: 1px solid $border-color-01;
|
307
|
+
background-color: $background-color;
|
308
|
+
color: $text-color;
|
309
|
+
}
|
310
|
+
|
311
|
+
input[type="submit"] { visibility: hidden; }
|
312
|
+
}
|
313
|
+
|
314
|
+
|
315
|
+
table {
|
316
|
+
margin-top: $spacing-unit;
|
317
|
+
}
|
318
|
+
|
319
|
+
// Make sure embeds and iframes fit their containers
|
320
|
+
embed,
|
321
|
+
iframe,
|
322
|
+
object,
|
323
|
+
video {
|
324
|
+
margin-bottom: $spacing-unit;
|
325
|
+
max-width: 100%;
|
326
|
+
vertical-align: middle;
|
327
|
+
}
|
328
|
+
|
329
|
+
@media screen and (min-width: $on-small) {
|
330
|
+
body > footer input[type="search"] { width: 50%; }
|
331
|
+
}
|
332
|
+
|
333
|
+
|
334
|
+
// Footnotes. The class is automatically created by either the kramdown or gfm plugin
|
335
|
+
hr:has(+ .footnotes) {
|
336
|
+
margin-bottom: calc($spacing-unit / 2);
|
337
|
+
}
|
338
|
+
|
339
|
+
.footnotes {
|
340
|
+
font-size: $small-font-size;
|
341
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
// Placeholder to allow overriding predefined variables smoothly.
|
@@ -0,0 +1,52 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
|
3
|
+
// Define defaults for each variable.
|
4
|
+
|
5
|
+
$base-font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
|
6
|
+
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
7
|
+
$base-font-size: 16px !default;
|
8
|
+
$base-font-weight: 400 !default;
|
9
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
10
|
+
$base-line-height: 1.5 !default;
|
11
|
+
|
12
|
+
$spacing-unit: 30px !default;
|
13
|
+
|
14
|
+
$table-text-align: left !default;
|
15
|
+
|
16
|
+
// Width of the content area
|
17
|
+
$content-width: 800px !default;
|
18
|
+
|
19
|
+
$on-palm: 481px !default;
|
20
|
+
$on-tablet: 600px !default;
|
21
|
+
$on-laptop: 800px !default;
|
22
|
+
|
23
|
+
$on-small: $on-palm !default;
|
24
|
+
$on-medium: $on-tablet !default;
|
25
|
+
$on-large: $on-laptop !default;
|
26
|
+
|
27
|
+
// Use media queries like this:
|
28
|
+
// @include media-query($on-tablet) {
|
29
|
+
// .wrapper {
|
30
|
+
// padding-right: calc($spacing-unit / 2);
|
31
|
+
// padding-left: calc($spacing-unit / 2);
|
32
|
+
// }
|
33
|
+
// }
|
34
|
+
// Notice the following mixin uses max-width, in a deprecated, desktop-first
|
35
|
+
// approach, whereas media queries used elsewhere now use min-width.
|
36
|
+
@mixin media-query($device) {
|
37
|
+
@media screen and (max-width: $device) {
|
38
|
+
@content;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
@mixin relative-font-size($ratio) {
|
43
|
+
font-size: #{$ratio}rem;
|
44
|
+
}
|
45
|
+
|
46
|
+
// Import pre-styling-overrides hook and style-partials.
|
47
|
+
@import
|
48
|
+
"jekyll-theme-mnc/custom-variables", // Hook to override predefined variables.
|
49
|
+
"jekyll-theme-mnc/base", // Defines element resets.
|
50
|
+
"jekyll-theme-mnc/layout", // Defines structure and style based on CSS selectors.
|
51
|
+
"jekyll-theme-mnc/custom-styles" // Hook to override existing styles.
|
52
|
+
;
|