mediumish 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +8 -0
  3. data/README.md +23 -0
  4. data/_includes/adsense-under-header.html +12 -0
  5. data/_includes/disqus.html +14 -0
  6. data/_includes/featuredbox.html +59 -0
  7. data/_includes/pagination.html +25 -0
  8. data/_includes/postbox.html +51 -0
  9. data/_includes/search-lunr.html +21 -0
  10. data/_includes/share.html +34 -0
  11. data/_includes/star_rating.html +9 -0
  12. data/_includes/star_rating_postbox.html +9 -0
  13. data/_includes/toc.html +87 -0
  14. data/_layouts/archive.html +21 -0
  15. data/_layouts/categories.html +23 -0
  16. data/_layouts/default.html +208 -0
  17. data/_layouts/page.html +24 -0
  18. data/_layouts/post.html +181 -0
  19. data/_layouts/tags.html +23 -0
  20. data/_sass/_stars.scss +137 -0
  21. data/_sass/_starsnonscss.scss +92 -0
  22. data/_sass/_syntax.scss +69 -0
  23. data/assets/css/main.scss +15 -0
  24. data/assets/css/screen.css +901 -0
  25. data/assets/fonts/casper-icons.eot +0 -0
  26. data/assets/fonts/casper-icons.svg +19 -0
  27. data/assets/fonts/casper-icons.ttf +0 -0
  28. data/assets/fonts/casper-icons.woff +0 -0
  29. data/assets/images/1.jpg +0 -0
  30. data/assets/images/10.jpg +0 -0
  31. data/assets/images/11.jpg +0 -0
  32. data/assets/images/12.jpg +0 -0
  33. data/assets/images/13.jpg +0 -0
  34. data/assets/images/14.jpg +0 -0
  35. data/assets/images/15.jpg +0 -0
  36. data/assets/images/16.jpg +0 -0
  37. data/assets/images/17.jpg +0 -0
  38. data/assets/images/2.jpg +0 -0
  39. data/assets/images/3.jpg +0 -0
  40. data/assets/images/4.jpg +0 -0
  41. data/assets/images/5.jpg +0 -0
  42. data/assets/images/6.jpg +0 -0
  43. data/assets/images/7.jpg +0 -0
  44. data/assets/images/8.jpg +0 -0
  45. data/assets/images/9.jpg +0 -0
  46. data/assets/images/avatar.png +0 -0
  47. data/assets/images/favicon.ico +0 -0
  48. data/assets/images/jumbotron.jpg +0 -0
  49. data/assets/images/log.png +0 -0
  50. data/assets/images/logo.png +0 -0
  51. data/assets/images/mediumish-jekyll-template.png +0 -0
  52. data/assets/js/ie10-viewport-bug-workaround.js +24 -0
  53. data/assets/js/jquery.min.js +2 -0
  54. data/assets/js/lazyload.js +258 -0
  55. data/assets/js/lunr.js +2977 -0
  56. data/assets/js/lunrsearchengine.js +89 -0
  57. data/assets/js/mediumish.js +129 -0
  58. metadata +163 -0
