jekyll-theme-minimalistic 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8b8c1a23c873154f78f8c675a74c257098d0573469aec4de8d94f9f12f3ce027
4
- data.tar.gz: 2a7f12f8d92b07e2fdcee2c46833729a2668f437ff8b063986897d9ff7cdf259
3
+ metadata.gz: 210a59420d381c8e46233d634caa0115df441c4a57240472c6a7e5c0ef8e1b52
4
+ data.tar.gz: 1da279d37e9424e15bd8b4cafdcb03b6bd0038f4075a94f2d761923ae5b22e9a
5
5
  SHA512:
6
- metadata.gz: 6928bf31a8b7f6f11b2790d8b3dcf2a313d8d18f0e8c515b23bd40c5927ab93926ecb4a9b4cb5c0906dca7143f52383d15de5126ddb8e1ec372bfbd7293af73d
7
- data.tar.gz: 03bce14dd091dde41a8df181a88520f4cfd0032326bba6b9d1d3f75f879accfb964567d45ab85fd547135d1ece3c8895ac442dd5076a8a1ee10793693559fc6c
6
+ metadata.gz: 013657ad60e7bbf46a7eea03719598b9d06f1252e03bc1faa14ae1727a4b9d845a8d5715d8339f61a1abb7e5134ebf5468cdbe51e114d2a4ff44d7f6d614801c
7
+ data.tar.gz: f4ca93b1c3875400797f45af43e259c2eab27b0820427b248a6cbccce1c7eecbfaa90bd7dfac147f11b59f71531b0cf7e9efaf985e6f5c5bb8f7f739141828cb
@@ -8,46 +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;
15
- animation: fadein ease-in 1s;
16
- }
17
-
18
- @keyframes fadein {
19
- 0% {
20
- opacity: 0;
21
- }
22
-
23
- 50% {
24
- opacity: 0.5;
25
- }
26
-
27
- 75% {
28
- opacity: 0.75;
29
- }
30
-
31
- 100% {
32
- opacity: 1;
33
- }
14
+ font-weight: 400;
34
15
  }
35
16
 
36
17
  h1, h2, h3, h4, h5, h6 {
37
18
  color: var(--clr-h1-and-bold);
38
- margin:0 0 20px;
19
+ margin: 0 0 20px;
39
20
  }
40
21
 
41
22
  p, ul, ol, table, pre, dl {
42
- margin:0 0 20px;
23
+ margin: 0 0 20px;
43
24
  }
44
25
 
45
26
  h1, h2, h3 {
46
- line-height:1.1;
27
+ line-height: 1.1;
47
28
  }
48
29
 
49
30
  h1 {
50
- font-size:32px;
31
+ font-size: 32px;
51
32
  }
52
33
 
