whiteblog-theme 0.0.12 → 0.0.13
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 +1 -1
- data/_includes/sharepost.html +2 -2
- data/_layouts/categories.html +3 -1
- data/_pages/search.md +4 -2
- data/_sass/whiteblog-theme/_layout.scss +62 -4
- data/assets/images/previews/yet-another-post.png +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf7739d3efd1f44653467fd7244334f09fb84e47fa61a00b22a3f78da3f182b6
|
|
4
|
+
data.tar.gz: 9754f8d9f86bdfd016b586154c109ac86b748c05a9f4276b00fb66fad19d3fae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aca0a17e4a40e01c8ac419f94882de2f4fe02b3473d9af14464e1677bb82d2a78bb226f19329073a8a4d3be72a6d470280d7414d693d0f5179172f46de989ef
|
|
7
|
+
data.tar.gz: 5fb0275efbba935ca86c97d7937e044712b4a2d27223e7caedae86b3349374374f520f56de2319b07c70c8b44fc04587e28faa78a39fa1aef3c5450eec4fda17
|
data/_includes/footer.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="container">
|
|
3
3
|
<div class="row">
|
|
4
4
|
<div class="col-12 col-lg">
|
|
5
|
-
<p>Made with <i class="bi bi-suit-heart-fill"></i> and <i class="bi bi-cup-fill"></i>. Powered by <a href="https://jekyllrb.com/">Jekyll</a> and <a href="https://github.com/vmsilvamolina/whiteblog-theme">whiteblog-theme</a>.</p>
|
|
5
|
+
<p>Made with <i class="bi bi-suit-heart-fill"></i> and <i class="bi bi-cup-fill"></i>. Powered by <a class="link" href="https://jekyllrb.com/">Jekyll</a> and <a class="link" href="https://github.com/vmsilvamolina/whiteblog-theme">whiteblog-theme</a>.</p>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
8
8
|
</div>
|
data/_includes/sharepost.html
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
<div class="col float-start">
|
|
5
5
|
<ul>
|
|
6
6
|
<li>
|
|
7
|
-
<a href="https://twitter.com/share?text={{ page.title | url_encode }}&url={{ site.url }}{{ page.url }}" target="_blank" rel="noopener" title="X.com"><i class="bi bi-twitter-x"></i> Share on X</a>
|
|
7
|
+
<a class="link" href="https://twitter.com/share?text={{ page.title | url_encode }}&url={{ site.url }}{{ page.url }}" target="_blank" rel="noopener" title="X.com"><i class="bi bi-twitter-x"></i> Share on X</a>
|
|
8
8
|
</li>
|
|
9
9
|
<li>
|
|
10
|
-
<a href="https://linkedin.com/shareArticle?mini=true&url={{ site.url }}{{ page.url }}" target="_blank" rel="noopener" title="LinkedIn"><i class="bi bi-linkedin"></i> Share on LinkedIn</a>
|
|
10
|
+
<a class="link" href="https://linkedin.com/shareArticle?mini=true&url={{ site.url }}{{ page.url }}" target="_blank" rel="noopener" title="LinkedIn"><i class="bi bi-linkedin"></i> Share on LinkedIn</a>
|
|
11
11
|
</li>
|
|
12
12
|
</ul>
|
|
13
13
|
|
data/_layouts/categories.html
CHANGED
|
@@ -4,7 +4,9 @@ permalink: /categories/
|
|
|
4
4
|
title: Categories
|
|
5
5
|
---
|
|
6
6
|
<article class="post">
|
|
7
|
-
<h1
|
|
7
|
+
<h1>
|
|
8
|
+
<span class="underline">Categories</span>
|
|
9
|
+
</h1>
|
|
8
10
|
<div class="posts">
|
|
9
11
|
{% for category in site.categories %}
|
|
10
12
|
<div class="archive-group">
|
data/_pages/search.md
CHANGED
|
@@ -5,9 +5,11 @@ layout: default
|
|
|
5
5
|
permalink: /search/
|
|
6
6
|
---
|
|
7
7
|
<article class="post">
|
|
8
|
-
<h1
|
|
8
|
+
<h1>
|
|
9
|
+
<span class="underline">Search</span>
|
|
10
|
+
</h1>
|
|
9
11
|
<div id="search-container">
|
|
10
|
-
<input type="text" id="search-input" placeholder="
|
|
12
|
+
<input type="text" id="search-input" placeholder="Search for interesting stuff... or maybe not...">
|
|
11
13
|
<ul id="results-container"></ul>
|
|
12
14
|
</div>
|
|
13
15
|
</article>
|
|
@@ -11,6 +11,10 @@ $thirdColor: #614bc3;
|
|
|
11
11
|
// $fourthColor: #000;
|
|
12
12
|
$fourthColor: #212529;
|
|
13
13
|
$fifthColor: #6C757D;
|
|
14
|
+
// $sixthColor: #FF8484;
|
|
15
|
+
// $sixthColor: #26C485;
|
|
16
|
+
$sixthColor: #25E498;
|
|
17
|
+
|
|
14
18
|
|
|
15
19
|
html {
|
|
16
20
|
scroll-behavior: smooth;
|
|
@@ -37,9 +41,33 @@ main {
|
|
|
37
41
|
.navbar {
|
|
38
42
|
background-color: $firstColor !important;
|
|
39
43
|
padding: 30px 0px !important;
|
|
40
|
-
a {
|
|
44
|
+
// a {
|
|
45
|
+
// font-weight: 600;
|
|
46
|
+
// // color: $firstColor !important;
|
|
47
|
+
// }
|
|
48
|
+
a#blog-title{
|
|
49
|
+
position: relative;
|
|
50
|
+
font-weight: bold;
|
|
41
51
|
font-weight: 600;
|
|
42
|
-
|
|
52
|
+
z-index: 0;
|
|
53
|
+
&::before {
|
|
54
|
+
content: '';
|
|
55
|
+
background-color: $sixthColor;
|
|
56
|
+
left: -10px;
|
|
57
|
+
position: absolute;
|
|
58
|
+
bottom: 1px;
|
|
59
|
+
width: 100%;
|
|
60
|
+
height: 8px;
|
|
61
|
+
z-index: -1;
|
|
62
|
+
transition: all .3s ease-in-out;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&:hover::before {
|
|
66
|
+
left: -10px;
|
|
67
|
+
bottom: 0;
|
|
68
|
+
height: 100%;
|
|
69
|
+
width: calc(110% + 5px);
|
|
70
|
+
}
|
|
43
71
|
}
|
|
44
72
|
}
|
|
45
73
|
|
|
@@ -148,7 +176,7 @@ blockquote {
|
|
|
148
176
|
|
|
149
177
|
#search-input {
|
|
150
178
|
margin: 2em 0em;
|
|
151
|
-
width:
|
|
179
|
+
width: 50%;
|
|
152
180
|
}
|
|
153
181
|
|
|
154
182
|
input {
|
|
@@ -189,6 +217,11 @@ input {
|
|
|
189
217
|
bottom: 0;
|
|
190
218
|
width: 100%;
|
|
191
219
|
height: 4rem;
|
|
220
|
+
a {
|
|
221
|
+
color: $fourthColor;
|
|
222
|
+
font-weight: bold;
|
|
223
|
+
text-decoration: none;
|
|
224
|
+
}
|
|
192
225
|
}
|
|
193
226
|
|
|
194
227
|
a.badge {
|
|
@@ -213,6 +246,8 @@ a.badge {
|
|
|
213
246
|
padding-top: 5px;
|
|
214
247
|
padding-bottom: 5px;
|
|
215
248
|
a {
|
|
249
|
+
color: $fourthColor;
|
|
250
|
+
font-weight: bold;
|
|
216
251
|
text-decoration: none;
|
|
217
252
|
}
|
|
218
253
|
}
|
|
@@ -232,7 +267,6 @@ h1 > .underline {
|
|
|
232
267
|
transition: box-shadow .3s;
|
|
233
268
|
color: inherit;
|
|
234
269
|
overflow: hidden;
|
|
235
|
-
// font-size: 2rem;
|
|
236
270
|
}
|
|
237
271
|
|
|
238
272
|
a > .underline {
|
|
@@ -245,4 +279,28 @@ a > .underline {
|
|
|
245
279
|
|
|
246
280
|
.underline:hover {
|
|
247
281
|
box-shadow: inset 0 -45px 0 $secondColor, 0 0px 0 $secondColor;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.link {
|
|
285
|
+
position: relative;
|
|
286
|
+
font-weight: bold;
|
|
287
|
+
|
|
288
|
+
&::before {
|
|
289
|
+
content: '';
|
|
290
|
+
background-color: $sixthColor;
|
|
291
|
+
position: absolute;
|
|
292
|
+
left: 3%;
|
|
293
|
+
bottom: 1px;
|
|
294
|
+
width: 100%;
|
|
295
|
+
height: 8px;
|
|
296
|
+
z-index: -1;
|
|
297
|
+
transition: all .3s ease-in-out;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
&:hover::before {
|
|
301
|
+
left: -5px;
|
|
302
|
+
bottom: 0;
|
|
303
|
+
height: 100%;
|
|
304
|
+
width: calc(100% + 5px);
|
|
305
|
+
}
|
|
248
306
|
}
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: whiteblog-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Victor Silva
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -99,6 +99,7 @@ files:
|
|
|
99
99
|
- assets/images/previews/otro-post.png
|
|
100
100
|
- assets/images/previews/test-post.png
|
|
101
101
|
- assets/images/previews/welcome-jekyll.png
|
|
102
|
+
- assets/images/previews/yet-another-post.png
|
|
102
103
|
- assets/js/jekyll-search.min.js
|
|
103
104
|
homepage: https://github.com/vmsilvamolina/whiteblog-theme
|
|
104
105
|
licenses:
|