styless 0.0.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a000a019eafbb5107dc5c098e10a617f41717382b6c1c26f2021d994afd33368
4
- data.tar.gz: 0e37e1a940f5b890014f4828166cb7d4775ac38d29f75c83a3d1fbfaa565d611
3
+ metadata.gz: c04e614c874df07339624470daaf3d44161544ad4fe4a1beec8aacd437e8efb9
4
+ data.tar.gz: 3c0008e71888cf674ba155301cdd00ec7b293e18d322ccf544cd14c2a3580e77
5
5
  SHA512:
6
- metadata.gz: 7deecbca41906f1f99f4185025179da12f1de144ac73169c4d2e2345cf416725b1d088f7c163cc716887afd9a6538a9b43cd70084dae815db97a884d3f7877c3
7
- data.tar.gz: 3b1f52e0cdfb7ff94bf1ff88d945def5d862d6343f5478d391f67fa9158fad903918b1d71f76315f79b567dc88784b495c06844986f2a6659b1a42512f6241a6
6
+ metadata.gz: b8034249cb597822b2db3ebd76b95d8e8e8db94ac5186f7c027ee137198d9fd2d42f3b1247c760ec4afc1cd5faab6c0ba39bffb06c6a73acb7fba47cf957834b
7
+ data.tar.gz: aa385879978750e24aacdc036385b8426564ff106f3d8205bfe3b1f43e9a1fd086aa73e7e2d566ce647865cf550cd56547e53e15bb24f131935f0fa4c6475648
data/README.md CHANGED
@@ -1,11 +1,18 @@
1
- <br><br>
1
+ ![Gem](https://img.shields.io/gem/dt/styless?logo=rubygems&style=for-the-badge)
2
+ ![Gem](https://img.shields.io/gem/v/styless?logo=rubygems&style=for-the-badge)
3
+ ![GitHub deployments](https://img.shields.io/github/deployments/moonharelabs/styless/github-pages?label=Github%20Pages&logo=jekyll&logoColor=red&style=for-the-badge)
4
+
5
+
2
6
  <p align="center">
3
7
  <h1 align="center">Styless</h1>
4
8
  <p align="center">A modern, highly customizable, and unstyled Jekyll theme for developers with built-in dark mode.<br>Easily hosted on GitHub Pages with few dependencies.</p>
5
- <p align="center"><strong><a href="https://pmarsceill.github.io/just-the-docs/">See it in action!</a></strong></p>
9
+ <p align="center"><strong><a target="_blank" href="https://moonharelabs.github.io/styless">See it in action!</a></strong></p>
6
10
  <br><br><br>
7
11
  </p>
8
12
 
13
+ |![](screenshot.jpg)|![](dark-screenshot.jpg)|
14
+ |-|-|
15
+
9
16
  ## Getting started
10
17
  ### Dependencies
11
18
  Styless is built for [Jekyll](https://jekyllrb.com/), a static site generator. View the [quick start guide](https://jekyllrb.com/) for more information. Styless requires no special plugins and can run on GitHub Pages’ standard Jekyll compiler. The [Jekyll SEO Tag plugin](https://github.com/jekyll/jekyll-seo-tag) is included by default (no need to run any special installation) to inject SEO and open graph metadata on docs pages. For information on how to configure SEO and open graph metadata visit the [Jekyll SEO Tag usage guide](https://jekyll.github.io/jekyll-seo-tag/usage/).
@@ -0,0 +1 @@
1
+
@@ -7,6 +7,7 @@
7
7
 
8
8
  {% seo %}
9
9
  <link rel="stylesheet" href="{{ "/assets/css/styless.css?v=" | append: site.github.build_revision | relative_url }}">
10
+ {% include head.html %}
10
11
  </head>
11
12
  <body>
12
13
 
data/_layouts/home.html CHANGED
@@ -1,4 +1,12 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- {{ content }}
4
+ <div style='
5
+ line-height: 1.5;
6
+ word-wrap: break-word;
7
+ max-width: 1012px;
8
+ margin: 32px auto 32px auto;
9
+ padding-right: 16px;
10
+ padding-left: 16px;'>
11
+ {{ content }}
12
+ </div>
data/_layouts/page.html CHANGED
@@ -2,8 +2,6 @@
2
2
  layout: default
3
3
  ---
4
4
  <div style='
5
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
6
- font-size: 16px;
7
5
  line-height: 1.5;
8
6
  word-wrap: break-word;
9
7
  max-width: 1012px;
data/_layouts/post.html CHANGED
@@ -1,4 +1,12 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- {{ content }}
4
+ <div style='
5
+ line-height: 1.5;
6
+ word-wrap: break-word;
7
+ max-width: 1012px;
8
+ margin: 32px auto 32px auto;
9
+ padding-right: 16px;
10
+ padding-left: 16px;'>
11
+ {{ content }}
12
+ </div>
data/_sass/styless.scss CHANGED
@@ -1,3 +1,9 @@
1
+ *,
2
+ *:after,
3
+ *:before{
4
+ box-sizing: border-box;
5
+ }
6
+
1
7
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
8
 
3
9
  html {
@@ -180,6 +186,9 @@ template {
180
186
  display: none
181
187
  }
182
188
 
189
+ * {max-width: 100%;}
190
+
191
+ .highlight .highlight{overflow: auto;}
183
192
  .highlight table td { padding: 5px; padding: 0.3125rem}
184
193
  .highlight table pre { margin: 0; }
185
194
  .highlight .cm {
@@ -389,3 +398,537 @@ template {
389
398
  .highlight {
390
399
  background-color: #f8f8f8;
391
400
  }
401
+
402
+ @media (prefers-color-scheme: dark) {
403
+ a {
404
+ color: rgb(140, 140, 250);
405
+ }
406
+ ::-webkit-scrollbar-track-piece {
407
+ background-color: rgba(255, 255, 255, 0.2) !important;
408
+ }
409
+ ::-webkit-scrollbar-track {
410
+ background-color: rgba(255, 255, 255, 0.3) !important;
411
+ }
412
+ ::-webkit-scrollbar-thumb {
413
+ background-color: rgba(255, 255, 255, 0.5) !important;
414
+ }
415
+ embed[type="application/pdf"] {
416
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.9 0.09999999999999998" /><feFuncG type="table" tableValues="0.9 0.09999999999999998" /><feFuncB type="table" tableValues="0.9 0.09999999999999998" /></feComponentTransfer></filter></svg>#filter');
417
+ -webkit-filter: invert(90%);
418
+ filter: invert(90%);
419
+ -webkit-filter: invert;
420
+ filter: invert;
421
+ }
422
+
423
+ html {
424
+ color: rgb(191, 191, 191);
425
+ background: rgb(31, 31, 31) !important;
426
+ }
427
+ body {
428
+ background-color: rgb(31, 31, 31);
429
+ }
430
+ input,
431
+ select,
432
+ textarea,
433
+ button {
434
+ color: rgb(191, 191, 191);
435
+ background-color: rgb(31, 31, 31);
436
+ }
437
+ font {
438
+ color: rgb(191, 191, 191);
439
+ }
440
+
441
+ html {
442
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" intercept="0" /><feFuncG type="linear" slope="1" intercept="0" /><feFuncB type="linear" slope="1" intercept="0" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1.01 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></svg>#filter');
443
+ -webkit-filter: contrast(100%) brightness(100%) saturate(100%);
444
+ filter: contrast(100%) brightness(100%) saturate(100%);
445
+ filter: progid:DXImageTransform.Microsoft.Light();
446
+ }
447
+
448
+ .highlight .highlight{border: 1px solid gray;}
449
+
450
+ .highlight table td {
451
+ padding: 5px;
452
+ padding: 0.3125rem;
453
+ }
454
+ .highlight table pre {
455
+ margin: 0px;
456
+ }
457
+ .highlight .cm {
458
+ color: rgb(196, 196, 186);
459
+ font-style: italic;
460
+ }
461
+ .highlight .cp {
462
+ color: rgb(191, 191, 191);
463
+ font-weight: bold;
464
+ }
465
+ .highlight .c1 {
466
+ color: rgb(196, 196, 186);
467
+ font-style: italic;
468
+ }
469
+ .highlight .cs {
470
+ color: rgb(191, 191, 191);
471
+ font-weight: bold;
472
+ font-style: italic;
473
+ }
474
+ .highlight .c,
475
+ .highlight .cd {
476
+ color: rgb(196, 196, 186);
477
+ font-style: italic;
478
+ }
479
+ .highlight .err {
480
+ color: rgb(230, 153, 153);
481
+ background-color: rgb(75, 47, 47);
482
+ }
483
+ .highlight .gd {
484
+ color: rgb(191, 191, 191);
485
+ background-color: rgb(69, 17, 17);
486
+ }
487
+ .highlight .ge {
488
+ color: rgb(191, 191, 191);
489
+ font-style: italic;
490
+ }
491
+ .highlight .gr {
492
+ color: rgb(230, 153, 153);
493
+ }
494
+ .highlight .gh {
495
+ color: rgb(191, 191, 191);
496
+ }
497
+ .highlight .gi {
498
+ color: rgb(191, 191, 191);
499
+ background-color: rgb(17, 69, 17);
500
+ }
501
+ .highlight .go {
502
+ color: rgb(191, 191, 191);
503
+ }
504
+ .highlight .gp {
505
+ color: rgb(191, 191, 191);
506
+ }
507
+ .highlight .gs {
508
+ font-weight: bold;
509
+ }
510
+ .highlight .gu {
511
+ color: rgb(191, 191, 191);
512
+ }
513
+ .highlight .gt {
514
+ color: rgb(230, 153, 153);
515
+ }
516
+ .highlight .kc {
517
+ color: rgb(191, 191, 191);
518
+ font-weight: bold;
519
+ }
520
+ .highlight .kd {
521
+ color: rgb(191, 191, 191);
522
+ font-weight: bold;
523
+ }
524
+ .highlight .kn {
525
+ color: rgb(191, 191, 191);
526
+ font-weight: bold;
527
+ }
528
+ .highlight .kp {
529
+ color: rgb(191, 191, 191);
530
+ font-weight: bold;
531
+ }
532
+ .highlight .kr {
533
+ color: rgb(191, 191, 191);
534
+ font-weight: bold;
535
+ }
536
+ .highlight .kt {
537
+ color: rgb(170, 181, 212);
538
+ font-weight: bold;
539
+ }
540
+ .highlight .k,
541
+ .highlight .kv {
542
+ color: rgb(191, 191, 191);
543
+ font-weight: bold;
544
+ }
545
+ .highlight .mf {
546
+ color: rgb(153, 230, 230);
547
+ }
548
+ .highlight .mh {
549
+ color: rgb(153, 230, 230);
550
+ }
551
+ .highlight .il {
552
+ color: rgb(153, 230, 230);
553
+ }
554
+ .highlight .mi {
555
+ color: rgb(153, 230, 230);
556
+ }
557
+ .highlight .mo {
558
+ color: rgb(153, 230, 230);
559
+ }
560
+ .highlight .m,
561
+ .highlight .mb,
562
+ .highlight .mx {
563
+ color: rgb(153, 230, 230);
564
+ }
565
+ .highlight .sb {
566
+ color: rgb(230, 153, 172);
567
+ }
568
+ .highlight .sc {
569
+ color: rgb(230, 153, 172);
570
+ }
571
+ .highlight .sd {
572
+ color: rgb(230, 153, 172);
573
+ }
574
+ .highlight .s2 {
575
+ color: rgb(230, 153, 172);
576
+ }
577
+ .highlight .se {
578
+ color: rgb(230, 153, 172);
579
+ }
580
+ .highlight .sh {
581
+ color: rgb(230, 153, 172);
582
+ }
583
+ .highlight .si {
584
+ color: rgb(230, 153, 172);
585
+ }
586
+ .highlight .sx {
587
+ color: rgb(230, 153, 172);
588
+ }
589
+ .highlight .sr {
590
+ color: rgb(153, 230, 172);
591
+ }
592
+ .highlight .s1 {
593
+ color: rgb(230, 153, 172);
594
+ }
595
+ .highlight .ss {
596
+ color: rgb(230, 153, 210);
597
+ }
598
+ .highlight .s {
599
+ color: rgb(230, 153, 172);
600
+ }
601
+ .highlight .na {
602
+ color: rgb(153, 230, 230);
603
+ }
604
+ .highlight .bp {
605
+ color: rgb(191, 191, 191);
606
+ }
607
+ .highlight .nb {
608
+ color: rgb(153, 210, 230);
609
+ }
610
+ .highlight .nc {
611
+ color: rgb(170, 181, 212);
612
+ font-weight: bold;
613
+ }
614
+ .highlight .no {
615
+ color: rgb(153, 230, 230);
616
+ }
617
+ .highlight .nd {
618
+ color: rgb(177, 205, 205);
619
+ font-weight: bold;
620
+ }
621
+ .highlight .ni {
622
+ color: rgb(230, 153, 230);
623
+ }
624
+ .highlight .ne {
625
+ color: rgb(230, 153, 153);
626
+ font-weight: bold;
627
+ }
628
+ .highlight .nf {
629
+ color: rgb(230, 153, 153);
630
+ font-weight: bold;
631
+ }
632
+ .highlight .nl {
633
+ color: rgb(230, 153, 153);
634
+ font-weight: bold;
635
+ }
636
+ .highlight .nn {
637
+ color: rgb(191, 191, 191);
638
+ }
639
+ .highlight .nt {
640
+ color: rgb(153, 153, 230);
641
+ }
642
+ .highlight .vc {
643
+ color: rgb(153, 230, 230);
644
+ }
645
+ .highlight .vg {
646
+ color: rgb(153, 230, 230);
647
+ }
648
+ .highlight .vi {
649
+ color: rgb(153, 230, 230);
650
+ }
651
+ .highlight .nv {
652
+ color: rgb(153, 230, 230);
653
+ }
654
+ .highlight .ow {
655
+ color: rgb(191, 191, 191);
656
+ font-weight: bold;
657
+ }
658
+ .highlight .o {
659
+ color: rgb(191, 191, 191);
660
+ font-weight: bold;
661
+ }
662
+ .highlight .w {
663
+ color: rgb(191, 191, 191);
664
+ }
665
+ .highlight {
666
+ background-color: rgb(33, 33, 33);
667
+ }
668
+ }
669
+
670
+ .dark {
671
+ color: rgb(191, 191, 191);
672
+ background: rgb(31, 31, 31) !important;
673
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" intercept="0" /><feFuncG type="linear" slope="1" intercept="0" /><feFuncB type="linear" slope="1" intercept="0" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1.01 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></svg>#filter');
674
+ -webkit-filter: contrast(100%) brightness(100%) saturate(100%);
675
+ filter: contrast(100%) brightness(100%) saturate(100%);
676
+ filter: progid:DXImageTransform.Microsoft.Light();
677
+
678
+ body {
679
+ background-color: rgb(31, 31, 31);
680
+ }
681
+
682
+ a {
683
+ color: rgb(140, 140, 250);
684
+ }
685
+ ::-webkit-scrollbar-track-piece {
686
+ background-color: rgba(255, 255, 255, 0.2) !important;
687
+ }
688
+ ::-webkit-scrollbar-track {
689
+ background-color: rgba(255, 255, 255, 0.3) !important;
690
+ }
691
+ ::-webkit-scrollbar-thumb {
692
+ background-color: rgba(255, 255, 255, 0.5) !important;
693
+ }
694
+ embed[type="application/pdf"] {
695
+ filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.9 0.09999999999999998" /><feFuncG type="table" tableValues="0.9 0.09999999999999998" /><feFuncB type="table" tableValues="0.9 0.09999999999999998" /></feComponentTransfer></filter></svg>#filter');
696
+ -webkit-filter: invert(90%);
697
+ filter: invert(90%);
698
+ -webkit-filter: invert;
699
+ filter: invert;
700
+ }
701
+
702
+ input,
703
+ select,
704
+ textarea,
705
+ button {
706
+ color: rgb(191, 191, 191);
707
+ background-color: rgb(31, 31, 31);
708
+ }
709
+ font {
710
+ color: rgb(191, 191, 191);
711
+ }
712
+
713
+ .highlight .highlight{border: 1px solid gray;}
714
+
715
+ .highlight table td {
716
+ padding: 5px;
717
+ padding: 0.3125rem;
718
+ }
719
+ .highlight table pre {
720
+ margin: 0px;
721
+ }
722
+ .highlight .cm {
723
+ color: rgb(196, 196, 186);
724
+ font-style: italic;
725
+ }
726
+ .highlight .cp {
727
+ color: rgb(191, 191, 191);
728
+ font-weight: bold;
729
+ }
730
+ .highlight .c1 {
731
+ color: rgb(196, 196, 186);
732
+ font-style: italic;
733
+ }
734
+ .highlight .cs {
735
+ color: rgb(191, 191, 191);
736
+ font-weight: bold;
737
+ font-style: italic;
738
+ }
739
+ .highlight .c,
740
+ .highlight .cd {
741
+ color: rgb(196, 196, 186);
742
+ font-style: italic;
743
+ }
744
+ .highlight .err {
745
+ color: rgb(230, 153, 153);
746
+ background-color: rgb(75, 47, 47);
747
+ }
748
+ .highlight .gd {
749
+ color: rgb(191, 191, 191);
750
+ background-color: rgb(69, 17, 17);
751
+ }
752
+ .highlight .ge {
753
+ color: rgb(191, 191, 191);
754
+ font-style: italic;
755
+ }
756
+ .highlight .gr {
757
+ color: rgb(230, 153, 153);
758
+ }
759
+ .highlight .gh {
760
+ color: rgb(191, 191, 191);
761
+ }
762
+ .highlight .gi {
763
+ color: rgb(191, 191, 191);
764
+ background-color: rgb(17, 69, 17);
765
+ }
766
+ .highlight .go {
767
+ color: rgb(191, 191, 191);
768
+ }
769
+ .highlight .gp {
770
+ color: rgb(191, 191, 191);
771
+ }
772
+ .highlight .gs {
773
+ font-weight: bold;
774
+ }
775
+ .highlight .gu {
776
+ color: rgb(191, 191, 191);
777
+ }
778
+ .highlight .gt {
779
+ color: rgb(230, 153, 153);
780
+ }
781
+ .highlight .kc {
782
+ color: rgb(191, 191, 191);
783
+ font-weight: bold;
784
+ }
785
+ .highlight .kd {
786
+ color: rgb(191, 191, 191);
787
+ font-weight: bold;
788
+ }
789
+ .highlight .kn {
790
+ color: rgb(191, 191, 191);
791
+ font-weight: bold;
792
+ }
793
+ .highlight .kp {
794
+ color: rgb(191, 191, 191);
795
+ font-weight: bold;
796
+ }
797
+ .highlight .kr {
798
+ color: rgb(191, 191, 191);
799
+ font-weight: bold;
800
+ }
801
+ .highlight .kt {
802
+ color: rgb(170, 181, 212);
803
+ font-weight: bold;
804
+ }
805
+ .highlight .k,
806
+ .highlight .kv {
807
+ color: rgb(191, 191, 191);
808
+ font-weight: bold;
809
+ }
810
+ .highlight .mf {
811
+ color: rgb(153, 230, 230);
812
+ }
813
+ .highlight .mh {
814
+ color: rgb(153, 230, 230);
815
+ }
816
+ .highlight .il {
817
+ color: rgb(153, 230, 230);
818
+ }
819
+ .highlight .mi {
820
+ color: rgb(153, 230, 230);
821
+ }
822
+ .highlight .mo {
823
+ color: rgb(153, 230, 230);
824
+ }
825
+ .highlight .m,
826
+ .highlight .mb,
827
+ .highlight .mx {
828
+ color: rgb(153, 230, 230);
829
+ }
830
+ .highlight .sb {
831
+ color: rgb(230, 153, 172);
832
+ }
833
+ .highlight .sc {
834
+ color: rgb(230, 153, 172);
835
+ }
836
+ .highlight .sd {
837
+ color: rgb(230, 153, 172);
838
+ }
839
+ .highlight .s2 {
840
+ color: rgb(230, 153, 172);
841
+ }
842
+ .highlight .se {
843
+ color: rgb(230, 153, 172);
844
+ }
845
+ .highlight .sh {
846
+ color: rgb(230, 153, 172);
847
+ }
848
+ .highlight .si {
849
+ color: rgb(230, 153, 172);
850
+ }
851
+ .highlight .sx {
852
+ color: rgb(230, 153, 172);
853
+ }
854
+ .highlight .sr {
855
+ color: rgb(153, 230, 172);
856
+ }
857
+ .highlight .s1 {
858
+ color: rgb(230, 153, 172);
859
+ }
860
+ .highlight .ss {
861
+ color: rgb(230, 153, 210);
862
+ }
863
+ .highlight .s {
864
+ color: rgb(230, 153, 172);
865
+ }
866
+ .highlight .na {
867
+ color: rgb(153, 230, 230);
868
+ }
869
+ .highlight .bp {
870
+ color: rgb(191, 191, 191);
871
+ }
872
+ .highlight .nb {
873
+ color: rgb(153, 210, 230);
874
+ }
875
+ .highlight .nc {
876
+ color: rgb(170, 181, 212);
877
+ font-weight: bold;
878
+ }
879
+ .highlight .no {
880
+ color: rgb(153, 230, 230);
881
+ }
882
+ .highlight .nd {
883
+ color: rgb(177, 205, 205);
884
+ font-weight: bold;
885
+ }
886
+ .highlight .ni {
887
+ color: rgb(230, 153, 230);
888
+ }
889
+ .highlight .ne {
890
+ color: rgb(230, 153, 153);
891
+ font-weight: bold;
892
+ }
893
+ .highlight .nf {
894
+ color: rgb(230, 153, 153);
895
+ font-weight: bold;
896
+ }
897
+ .highlight .nl {
898
+ color: rgb(230, 153, 153);
899
+ font-weight: bold;
900
+ }
901
+ .highlight .nn {
902
+ color: rgb(191, 191, 191);
903
+ }
904
+ .highlight .nt {
905
+ color: rgb(153, 153, 230);
906
+ }
907
+ .highlight .vc {
908
+ color: rgb(153, 230, 230);
909
+ }
910
+ .highlight .vg {
911
+ color: rgb(153, 230, 230);
912
+ }
913
+ .highlight .vi {
914
+ color: rgb(153, 230, 230);
915
+ }
916
+ .highlight .nv {
917
+ color: rgb(153, 230, 230);
918
+ }
919
+ .highlight .ow {
920
+ color: rgb(191, 191, 191);
921
+ font-weight: bold;
922
+ }
923
+ .highlight .o {
924
+ color: rgb(191, 191, 191);
925
+ font-weight: bold;
926
+ }
927
+ .highlight .w {
928
+ color: rgb(191, 191, 191);
929
+ }
930
+ .highlight {
931
+ background-color: rgb(33, 33, 33);
932
+ }
933
+ }
934
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: styless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kavindu Santhusa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-18 00:00:00.000000000 Z
11
+ date: 2021-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -95,6 +95,7 @@ extra_rdoc_files: []
95
95
  files:
96
96
  - LICENSE
97
97
  - README.md
98
+ - _includes/head.html
98
99
  - _layouts/default.html
99
100
  - _layouts/home.html
100
101
  - _layouts/page.html