sebasic 0.3.14 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3378449c22a4113866ffc86dd2de6d75bed154fb0b9d38104de21023fcc5436c
4
- data.tar.gz: a36626cdb1f2be5bfef28c46b810206abb230b0dab7542773ab8e7eeee960870
3
+ metadata.gz: 1a0cea3b4f94b88e36c0a2944ff0c21df7885ec58116d9e2fd63b77a7da7d46b
4
+ data.tar.gz: 7de54d9cad6c589e681de3b137bf5c5c46501156933b9ec45b2173ef59ea7127
5
5
  SHA512:
6
- metadata.gz: 441318dc6c24f98489422ccc3253561fa6fe593d8db711e240da6a2b07dfc126460dabbf3cf1680ae96aa6ffc64d6f6fb5a51ddff8d699cbcf11e3969f843e32
7
- data.tar.gz: daeb22fdb2e29cc10028b1dd4125c12b9b83bd31f60daa42cd489ff169c6e2ce817be89cda8a5360a90ca48f1639b5e340317cf5550b4f7886d2dbe746b0c969
6
+ metadata.gz: 601471d2debee637ec480be41c028bb4dbf7b67a3dcfc7db5584af4f5c6146a38a9e79a3e46238476fa6ee12dc2a96b8be3d79d994afbbd6588482e2f1773f59
7
+ data.tar.gz: e85086569cd4db81c10bf7eca62917083dd2e7e6760a8b70006f113ad3cff79779027476c548b0ef6e7141affb0983a356394c57ac10ac4dacfe0fcd1b742ee7
data/_config.yml CHANGED
@@ -5,7 +5,7 @@ url: https://lewis8s.codes
5
5
 
6
6
  sebasic:
7
7
  date_format: "%B %d, %Y"
8
- github_user: lewisrobbins
8
+ github_user: lewis262626
9
9
 
10
10
  theme: sebasic
11
11
 
data/_layouts/home.html CHANGED
@@ -4,17 +4,17 @@ layout: default
4
4
 
5
5
  {%- if site.posts.size > 0 -%}
6
6
  <ul class="home_list">
7
- {% for post in site.posts %}
8
- {% capture post_data %}{{ page.date | date: "%B %d, %Y" }}{% endcapture %}
7
+ {% for post in site.posts %}
8
+ {% capture post_data %}{{ page.date | date: "%B %d, %Y" }}{% endcapture %}
9
9
 
10
- {%- assign date_format = "%B %d, %Y" -%}
11
- <li>
12
- <span>{{ post.date | date: date_format }}</span>
13
- <a href="{{ post.url | relative_url }}">
14
- {{ post.title | escape }}
15
- </a>
16
- </li>
17
- {% endfor %}
10
+ {%- assign date_format = "%B %d, %Y" -%}
11
+ <li>
12
+ <a href="{{ post.url | relative_url }}">
13
+ {{ post.title | escape }}
14
+ </a>
15
+ <span>{{ post.date | date: date_format }}</span>
16
+ </li>
17
+ {% endfor %}
18
18
  </ul>
19
19
  {%- endif -%}
20
20
 
data/_sass/main.scss CHANGED
@@ -86,16 +86,14 @@ span a {
86
86
  }
87
87
 
88
88
  ul li a {
89
- padding: 10px 15px;
90
89
  transition: 150ms background-color ease-in;
91
90
  }
92
91
 
93
92
  ul li span {
94
- display: inline-block;
95
93
  width: 180px;
96
94
  padding-right: 10px;
97
- text-align: right;
98
95
  font-size: inherit;
96
+ margin-top: 0.3rem;
99
97
  }
100
98
 
101
99
  // for rss hover (a11y)
@@ -118,6 +116,7 @@ body {
118
116
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
119
117
  font-size: 18px;
120
118
  text-rendering: optimizeSpeed;
119
+ -webkit-font-smoothing: antialiased;
121
120
  }
122
121
 
