jekyll-theme-kagami 0.1.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +49 -16
  3. data/_includes/font-fix.html +12 -0
  4. data/_includes/gitalk.html +18 -0
  5. data/_includes/head.html +4 -3
  6. data/_includes/header.html +1 -9
  7. data/_includes/mermaid.html +14 -0
  8. data/_includes/site-nav.html +8 -0
  9. data/_layouts/default.html +5 -0
  10. data/_layouts/home.html +1 -1
  11. data/_layouts/page.html +2 -1
  12. data/_layouts/post-list.html +23 -16
  13. data/_layouts/post.html +8 -14
  14. data/_sass/kagami/_layout.scss +47 -5
  15. data/_sass/kagami/_typography.scss +33 -2
  16. data/_sass/kagami/_utility.scss +4 -4
  17. data/assets/font/LICENSE.md +26 -0
  18. data/assets/font/fontello.eot +0 -0
  19. data/assets/font/fontello.svg +86 -0
  20. data/assets/font/fontello.ttf +0 -0
  21. data/assets/font/fontello.woff +0 -0
  22. data/assets/font/fontello.woff2 +0 -0
  23. data/assets/styles/core.scss +4 -0
  24. data/assets/styles/fontello.css +95 -0
  25. data/assets/styles/highlighting/README.md +23 -0
  26. data/assets/styles/highlighting/UNLICENSE.txt +24 -0
  27. data/assets/styles/highlighting/autumn.css +58 -0
  28. data/assets/styles/highlighting/borland.css +46 -0
  29. data/assets/styles/highlighting/bw.css +34 -0
  30. data/assets/styles/highlighting/colorful.css +61 -0
  31. data/assets/styles/highlighting/default.css +61 -0
  32. data/assets/styles/highlighting/emacs.css +61 -0
  33. data/assets/styles/highlighting/friendly.css +61 -0
  34. data/assets/styles/highlighting/fruity.css +70 -0
  35. data/assets/styles/highlighting/github.css +61 -0
  36. data/assets/styles/highlighting/manni.css +61 -0
  37. data/assets/styles/highlighting/monokai.css +65 -0
  38. data/assets/styles/highlighting/murphy.css +61 -0
  39. data/assets/styles/highlighting/native.css +70 -0
  40. data/assets/styles/highlighting/pastie.css +60 -0
  41. data/assets/styles/highlighting/perldoc.css +58 -0
  42. data/assets/styles/highlighting/tango.css +69 -0
  43. data/assets/styles/highlighting/trac.css +59 -0
  44. data/assets/styles/highlighting/vim.css +70 -0
  45. data/assets/styles/highlighting/vs.css +33 -0
  46. data/assets/styles/highlighting/zenburn.css +136 -0
  47. metadata +46 -41
