jekyll-theme-minimalistic 0.3.6 → 0.3.9

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: 210a59420d381c8e46233d634caa0115df441c4a57240472c6a7e5c0ef8e1b52
4
- data.tar.gz: 1da279d37e9424e15bd8b4cafdcb03b6bd0038f4075a94f2d761923ae5b22e9a
3
+ metadata.gz: 01af061a9ce54dbc034ccec8cce434a0b9731ab116047d23cca53223c63ae809
4
+ data.tar.gz: 5e7348dfdd35b3f285db18a22efb5e796f8d721c2ed600582fdc4c80f3faa722
5
5
  SHA512:
6
- metadata.gz: 013657ad60e7bbf46a7eea03719598b9d06f1252e03bc1faa14ae1727a4b9d845a8d5715d8339f61a1abb7e5134ebf5468cdbe51e114d2a4ff44d7f6d614801c
7
- data.tar.gz: f4ca93b1c3875400797f45af43e259c2eab27b0820427b248a6cbccce1c7eecbfaa90bd7dfac147f11b59f71531b0cf7e9efaf985e6f5c5bb8f7f739141828cb
6
+ metadata.gz: 418674fb1ffc04ca5edbb33959444cfb20bbabd4fc7ec3481e1f9c2c8d7f0c044e6b9e69d1332bebee9801df0b5295cd53777132111291f72591718f7422b1f8
7
+ data.tar.gz: f2abce246be070fe47c06f9b7ed2799ed1b338ee9b6c67d666926827f6c8b896f118bcb1ec5abe09e23ebadbde4a006661055beab93490d88436f61ace4939e0
@@ -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"><small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> &amp; <a href="https://github.com/vaibhavvikas/jekyll-theme-minimalistic">Minimalistic</a></small></p>
6
+ <p style="margin-bottom: 0px">
7
+ <small>
8
+ <a href="https://github.com/vaibhavvikas/jekyll-theme-minimalistic">Minimalistic</a> &mdash; Theme by
9
+ <a href="https://github.com/vaibhavvikas/">vaibhavvikas</a>
10
+ </small>
11
+ </p>
@@ -0,0 +1,13 @@
1
+ {% if site.logo %}
2
+ <img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
3
+ {% endif %}
4
+
5
+ {% if site.blank_title %}
6
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
7
+ {% else %}
8
+ <h1>{{ site.title | default: site.github.repository_name }}</h1>
9
+ {% endif %}
10
+
11
+ {% if site.email %}
12
+ <p class="addr"><i class="fa-solid fa-envelope"></i>&nbsp;<a href="mailto:{{site.email}}">{{ site.email }}</a></p>
13
+ {% endif %}
@@ -1,15 +1,14 @@
1
1
  {% if site.logo %}
2
- <img class="logo" src="{{ site.logo | relative_url }}" alt="Logo">
3
- {% endif %}
4
-
5
- {% if site.blank_title %}
6
- <h1>{{ site.title | default: site.github.repository_name }}</h1>
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>
7
10
  {% else %}
8
- <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
9
- {% endif %}
10
-
11
- {% if site.email %}
12
- <p class="addr"><i class="fa-solid fa-envelope"></i>&nbsp;<a href="mailto:{{site.email}}">{{ site.email }}</a></p>
11
+ {% include header-title.html %}
13
12
  {% endif %}
14
13
 
15
14
  <p>{{ site.description | default: site.github.project_tagline }}</p>
@@ -24,4 +23,4 @@
24
23
  {% endif %}
25
24
  {% endunless %}
26
25
 
27
- {% include sidebar.html %}
26
+ {% include sidebar.html %}
@@ -1,9 +1,11 @@
1
- <div class="link-wrapper-mobile" id="link-wrapper-mobile">
1
+ <div class="link-wrapper-mobile">
2
2
  {% if site.platforms %}
3
+ <ul class="link">
3
4
  {%- for platform in site.platforms %}
4
5
  <nobr><a href="{{ platform.link }}" rel="me">{{ platform.icon }}&nbsp;{{ platform.name }}</a>
5
6
  {%- unless forloop.last %}<span style="margin-left: 6px;"></span>{% endunless %}</nobr>
6
7
  {%- endfor %}
8
+ </ul>
7
9
  {% endif %}
8
10
 
9
11
  {% if site.navigation %}
