jekyll-theme-minimalistic 0.3.8 → 0.3.11
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/header.html +11 -6
- data/_sass/jekyll-theme-minimalistic.scss +12 -8
- metadata +1 -2
- data/_includes/header-title-mobile.html +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11d289e14d37ea617d1c44355ef394695393586d05c19579ac3b529603ffa403
|
|
4
|
+
data.tar.gz: 004b9654fe30ff901c8836967c7370aaeefeb1bd93cf36b6a8d8008ccc2a9c2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58b0e82a87350f3481921665c90822e143cc6da1f4ae786d5929c7386f4d69159406b055637c977aabb3b380f0b21e0d4a8534db06cd3e7daadc2d1f0c592bc6
|
|
7
|
+
data.tar.gz: ab2e09740656f72b2b030685d516f200f6673abf8fe6e91cb46eb9abfe2fab1b79a6c7f570817049333b407eebeabb318ca2f672de5cf9bacfb02686f973c8bc
|
data/_includes/header.html
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
{% if site.logo %}
|
|
2
|
+
<div class="header-title">
|
|
3
|
+
{% include header-title.html %}
|
|
4
|
+
</div>
|
|
5
|
+
<div class="header-title-mobile">
|
|
6
|
+
<section>
|
|
7
|
+
{% include header-title.html %}
|
|
8
|
+
</section>
|
|
9
|
+
</div>
|
|
10
|
+
{% else %}
|
|
2
11
|
{% include header-title.html %}
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<div class="header-title-mobile">
|
|
6
|
-
{% include header-title-mobile.html %}
|
|
7
|
-
</div>
|
|
12
|
+
{% endif %}
|
|
8
13
|
|
|
9
14
|
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
|
10
15
|
|
|
@@ -101,7 +101,6 @@ p.link {
|
|
|
101
101
|
|
|
102
102
|
ul.link {
|
|
103
103
|
list-style-type: none;
|
|
104
|
-
margin: 0;
|
|
105
104
|
padding: 0.4px;
|
|
106
105
|
}
|
|
107
106
|
|
|
@@ -117,6 +116,10 @@ ul.link:last-child {
|
|
|
117
116
|
display: none !important;
|
|
118
117
|
}
|
|
119
118
|
|
|
119
|
+
.link-wrapper-mobile ul.link {
|
|
120
|
+
margin: 0 0 20px;
|
|
121
|
+
}
|
|
122
|
+
|
|
120
123
|
.wrapper {
|
|
121
124
|
width: 860px;
|
|
122
125
|
margin: 0 auto;
|
|
@@ -286,7 +289,6 @@ hr {
|
|
|
286
289
|
|
|
287
290
|
.link-wrapper-mobile {
|
|
288
291
|
display:block !important;
|
|
289
|
-
margin-bottom: 20px;
|
|
290
292
|
}
|
|
291
293
|
|
|
292
294
|
.sidebar {
|
|
@@ -305,6 +307,7 @@ hr {
|
|
|
305
307
|
|
|
306
308
|
footer {
|
|
307
309
|
display: initial;
|
|
310
|
+
margin: 20px 0 0;
|
|
308
311
|
}
|
|
309
312
|
|
|
310
313
|
div.wrapper {
|
|
@@ -322,10 +325,14 @@ hr {
|
|
|
322
325
|
section {
|
|
323
326
|
border: 1px solid var(--clr-splitter-blockquote-and-section);
|
|
324
327
|
border-width: 1px 0;
|
|
325
|
-
padding: 20px 0;
|
|
328
|
+
padding: 20px 0 0;
|
|
326
329
|
margin: 0 0 20px;
|
|
327
330
|
}
|
|
328
331
|
|
|
332
|
+
.header-title-mobile section {
|
|
333
|
+
padding: 20px 0;
|
|
334
|
+
}
|
|
335
|
+
|
|
329
336
|
.header-title {
|
|
330
337
|
display: none;
|
|
331
338
|
}
|
|
@@ -334,11 +341,8 @@ hr {
|
|
|
334
341
|
display: block;
|
|
335
342
|
}
|
|
336
343
|
|
|
337
|
-
h1, h2, h3, h4, h5, h6 {
|
|
338
|
-
margin: 15px 0 15px;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
344
|
.header-title-mobile h1 {
|
|
345
|
+
margin: 15px 0 15px;
|
|
342
346
|
line-height: 1.1;
|
|
343
347
|
}
|
|
344
348
|
|
|
@@ -353,7 +357,7 @@ hr {
|
|
|
353
357
|
|
|
354
358
|
.logo {
|
|
355
359
|
float: right;
|
|
356
|
-
width:
|
|
360
|
+
width: 110px;
|
|
357
361
|
box-sizing: border-box;
|
|
358
362
|
margin-bottom: 0px;
|
|
359
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.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vaibhav Vikas
|
|
@@ -127,7 +127,6 @@ files:
|
|
|
127
127
|
- _includes/footer.html
|
|
128
128
|
- _includes/head-custom-google-analytics.html
|
|
129
129
|
- _includes/head-custom.html
|
|
130
|
-
- _includes/header-title-mobile.html
|
|
131
130
|
- _includes/header-title.html
|
|
132
131
|
- _includes/header.html
|
|
133
132
|
- _includes/mobile.html
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<section>
|
|
2
|
-
{% if site.logo %}
|
|
3
|
-
<img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
|
|
4
|
-
{% endif %}
|
|
5
|
-
|
|
6
|
-
{% if site.blank_title %}
|
|
7
|
-
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
|
8
|
-
{% else %}
|
|
9
|
-
<h1>{{ site.title | default: site.github.repository_name }}</h1>
|
|
10
|
-
{% endif %}
|
|
11
|
-
|
|
12
|
-
{% if site.email %}
|
|
13
|
-
<p class="addr"><i class="fa-solid fa-envelope"></i> <a href="mailto:{{site.email}}">{{ site.email }}</a></p>
|
|
14
|
-
{% endif %}
|
|
15
|
-
</section>
|