whiteblog-theme 0.0.11 → 0.0.12
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/_layouts/default.html +2 -0
- data/_layouts/home.html +0 -1
- data/_layouts/post.html +1 -1
- data/_sass/whiteblog-theme/_layout.scss +12 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7194417aba98109c814a5ca9e9bc9ff4bcef50e8042c8e055dfdcd5c4019b078
|
|
4
|
+
data.tar.gz: 03ede1e3ddf2b88efdd4b76ff933e0a84b25315131d061f2bca9827a3984f521
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1872622e91c7c2b2697ed24d4d80cbc4b89e83e14e8aa653c75aa060c799c47d8abd882d5983f3f5baf669ab74ba0dc7214b95f7b9e4df18694a7518d3e8abc
|
|
7
|
+
data.tar.gz: 58f0c82ec11fe753c418df68b4852c0c063b16b4155c1f28944a8e7e3085045976087dbcf4b2b38899967552ac8efcc6cdf9ab4ae65134c3da7507e6733f3f16
|
data/_layouts/default.html
CHANGED
data/_layouts/home.html
CHANGED
|
@@ -14,7 +14,6 @@ layout: default
|
|
|
14
14
|
<h1 class="mt-1 mb-3 h3 title-post-resume">
|
|
15
15
|
<a class="title-link" href="{{ post.url | relative_url }}"><span class="underline">{{ post.title | escape }}</span></a>
|
|
16
16
|
</h1>
|
|
17
|
-
|
|
18
17
|
<span class="text-secondary">{{ post.date | date: date_format }}</span>
|
|
19
18
|
|
|
20
19
|
<div>
|
data/_layouts/post.html
CHANGED
|
@@ -23,7 +23,7 @@ layout: default
|
|
|
23
23
|
<span class="underline">{{ page.title | escape }}</span>
|
|
24
24
|
</h1>
|
|
25
25
|
<p class="text-secondary">
|
|
26
|
-
<i class="
|
|
26
|
+
<i class="bi bi-calendar"></i><span style="display:inline-block; width: 3px;"></span>
|
|
27
27
|
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
28
28
|
{% assign date_format = site.theme.date_format | default: "%b %-d, %Y" %}
|
|
29
29
|
{{ page.date | date: date_format }}
|
|
@@ -8,6 +8,9 @@ $firstColor: #F5F5F5;
|
|
|
8
8
|
$secondColor: #44cdd5;
|
|
9
9
|
// $thirdColor: #A64AC9;
|
|
10
10
|
$thirdColor: #614bc3;
|
|
11
|
+
// $fourthColor: #000;
|
|
12
|
+
$fourthColor: #212529;
|
|
13
|
+
$fifthColor: #6C757D;
|
|
11
14
|
|
|
12
15
|
html {
|
|
13
16
|
scroll-behavior: smooth;
|
|
@@ -15,6 +18,7 @@ html {
|
|
|
15
18
|
|
|
16
19
|
body {
|
|
17
20
|
background-color: $firstColor;
|
|
21
|
+
color: $fourthColor;
|
|
18
22
|
font-family: "Space Grotesk";
|
|
19
23
|
overflow-y: scroll;
|
|
20
24
|
position: relative;
|
|
@@ -80,7 +84,7 @@ main {
|
|
|
80
84
|
}
|
|
81
85
|
|
|
82
86
|
#nav-header {
|
|
83
|
-
border-bottom: 1px solid
|
|
87
|
+
border-bottom: 1px solid $firstColor !important;
|
|
84
88
|
}
|
|
85
89
|
|
|
86
90
|
#nav-container {
|
|
@@ -102,7 +106,7 @@ main {
|
|
|
102
106
|
}
|
|
103
107
|
|
|
104
108
|
.title-post-resume a {
|
|
105
|
-
color:
|
|
109
|
+
color: $fourthColor !important;
|
|
106
110
|
}
|
|
107
111
|
|
|
108
112
|
.text-justify {
|
|
@@ -125,7 +129,7 @@ main {
|
|
|
125
129
|
|
|
126
130
|
blockquote {
|
|
127
131
|
background: #f9f9f9;
|
|
128
|
-
border-left: 10px solid #
|
|
132
|
+
border-left: 10px solid #F39237;
|
|
129
133
|
margin: 1.5em 0px;
|
|
130
134
|
padding: 0.5em 10px;
|
|
131
135
|
quotes: "\201C""\201D""\2018""\2019";
|
|
@@ -153,13 +157,15 @@ input {
|
|
|
153
157
|
|
|
154
158
|
.post .text-secondary {
|
|
155
159
|
margin-bottom: 8px !important;
|
|
160
|
+
color: $fifthColor;
|
|
161
|
+
font-weight: bold;
|
|
156
162
|
}
|
|
157
163
|
|
|
158
164
|
.row .previous, .row .next {
|
|
159
165
|
font-size: 20px;
|
|
160
166
|
text-align: right;
|
|
161
167
|
a {
|
|
162
|
-
color:
|
|
168
|
+
color: $fourthColor !important;
|
|
163
169
|
}
|
|
164
170
|
}
|
|
165
171
|
|
|
@@ -178,7 +184,7 @@ input {
|
|
|
178
184
|
}
|
|
179
185
|
|
|
180
186
|
#site-footer {
|
|
181
|
-
color:
|
|
187
|
+
color: $fourthColor !important;
|
|
182
188
|
position: absolute;
|
|
183
189
|
bottom: 0;
|
|
184
190
|
width: 100%;
|
|
@@ -215,7 +221,7 @@ a.badge {
|
|
|
215
221
|
/* Effects */
|
|
216
222
|
|
|
217
223
|
#category-badge a:hover, #category-badge a:focus, #category-badge a:active {
|
|
218
|
-
color:
|
|
224
|
+
color: $firstColor;
|
|
219
225
|
-webkit-transform: scale(1.1);
|
|
220
226
|
transform: scale(1.1);
|
|
221
227
|
}
|
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.12
|
|
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-
|
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|