sebasic 0.3.4 → 0.3.10

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: 88dbee7b37e4da01ba232d531c56f58f4451671ca0e58ae38fd520e91393af88
4
- data.tar.gz: 79297c382dabb59bcd3f70c00cb56430a137bf9d750de9c2819f7d2ed08a38b2
3
+ metadata.gz: cf137b3ec8d80d6a6f99ac0be58a3f33feaa800225949710beef93e2db7fb500
4
+ data.tar.gz: bfa5e8fabb400fd998841e0ee90d9cf7e82fbbe50695c6e0819b09f2d5faed74
5
5
  SHA512:
6
- metadata.gz: 8c76b4b3f8b9756cc5b7568b451dc0cf79e378c0945430c68302440062296ec17036a657ed58babca8ee9d2aaac14a9f52f31eced51d3319320b76f6f553f1b7
7
- data.tar.gz: a64dcd5592cbb31aa34bcea11999922a1074ebfc9bc62ae996fa2beadcc6b597c945c44f14d27dc25448f6a112019826e6e2ad4138f6724e10f5619618b7680f
6
+ metadata.gz: 3a4961ef112adc784e7b0f517396822d7ace3fab9dc6529f19cdfe3a83d53f9eb6dab873f17e1a024608bc388530e71a14ef27a1ef18dee811f246625d52edfb
7
+ data.tar.gz: e2a9b0927ea52ae4cc44a6b40d8ff95a72f2b0ce25f14ec4f476a68a806cce0ed6aaefb4ec9c9fde02381cc19b9444214b728dc5ff7ee1b6dc300f6257ba37d7
data/_layouts/post.html CHANGED
@@ -9,8 +9,8 @@ layout: default
9
9
  {%- assign date_format = "%B %d, %Y" -%}
10
10
  {{ page.date | date: date_format }}
11
11
  </span>
12
- <div class="content">
12
+ <article class="content">
13
13
  {{ content }}
14
- </div>
14
+ </article>
15
15
 
16
16
  {%- include footer.html -%}
data/_sass/main.scss CHANGED
@@ -92,7 +92,7 @@ span a {
92
92
 
93
93
  ul li span {
94
94
  display: inline-block;
95
- width: 160px;
95
+ width: 180px;
96
96
  padding-right: 10px;
97
97
  text-align: right;
98
98
  font-size: inherit;
@@ -126,7 +126,7 @@ main {
126
126
 
127
127
 
128
128
  .app_layout {
129
- --content-width: 50ch;
129
+ --content-width: 52ch;
130
130
  --layout-padding: 2rem;
131
131
  margin: 0 auto;
132
132
  padding: 0 var(--layout-padding);
data/_sass/syntax.scss CHANGED
@@ -1,60 +1,61 @@
1
- .highlight { background: #ffffff; }
1
+ .highlight .hll { background-color: #ffffcc }
2
2
  .highlight .c { color: #999988; font-style: italic } /* Comment */
3
3
  .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
- .highlight .k { font-weight: bold } /* Keyword */
5
- .highlight .o { font-weight: bold } /* Operator */
4
+ .highlight .k { color: #000000; font-weight: bold } /* Keyword */
5
+ .highlight .o { color: #000000; font-weight: bold } /* Operator */
6
6
  .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
- .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
7
+ .highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
8
8
  .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
9
  .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
10
  .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
- .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
- .highlight .ge { font-style: italic } /* Generic.Emph */
11
+ .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
13
12
  .highlight .gr { color: #aa0000 } /* Generic.Error */
14
13
  .highlight .gh { color: #999999 } /* Generic.Heading */
15
14
  .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
- .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
15
  .highlight .go { color: #888888 } /* Generic.Output */
18
16
  .highlight .gp { color: #555555 } /* Generic.Prompt */
19
17
  .highlight .gs { font-weight: bold } /* Generic.Strong */
20
18
  .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
19
  .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
- .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
- .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
- .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
- .highlight .kr { font-weight: bold } /* Keyword.Reserved */
20
+ .highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
21
+ .highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
22
+ .highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
23
+ .highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
24
+ .highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
26
25
  .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
26
  .highlight .m { color: #009999 } /* Literal.Number */
28
- .highlight .s { color: #d14 } /* Literal.String */
27
+ .highlight .s { color: #d01040 } /* Literal.String */
29
28
  .highlight .na { color: #008080 } /* Name.Attribute */
30
29
  .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
30
  .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
31
  .highlight .no { color: #008080 } /* Name.Constant */
32
+ .highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
33
33
  .highlight .ni { color: #800080 } /* Name.Entity */
34
34
  .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
35
  .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
36
37
  .highlight .nn { color: #555555 } /* Name.Namespace */
37
38
  .highlight .nt { color: #000080 } /* Name.Tag */
38
39
  .highlight .nv { color: #008080 } /* Name.Variable */
39
- .highlight .ow { font-weight: bold } /* Operator.Word */
40
+ .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
40
41
  .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
42
  .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
43
  .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
44
  .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
45
  .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
- .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
- .highlight .sc { color: #d14 } /* Literal.String.Char */
47
- .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
- .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
- .highlight .se { color: #d14 } /* Literal.String.Escape */
50
- .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
- .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
- .highlight .sx { color: #d14 } /* Literal.String.Other */
46
+ .highlight .sb { color: #d01040 } /* Literal.String.Backtick */
47
+ .highlight .sc { color: #d01040 } /* Literal.String.Char */
48
+ .highlight .sd { color: #d01040 } /* Literal.String.Doc */
49
+ .highlight .s2 { color: #d01040 } /* Literal.String.Double */
50
+ .highlight .se { color: #d01040 } /* Literal.String.Escape */
51
+ .highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
52
+ .highlight .si { color: #d01040 } /* Literal.String.Interpol */
53
+ .highlight .sx { color: #d01040 } /* Literal.String.Other */
53
54
  .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
- .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
+ .highlight .s1 { color: #d01040 } /* Literal.String.Single */
55
56
  .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
57
  .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
58
  .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
59
  .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
60
  .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
61
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -4,4 +4,3 @@
4
4
  @import "main";
5
5
  @import "normalize";
6
6
  @import "syntax";
7
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sebasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis R
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-22 00:00:00.000000000 Z
11
+ date: 2021-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 2.1.4
61
+ version: 2.2.2
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 2.1.4
68
+ version: 2.2.2
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -106,7 +106,8 @@ files:
106
106
  homepage: https://github.com/lewisrobbins/sebasic
107
107
  licenses:
108
108
  - MIT
109
- metadata: {}
109
+ metadata:
110
+ source_code_uri: https://github.com/lewisrobbins/sebasic
110
111
  post_install_message:
111
112
  rdoc_options: []
112
113
  require_paths:
@@ -115,7 +116,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
115
116
  requirements:
116
117
  - - ">="
117
118
  - !ruby/object:Gem::Version
118
- version: '0'
119
+ version: 2.4.0
119
120
  required_rubygems_version: !ruby/object:Gem::Requirement
120
121
  requirements:
121
122
  - - ">="