@@ -12,6 +12,18 @@ body {
12
12
  font: 15px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
13
13
  color: var(--clr-text);
14
14
  font-weight: 400;
15
+ -ms-overflow-style: -ms-autohiding-scrollbar;
16
+ }
17
+
18
+ .header-title-mobile {
19
+ display: none;
20
+ }
21
+
22
+ .logo {
23
+ -webkit-border-radius: 100%;
24
+ -moz-border-radius: 100%;
25
+ border-radius: 100%;
26
+ margin-bottom: 10px;
15
27
  }
16
28
 
17
29
  h1, h2, h3, h4, h5, h6 {
@@ -24,7 +36,7 @@ p, ul, ol, table, pre, dl {
24
36
  }
25
37
 
26
38
  h1, h2, h3 {
27
- line-height: 1.1;
39
+ line-height: 1.3;
28
40
  }
29
41
 
30
42
  h1 {
@@ -60,12 +72,11 @@ a:hover small {
60
72
  }
61
73
 
62
74
  .addr a:hover, a:focus {
63
- text-decoration: underline;
75
+ color: var(--clr-a-text-hvr);
64
76
  }
65
77
 
66
78
  ul.link a {
67
79
  color:var(--clr-h1-and-bold);
68
- text-decoration: none;
69
80
  }
70
81
 
71
82
  ul.link a:hover, a:focus {
@@ -76,16 +87,12 @@ ul.content {
76
87
  margin-left: -1.4em;
77
88
  }
78
89
 
79
- ul.content a:hover, a:focus {
80
- text-decoration: none;
81
- }
82
-
83
90
  .sublist {
84
91
  margin: 0 0 0;
85
92
  }
86
93
 
87
94
  ul.sublist {
88
- margin-left: -1.4em;
95
+ margin-left: -1.5em;
89
96
  }
90
97
 
91
98
  p.link {
@@ -224,8 +231,8 @@ hr {
224
231
  border: 0;
225
232
  background: var(--clr-splitter-blockquote-and-section);
226
233
  height: 1px;
227
- width: 30%;
228
- margin: 10px auto 30px;
234
+ width: 100%;
235
+ margin: 10px auto 20px;
229
236
  }
230
237
 
231
238
  .sidebar-footer {
@@ -239,18 +246,7 @@ hr {
239
246
  margin: 1em 0 0.25em 0;
240
247
  }
241
248
 
242
- #link-wrapper-mobile a {
243
- color: var(--clr-h1-and-bold);
244
- text-decoration: none;
245
- }
246
-
247
- #link-wrapper-mobile a:hover, a:focus {
248
- color: var(--clr-a-text-hvr);
249
- }
250
-
251
-
252
249
  @media print, screen and (max-width: 960px) {
253
-
254
250
  .wrapper {
255
251
  width: 610px;
256
252
  }
@@ -283,6 +279,7 @@ hr {
283
279
  header ul, header p.view {
284
280
  position: static;
285
281
  }
282
+
286
283
  .link-wrapper {
287
284
  display: none !important;
288
285
  }
@@ -329,6 +326,22 @@ hr {
329
326
  margin: 0 0 20px;
330
327
  }
331
328
 
329
+ .header-title {
330
+ display: none;
331
+ }
332
+
333
+ .header-title-mobile {
334
+ display: block;
335
+ }
336
+
337
+ h2, h3, h4, h5, h6 {
338
+ margin: 15px 0 15px;
339
+ }
340
+
341
+ .header-title-mobile h1 {
342
+ line-height: 1.1;
343
+ }
344
+
332
345
  header a small {
333
346
  display: inline;
334
347
  }
@@ -339,7 +352,10 @@ hr {
339
352
  }
340
353
 
341
354
  .logo {
342
- display: none !important;
355
+ float: right;
356
+ width: 100px;
357
+ box-sizing: border-box;
358
+ margin-bottom: 0px;
343
359
  }
344
360
 
345
361
  pre, code {
@@ -3,13 +3,6 @@
3
3
 
4
4
  @import "jekyll-theme-minimalistic";
5
5
 
6
- .logo {
7
- -webkit-border-radius: 100%;
8
- -moz-border-radius: 100%;
9
- border-radius: 100%;
10
- margin-bottom: 10px;
11
- }
12
-
13
6
  .overlay {
14
7
  position: fixed;
15
8
  top: 0;
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.6
4
+ version: 0.3.9
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-09 00:00:00.000000000 Z
12
+ date: 2022-07-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -127,6 +127,7 @@ files:
127
127
  - _includes/footer.html
128
128
  - _includes/head-custom-google-analytics.html
129
129
  - _includes/head-custom.html
130
+ - _includes/header-title.html
130
131
  - _includes/header.html
131
132
  - _includes/mobile.html
132
133
  - _includes/sidebar.html