jekyll-theme-jt-alpha 0.1.4 → 0.1.5
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/texts.html +1 -1
- data/_sass/jekyll-theme-jt-alpha/_layout.scss +9 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a3916b322008dad7be9f2b3088cdfbdfc949a42
|
4
|
+
data.tar.gz: b8ff4c7254a420462b18822a3cecd6d88898cbdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e30e0c100651c0af1c5ab80c9f69733605cbfdf4738c50f1a09bfeccf95f2af36ab5e4db9dfdb35fa6af5549282962ed35696858db662b3918069cb809a9e8d
|
7
|
+
data.tar.gz: 25eb0d98af68670508509f10d631767bc5d23ed84a19a599ac2fc79665b7d957a91cea3f2744ffa7b294f43e032f788754db945ee8adc1237dd7f2e43d888d10
|
data/_layouts/texts.html
CHANGED
@@ -8,7 +8,7 @@ layout: default
|
|
8
8
|
</header>
|
9
9
|
<section class="posts-content texts-content">
|
10
10
|
{% assign sorted_posts = site.posts
|
11
|
-
| where:"categories",
|
11
|
+
| where:"categories", page.item %}
|
12
12
|
{% if sorted_posts.size > 0 %}
|
13
13
|
<ul class="posts-list texts-list">
|
14
14
|
{% for post in sorted_posts %}
|
@@ -67,7 +67,7 @@
|
|
67
67
|
height: 120px;
|
68
68
|
background-size: contain;
|
69
69
|
background-repeat: no-repeat;
|
70
|
-
background-position:
|
70
|
+
background-position: center;
|
71
71
|
text-indent: -9999px;
|
72
72
|
}
|
73
73
|
@media all and (max-width: 640px){
|
@@ -118,7 +118,7 @@
|
|
118
118
|
img {
|
119
119
|
display: block;
|
120
120
|
margin: 0 auto;
|
121
|
-
max-width:
|
121
|
+
max-width: 80%;
|
122
122
|
}
|
123
123
|
p {
|
124
124
|
text-align: center;
|
@@ -135,6 +135,13 @@
|
|
135
135
|
columns: unset;
|
136
136
|
padding: 0 2rem;
|
137
137
|
}
|
138
|
+
.artwork-content {
|
139
|
+
.artwork-image {
|
140
|
+
img {
|
141
|
+
max-width: 100%;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
138
145
|
}
|
139
146
|
aside {
|
140
147
|
position: absolute;
|