jekyll-theme-minimalistic 0.3.7 → 0.3.10

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: eaed9efb6ffbc8704328ce1f7d48014166852e824f98329a81265da77d0e3695
4
- data.tar.gz: bb4ccac4ad4cca37c65296fd78eb9c9361bfefb104fb94f865fdf1f9cfff9464
3
+ metadata.gz: 28af68dbb97f0a847e1a73e6cf57d400de56eb1a16862ade6e97d7f394fb962d
4
+ data.tar.gz: de612db30505f07e1cd5c83d10924391cdfecdf3ce7a9eaeed188113224bebfe
5
5
  SHA512:
6
- metadata.gz: c68ebd6ef77a9e2d0ba7e4a8a4648a326b816a1416259f92db04fa87347340eb1eaebce56a74f9ec7ca222d1743f3f8864e97954022328fb62880da37ef723cb
7
- data.tar.gz: 2c7aa31c6bd1bd803f27e568aa1fbebfa461fa2109d8a2931a64844bd55677171e6df07f4547d53e57be5703549b097abece730d2f6f5902ee495e919ac169a4
6
+ metadata.gz: af761d3f8be1b7570c3b0082789cab4b4a71c9e7fdecf6edccd521e94db724f4dbb00add6cf91ade9c43391a27e4752ec397b2c12939a4c57b6242c1c5cb5074
7
+ data.tar.gz: a9731999e1d2ac1afd0331a0679c335105e7de1d20af4b9dac0593a9b418addf380481e18413291790d85187f39e7f99a158dea509521b23f3fd40909bddb108
@@ -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 {
@@ -94,7 +101,6 @@ p.link {
94
101
 
95
102
  ul.link {
96
103
  list-style-type: none;
97
- margin: 0;
98
104
  padding: 0.4px;
99
105
  }
100
106
 
@@ -110,6 +116,10 @@ ul.link:last-child {
110
116
  display: none !important;
111
117
  }
112
118
 
119
+ .link-wrapper-mobile ul.link {
120
+ margin: 0 0 20px;
121
+ }
122
+
113
123
  .wrapper {
114
124
  width: 860px;
115
125
  margin: 0 auto;
@@ -224,8 +234,8 @@ hr {
224
234
  border: 0;
225
235
  background: var(--clr-splitter-blockquote-and-section);
226
236
  height: 1px;
227
- width: 30%;
228
- margin: 10px auto 30px;
237
+ width: 100%;
238
+ margin: 10px auto 20px;
229
239
  }
230
240
 
231
241
  .sidebar-footer {
@@ -239,18 +249,7 @@ hr {
239
249
  margin: 1em 0 0.25em 0;
240
250
  }
241
251
 
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
252
  @media print, screen and (max-width: 960px) {
253
-
254
253
  .wrapper {
255
254
  width: 610px;
256
255
  }
@@ -283,13 +282,13 @@ hr {
283
282
  header ul, header p.view {
284
283
  position: static;
285
284
  }
285
+
286
286
  .link-wrapper {
287
287
  display: none !important;
288
288
  }
289
289
 
290
290
  .link-wrapper-mobile {
291
291
  display:block !important;
292
- margin-bottom: 20px;
293
292
  }
294
293
 
295
294
  .sidebar {
@@ -308,6 +307,7 @@ hr {
308
307
 
309
308
  footer {
310
309
  display: initial;
310
+ margin: 20px 0 0;
311
311
  }
312
312
 
313
313
  div.wrapper {
@@ -325,10 +325,30 @@ hr {
325
325
  section {
326
326
  border: 1px solid var(--clr-splitter-blockquote-and-section);
327
327
  border-width: 1px 0;
328
- padding: 20px 0;
328
+ padding: 0;
329
329
  margin: 0 0 20px;
330
330
  }
331
331
 
332
+ .header-title-mobile section {
333
+ padding: 20px 0;
334
+ }
335
+
336
+ .header-title {
337
+ display: none;
338
+ }
339
+
340
+ .header-title-mobile {
341
+ display: block;
342
+ }
343
+
344
+ .header-title-mobile h1, h2, h3, h4, h5, h6 {
345
+ margin: 15px 0 15px;
346
+ }
347
+
348
+ .header-title-mobile h1 {
349
+ line-height: 1.1;
350
+ }
351
+
332
352
  header a small {
333
353
  display: inline;
334
354
  }
@@ -339,7 +359,10 @@ hr {
339
359
  }
340
360
 
341
361
  .logo {
342
- display: none !important;
362
+ float: right;
363
+ width: 110px;
364
+ box-sizing: border-box;
365
+ margin-bottom: 0px;
343
366
  }
344
367
 
345
368
  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.7
4
+ version: 0.3.10
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-14 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