yefeme 0.3.3 → 0.3.4
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/home.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/yefeme.scss +16 -5
- 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: 92644fee0a4363826c52e14cc44b6ee5d6f5df54
|
|
4
|
+
data.tar.gz: 34047dcfb37bd8f8fd8ace94fa68924da1ca3cbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d7d11857a00dccb69c9f188ed19233091b69d54d41556ee43f621d9ee29b0f06fab13657820522ddafccc93d93d5242a121019e342b6a7584400c71d8426335
|
|
7
|
+
data.tar.gz: 79859c86d873a3557f23477440a7e20d3ff1a1d32e8521ad1b13f1bbaf0d50a881a24e1c2e6e4990e224de67b2c92acc99c808ee76b519bf02514c528585a84e
|
data/_layouts/home.html
CHANGED
|
@@ -3,7 +3,7 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
<header>
|
|
6
|
-
<div class="logo
|
|
6
|
+
<div class="logo logo-closer-to-top-on-mobile">
|
|
7
7
|
<svg xmlns="http://www.w3.org/2000/svg" width="103" height="136" viewBox="0 0 103 136">
|
|
8
8
|
<path fill="#F22939" fill-rule="evenodd" d="M0 0v6.663h2.352c5.29 0 8.034 3.331 9.406 6.27L49.97 94.26c-3.135 8.623-9.798 29.003-16.657 29.003-3.331 0-3.331-3.723-3.527-5.879-.392-6.859-5.095-11.17-12.542-11.17-8.035 0-12.934 6.075-12.934 13.326C4.311 126.594 9.798 136 23.32 136c14.697 0 22.536-9.994 32.138-34.686L83.09 30.571C92.3 7.055 93.476 6.663 98.963 6.663h3.527V0H67.608v6.663h3.92c2.351 0 6.858.588 6.858 6.27 0 7.447-5.879 24.3-7.838 29.591l-9.015 24.3-23.516-53.89c-1.371-3.332-.196-6.271 3.332-6.271h5.29V0H0z"/>
|
|
9
9
|
</svg>
|
data/_layouts/post.html
CHANGED
|
@@ -3,7 +3,7 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
<header>
|
|
6
|
-
<div class="logo
|
|
6
|
+
<div class="logo">
|
|
7
7
|
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="61" viewBox="0 0 103 136">
|
|
8
8
|
<path fill="#F22939" fill-rule="evenodd" d="M0 0v6.663h2.352c5.29 0 8.034 3.331 9.406 6.27L49.97 94.26c-3.135 8.623-9.798 29.003-16.657 29.003-3.331 0-3.331-3.723-3.527-5.879-.392-6.859-5.095-11.17-12.542-11.17-8.035 0-12.934 6.075-12.934 13.326C4.311 126.594 9.798 136 23.32 136c14.697 0 22.536-9.994 32.138-34.686L83.09 30.571C92.3 7.055 93.476 6.663 98.963 6.663h3.527V0H67.608v6.663h3.92c2.351 0 6.858.588 6.858 6.27 0 7.447-5.879 24.3-7.838 29.591l-9.015 24.3-23.516-53.89c-1.371-3.332-.196-6.271 3.332-6.271h5.29V0H0z"/>
|
|
9
9
|
</svg>
|
data/_sass/yefeme.scss
CHANGED
|
@@ -83,7 +83,7 @@ main {
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
@media only screen and (max-width: 700px) {
|
|
86
|
-
padding:
|
|
86
|
+
padding: 32px 16px 0;
|
|
87
87
|
width: 100%;
|
|
88
88
|
}
|
|
89
89
|
}
|
|
@@ -98,6 +98,7 @@ main {
|
|
|
98
98
|
width: 72px;
|
|
99
99
|
|
|
100
100
|
@media only screen and (max-width: 700px) {
|
|
101
|
+
margin: 7px 0 0;
|
|
101
102
|
order: 2;
|
|
102
103
|
text-align: left;
|
|
103
104
|
width: auto;
|
|
@@ -168,10 +169,16 @@ header {
|
|
|
168
169
|
}
|
|
169
170
|
|
|
170
171
|
@media only screen and (max-width: 700px) {
|
|
171
|
-
margin: 0 0
|
|
172
|
+
margin: 0 0 24px;
|
|
172
173
|
padding: 72px 16px 0;
|
|
173
174
|
width: 100%;
|
|
174
175
|
}
|
|
176
|
+
|
|
177
|
+
&.logo-closer-to-top-on-mobile {
|
|
178
|
+
@media only screen and (max-width: 700px) {
|
|
179
|
+
padding: 56px 16px 0;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
175
182
|
}
|
|
176
183
|
|
|
177
184
|
hr {
|
|
@@ -185,11 +192,11 @@ hr {
|
|
|
185
192
|
display: block;
|
|
186
193
|
height: 1px;
|
|
187
194
|
margin: 0 auto;
|
|
188
|
-
width:
|
|
195
|
+
width: 480px;
|
|
189
196
|
}
|
|
190
197
|
|
|
191
198
|
@media only screen and (max-width: 700px) {
|
|
192
|
-
width:
|
|
199
|
+
width: calc(100% - 168px);
|
|
193
200
|
}
|
|
194
201
|
}
|
|
195
202
|
|
|
@@ -210,6 +217,10 @@ hr {
|
|
|
210
217
|
@media only screen and (max-width: 1080px) {
|
|
211
218
|
margin: 0 0 0 5px;
|
|
212
219
|
}
|
|
220
|
+
|
|
221
|
+
@media only screen and (max-width: 700px) {
|
|
222
|
+
margin: 0 0 0 22px;
|
|
223
|
+
}
|
|
213
224
|
}
|
|
214
225
|
|
|
215
226
|
.under-small {
|
|
@@ -217,7 +228,7 @@ hr {
|
|
|
217
228
|
|
|
218
229
|
@media only screen and (max-width: 1080px) {
|
|
219
230
|
margin: 0 0 0 22px;
|
|
220
|
-
|
|
231
|
+
padding: 0 68px 0 0;
|
|
221
232
|
}
|
|
222
233
|
}
|
|
223
234
|
|