@@ -0,0 +1,70 @@
1
+ .highlight pre { background-color: #222222 }
2
+ .highlight .hll { background-color: #222222 }
3
+ .highlight .c { color: #000080 } /* Comment */
4
+ .highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
5
+ .highlight .g { color: #cccccc } /* Generic */
6
+ .highlight .k { color: #cdcd00 } /* Keyword */
7
+ .highlight .l { color: #cccccc } /* Literal */
8
+ .highlight .n { color: #cccccc } /* Name */
9
+ .highlight .o { color: #3399cc } /* Operator */
10
+ .highlight .x { color: #cccccc } /* Other */
11
+ .highlight .p { color: #cccccc } /* Punctuation */
12
+ .highlight .cm { color: #000080 } /* Comment.Multiline */
13
+ .highlight .cp { color: #000080 } /* Comment.Preproc */
14
+ .highlight .c1 { color: #000080 } /* Comment.Single */
15
+ .highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
16
+ .highlight .gd { color: #cd0000 } /* Generic.Deleted */
17
+ .highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
18
+ .highlight .gr { color: #FF0000 } /* Generic.Error */
19
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
20
+ .highlight .gi { color: #00cd00 } /* Generic.Inserted */
21
+ .highlight .go { color: #808080 } /* Generic.Output */
22
+ .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
23
+ .highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
24
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
25
+ .highlight .gt { color: #0040D0 } /* Generic.Traceback */
26
+ .highlight .kc { color: #cdcd00 } /* Keyword.Constant */
27
+ .highlight .kd { color: #00cd00 } /* Keyword.Declaration */
28
+ .highlight .kn { color: #cd00cd } /* Keyword.Namespace */
29
+ .highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
30
+ .highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
31
+ .highlight .kt { color: #00cd00 } /* Keyword.Type */
32
+ .highlight .ld { color: #cccccc } /* Literal.Date */
33
+ .highlight .m { color: #cd00cd } /* Literal.Number */
34
+ .highlight .s { color: #cd0000 } /* Literal.String */
35
+ .highlight .na { color: #cccccc } /* Name.Attribute */
36
+ .highlight .nb { color: #cd00cd } /* Name.Builtin */
37
+ .highlight .nc { color: #00cdcd } /* Name.Class */
38
+ .highlight .no { color: #cccccc } /* Name.Constant */
39
+ .highlight .nd { color: #cccccc } /* Name.Decorator */
40
+ .highlight .ni { color: #cccccc } /* Name.Entity */
41
+ .highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
42
+ .highlight .nf { color: #cccccc } /* Name.Function */
43
+ .highlight .nl { color: #cccccc } /* Name.Label */
44
+ .highlight .nn { color: #cccccc } /* Name.Namespace */
45
+ .highlight .nx { color: #cccccc } /* Name.Other */
46
+ .highlight .py { color: #cccccc } /* Name.Property */
47
+ .highlight .nt { color: #cccccc } /* Name.Tag */
48
+ .highlight .nv { color: #00cdcd } /* Name.Variable */
49
+ .highlight .ow { color: #cdcd00 } /* Operator.Word */
50
+ .highlight .w { color: #cccccc } /* Text.Whitespace */
51
+ .highlight .mf { color: #cd00cd } /* Literal.Number.Float */
52
+ .highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
53
+ .highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
54
+ .highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
55
+ .highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
56
+ .highlight .sc { color: #cd0000 } /* Literal.String.Char */
57
+ .highlight .sd { color: #cd0000 } /* Literal.String.Doc */
58
+ .highlight .s2 { color: #cd0000 } /* Literal.String.Double */
59
+ .highlight .se { color: #cd0000 } /* Literal.String.Escape */
60
+ .highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
61
+ .highlight .si { color: #cd0000 } /* Literal.String.Interpol */
62
+ .highlight .sx { color: #cd0000 } /* Literal.String.Other */
63
+ .highlight .sr { color: #cd0000 } /* Literal.String.Regex */
64
+ .highlight .s1 { color: #cd0000 } /* Literal.String.Single */
65
+ .highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
66
+ .highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
67
+ .highlight .vc { color: #00cdcd } /* Name.Variable.Class */
68
+ .highlight .vg { color: #00cdcd } /* Name.Variable.Global */
69
+ .highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
70
+ .highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
@@ -0,0 +1,33 @@
1
+ .highlight .hll { background-color: #ffffcc }
2
+ .highlight .c { color: #008000 } /* Comment */
3
+ .highlight .err { border: 1px solid #FF0000 } /* Error */
4
+ .highlight .k { color: #0000ff } /* Keyword */
5
+ .highlight .cm { color: #008000 } /* Comment.Multiline */
6
+ .highlight .cp { color: #0000ff } /* Comment.Preproc */
7
+ .highlight .c1 { color: #008000 } /* Comment.Single */
8
+ .highlight .cs { color: #008000 } /* Comment.Special */
9
+ .highlight .ge { font-style: italic } /* Generic.Emph */
10
+ .highlight .gh { font-weight: bold } /* Generic.Heading */
11
+ .highlight .gp { font-weight: bold } /* Generic.Prompt */
12
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
13
+ .highlight .gu { font-weight: bold } /* Generic.Subheading */
14
+ .highlight .kc { color: #0000ff } /* Keyword.Constant */
15
+ .highlight .kd { color: #0000ff } /* Keyword.Declaration */
16
+ .highlight .kn { color: #0000ff } /* Keyword.Namespace */
17
+ .highlight .kp { color: #0000ff } /* Keyword.Pseudo */
18
+ .highlight .kr { color: #0000ff } /* Keyword.Reserved */
19
+ .highlight .kt { color: #2b91af } /* Keyword.Type */
20
+ .highlight .s { color: #a31515 } /* Literal.String */
21
+ .highlight .nc { color: #2b91af } /* Name.Class */
22
+ .highlight .ow { color: #0000ff } /* Operator.Word */
23
+ .highlight .sb { color: #a31515 } /* Literal.String.Backtick */
24
+ .highlight .sc { color: #a31515 } /* Literal.String.Char */
25
+ .highlight .sd { color: #a31515 } /* Literal.String.Doc */
26
+ .highlight .s2 { color: #a31515 } /* Literal.String.Double */
27
+ .highlight .se { color: #a31515 } /* Literal.String.Escape */
28
+ .highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
29
+ .highlight .si { color: #a31515 } /* Literal.String.Interpol */
30
+ .highlight .sx { color: #a31515 } /* Literal.String.Other */
31
+ .highlight .sr { color: #a31515 } /* Literal.String.Regex */
32
+ .highlight .s1 { color: #a31515 } /* Literal.String.Single */
33
+ .highlight .ss { color: #a31515 } /* Literal.String.Symbol */
@@ -0,0 +1,136 @@
1
+ .highlight code, .highlight pre {
2
+ color:#fdce93;
3
+ background-color:#3f3f3f;
4
+ }
5
+
6
+ .highlight .hll {
7
+ background-color:#222;
8
+ }
9
+
10
+ .highlight .err {
11
+ color:#e37170;
12
+ background-color:#3d3535;
13
+ }
14
+
15
+ .highlight .k {
16
+ color:#f0dfaf;
17
+ }
18
+
19
+ .highlight .p {
20
+ color:#41706f;
21
+ }
22
+
23
+ .highlight .cs {
24
+ color:#cd0000;
25
+ font-weight:700;
26
+ }
27
+
28
+ .highlight .gd {
29
+ color:#cd0000;
30
+ }
31
+
32
+ .highlight .ge {
33
+ color:#ccc;
34
+ font-style:italic;
35
+ }
36
+
37
+ .highlight .gr {
38
+ color:red;
39
+ }
40
+
41
+ .highlight .go {
42
+ color:gray;
43
+ }
44
+
45
+ .highlight .gs {
46
+ color:#ccc;
47
+ font-weight:700;
48
+ }
49
+
50
+ .highlight .gu {
51
+ color:purple;
52
+ font-weight:700;
53
+ }
54
+
55
+ .highlight .gt {
56
+ color:#0040D0;
57
+ }
58
+
59
+ .highlight .kc {
60
+ color:#dca3a3;
61
+ }
62
+
63
+ .highlight .kd {
64
+ color:#ffff86;
65
+ }
66
+
67
+ .highlight .kn {
68
+ color:#dfaf8f;
69
+ font-weight:700;
70
+ }
71
+
72
+ .highlight .kp {
73
+ color:#cdcf99;
74
+ }
75
+
76
+ .highlight .kr {
77
+ color:#cdcd00;
78
+ }
79
+
80
+ .highlight .ni {
81
+ color:#c28182;
82
+ }
83
+
84
+ .highlight .ne {
85
+ color:#c3bf9f;
86
+ font-weight:700;
87
+ }
88
+
89
+ .highlight .nn {
90
+ color:#8fbede;
91
+ }
92
+
93
+ .highlight .vi {
94
+ color:#ffffc7;
95
+ }
96
+
97
+ .highlight .c,.preview-zenburn .highlight .g,.preview-zenburn .highlight .cm,.preview-zenburn .highlight .cp,.preview-zenburn .highlight .c1 {
98
+ color:#7f9f7f;
99
+ }
100
+
101
+ .highlight .l,.preview-zenburn .highlight .x,.preview-zenburn .highlight .no,.preview-zenburn .highlight .nd,.preview-zenburn .highlight .nl,.preview-zenburn .highlight .nx,.preview-zenburn .highlight .py,.preview-zenburn .highlight .w {
102
+ color:#ccc;
103
+ }
104
+
105
+ .highlight .n,.preview-zenburn .highlight .nv,.preview-zenburn .highlight .vg {
106
+ color:#dcdccc;
107
+ }
108
+
109
+ .highlight .o,.preview-zenburn .highlight .ow {
110
+ color:#f0efd0;
111
+ }
112
+
113
+ .highlight .gh,.preview-zenburn .highlight .gp {
114
+ color:#dcdccc;
115
+ font-weight:700;
116
+ }
117
+
118
+ .highlight .gi,.preview-zenburn .highlight .kt {
119
+ color:#00cd00;
120
+ }
121
+
122
+ .highlight .ld,.preview-zenburn .highlight .s,.preview-zenburn .highlight .sb,.preview-zenburn .highlight .sc,.preview-zenburn .highlight .sd,.preview-zenburn .highlight .s2,.preview-zenburn .highlight .se,.preview-zenburn .highlight .sh,.preview-zenburn .highlight .si,.preview-zenburn .highlight .sx,.preview-zenburn .highlight .sr,.preview-zenburn .highlight .s1,.preview-zenburn .highlight .ss {
123
+ color:#cc9393;
124
+ }
125
+
126
+ .highlight .m,.preview-zenburn .highlight .mf,.preview-zenburn .highlight .mh,.preview-zenburn .highlight .mi,.preview-zenburn .highlight .mo,.preview-zenburn .highlight .il {
127
+ color:#8cd0d3;
128
+ }
129
+
130
+ .highlight .na,.preview-zenburn .highlight .nt {
131
+ color:#9ac39f;
132
+ }
133
+
134
+ .highlight .nb,.preview-zenburn .highlight .nc,.preview-zenburn .highlight .nf,.preview-zenburn .highlight .bp,.preview-zenburn .highlight .vc {
135
+ color:#efef8f;
136
+ }
metadata CHANGED
@@ -1,58 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-kagami
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - kamikat
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-11 00:00:00.000000000 Z
11
+ date: 2021-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: jekyll
14
+ name: github-pages
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.3'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '3.3'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.12'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.12'
41
- - !ruby/object:Gem::Dependency
42
- name: rake
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '10.0'
19
+ version: '0'
48
20
  type: :development
49
21
  prerelease: false
50
22
  version_requirements: !ruby/object:Gem::Requirement
51
23
  requirements:
52
- - - "~>"
24
+ - - ">="
53
25
  - !ruby/object:Gem::Version
54
- version: '10.0'
55
- description:
26
+ version: '0'
27
+ description:
56
28
  email:
57
29
  - kamikat@banana.moe
58
30
  executables: []
@@ -62,11 +34,15 @@ files:
62
34
  - LICENSE.txt
63
35
  - README.md
64
36
  - _includes/disqus.html
37
+ - _includes/font-fix.html
65
38
  - _includes/footer.html
39
+ - _includes/gitalk.html
66
40
  - _includes/google-analytics.html
67
41
  - _includes/head.html
68
42
  - _includes/header.html
43
+ - _includes/mermaid.html
69
44
  - _includes/retina-image.html
45
+ - _includes/site-nav.html
70
46
  - _layouts/blank.html
71
47
  - _layouts/default.html
72
48
  - _layouts/home.html
@@ -81,11 +57,41 @@ files:
81
57
  - _sass/kagami/_typography.scss
82
58
  - _sass/kagami/_utility.scss
83
59
  - _sass/scut/dist/_scut.scss
60
+ - assets/font/LICENSE.md
61
+ - assets/font/fontello.eot
62
+ - assets/font/fontello.svg
63
+ - assets/font/fontello.ttf
64
+ - assets/font/fontello.woff
65
+ - assets/font/fontello.woff2
66
+ - assets/styles/core.scss
67
+ - assets/styles/fontello.css
68
+ - assets/styles/highlighting/README.md
69
+ - assets/styles/highlighting/UNLICENSE.txt
70
+ - assets/styles/highlighting/autumn.css
71
+ - assets/styles/highlighting/borland.css
72
+ - assets/styles/highlighting/bw.css
73
+ - assets/styles/highlighting/colorful.css
74
+ - assets/styles/highlighting/default.css
75
+ - assets/styles/highlighting/emacs.css
76
+ - assets/styles/highlighting/friendly.css
77
+ - assets/styles/highlighting/fruity.css
78
+ - assets/styles/highlighting/github.css
79
+ - assets/styles/highlighting/manni.css
80
+ - assets/styles/highlighting/monokai.css
81
+ - assets/styles/highlighting/murphy.css
82
+ - assets/styles/highlighting/native.css
83
+ - assets/styles/highlighting/pastie.css
84
+ - assets/styles/highlighting/perldoc.css
85
+ - assets/styles/highlighting/tango.css
86
+ - assets/styles/highlighting/trac.css
87
+ - assets/styles/highlighting/vim.css
88
+ - assets/styles/highlighting/vs.css
89
+ - assets/styles/highlighting/zenburn.css
84
90
  homepage: https://github.com/kamikat/jekyll-theme-kagami
85
91
  licenses:
86
92
  - MIT
87
93
  metadata: {}
88
- post_install_message:
94
+ post_install_message:
89
95
  rdoc_options: []
90
96
  require_paths:
91
97
  - lib
@@ -100,9 +106,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
106
  - !ruby/object:Gem::Version
101
107
  version: '0'
102
108
  requirements: []
103
- rubyforge_project:
104
- rubygems_version: 2.5.2
105
- signing_key:
109
+ rubygems_version: 3.1.2
110
+ signing_key:
106
111
  specification_version: 4
107
112
  summary: A peaceful theme for Jekyll and GitHub Pages.
108
113
  test_files: []