@@ -0,0 +1,901 @@
1
+ /*
2
+ Template Name: Mediumish
3
+ Copyright: Sal, WowThemes.net, https://www.wowthemes.net
4
+ License: https://www.wowthemes.net/freebies-license/
5
+ */
6
+ @media screen and (min-width:1500px) {
7
+ html { font-size:18px; } /* Increase the font size on higher resolutions */
8
+ .container {max-width:80%;}
9
+ }
10
+ .mainheading {
11
+ padding: 1rem 0rem;
12
+ }
13
+
14
+ a {
15
+ color: #00ab6b;
16
+ transition: all 0.2s;
17
+ }
18
+
19
+ a:hover {
20
+ color: #038252;
21
+ text-decoration: none;
22
+ }
23
+
24
+ pre {
25
+ -moz-box-sizing: border-box;
26
+ box-sizing: border-box;
27
+ border: #E3EDF3 1px solid;
28
+ width: 100%;
29
+ padding: 7px;
30
+ font-family: monospace, sans-serif;
31
+ font-size: .9rem;
32
+ white-space: pre;
33
+ overflow: auto;
34
+ background: #fff;
35
+ border-radius: 0px;
36
+ line-height: 1.6;
37
+ color: #333;
38
+ margin-bottom: -rem;
39
+ }
40
+
41
+ .mediumnavigation {
42
+ background: rgba(255, 255, 255, .97);
43
+ box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .15);
44
+ transition: top 0.2s ease-in-out;
45
+ }
46
+
47
+ .main-content {
48
+ min-height: 300px;
49
+ }
50
+
51
+ .site-content {
52
+ min-height: 60vh;
53
+ padding-top: 1.5rem;
54
+ margin-top: 57px;
55
+ transition: all 0.4s;
56
+ }
57
+
58
+ section {
59
+ margin-bottom: 20px;
60
+ }
61
+
62
+ section.recent-posts {
63
+ margin-bottom: 0;
64
+ }
65
+
66
+ .section-title h2 {
67
+ border-bottom: 1px solid rgba(0, 0, 0, .125);
68
+ margin-bottom: 25px;
69
+ font-weight: 700;
70
+ font-size: 1.4rem;
71
+ margin-bottom: 27px;
72
+ }
73
+
74
+ .section-title span {
75
+ border-bottom: 1px solid rgba(0, 0, 0, .44);
76
+ display: inline-block;
77
+ padding-bottom: 20px;
78
+ margin-bottom: -1px;
79
+ }
80
+
81
+ .article-post ol,
82
+ .article-post ul {
83
+ margin-bottom: 1.5rem;
84
+ }
85
+
86
+ .article-post ol ol,
87
+ .article-post ul ul {
88
+ list-style: disc;
89
+ margin-bottom: 0rem;
90
+ }
91
+
92
+ @media (min-width:576px) {
93
+ .card-columns.listfeaturedtag {
94
+ -webkit-column-count: 2;
95
+ -moz-column-count: 2;
96
+ column-count: 2;
97
+ }
98
+ }
99
+
100
+ @media (min-width:992px) {
101
+ .navbar-expand-lg .navbar-nav .nav-link {
102
+ padding-right: 0.8rem;
103
+ padding-left: 0.8rem;
104
+ }
105
+ }
106
+
107
+ .listfeaturedtag {
108
+ border: 1px solid rgba(0, 0, 0, .125);
109
+ border-radius: .25rem;
110
+ transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
111
+ }
112
+
113
+ .listfeaturedtag .wrapthumbnail {
114
+ height: 290px;
115
+ flex: 0 0 auto;
116
+ height: 100%;
117
+ }
118
+
119
+ .maxthumb {
120
+ max-height: 300px;
121
+ overflow: hidden;
122
+ }
123
+
124
+ .listfeaturedtag .card,
125
+ .card-footer {
126
+ border: 0;
127
+ }
128
+
129
+ .listfeaturedtag .thumbnail {
130
+ background-size: cover;
131
+ height: 100%;
132
+ display: block;
133
+ background-position: 38% 22% !important;
134
+ background-origin: border-box !important;
135
+ border-top-left-radius: .25rem;
136
+ border-bottom-left-radius: .25rem;
137
+ }
138
+
139
+ .listfeaturedtag .card-block {
140
+ padding-left: 0;
141
+ }
142
+
143
+ .listfeaturedtag h2.card-title,
144
+ .listrecent h2.card-title {
145
+ font-size: 1.3rem;
146
+ font-weight: 700;
147
+ line-height: 1.25;
148
+ }
149
+
150
+ .listfeaturedtag h4.card-text,
151
+ .listrecent h4.card-text {
152
+ color: rgba(0, 0, 0, .44);
153
+ font-size: 0.95rem;
154
+ line-height: 1.6;
155
+ font-weight: 400;
156
+ }
157
+
158
+ .featured-box-img-cover {
159
+ object-fit: cover;
160
+ width: 100%;
161
+ height: 100%;
162
+ max-height: 100%;
163
+ }
164
+
165
+ @media (max-width:991px) {
166
+ .featured-box-img-cover {
167
+ height: auto;
168
+ width: 100%;
169
+ }
170
+ }
171
+
172
+ .wrapfooter {
173
+ font-size: .8rem;
174
+ display: flex;
175
+ align-items: center;
176
+ margin-bottom: 15px;
177
+ }
178
+
179
+ .author-thumb {
180
+ width: 40px;
181
+ height: 40px;
182
+ margin-right: 13px;
183
+ border-radius: 100%;
184
+ }
185
+
186
+ .post-top-meta {
187
+ margin-bottom: 2rem;
188
+ }
189
+
190
+ .post-top-meta .author-thumb {
191
+ width: 72px;
192
+ height: 72px;
193
+ }
194
+
195
+ .post-top-meta.authorpage .author-thumb {
196
+ margin-top: 40px;
197
+ }
198
+
199
+ .post-top-meta span {
200
+ font-size: 0.9rem;
201
+ color: rgba(0, 0, 0, .44);
202
+ display: inline-block;
203
+ }
204
+
205
+ .post-top-meta .author-description {
206
+ margin-bottom: 5px;
207
+ margin-top: 5px;
208
+ font-size: 0.95rem;
209
+ }
210
+
211
+ .toc ul {
212
+ list-style: decimal;
213
+ font-weight: 400;
214
+ }
215
+
216
+ .author-meta {
217
+ flex: 1 1 auto;
218
+ white-space: nowrap !important;
219
+ text-overflow: ellipsis !important;
220
+ overflow: hidden !important;
221
+ }
222
+
223
+ span.post-name,
224
+ span.post-date,
225
+ span.author-meta {
226
+ display: inline-block;
227
+ }
228
+
229
+ span.post-date,
230
+ span.post-read {
231
+ color: rgba(0, 0, 0, .44);
232
+ }
233
+
234
+ span.post-read-more {
235
+ align-items: center;
236
+ display: inline-block;
237
+ float: right;
238
+ margin-top: 8px;
239
+ }
240
+
241
+ span.post-read-more a {
242
+ color: rgba(0, 0, 0, .44);
243
+ }
244
+
245
+ span.post-name a,
246
+ span.post-read-more a:hover {
247
+ color: rgba(0, 0, 0, .8);
248
+ }
249
+
250
+ .dot:after {
251
+ content: "·";
252
+ margin-left: 3px;
253
+ margin-right: 3px;
254
+ }
255
+
256
+ .mediumnavigation .form-control {
257
+ font-size: 0.8rem;
258
+ border-radius: 30px;
259
+ overflow: hidden;
260
+ border: 1px solid rgba(0, 0, 0, 0.09);
261
+ min-width: 180px;
262
+ }
263
+
264
+ .mediumnavigation .form-inline {
265
+ margin-left: 15px;
266
+ }
267
+
268
+ .mediumnavigation .form-inline .btn {
269
+ margin-left: -50px;
270
+ border: 0;
271
+ border-radius: 30px;
272
+ cursor: pointer;
273
+ }
274
+
275
+ .mediumnavigation .form-inline .btn:hover,
276
+ .mediumnavigation .form-inline .btn:active {
277
+ background: transparent;
278
+ color: green;
279
+ }
280
+
281
+ .mediumnavigation .navbar-brand {
282
+ font-weight: 500;
283
+ }
284
+
285
+ .mediumnavigation .dropdown-menu {
286
+ border: 1px solid rgba(0, 0, 0, 0.08);
287
+ margin: .5rem 0 0;
288
+ }
289
+
290
+ .mediumnavigation .nav-item,
291
+ .dropdown-menu {
292
+ font-size: 0.9rem;
293
+ }
294
+
295
+ .mediumnavigation .search-icon {
296
+ margin-left: -40px;
297
+ display: inline-block;
298
+ margin-top: 3px;
299
+ cursor: pointer;
300
+ }
301
+
302
+ .mediumnavigation .navbar-brand img {
303
+ max-height: 30px;
304
+ margin-right: 5px;
305
+ }
306
+
307
+ .mainheading h1.sitetitle {
308
+ font-family: Righteous;
309
+ }
310
+
311
+ .mainheading h1.posttitle {
312
+ font-weight: 700;
313
+ margin-bottom: 1rem;
314
+ }
315
+
316
+ .footer {
317
+ border-top: 1px solid rgba(0, 0, 0, .05) !important;
318
+ padding-top: 15px;
319
+ padding-bottom: 12px;
320
+ font-size: 0.8rem;
321
+ color: rgba(0, 0, 0, .44);
322
+ margin-top: 50px;
323
+ margin-bottom: 62px;
324
+ position: relative;
325
+ background: #fff;
326
+ }
327
+
328
+ .link-dark {
329
+ color: rgba(0, 0, 0, .8);
330
+ }
331
+
332
+ .article-post {
333
+ font-family: Merriweather;
334
+ font-size: 1.1rem;
335
+ line-height: 1.84;
336
+ color: rgba(0, 0, 0, .8);
337
+ }
338
+
339
+ blockquote {
340
+ border-left: 4px solid #00ab6b;
341
+ padding: 0 20px;
342
+ font-style: italic;
343
+ color: rgba(0, 0, 0, .5);
344
+ }
345
+
346
+ .article-post p,
347
+ .article-post blockquote {
348
+ margin: 0 0 1.5rem 0;
349
+ }
350
+
351
+ .featured-image {
352
+ display: block;
353
+ margin-bottom: 1.5rem;
354
+ }
355
+
356
+ .share {
357
+ text-align: center;
358
+ }
359
+
360
+ .share p {
361
+ margin-bottom: 10px;
362
+ font-size: 0.95rem;
363
+ }
364
+
365
+ .share ul li {
366
+ display: inline-block;
367
+ margin-bottom: 9px;
368
+ }
369
+
370
+ .share ul {
371
+ padding-left: 0;
372
+ margin-left: 0;
373
+ }
374
+
375
+ .share ul li i.fa {
376
+ border: 1px solid #ddd;
377
+ width: 30px;
378
+ height: 30px;
379
+ line-height: 30px;
380
+ text-align: center;
381
+ border-radius: 50%;
382
+ }
383
+
384
+ .svgIcon {
385
+ vertical-align: middle;
386
+ }
387
+
388
+ .sticky-top-offset {
389
+ top: 100px;
390
+ }
391
+
392
+ @media (min-width:1024px) {
393
+ .share ul li {
394
+ display: block;
395
+ }
396
+ }
397
+
398
+ @media (max-width:999px) {
399
+ .featured-box-img-cover {
400
+ height: 359px;
401
+ }
402
+
403
+ .alertbar {
404
+ position: relative !Important;
405
+ margin-bottom: 20px;
406
+ margin-top: 20px;
407
+ box-shadow: none !Important;
408
+ padding-right: 14px !Important;
409
+ }
410
+
411
+ #comments {
412
+ margin-right: 15px;
413
+ }
414
+
415
+ .jumbotron.fortags {
416
+ margin-bottom: 0 !Important;
417
+ }
418
+
419
+ .alertbar form {
420
+ margin-top: 20px;
421
+ }
422
+
423
+ .alertbar span,
424
+ .alertbar form {
425
+ display: block;
426
+ }
427
+
428
+ .alertbar input[type="submit"] {
429
+ border-radius: 3px !Important;
430
+ }
431
+
432
+ .alertbar input[type="email"] {
433
+ margin-right: 0px !Important;
434
+ display: block;
435
+ border-right: 1px solid #ddd !Important;
436
+ margin-bottom: 10px;
437
+ }
438
+
439
+ .jumbotron {
440
+ margin-bottom: 0;
441
+ border-radius: 0;
442
+ }
443
+
444
+ .listfeaturedtag .card {
445
+ height: auto;
446
+ }
447
+
448
+ .listfeaturedtag .wrapfooter {
449
+ position: relative;
450
+ margin-top: 30px;
451
+ }
452
+
453
+ .listfeaturedtag .card-block {
454
+ padding: 20px;
455
+ }
456
+
457
+ .footer {
458
+ margin-top: 0px;
459
+ margin-bottom: 0px;
460
+ }
461
+ }
462
+
463
+ @media (max-width:1024px) {
464
+ .post-top-meta .col-md-10 {
465
+ text-align: center;
466
+ }
467
+ }
468
+
469
+ @media (max-width:767px) {
470
+ .post-top-meta.authorpage {
471
+ text-align: center;
472
+ }
473
+ }
474
+
475
+ .share,
476
+ .share a {
477
+ color: rgba(0, 0, 0, .44);
478
+ fill: rgba(0, 0, 0, .44);
479
+ }
480
+
481
+ .graybg {
482
+ background-color: #fafafa;
483
+ padding: 40px 0 46px;
484
+ position: relative;
485
+ }
486
+
487
+ .listrelated .card {
488
+ box-shadow: 0 1px 7px rgba(0, 0, 0, .05);
489
+ border: 0;
490
+ }
491
+
492
+ ul.tags {
493
+ list-style: none;
494
+ padding-left: 0;
495
+ margin: 0 0 3rem 0;
496
+ }
497
+
498
+ ul.tags li {
499
+ display: inline-block;
500
+ font-size: 0.9rem;
501
+ }
502
+
503
+ ul.tags li a {
504
+ background: rgba(0, 0, 0, .05);
505
+ color: rgba(0, 0, 0, .6);
506
+ border-radius: 3px;
507
+ padding: 5px 10px;
508
+ }
509
+
510
+ ul.tags li a:hover {
511
+ background: rgba(0, 0, 0, .07);
512
+ text-decoration: none;
513
+ }
514
+
515
+ .margtop3rem {
516
+ margin-top: 3rem;
517
+ }
518
+
519
+ .sep {
520
+ height: 1px;
521
+ width: 20px;
522
+ background: #999;
523
+ margin: 0px auto;
524
+ margin-bottom: 1.2rem;
525
+ }
526
+
527
+ .btn.follow {
528
+ border-color: #02B875;
529
+ color: #1C9963;
530
+ padding: 3px 10px;
531
+ text-align: center;
532
+ border-radius: 999em;
533
+ font-size: 0.85rem;
534
+ display: inline-block;
535
+ }
536
+
537
+ .btn.subscribe {
538
+ background-color: #1C9963;
539
+ border-color: #1C9963;
540
+ color: rgba(255, 255, 255, 1);
541
+ fill: rgba(255, 255, 255, 1);
542
+ border-radius: 30px;
543
+ font-size: 0.85rem;
544
+ margin-left: 10px;
545
+ font-weight: 600;
546
+ text-transform: uppercase;
547
+ }
548
+
549
+ .post-top-meta .btn.follow {
550
+ margin-left: 5px;
551
+ margin-top: -4px;
552
+ }
553
+
554
+ .alertbar {
555
+ box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, .0785);
556
+ position: fixed;
557
+ bottom: 0;
558
+ left: 0;
559
+ background-color: #fff;
560
+ width: 100%;
561
+ padding: 14px 0;
562
+ z-index: 1;
563
+ display: none;
564
+ }
565
+
566
+ .alertbar form {
567
+ display: inline-block;
568
+ }
569
+
570
+ .alertbar input[type="email"] {
571
+ font-size: 0.85rem;
572
+ padding: 3px 5px 3px 10px;
573
+ border-top-left-radius: 3px;
574
+ border-bottom-left-radius: 3px;
575
+ border: 1px solid #ddd;
576
+ border-right: 0;
577
+ margin-right: -10px;
578
+ height: 34px;
579
+ letter-spacing: 0.5px;
580
+ margin-left: 5px;
581
+ }
582
+
583
+ .alertbar input[type="submit"] {
584
+ background-color: #1C9963;
585
+ border: 1px solid #1C9963;
586
+ color: rgba(255, 255, 255, 1);
587
+ fill: rgba(255, 255, 255, 1);
588
+ font-size: 0.85rem;
589
+ border-radius: 0;
590
+ padding: 4px 10px;
591
+ border-top-right-radius: 3px;
592
+ border-bottom-right-radius: 3px;
593
+ font-weight: 600;
594
+ height: 34px;
595
+ letter-spacing: 0.5px;
596
+ cursor: pointer;
597
+ }
598
+
599
+ .form-control::-webkit-input-placeholder {
600
+ color: rgba(0, 0, 0, .5);
601
+ }
602
+
603
+ .form-control:-moz-placeholder {
604
+ color: rgba(0, 0, 0, .5);
605
+ }
606
+
607
+ .form-control::-moz-placeholder {
608
+ color: rgba(0, 0, 0, .5);
609
+ }
610
+
611
+ .form-control:-ms-input-placeholder {
612
+ color: rgba(0, 0, 0, .5);
613
+ }
614
+
615
+ .form-control::-ms-input-placeholder {
616
+ color: rgba(0, 0, 0, .5);
617
+ }
618
+
619
+ .authorpage h1 {
620
+ font-weight: 700;
621
+ font-size: 30px;
622
+ }
623
+
624
+ .post-top-meta.authorpage .author-thumb {
625
+ float: none;
626
+ }
627
+
628
+ .authorpage .author-description {
629
+ font-size: 1rem;
630
+ color: rgba(0, 0, 0, .6);
631
+ }
632
+
633
+ .post-top-meta.authorpage .btn.follow {
634
+ padding: 7px 20px;
635
+ margin-top: 10px;
636
+ margin-left: 0;
637
+ font-size: 0.9rem;
638
+ }
639
+
640
+ .graybg.authorpage {
641
+ border-top: 1px solid #f0f0f0;
642
+ }
643
+
644
+ .authorpostbox {
645
+ width: 760px;
646
+ margin: 0px auto;
647
+ margin-bottom: 1.5rem;
648
+ max-width: 100%;
649
+ }
650
+
651
+ .authorpostbox .img-thumb {
652
+ width: 100%;
653
+ }
654
+
655
+ .sociallinks {
656
+ margin: 1rem 0;
657
+ }
658
+
659
+ .sociallinks a {
660
+ background: #666;
661
+ color: #fff;
662
+ width: 22px;
663
+ height: 22px;
664
+ display: inline-block;
665
+ text-align: center;
666
+ line-height: 22px;
667
+ border-radius: 50%;
668
+ font-size: 12px;
669
+ }
670
+
671
+ #comments {
672
+ margin-top: 3rem;
673
+ margin-bottom: 1.5rem;
674
+ }
675
+
676
+ .h1,
677
+ .h2,
678
+ .h3,
679
+ .h4,
680
+ .h5,
681
+ .h6,
682
+ h1,
683
+ h2,
684
+ h3,
685
+ h4,
686
+ h5,
687
+ h6 {
688
+ font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
689
+ }
690
+
691
+ .article-post .h1,
692
+ .article-post .h2,
693
+ .article-post .h3,
694
+ .article-post .h4,
695
+ .article-post .h5,
696
+ .article-post .h6,
697
+ .article-post h1,
698
+ .article-post h2,
699
+ .article-post h3,
700
+ .article-post h4,
701
+ .article-post h5,
702
+ .article-post h6 {
703
+ font-weight: 700;
704
+ margin-bottom: 1.5rem;
705
+ }
706
+
707
+ .article-post img.shadow {
708
+ -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
709
+ -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
710
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
711
+ }
712
+
713
+ .layout-page .article-post {
714
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
715
+ font-size: 1rem;
716
+ }
717
+
718
+ .layout-page .article-post p {
719
+ margin-bottom: 1rem;
720
+ }
721
+
722
+ img {
723
+ max-width: 100%;
724
+ }
725
+
726
+ .bottompagination span.navigation {
727
+ display: block;
728
+ font-size: 0.93rem;
729
+ padding: 15px 0 0 0;
730
+ text-align: center;
731
+ margin-bottom: 0rem;
732
+ color: #999;
733
+ border-top: 1px solid #ddd;
734
+ }
735
+
736
+ .pointerup {
737
+ margin-bottom: -17px;
738
+ margin-left: 49%;
739
+ font-size: 30px;
740
+ }
741
+
742
+ .pointerup i.fa {
743
+ color: #eaeaea;
744
+ }
745
+
746
+ .bottompagination span.navigation i {
747
+ display: inline-block;
748
+ }
749
+
750
+ span.navigation {
751
+ display: inline-block;
752
+ font-size: 0.93rem;
753
+ font-weight: 700;
754
+ text-align: center;
755
+ }
756
+
757
+ .pagination {
758
+ display: block;
759
+ }
760
+
761
+ iframe {
762
+ max-width: 100%;
763
+ }
764
+
765
+ .transpdark {
766
+ background: rgba(0, 0, 0, 0.75);
767
+ color: #fff;
768
+ }
769
+
770
+ @media (min-width:768px) {
771
+ .jumbotron.fortags {
772
+ margin-bottom: -50px;
773
+ margin-top: 3rem;
774
+ padding: 0;
775
+ height: 350px;
776
+ border-radius: 0;
777
+ background-image: url(../images/jumbotron.jpg);
778
+ background-size: cover;
779
+ }
780
+
781
+ .jumbotron.fortags .col-md-4 {
782
+ background: rgba(0, 0, 0, 0.75);
783
+ color: #fff;
784
+ }
785
+
786
+ .jumbotron.fortags .row {
787
+ margin: 0;
788
+ }
789
+ }
790
+
791
+ .jumbotron.fortags {
792
+ margin-top: 3rem;
793
+ padding: 0;
794
+ border-radius: 0;
795
+ background-image: url(../images/jumbotron.jpg);
796
+ background-size: cover;
797
+ }
798
+
799
+ .jumbotron.fortags a {
800
+ padding: 5px 10px 7px;
801
+ background: #222;
802
+ border-radius: 30px;
803
+ color: #fff;
804
+ font-weight: 500;
805
+ text-transform: lowercase;
806
+ font-size: 0.8rem;
807
+ display: inline-block;
808
+ }
809
+
810
+ .layout-page .jumbotron.fortags {
811
+ display: none;
812
+ }
813
+
814
+ .mb-30px {
815
+ margin-bottom: 30px;
816
+ }
817
+
818
+ .flex-first {
819
+ -webkit-box-ordinal-group: 0;
820
+ -webkit-order: -1;
821
+ -ms-flex-order: -1;
822
+ order: -1;
823
+ }
824
+
825
+ @media (min-width: 768px) {
826
+ .flex-md-unordered {
827
+ -webkit-box-ordinal-group: 1;
828
+ -webkit-order: 1;
829
+ -ms-flex-order: 1;
830
+ order: 1;
831
+ }
832
+
833
+ .flex-first {
834
+ -webkit-box-ordinal-group: 0;
835
+ -webkit-order: 1;
836
+ -ms-flex-order: 1;
837
+ order: 1;
838
+ }
839
+ }
840
+
841
+ @media (max-width: 768px) {
842
+ .share {
843
+ margin-top: 30px;
844
+ }
845
+ }
846
+
847
+ .card .img-fluid {
848
+ width: 100%;
849
+ }
850
+
851
+ .sticky-top-80 {
852
+ top: 80px;
853
+ }
854
+
855
+ .spoiler {
856
+ color: transparent;
857
+ text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
858
+ transition: all .4s;
859
+ cursor: pointer;
860
+ position: relative;
861
+ }
862
+
863
+ .spoiler:after {
864
+ position: absolute;
865
+ opacity: 0;
866
+ content: 'Click to reveal spoiler';
867
+ top: 45%;
868
+ left: calc(50% - 100px);
869
+ text-shadow: none;
870
+ background: #222;
871
+ color: #fff;
872
+ display: inline-block;
873
+ font-size: 13px;
874
+ line-height: 1;
875
+ padding: 2px 3px;
876
+ width: 150px;
877
+ font-family: Arial;
878
+ text-align: center;
879
+ border-radius: 3px;
880
+ transition: all .4s;
881
+ }
882
+
883
+ .spoiler:hover:after {
884
+ opacity: 1;
885
+ }
886
+
887
+ /** Lazy img **/
888
+ .lazyimg {
889
+ display: block;
890
+ border: 0 none;
891
+ opacity: 1;
892
+ transition: opacity .25s;
893
+ background: #f2f2f2;
894
+ outline: 0 none;
895
+ }
896
+
897
+ .lazyimg[data-src],
898
+ .lazyimg[data-srcset] {
899
+ opacity: 0;
900
+ transition: opacity .25s;
901
+ }