123
122
  main {
@@ -206,3 +205,11 @@ footer {
206
205
  display: flex;
207
206
  justify-content: end;
208
207
  }
208
+
209
+ /* code blocks */
210
+ .highlight {
211
+ margin-top: 2rem;
212
+ margin-bottom: 2rem;
213
+ padding-left: 0.6rem;
214
+ padding-right: 0.6rem;
215
+ }
data/_sass/syntax.scss CHANGED
@@ -1,61 +1,178 @@
1
- .highlight .hll { background-color: #ffffcc }
2
- .highlight .c { color: #999988; font-style: italic } /* Comment */
3
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
- .highlight .k { color: #000000; font-weight: bold } /* Keyword */
5
- .highlight .o { color: #000000; font-weight: bold } /* Operator */
6
- .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
- .highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
8
- .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
- .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
12
- .highlight .gr { color: #aa0000 } /* Generic.Error */
13
- .highlight .gh { color: #999999 } /* Generic.Heading */
14
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15
- .highlight .go { color: #888888 } /* Generic.Output */
16
- .highlight .gp { color: #555555 } /* Generic.Prompt */
17
- .highlight .gs { font-weight: bold } /* Generic.Strong */
18
- .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
19
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
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 */
25
- .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
26
- .highlight .m { color: #009999 } /* Literal.Number */
27
- .highlight .s { color: #d01040 } /* Literal.String */
28
- .highlight .na { color: #008080 } /* Name.Attribute */
29
- .highlight .nb { color: #0086B3 } /* Name.Builtin */
30
- .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
31
- .highlight .no { color: #008080 } /* Name.Constant */
32
- .highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
33
- .highlight .ni { color: #800080 } /* Name.Entity */
34
- .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
- .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
- .highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
37
- .highlight .nn { color: #555555 } /* Name.Namespace */
38
- .highlight .nt { color: #000080 } /* Name.Tag */
39
- .highlight .nv { color: #008080 } /* Name.Variable */
40
- .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
41
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
42
- .highlight .mf { color: #009999 } /* Literal.Number.Float */
43
- .highlight .mh { color: #009999 } /* Literal.Number.Hex */
44
- .highlight .mi { color: #009999 } /* Literal.Number.Integer */
45
- .highlight .mo { color: #009999 } /* Literal.Number.Oct */
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 */
54
- .highlight .sr { color: #009926 } /* Literal.String.Regex */
55
- .highlight .s1 { color: #d01040 } /* Literal.String.Single */
56
- .highlight .ss { color: #990073 } /* Literal.String.Symbol */
57
- .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
58
- .highlight .vc { color: #008080 } /* Name.Variable.Class */
59
- .highlight .vg { color: #008080 } /* Name.Variable.Global */
60
- .highlight .vi { color: #008080 } /* Name.Variable.Instance */
61
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
1
+ /* thankful eyes */
2
+ .highlight table td { padding: 5px; }
3
+ .highlight table pre { margin: 0; }
4
+ .highlight {
5
+ color: #faf6e4;
6
+ background-color: #122b3b;
7
+ }
8
+ .highlight .gl {
9
+ color: #dee5e7;
10
+ background-color: #4e5d62;
11
+ }
12
+ .highlight .gp {
13
+ color: #a8e1fe;
14
+ font-weight: bold;
15
+ }
16
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
17
+ color: #6c8b9f;
18
+ font-style: italic;
19
+ }
20
+ .highlight .cp {
21
+ color: #b2fd6d;
22
+ font-weight: bold;
23
+ }
24
+ .highlight .err {
25
+ color: #fefeec;
26
+ background-color: #cc0000;
27
+ }
28
+ .highlight .gr {
29
+ color: #cc0000;
30
+ font-weight: bold;
31
+ font-style: italic;
32
+ }
33
+ .highlight .k, .highlight .kd, .highlight .kv {
34
+ color: #f6dd62;
35
+ font-weight: bold;
36
+ }
37
+ .highlight .o, .highlight .ow {
38
+ color: #4df4ff;
39
+ font-weight: bold;
40
+ }
41
+ .highlight .p, .highlight .pi {
42
+ color: #4df4ff;
43
+ }
44
+ .highlight .gd {
45
+ color: #cc0000;
46
+ }
47
+ .highlight .gi {
48
+ color: #b2fd6d;
49
+ }
50
+ .highlight .ge {
51
+ font-style: italic;
52
+ }
53
+ .highlight .gs {
54
+ font-weight: bold;
55
+ }
56
+ .highlight .gt {
57
+ color: #dee5e7;
58
+ background-color: #4e5d62;
59
+ }
60
+ .highlight .kc {
61
+ color: #f696db;
62
+ font-weight: bold;
63
+ }
64
+ .highlight .kn {
65
+ color: #ffb000;
66
+ font-weight: bold;
67
+ }
68
+ .highlight .kp {
69
+ color: #ffb000;
70
+ font-weight: bold;
71
+ }
72
+ .highlight .kr {
73
+ color: #ffb000;
74
+ font-weight: bold;
75
+ }
76
+ .highlight .gh {
77
+ color: #ffb000;
78
+ font-weight: bold;
79
+ }
80
+ .highlight .gu {
81
+ color: #ffb000;
82
+ font-weight: bold;
83
+ }
84
+ .highlight .kt {
85
+ color: #b2fd6d;
86
+ font-weight: bold;
87
+ }
88
+ .highlight .no {
89
+ color: #b2fd6d;
90
+ font-weight: bold;
91
+ }
92
+ .highlight .nc {
93
+ color: #b2fd6d;
94
+ font-weight: bold;
95
+ }
96
+ .highlight .nd {
97
+ color: #b2fd6d;
98
+ font-weight: bold;
99
+ }
100
+ .highlight .nn {
101
+ color: #b2fd6d;
102
+ font-weight: bold;
103
+ }
104
+ .highlight .bp {
105
+ color: #b2fd6d;
106
+ font-weight: bold;
107
+ }
108
+ .highlight .ne {
109
+ color: #b2fd6d;
110
+ font-weight: bold;
111
+ }
112
+ .highlight .nl {
113
+ color: #ffb000;
114
+ font-weight: bold;
115
+ }
116
+ .highlight .nt {
117
+ color: #ffb000;
118
+ font-weight: bold;
119
+ }
120
+ .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
121
+ color: #f696db;
122
+ font-weight: bold;
123
+ }
124
+ .highlight .ld {
125
+ color: #f696db;
126
+ font-weight: bold;
127
+ }
128
+ .highlight .ss {
129
+ color: #f696db;
130
+ font-weight: bold;
131
+ }
132
+ .highlight .s, .highlight .sb, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .sr, .highlight .s1 {
133
+ color: #fff0a6;
134
+ font-weight: bold;
135
+ }
136
+ .highlight .sa {
137
+ color: #f6dd62;
138
+ font-weight: bold;
139
+ }
140
+ .highlight .se {
141
+ color: #4df4ff;
142
+ font-weight: bold;
143
+ }
144
+ .highlight .sc {
145
+ color: #4df4ff;
146
+ font-weight: bold;
147
+ }
148
+ .highlight .si {
149
+ color: #4df4ff;
150
+ font-weight: bold;
151
+ }
152
+ .highlight .nb {
153
+ font-weight: bold;
154
+ }
155
+ .highlight .ni {
156
+ color: #999999;
157
+ font-weight: bold;
158
+ }
159
+ .highlight .w {
160
+ color: #BBBBBB;
161
+ }
162
+ .highlight .go {
163
+ color: #BBBBBB;
164
+ }
165
+ .highlight .nf, .highlight .fm {
166
+ color: #a8e1fe;
167
+ }
168
+ .highlight .py {
169
+ color: #a8e1fe;
170
+ }
171
+ .highlight .na {
172
+ color: #a8e1fe;
173
+ }
174
+ .highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
175
+ color: #a8e1fe;
176
+ font-weight: bold;
177
+ }
178
+
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.14
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lewis R
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-29 00:00:00.000000000 Z
11
+ date: 2023-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.1'
19
+ version: '4.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4.1'
26
+ version: '4.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-feed
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 2.2.2
61
+ version: '2.4'
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.2.2
68
+ version: '2.4'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -116,15 +116,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
116
  requirements:
117
117
  - - ">="
118
118
  - !ruby/object:Gem::Version
119
- version: 2.4.0
119
+ version: 2.7.0
120
120
  required_rubygems_version: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  requirements: []
126
- rubygems_version: 3.1.4
126
+ rubygems_version: 3.4.10
127
127
  signing_key:
128
128
  specification_version: 4
129
- summary: A basic Jekyll theme for programmers
129
+ summary: A stylish, minimalistic theme for Jekyll
130
130
  test_files: []