53
34
  h2 {
@@ -69,13 +50,13 @@ a:hover, a:focus {
69
50
 
70
51
  a small {
71
52
  font-size:11px;
72
- color:var(--clr-small-in-a);
73
- margin-top:-0.3em;
74
- display:block;
53
+ color: var(--clr-small-in-a);
54
+ margin-top: -0.3em;
55
+ display: block;
75
56
  }
76
57
 
77
58
  a:hover small {
78
- color:var(--clr-small-in-a);
59
+ color: var(--clr-small-in-a);
79
60
  }
80
61
 
81
62
  .addr a:hover, a:focus {
@@ -84,7 +65,7 @@ a:hover small {
84
65
 
85
66
  ul.link a {
86
67
  color:var(--clr-h1-and-bold);
87
- text-decoration:none;
68
+ text-decoration: none;
88
69
  }
89
70
 
90
71
  ul.link a:hover, a:focus {
@@ -104,7 +85,7 @@ ul.content a:hover, a:focus {
104
85
  }
105
86
 
106
87
  ul.sublist {
107
- margin-left: -1.5em;
88
+ margin-left: -1.4em;
108
89
  }
109
90
 
110
91
  p.link {
@@ -130,54 +111,54 @@ ul.link:last-child {
130
111
  }
131
112
 
132
113
  .wrapper {
133
- width:860px;
114
+ width: 860px;
134
115
  margin: 0 auto;
135
116
  }
136
117
 
137
118
  blockquote {
138
- border-left:1px solid var(--clr-splitter-blockquote-and-section);
139
- margin:0;
140
- padding:0 0 0 20px;
141
- 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;
142
123
  }
143
124
 
144
125
  code, pre {
145
- 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;
146
127
  color: var(--clr-code-text);
147
128
  }
148
129
 
149
130
  pre {
150
- padding:8px 15px;
131
+ padding: 8px 15px;
151
132
  background: var(--clr-code-bg);
152
- border-radius:5px;
153
- border:1px solid var(--clr-code-border);
133
+ border-radius: 5px;
134
+ border: 1px solid var(--clr-code-border);
154
135
  overflow-x: auto;
155
136
  }
156
137
 
157
138
  table {
158
- width:100%;
159
- border-collapse:collapse;
139
+ width: 100%;
140
+ border-collapse: collapse;
160
141
  display: block;
161
142
  overflow-x: auto;
162
143
  }
163
144
 
164
145
  th, td {
165
- text-align:left;
166
- padding:5px 10px;
167
- 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);
168
149
  }
169
150
 
170
151
  dt {
171
- color:var(--clr-table-header-and-dt);
172
- font-weight:700;
152
+ color: var(--clr-table-header-and-dt);
153
+ font-weight: 700;
173
154
  }
174
155
 
175
156
  th {
176
- color:var(--clr-table-header-and-dt);
157
+ color: var(--clr-table-header-and-dt);
177
158
  }
178
159
 
179
160
  img {
180
- max-width:90%;
161
+ max-width: 90%;
181
162
  }
182
163
 
183
164
  kbd {
@@ -195,10 +176,10 @@ kbd {
195
176
  }
196
177
 
197
178
  .sidebar {
198
- width:250px;
199
- float:left;
200
- position:fixed;
201
- -webkit-font-smoothing:subpixel-antialiased;
179
+ width: 250px;
180
+ float: left;
181
+ position: fixed;
182
+ -webkit-font-smoothing: subpixel-antialiased;
202
183
  top: 0;
203
184
  padding: 58px 0 50px 0;
204
185
  display: flex;
@@ -207,12 +188,9 @@ kbd {
207
188
  height: calc(100vh - 108px);
208
189
  overflow-x: hidden;
209
190
  overflow-y: scroll;
210
- -ms-overflow-style: -ms-autohiding-scrollbar; // IE10+
191
+ -ms-overflow-style: -ms-autohiding-scrollbar;
211
192
  }
212
193
 
213
- // Disables the scrollbar in Firefox
214
- // HTML-Proofer fails without "@-moz-document url-prefix()"
215
- // because scrollbar-width is still experimental in Firefox.
216
194
  @-moz-document url-prefix() {
217
195
  .sidebar {
218
196
  scrollbar-width: none;
@@ -220,18 +198,17 @@ kbd {
220
198
  }
221
199
 
222
200
  .sidebar::-webkit-scrollbar {
223
- /* Chrome, Safari, Edge */
224
201
  display: none;
225
202
  }
226
203
 
227
204
  strong {
228
- color:var(--clr-h1-and-bold);
229
- font-weight:700;
205
+ color: var(--clr-h1-and-bold);
206
+ font-weight: 700;
230
207
  }
231
208
 
232
209
  section {
233
210
  width: 550px;
234
- float:right;
211
+ float: right;
235
212
  padding-bottom:30px;
236
213
  }
237
214
 
@@ -240,21 +217,21 @@ footer {
240
217
  }
241
218
 
242
219
  small {
243
- font-size:11px;
220
+ font-size: 11px;
244
221
  }
245
222
 
246
223
  hr {
247
- border:0;
248
- background:var(--clr-splitter-blockquote-and-section);
249
- height:1px;
250
- width:30%;
251
- 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;
252
229
  }
253
230
 
254
231
  .sidebar-footer {
255
- width:250px;
256
- float:left;
257
- -webkit-font-smoothing:subpixel-antialiased;
232
+ width: 250px;
233
+ float: left;
234
+ -webkit-font-smoothing: subpixel-antialiased;
258
235
  flex-basis: content;
259
236
  }
260
237
 
@@ -263,8 +240,8 @@ hr {
263
240
  }
264
241
 
265
242
  #link-wrapper-mobile a {
266
- color:var(--clr-h1-and-bold);
267
- text-decoration:none;
243
+ color: var(--clr-h1-and-bold);
244
+ text-decoration: none;
268
245
  }
269
246
 
270
247
  #link-wrapper-mobile a:hover, a:focus {
@@ -295,16 +272,16 @@ hr {
295
272
 
296
273
  @media print, screen and (max-width: 720px) {
297
274
  body {
298
- word-wrap:break-word;
275
+ word-wrap: break-word;
299
276
  }
300
277
 
301
278
  header {
302
- padding:0;
279
+ padding: 0;
303
280
  overflow-x: hidden;
304
281
  }
305
282
 
306
283
  header ul, header p.view {
307
- position:static;
284
+ position: static;
308
285
  }
309
286
  .link-wrapper {
310
287
  display: none !important;
@@ -312,9 +289,6 @@ hr {
312
289
 
313
290
  .link-wrapper-mobile {
314
291
  display:block !important;
315
- }
316
-
317
- .link-wrapper-mobile {
318
292
  margin-bottom: 20px;
319
293
  }
320
294
 
@@ -337,31 +311,31 @@ hr {
337
311
  }
338
312
 
339
313
  div.wrapper {
340
- width:auto;
341
- margin:0;
314
+ width: auto;
315
+ margin: 0;
342
316
  }
343
317
 
344
318
  header, section, .wrapper {
345
- float:none;
346
- position:static;
347
- width:auto;
319
+ float: none;
320
+ position: static;
321
+ width: auto;
348
322
  overflow-x: hidden;
349
323
  }
350
324
 
351
325
  section {
352
- border:1px solid var(--clr-splitter-blockquote-and-section);
353
- border-width:1px 0;
354
- padding:20px 0;
355
- 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;
356
330
  }
357
331
 
358
332
  header a small {
359
- display:inline;
333
+ display: inline;
360
334
  }
361
335
 
362
336
  header ul {
363
- right:50px;
364
- top:52px;
337
+ right: 50px;
338
+ top: 52px;
365
339
  }
366
340
 
367
341
  .logo {
@@ -369,21 +343,21 @@ hr {
369
343
  }
370
344
 
371
345
  pre, code {
372
- word-wrap:normal;
346
+ word-wrap: normal;
373
347
  }
374
348
  }
375
349
 
376
350
 
377
351
  @media print, screen and (max-width: 480px) {
378
352
  body {
379
- padding:15px;
353
+ padding: 15px;
380
354
  }
381
355
  }
382
356
 
383
357
  @media print {
384
358
  body {
385
- padding:0.4in;
386
- font-size:12pt;
387
- color:#444;
359
+ padding: 0.4in;
360
+ font-size: 12pt;
361
+ color: #444;
388
362
  }
389
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.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vaibhav Vikas