linaro-jekyll-theme 0.1.2.27 → 0.1.2.28
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/_sass/core/blog.scss +53 -54
- 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: ded399ad031e3f08b5eb47d97aef3d98e1c5a43b
|
4
|
+
data.tar.gz: cdf41c5cadef8f3043db1b4c337dfb5a962fdb40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11ae1bfd33f4329934c957db1c09254870b2246860d572f5854dbae3f7ee56efe47218063e5412acd39ea319edba400ce34eb449319f956a6dd27b84113bbf71
|
7
|
+
data.tar.gz: 921e2c0e925714a581e6eec60b799b5cbcd8450be76c0e21a0b7495a617f9ae71f95945c3ca3a28f13d20190d530d46846fe36938fc64e10cde8ca84a00b4ca3
|
data/_sass/core/blog.scss
CHANGED
@@ -189,32 +189,7 @@ a.featured_blog_post_text:hover{
|
|
189
189
|
.pagination-centered { text-align: center;}
|
190
190
|
|
191
191
|
|
192
|
-
//Responsive CSS for Blog
|
193
|
-
@media(max-width:767px){
|
194
192
|
|
195
|
-
.blog-title{
|
196
|
-
width:95%;
|
197
|
-
font-size: 34px;
|
198
|
-
}
|
199
|
-
.blog-author-image {
|
200
|
-
height: 100px;
|
201
|
-
width: 100px;
|
202
|
-
}
|
203
|
-
.blog_post{
|
204
|
-
padding:20px;
|
205
|
-
}
|
206
|
-
em.post_date {
|
207
|
-
font-size: 13px;
|
208
|
-
}
|
209
|
-
p.post_excerpt {
|
210
|
-
font-size: 11px;
|
211
|
-
}
|
212
|
-
|
213
|
-
h3.post_title {
|
214
|
-
font-size: 17px;
|
215
|
-
}
|
216
|
-
|
217
|
-
}
|
218
193
|
|
219
194
|
|
220
195
|
|
@@ -224,28 +199,12 @@ div.tag_cloud {
|
|
224
199
|
margin-top: 20px;
|
225
200
|
}
|
226
201
|
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
display:block;
|
233
|
-
width: 0;
|
234
|
-
height: 0;
|
235
|
-
border-top: 60px solid transparent;
|
236
|
-
border-bottom: 60px solid transparent;
|
237
|
-
border-left: 60px solid #eee;
|
238
|
-
}
|
239
|
-
div.next_post{
|
240
|
-
display:block;
|
241
|
-
width: 0;
|
242
|
-
height: 0;
|
243
|
-
border-top: 60px solid transparent;
|
244
|
-
border-bottom: 60px solid transparent;
|
245
|
-
border-right: 60px solid #eee;
|
246
|
-
}
|
202
|
+
div.previous_post{
|
203
|
+
display:none;
|
204
|
+
}
|
205
|
+
div.next_post{
|
206
|
+
display:none;
|
247
207
|
}
|
248
|
-
|
249
208
|
a.previous_post_anchor {
|
250
209
|
position: fixed;
|
251
210
|
top: 50%;
|
@@ -257,14 +216,6 @@ a.next_post_anchor {
|
|
257
216
|
left:0;
|
258
217
|
}
|
259
218
|
|
260
|
-
div.previous_post{
|
261
|
-
display:none;
|
262
|
-
}
|
263
|
-
div.next_post{
|
264
|
-
display:none;
|
265
|
-
}
|
266
|
-
|
267
|
-
|
268
219
|
//Small Inline Blog Images
|
269
220
|
img.small-inline {
|
270
221
|
width: 100px !important;
|
@@ -309,3 +260,51 @@ img.small-inline.right {
|
|
309
260
|
img.large-inline.right {
|
310
261
|
float: right;
|
311
262
|
}
|
263
|
+
|
264
|
+
// Previous and Next Post Style
|
265
|
+
@media(min-width:992px){
|
266
|
+
|
267
|
+
div.previous_post{
|
268
|
+
display:block;
|
269
|
+
width: 0;
|
270
|
+
height: 0;
|
271
|
+
border-top: 60px solid transparent;
|
272
|
+
border-bottom: 60px solid transparent;
|
273
|
+
border-left: 60px solid #eee;
|
274
|
+
}
|
275
|
+
div.next_post{
|
276
|
+
display:block;
|
277
|
+
width: 0;
|
278
|
+
height: 0;
|
279
|
+
border-top: 60px solid transparent;
|
280
|
+
border-bottom: 60px solid transparent;
|
281
|
+
border-right: 60px solid #eee;
|
282
|
+
}
|
283
|
+
}
|
284
|
+
|
285
|
+
//Responsive CSS for Blog
|
286
|
+
@media(max-width:767px){
|
287
|
+
|
288
|
+
.blog-title{
|
289
|
+
width:95%;
|
290
|
+
font-size: 34px;
|
291
|
+
}
|
292
|
+
.blog-author-image {
|
293
|
+
height: 100px;
|
294
|
+
width: 100px;
|
295
|
+
}
|
296
|
+
.blog_post{
|
297
|
+
padding:20px;
|
298
|
+
}
|
299
|
+
em.post_date {
|
300
|
+
font-size: 13px;
|
301
|
+
}
|
302
|
+
p.post_excerpt {
|
303
|
+
font-size: 11px;
|
304
|
+
}
|
305
|
+
|
306
|
+
h3.post_title {
|
307
|
+
font-size: 17px;
|
308
|
+
}
|
309
|
+
|
310
|
+
}
|