minimalist-theme 0.2.2 → 0.2.3
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 +2 -2
- data/_includes/navigation.html +2 -2
- data/_layouts/index.html +2 -2
- data/_sass/main.scss +23 -1
- data/assets/css/styles.scss +4 -0
- 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: c9984253662b137fe383bd2c7a3960f110825b1e5d80dae823c30ab1c1ba1ef4
|
|
4
|
+
data.tar.gz: 982b733020c69e91fc1b87d8f35d53b62e8a4e6b0f486efade39ada52633d7c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64e2a3e0f4c091cf9960ea90a109eff717c89f20856a9b264a483bbb3f6795fc6e1492a51daa3c83503ac56a7fb41828b30db8e8b76112781ddbf726b78698fc
|
|
7
|
+
data.tar.gz: c69a8d40370fb1c981fb1a69b384988cadf2dc8326573a4ac4a21a2d4c53cff4de4da0446114fc216911bde0745f7f08c7de9fcee1e708a4254e89bccb3d9416
|
data/_includes/header.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<header class="black-80 tc pv4 chivo">
|
|
2
|
-
<h1 class="mt2 mb0 i fw1
|
|
3
|
-
<h2 class="mt2 mb0
|
|
2
|
+
<h1 class="mt2 mb0 i fw1 ttl tracked brand-title">{{ site.header.title }}</h1>
|
|
3
|
+
<h2 class="mt2 mb0 f5 fw4 ttu tracked">{{ site.header.subtitle }}</h2>
|
|
4
4
|
{% include navigation.html %}
|
|
5
5
|
</header>
|
data/_includes/navigation.html
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
{% if site.nav.categories %}
|
|
11
11
|
{{ site.nav.categories }}
|
|
12
12
|
{% else %}
|
|
13
|
-
|
|
13
|
+
Catégories
|
|
14
14
|
{% endif %}
|
|
15
15
|
</a>
|
|
16
16
|
<a class="f6 f5-l link bg-animate black-80 hover-bg-lightest-blue dib pa3 ph4-l" href="{{ site.baseurl }}/about">
|
|
17
17
|
{% if site.nav.about %}
|
|
18
18
|
{{ site.nav.about }}
|
|
19
19
|
{% else %}
|
|
20
|
-
|
|
20
|
+
À propos
|
|
21
21
|
{% endif %}
|
|
22
22
|
</a>
|
|
23
23
|
</nav>
|
data/_layouts/index.html
CHANGED
|
@@ -8,8 +8,8 @@ layout: default
|
|
|
8
8
|
<article class="bt bb b--black-10">
|
|
9
9
|
<a class="db pv4 ph3 ph0-l no-underline black dim" href="{{ post.url }}">
|
|
10
10
|
<div class="flex flex-column flex-row-ns chivo">
|
|
11
|
-
<div class="w-100 pl3-ns">
|
|
12
|
-
<h1 class="f3
|
|
11
|
+
<div class="w-100 pl3-ns wrap-excerpt">
|
|
12
|
+
<h1 class="f3 fw6 mt0 lh-title">{{ post.title }}</h1>
|
|
13
13
|
<p class="f6 f5-l lh-copy">
|
|
14
14
|
{{ post.excerpt }}
|
|
15
15
|
</p>
|
data/_sass/main.scss
CHANGED
|
@@ -4,7 +4,20 @@ html{
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
.brand-title {
|
|
7
|
-
font-family: 'Indie Flower', cursive;
|
|
7
|
+
/* font-family: 'Indie Flower', cursive; */
|
|
8
|
+
font-family: 'sketch';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media screen and (min-width: 30em) {
|
|
12
|
+
.brand-title {
|
|
13
|
+
font-size: 4rem;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@media screen and (max-width: 30em) {
|
|
18
|
+
.brand-title {
|
|
19
|
+
font-size: 2.5rem;
|
|
20
|
+
}
|
|
8
21
|
}
|
|
9
22
|
|
|
10
23
|
.montserrat {
|
|
@@ -22,10 +35,19 @@ html{
|
|
|
22
35
|
font-style: italic;
|
|
23
36
|
}
|
|
24
37
|
|
|
38
|
+
.sketch {
|
|
39
|
+
font-family: 'sketch';
|
|
40
|
+
}
|
|
41
|
+
|
|
25
42
|
.wrap-about p {
|
|
26
43
|
letter-spacing: 1px;
|
|
27
44
|
}
|
|
28
45
|
|
|
46
|
+
.wrap-excerpt p {
|
|
47
|
+
font-weight: 100;
|
|
48
|
+
color: rgba($color: #000000, $alpha: 0.7);
|
|
49
|
+
}
|
|
50
|
+
|
|
29
51
|
table {
|
|
30
52
|
border-collapse: collapse;
|
|
31
53
|
border-spacing: 0;
|
data/assets/css/styles.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minimalist-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- YannickDurden
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|