jekyll-theme-minimalistic 0.3.4 → 0.3.7
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 +4 -4
- data/_includes/footer.html +6 -1
- data/_sass/jekyll-theme-minimalistic.scss +69 -76
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eaed9efb6ffbc8704328ce1f7d48014166852e824f98329a81265da77d0e3695
|
|
4
|
+
data.tar.gz: bb4ccac4ad4cca37c65296fd78eb9c9361bfefb104fb94f865fdf1f9cfff9464
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c68ebd6ef77a9e2d0ba7e4a8a4648a326b816a1416259f92db04fa87347340eb1eaebce56a74f9ec7ca222d1743f3f8864e97954022328fb62880da37ef723cb
|
|
7
|
+
data.tar.gz: 2c7aa31c6bd1bd803f27e568aa1fbebfa461fa2109d8a2931a64844bd55677171e6df07f4547d53e57be5703549b097abece730d2f6f5902ee495e919ac169a4
|
data/_includes/footer.html
CHANGED
|
@@ -3,4 +3,9 @@
|
|
|
3
3
|
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
|
4
4
|
{% endif %}
|
|
5
5
|
{% endunless %}
|
|
6
|
-
<p style="margin-bottom: 0px"
|
|
6
|
+
<p style="margin-bottom: 0px">
|
|
7
|
+
<small>
|
|
8
|
+
<a href="https://github.com/vaibhavvikas/jekyll-theme-minimalistic">Minimalistic</a> — Theme by
|
|
9
|
+
<a href="https://github.com/vaibhavvikas/">vaibhavvikas</a>
|
|
10
|
+
</small>
|
|
11
|
+
</p>
|
|
@@ -8,27 +8,27 @@ html {
|
|
|
8
8
|
|
|
9
9
|
body {
|
|
10
10
|
background-color: var(--clr-bg);
|
|
11
|
-
padding:50px;
|
|
11
|
+
padding: 50px;
|
|
12
12
|
font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
13
13
|
color: var(--clr-text);
|
|
14
|
-
font-weight:400;
|
|
14
|
+
font-weight: 400;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
h1, h2, h3, h4, h5, h6 {
|
|
18
18
|
color: var(--clr-h1-and-bold);
|
|
19
|
-
margin:0 0 20px;
|
|
19
|
+
margin: 0 0 20px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
p, ul, ol, table, pre, dl {
|
|
23
|
-
margin:0 0 20px;
|
|
23
|
+
margin: 0 0 20px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
h1, h2, h3 {
|
|
27
|
-
line-height:1.1;
|
|
27
|
+
line-height: 1.1;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
h1 {
|
|
31
|
-
font-size:32px;
|
|
31
|
+
font-size: 32px;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
h2 {
|
|
@@ -50,13 +50,13 @@ a:hover, a:focus {
|
|
|
50
50
|
|
|
51
51
|
a small {
|
|
52
52
|
font-size:11px;
|
|
53
|
-
color:var(--clr-small-in-a);
|
|
54
|
-
margin-top
|
|
55
|
-
display:block;
|
|
53
|
+
color: var(--clr-small-in-a);
|
|
54
|
+
margin-top: -0.3em;
|
|
55
|
+
display: block;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
a:hover small {
|
|
59
|
-
color:var(--clr-small-in-a);
|
|
59
|
+
color: var(--clr-small-in-a);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
.addr a:hover, a:focus {
|
|
@@ -65,7 +65,7 @@ a:hover small {
|
|
|
65
65
|
|
|
66
66
|
ul.link a {
|
|
67
67
|
color:var(--clr-h1-and-bold);
|
|
68
|
-
text-decoration:none;
|
|
68
|
+
text-decoration: none;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
ul.link a:hover, a:focus {
|
|
@@ -85,7 +85,7 @@ ul.content a:hover, a:focus {
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
ul.sublist {
|
|
88
|
-
margin-left: -1.
|
|
88
|
+
margin-left: -1.4em;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
p.link {
|
|
@@ -111,54 +111,54 @@ ul.link:last-child {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
.wrapper {
|
|
114
|
-
width:860px;
|
|
114
|
+
width: 860px;
|
|
115
115
|
margin: 0 auto;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
blockquote {
|
|
119
|
-
border-left:1px solid var(--clr-splitter-blockquote-and-section);
|
|
120
|
-
margin:0;
|
|
121
|
-
padding:0 0 0 20px;
|
|
122
|
-
font-style:italic;
|
|
119
|
+
border-left: 1px solid var(--clr-splitter-blockquote-and-section);
|
|
120
|
+
margin: 0;
|
|
121
|
+
padding: 0 0 0 20px;
|
|
122
|
+
font-style: italic;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
code, pre {
|
|
126
|
-
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
|
|
126
|
+
font-family: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
|
|
127
127
|
color: var(--clr-code-text);
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
pre {
|
|
131
|
-
padding:8px 15px;
|
|
131
|
+
padding: 8px 15px;
|
|
132
132
|
background: var(--clr-code-bg);
|
|
133
|
-
border-radius:5px;
|
|
134
|
-
border:1px solid var(--clr-code-border);
|
|
133
|
+
border-radius: 5px;
|
|
134
|
+
border: 1px solid var(--clr-code-border);
|
|
135
135
|
overflow-x: auto;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
table {
|
|
139
|
-
width:100%;
|
|
140
|
-
border-collapse:collapse;
|
|
139
|
+
width: 100%;
|
|
140
|
+
border-collapse: collapse;
|
|
141
141
|
display: block;
|
|
142
142
|
overflow-x: auto;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
th, td {
|
|
146
|
-
text-align:left;
|
|
147
|
-
padding:5px 10px;
|
|
148
|
-
border-bottom:1px solid var(--clr-splitter-blockquote-and-section);
|
|
146
|
+
text-align: left;
|
|
147
|
+
padding: 5px 10px;
|
|
148
|
+
border-bottom: 1px solid var(--clr-splitter-blockquote-and-section);
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
dt {
|
|
152
|
-
color:var(--clr-table-header-and-dt);
|
|
153
|
-
font-weight:700;
|
|
152
|
+
color: var(--clr-table-header-and-dt);
|
|
153
|
+
font-weight: 700;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
th {
|
|
157
|
-
color:var(--clr-table-header-and-dt);
|
|
157
|
+
color: var(--clr-table-header-and-dt);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
img {
|
|
161
|
-
max-width:90%;
|
|
161
|
+
max-width: 90%;
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
kbd {
|
|
@@ -176,10 +176,10 @@ kbd {
|
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.sidebar {
|
|
179
|
-
width:250px;
|
|
180
|
-
float:left;
|
|
181
|
-
position:fixed;
|
|
182
|
-
-webkit-font-smoothing:subpixel-antialiased;
|
|
179
|
+
width: 250px;
|
|
180
|
+
float: left;
|
|
181
|
+
position: fixed;
|
|
182
|
+
-webkit-font-smoothing: subpixel-antialiased;
|
|
183
183
|
top: 0;
|
|
184
184
|
padding: 58px 0 50px 0;
|
|
185
185
|
display: flex;
|
|
@@ -188,12 +188,9 @@ kbd {
|
|
|
188
188
|
height: calc(100vh - 108px);
|
|
189
189
|
overflow-x: hidden;
|
|
190
190
|
overflow-y: scroll;
|
|
191
|
-
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
191
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
// Disables the scrollbar in Firefox
|
|
195
|
-
// HTML-Proofer fails without "@-moz-document url-prefix()"
|
|
196
|
-
// because scrollbar-width is still experimental in Firefox.
|
|
197
194
|
@-moz-document url-prefix() {
|
|
198
195
|
.sidebar {
|
|
199
196
|
scrollbar-width: none;
|
|
@@ -201,18 +198,17 @@ kbd {
|
|
|
201
198
|
}
|
|
202
199
|
|
|
203
200
|
.sidebar::-webkit-scrollbar {
|
|
204
|
-
/* Chrome, Safari, Edge */
|
|
205
201
|
display: none;
|
|
206
202
|
}
|
|
207
203
|
|
|
208
204
|
strong {
|
|
209
|
-
color:var(--clr-h1-and-bold);
|
|
210
|
-
font-weight:700;
|
|
205
|
+
color: var(--clr-h1-and-bold);
|
|
206
|
+
font-weight: 700;
|
|
211
207
|
}
|
|
212
208
|
|
|
213
209
|
section {
|
|
214
210
|
width: 550px;
|
|
215
|
-
float:right;
|
|
211
|
+
float: right;
|
|
216
212
|
padding-bottom:30px;
|
|
217
213
|
}
|
|
218
214
|
|
|
@@ -221,21 +217,21 @@ footer {
|
|
|
221
217
|
}
|
|
222
218
|
|
|
223
219
|
small {
|
|
224
|
-
font-size:11px;
|
|
220
|
+
font-size: 11px;
|
|
225
221
|
}
|
|
226
222
|
|
|
227
223
|
hr {
|
|
228
|
-
border:0;
|
|
229
|
-
background:var(--clr-splitter-blockquote-and-section);
|
|
230
|
-
height:1px;
|
|
231
|
-
width:30%;
|
|
232
|
-
margin:10px auto 30px;
|
|
224
|
+
border: 0;
|
|
225
|
+
background: var(--clr-splitter-blockquote-and-section);
|
|
226
|
+
height: 1px;
|
|
227
|
+
width: 30%;
|
|
228
|
+
margin: 10px auto 30px;
|
|
233
229
|
}
|
|
234
230
|
|
|
235
231
|
.sidebar-footer {
|
|
236
|
-
width:250px;
|
|
237
|
-
float:left;
|
|
238
|
-
-webkit-font-smoothing:subpixel-antialiased;
|
|
232
|
+
width: 250px;
|
|
233
|
+
float: left;
|
|
234
|
+
-webkit-font-smoothing: subpixel-antialiased;
|
|
239
235
|
flex-basis: content;
|
|
240
236
|
}
|
|
241
237
|
|
|
@@ -244,8 +240,8 @@ hr {
|
|
|
244
240
|
}
|
|
245
241
|
|
|
246
242
|
#link-wrapper-mobile a {
|
|
247
|
-
color:var(--clr-h1-and-bold);
|
|
248
|
-
text-decoration:none;
|
|
243
|
+
color: var(--clr-h1-and-bold);
|
|
244
|
+
text-decoration: none;
|
|
249
245
|
}
|
|
250
246
|
|
|
251
247
|
#link-wrapper-mobile a:hover, a:focus {
|
|
@@ -276,16 +272,16 @@ hr {
|
|
|
276
272
|
|
|
277
273
|
@media print, screen and (max-width: 720px) {
|
|
278
274
|
body {
|
|
279
|
-
word-wrap:break-word;
|
|
275
|
+
word-wrap: break-word;
|
|
280
276
|
}
|
|
281
277
|
|
|
282
278
|
header {
|
|
283
|
-
padding:0;
|
|
279
|
+
padding: 0;
|
|
284
280
|
overflow-x: hidden;
|
|
285
281
|
}
|
|
286
282
|
|
|
287
283
|
header ul, header p.view {
|
|
288
|
-
position:static;
|
|
284
|
+
position: static;
|
|
289
285
|
}
|
|
290
286
|
.link-wrapper {
|
|
291
287
|
display: none !important;
|
|
@@ -293,9 +289,6 @@ hr {
|
|
|
293
289
|
|
|
294
290
|
.link-wrapper-mobile {
|
|
295
291
|
display:block !important;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.link-wrapper-mobile {
|
|
299
292
|
margin-bottom: 20px;
|
|
300
293
|
}
|
|
301
294
|
|
|
@@ -318,31 +311,31 @@ hr {
|
|
|
318
311
|
}
|
|
319
312
|
|
|
320
313
|
div.wrapper {
|
|
321
|
-
width:auto;
|
|
322
|
-
margin:0;
|
|
314
|
+
width: auto;
|
|
315
|
+
margin: 0;
|
|
323
316
|
}
|
|
324
317
|
|
|
325
318
|
header, section, .wrapper {
|
|
326
|
-
float:none;
|
|
327
|
-
position:static;
|
|
328
|
-
width:auto;
|
|
319
|
+
float: none;
|
|
320
|
+
position: static;
|
|
321
|
+
width: auto;
|
|
329
322
|
overflow-x: hidden;
|
|
330
323
|
}
|
|
331
324
|
|
|
332
325
|
section {
|
|
333
|
-
border:1px solid var(--clr-splitter-blockquote-and-section);
|
|
334
|
-
border-width:1px 0;
|
|
335
|
-
padding:20px 0;
|
|
336
|
-
margin:0 0 20px;
|
|
326
|
+
border: 1px solid var(--clr-splitter-blockquote-and-section);
|
|
327
|
+
border-width: 1px 0;
|
|
328
|
+
padding: 20px 0;
|
|
329
|
+
margin: 0 0 20px;
|
|
337
330
|
}
|
|
338
331
|
|
|
339
332
|
header a small {
|
|
340
|
-
display:inline;
|
|
333
|
+
display: inline;
|
|
341
334
|
}
|
|
342
335
|
|
|
343
336
|
header ul {
|
|
344
|
-
right:50px;
|
|
345
|
-
top:52px;
|
|
337
|
+
right: 50px;
|
|
338
|
+
top: 52px;
|
|
346
339
|
}
|
|
347
340
|
|
|
348
341
|
.logo {
|
|
@@ -350,21 +343,21 @@ hr {
|
|
|
350
343
|
}
|
|
351
344
|
|
|
352
345
|
pre, code {
|
|
353
|
-
word-wrap:normal;
|
|
346
|
+
word-wrap: normal;
|
|
354
347
|
}
|
|
355
348
|
}
|
|
356
349
|
|
|
357
350
|
|
|
358
351
|
@media print, screen and (max-width: 480px) {
|
|
359
352
|
body {
|
|
360
|
-
padding:15px;
|
|
353
|
+
padding: 15px;
|
|
361
354
|
}
|
|
362
355
|
}
|
|
363
356
|
|
|
364
357
|
@media print {
|
|
365
358
|
body {
|
|
366
|
-
padding:0.4in;
|
|
367
|
-
font-size:12pt;
|
|
368
|
-
color
|
|
359
|
+
padding: 0.4in;
|
|
360
|
+
font-size: 12pt;
|
|
361
|
+
color: #444;
|
|
369
362
|
}
|
|
370
363
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-minimalistic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vaibhav Vikas
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-07-
|
|
12
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|