aivesoft-jekyll-theme 1.0.1 → 1.0.2
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/aivesoft-jekyll-theme/_layout.scss +76 -21
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f33e4f63b8882be7fa3db7f228834780a27c1a34402d1d5d705de82291145872
|
|
4
|
+
data.tar.gz: 7a71b0376f25186b4cbbb3dfb7a811b5ba9e5d32d25f87ae5763f883afe114f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2bf8130333dd43a978651e1099503dbfcbfe96081ff485312afdc3bfe6e9187b63cb7cc1afa7e906f547695664bef0e0560cb6135fcd02833233b5cf2716344
|
|
7
|
+
data.tar.gz: 0e281db30bac0be388aaec7e9dead4ba0dc0a1929f36fb268ae7c1cbb74927d90e76dd27ae0fecbabad04f074638622d485462b0d6a82e41fea3216e43a46849
|
|
@@ -45,11 +45,13 @@
|
|
|
45
45
|
color: $text-color;
|
|
46
46
|
@include relative-font-size(2.382);
|
|
47
47
|
}
|
|
48
|
+
|
|
48
49
|
a {
|
|
49
50
|
&:hover {
|
|
50
51
|
text-decoration: none;
|
|
51
52
|
}
|
|
52
53
|
}
|
|
54
|
+
|
|
53
55
|
img {
|
|
54
56
|
width: 50%;
|
|
55
57
|
height: auto;
|
|
@@ -273,9 +275,11 @@
|
|
|
273
275
|
.post-store {
|
|
274
276
|
margin-bottom: $spacing-unit;
|
|
275
277
|
}
|
|
278
|
+
|
|
276
279
|
.post-header {
|
|
277
280
|
margin-bottom: $spacing-unit;
|
|
278
281
|
}
|
|
282
|
+
|
|
279
283
|
.post-landing-image {
|
|
280
284
|
margin: 0 0 $spacing-unit * 0.618 0;
|
|
281
285
|
}
|
|
@@ -319,36 +323,36 @@
|
|
|
319
323
|
}
|
|
320
324
|
}
|
|
321
325
|
|
|
322
|
-
|
|
323
|
-
display: table;
|
|
324
|
-
margin: 0 auto;
|
|
326
|
+
}
|
|
325
327
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
328
|
+
.social-media-list {
|
|
329
|
+
display: table;
|
|
330
|
+
margin: 0 auto;
|
|
329
331
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
332
|
+
li {
|
|
333
|
+
float: left;
|
|
334
|
+
margin: 0 5px;
|
|
333
335
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
336
|
+
&:first-of-type {
|
|
337
|
+
margin-left: 0;
|
|
338
|
+
}
|
|
337
339
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
border: 1px solid $grey-color-light;
|
|
342
|
-
}
|
|
340
|
+
&:last-of-type {
|
|
341
|
+
margin-right: 0;
|
|
342
|
+
}
|
|
343
343
|
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
344
|
+
a {
|
|
345
|
+
display: block;
|
|
346
|
+
padding: $spacing-unit / 4;
|
|
347
|
+
border: 1px solid $grey-color-light;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
&:hover .svg-icon {
|
|
351
|
+
fill: currentColor;
|
|
347
352
|
}
|
|
348
353
|
}
|
|
349
354
|
}
|
|
350
355
|
|
|
351
|
-
|
|
352
356
|
/**
|
|
353
357
|
* Grid helpers
|
|
354
358
|
*/
|
|
@@ -376,6 +380,7 @@
|
|
|
376
380
|
-ms-transition: background 2s ease;
|
|
377
381
|
transition: background 2s ease;
|
|
378
382
|
}
|
|
383
|
+
|
|
379
384
|
.brand-bg a i:hover {
|
|
380
385
|
-webkit-transition: background 2s ease;
|
|
381
386
|
-moz-transition: background 2s ease;
|
|
@@ -383,141 +388,187 @@
|
|
|
383
388
|
-ms-transition: background 2s ease;
|
|
384
389
|
transition: background 2s ease;
|
|
385
390
|
}
|
|
391
|
+
|
|
386
392
|
.brand-bg a.facebook i {
|
|
387
393
|
background: #3280e7;
|
|
388
394
|
}
|
|
395
|
+
|
|
389
396
|
.brand-bg a.facebook i:hover {
|
|
390
397
|
background: #134fa0;
|
|
391
398
|
}
|
|
399
|
+
|
|
392
400
|
.brand-bg a.twitter i {
|
|
393
401
|
background: #32c8de;
|
|
394
402
|
}
|
|
403
|
+
|
|
395
404
|
.brand-bg a.twitter i:hover {
|
|
396
405
|
background: #188392;
|
|
397
406
|
}
|
|
407
|
+
|
|
398
408
|
.brand-bg a.telegram i {
|
|
399
409
|
background: #32c8de;
|
|
400
410
|
}
|
|
411
|
+
|
|
401
412
|
.brand-bg a.telegram i:hover {
|
|
402
413
|
background: #188392;
|
|
403
414
|
}
|
|
415
|
+
|
|
404
416
|
.brand-bg a.google-plus i {
|
|
405
417
|
background: #f96f4a;
|
|
406
418
|
}
|
|
419
|
+
|
|
407
420
|
.brand-bg a.google-plus i:hover {
|
|
408
421
|
background: #eb6440;
|
|
409
422
|
}
|
|
423
|
+
|
|
410
424
|
.brand-bg a.linkedin i {
|
|
411
425
|
background: #729fda;
|
|
412
426
|
}
|
|
427
|
+
|
|
413
428
|
.brand-bg a.linkedin i:hover {
|
|
414
429
|
background: #3069b6;
|
|
415
430
|
}
|
|
431
|
+
|
|
416
432
|
.brand-bg a.keybase i {
|
|
417
433
|
background: #729fda;
|
|
418
434
|
}
|
|
435
|
+
|
|
419
436
|
.brand-bg a.keybase i:hover {
|
|
420
437
|
background: #3069b6;
|
|
421
438
|
}
|
|
439
|
+
|
|
422
440
|
.brand-bg a.microdotblog i {
|
|
423
441
|
background: #f8a841;
|
|
424
442
|
}
|
|
443
|
+
|
|
425
444
|
.brand-bg a.microdotblog i:hover {
|
|
426
445
|
background: #cc7607;
|
|
427
446
|
}
|
|
447
|
+
|
|
428
448
|
.brand-bg a.pinterest i {
|
|
429
449
|
background: #ed5441;
|
|
430
450
|
}
|
|
451
|
+
|
|
431
452
|
.brand-bg a.pinterest i:hover {
|
|
432
453
|
background: #b72411;
|
|
433
454
|
}
|
|
455
|
+
|
|
434
456
|
.brand-bg a.dropbox i {
|
|
435
457
|
background: #32c8de;
|
|
436
458
|
}
|
|
459
|
+
|
|
437
460
|
.brand-bg a.dropbox i:hover {
|
|
438
461
|
background: #188392;
|
|
439
462
|
}
|
|
463
|
+
|
|
440
464
|
.brand-bg a.bitcoin i {
|
|
441
465
|
background: #f8a841;
|
|
442
466
|
}
|
|
467
|
+
|
|
443
468
|
.brand-bg a.bitcoin i:hover {
|
|
444
469
|
background: #cc7607;
|
|
445
470
|
}
|
|
471
|
+
|
|
446
472
|
.brand-bg a.foursquare i {
|
|
447
473
|
background: #22bed4;
|
|
448
474
|
}
|
|
475
|
+
|
|
449
476
|
.brand-bg a.foursquare i:hover {
|
|
450
477
|
background: #146f7c;
|
|
451
478
|
}
|
|
479
|
+
|
|
452
480
|
.brand-bg a.flickr i {
|
|
453
481
|
background: #ff61e7;
|
|
454
482
|
}
|
|
483
|
+
|
|
455
484
|
.brand-bg a.flickr i:hover {
|
|
456
485
|
background: #fa00d4;
|
|
457
486
|
}
|
|
487
|
+
|
|
458
488
|
.brand-bg a.github i {
|
|
459
489
|
background: #666666;
|
|
460
490
|
}
|
|
491
|
+
|
|
461
492
|
.brand-bg a.github i:hover {
|
|
462
493
|
background: #333333;
|
|
463
494
|
}
|
|
495
|
+
|
|
464
496
|
.brand-bg a.instagram i {
|
|
465
497
|
background: #d6917a;
|
|
466
498
|
}
|
|
499
|
+
|
|
467
500
|
.brand-bg a.instagram i:hover {
|
|
468
501
|
background: #b35637;
|
|
469
502
|
}
|
|
503
|
+
|
|
470
504
|
.brand-bg a.skype i {
|
|
471
505
|
background: #32c8de;
|
|
472
506
|
}
|
|
507
|
+
|
|
473
508
|
.brand-bg a.skype i:hover {
|
|
474
509
|
background: #188392;
|
|
475
510
|
}
|
|
511
|
+
|
|
476
512
|
.brand-bg a.tumblr i {
|
|
477
513
|
background: #84a1c8;
|
|
478
514
|
}
|
|
515
|
+
|
|
479
516
|
.brand-bg a.tumblr i:hover {
|
|
480
517
|
background: #476d9f;
|
|
481
518
|
}
|
|
519
|
+
|
|
482
520
|
.brand-bg a.vimeo i {
|
|
483
521
|
background: #32c8de;
|
|
484
522
|
}
|
|
523
|
+
|
|
485
524
|
.brand-bg a.vimeo i:hover {
|
|
486
525
|
background: #188392;
|
|
487
526
|
}
|
|
527
|
+
|
|
488
528
|
.brand-bg a.dribbble i {
|
|
489
529
|
background: #ff2edf;
|
|
490
530
|
}
|
|
531
|
+
|
|
491
532
|
.brand-bg a.dribbble i:hover {
|
|
492
533
|
background: #c700a9;
|
|
493
534
|
}
|
|
535
|
+
|
|
494
536
|
.brand-bg a.youtube i {
|
|
495
537
|
background: #ed5441;
|
|
496
538
|
}
|
|
539
|
+
|
|
497
540
|
.brand-bg a.youtube i:hover {
|
|
498
541
|
background: #b72411;
|
|
499
542
|
}
|
|
543
|
+
|
|
500
544
|
.brand-bg a.youtube_channel i {
|
|
501
545
|
background: #ed5441;
|
|
502
546
|
}
|
|
547
|
+
|
|
503
548
|
.brand-bg a.youtube_channel i:hover {
|
|
504
549
|
background: #b72411;
|
|
505
550
|
}
|
|
551
|
+
|
|
506
552
|
.brand-bg a.email i {
|
|
507
553
|
background: #32c8de;
|
|
508
554
|
}
|
|
555
|
+
|
|
509
556
|
.brand-bg a.email i:hover {
|
|
510
557
|
background: #188392;
|
|
511
558
|
}
|
|
559
|
+
|
|
512
560
|
.brand-bg a.rss i {
|
|
513
561
|
background: #d6917a;
|
|
514
562
|
}
|
|
563
|
+
|
|
515
564
|
.brand-bg a.rss i:hover {
|
|
516
565
|
background: #b35637;
|
|
517
566
|
}
|
|
567
|
+
|
|
518
568
|
.brand-bg a.mastodon i {
|
|
519
569
|
background: #3280e7;
|
|
520
570
|
}
|
|
571
|
+
|
|
521
572
|
.brand-bg a.mastodon i:hover {
|
|
522
573
|
background: #134fa0;
|
|
523
574
|
}
|
|
@@ -531,6 +582,7 @@
|
|
|
531
582
|
text-align: center;
|
|
532
583
|
border-radius: 100%;
|
|
533
584
|
}
|
|
585
|
+
|
|
534
586
|
.circle-2 {
|
|
535
587
|
display: inline-block;
|
|
536
588
|
height: 25px;
|
|
@@ -539,6 +591,7 @@
|
|
|
539
591
|
text-align: center;
|
|
540
592
|
border-radius: 100%;
|
|
541
593
|
}
|
|
594
|
+
|
|
542
595
|
.circle-3 {
|
|
543
596
|
display: inline-block;
|
|
544
597
|
height: 35px;
|
|
@@ -547,6 +600,7 @@
|
|
|
547
600
|
text-align: center;
|
|
548
601
|
border-radius: 100%;
|
|
549
602
|
}
|
|
603
|
+
|
|
550
604
|
.circle-4 {
|
|
551
605
|
display: inline-block;
|
|
552
606
|
height: 50px;
|
|
@@ -555,6 +609,7 @@
|
|
|
555
609
|
text-align: center;
|
|
556
610
|
border-radius: 100%;
|
|
557
611
|
}
|
|
612
|
+
|
|
558
613
|
.circle-5 {
|
|
559
614
|
display: inline-block;
|
|
560
615
|
height: 70px;
|