quiet-comic 0.2.4 → 0.2.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/_includes/footer.html +5 -1
- data/_sass/quiet_comic/components.scss +15 -10
- 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: 38235cd48637061194fdf52d9b98f9d950689469
|
|
4
|
+
data.tar.gz: 70fb5e1139aa4c45e3804f6ad1d91379bff8da32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b417ab962b5000d5575c1da14e67ba38ef78d97dc4bd54c2c6324bf4ae84e09b21f157b429c635c6d4eb4a381a630b32539e4ece0ddc8fce2248aa6b8f19959
|
|
7
|
+
data.tar.gz: 45e21950be1c9a07bd2b9efb85d4a988e209e3e77c7b5d7984f7a5c1d2e4be5456a2d2bde626e7cb204f333dfd3a1056c0e1159fe544da51029bb40956d31614
|
data/_includes/footer.html
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<footer>
|
|
2
2
|
<div class="bio-container">
|
|
3
|
-
<h5>{{ site.title }}
|
|
3
|
+
<h5>{{ site.title }}
|
|
4
|
+
<a href="{{ "combined_feed.xml" | relative_url }}" class="main-feed-link">
|
|
5
|
+
<img src="{{ site.base_image_dir | append: "feed-icon.svg" | relative_url }}">
|
|
6
|
+
</a>
|
|
7
|
+
</h5>
|
|
4
8
|
<p><strong>{{ site.author.name }}</strong> · {{ site.author.bio }}</p>
|
|
5
9
|
</div>
|
|
6
10
|
<ul class="social-links">
|
|
@@ -99,19 +99,23 @@ footer {
|
|
|
99
99
|
position: absolute;
|
|
100
100
|
bottom: 3rem;
|
|
101
101
|
right: 3rem;
|
|
102
|
-
|
|
102
|
+
}
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
content: none;
|
|
106
|
-
}
|
|
104
|
+
}
|
|
107
105
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
}
|
|
106
|
+
.main-feed-link {
|
|
107
|
+
transition: opacity 0.4s ease-in-out;
|
|
111
108
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
109
|
+
&:after {
|
|
110
|
+
content: none;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&:hover {
|
|
114
|
+
opacity: 0.4;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
img {
|
|
118
|
+
width: 30px;
|
|
115
119
|
}
|
|
116
120
|
}
|
|
117
121
|
|
|
@@ -160,6 +164,7 @@ footer {
|
|
|
160
164
|
font-size: 0.7em;
|
|
161
165
|
align-self: center;
|
|
162
166
|
margin-left: 1em;
|
|
167
|
+
margin-right: 1.5em;
|
|
163
168
|
}
|
|
164
169
|
|
|
165
170
|
.pager-container,
|