kiko-minus-gh 0.0.1

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.
@@ -0,0 +1,62 @@
1
+ /* See https://github.com/aweekj/Kiko-plus/blob/master/_sass/_highlighter.scss */
2
+
3
+ .highlight { background: $oc-gray-0 }
4
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
5
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
6
+ .highlight .k { font-weight: bold } /* Keyword */
7
+ .highlight .o { font-weight: bold } /* Operator */
8
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
9
+ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
10
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
11
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
12
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
13
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
14
+ .highlight .ge { font-style: italic } /* Generic.Emph */
15
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
16
+ .highlight .gh { color: #999999 } /* Generic.Heading */
17
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
18
+ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
19
+ .highlight .go { color: #888888 } /* Generic.Output */
20
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
21
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
22
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
23
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
24
+ .highlight .kc { font-weight: bold } /* Keyword.Constant */
25
+ .highlight .kd { font-weight: bold } /* Keyword.Declaration */
26
+ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
27
+ .highlight .kr { font-weight: bold } /* Keyword.Reserved */
28
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
29
+ .highlight .m { color: #009999 } /* Literal.Number */
30
+ .highlight .s { color: #d14 } /* Literal.String */
31
+ .highlight .na { color: #008080 } /* Name.Attribute */
32
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
33
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
34
+ .highlight .no { color: #008080 } /* Name.Constant */
35
+ .highlight .ni { color: #800080 } /* Name.Entity */
36
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
37
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
38
+ .highlight .nn { color: #555555 } /* Name.Namespace */
39
+ .highlight .nt { color: #000080 } /* Name.Tag */
40
+ .highlight .nv { color: #008080 } /* Name.Variable */
41
+ .highlight .ow { font-weight: bold } /* Operator.Word */
42
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
43
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
44
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
45
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
46
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
47
+ .highlight .sb { color: #d14 } /* Literal.String.Backtick */
48
+ .highlight .sc { color: #d14 } /* Literal.String.Char */
49
+ .highlight .sd { color: #d14 } /* Literal.String.Doc */
50
+ .highlight .s2 { color: #d14 } /* Literal.String.Double */
51
+ .highlight .se { color: #d14 } /* Literal.String.Escape */
52
+ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
53
+ .highlight .si { color: #d14 } /* Literal.String.Interpol */
54
+ .highlight .sx { color: #d14 } /* Literal.String.Other */
55
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
56
+ .highlight .s1 { color: #d14 } /* Literal.String.Single */
57
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
58
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
59
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
60
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
61
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
62
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,340 @@
1
+ /**
2
+ * Basic typography settings
3
+ * Adapted from https://github.com/aweekj/Kiko-plus/blob/master/_sass/_typography.scss
4
+ * and https://github.com/jekyll/minima/blob/master/_sass/minima/_base.scss
5
+ */
6
+
7
+ /**
8
+ * Basic styling
9
+ */
10
+ body {
11
+ font-family: $base-font-stack;
12
+ font-size: $mob-font-size;
13
+ font-weight: $mob-font-weight;
14
+ line-height: $base-line-height;
15
+ color: $base-font-color;
16
+ background-color: $background-color;
17
+ -webkit-text-size-adjust: 100%;
18
+ -webkit-font-feature-settings: "kern" 1;
19
+ -moz-font-feature-settings: "kern" 1;
20
+ -o-font-feature-settings: "kern" 1;
21
+ font-feature-settings: "kern" 1;
22
+ font-kerning: normal;
23
+ min-height: 100vh;
24
+ flex-direction: column;
25
+
26
+ @include media-query($on-desktop) {
27
+ font-size: $base-font-size;
28
+ font-weight: $base-font-weight;
29
+ }
30
+ }
31
+
32
+
33
+ /**
34
+ * Vertical spacing
35
+ */
36
+ h1, h2, h3, h4, h5, h6,
37
+ p, blockquote, pre,
38
+ ul, ol, dl, figure,
39
+ %vertical-space {
40
+ margin-bottom: $spacing-unit / 2;
41
+ }
42
+
43
+
44
+ /**
45
+ * Headings
46
+ */
47
+ h1, h2, h3, h4, h5, h6 {
48
+ font-weight: $heading-font-weight;
49
+ }
50
+
51
+ h1, h2 {
52
+ border-bottom: 1px solid #eee;
53
+ padding-bottom: $spacing-unit / 5;
54
+ }
55
+
56
+
57
+ /**
58
+ * Links
59
+ */
60
+ a {
61
+ color: $link-color;
62
+ text-decoration: none;
63
+
64
+ &:visited {
65
+ color: darken($link-color, 15%);
66
+ }
67
+
68
+ &:hover,
69
+ &:focus {
70
+ text-decoration: underline;
71
+ }
72
+ }
73
+
74
+
75
+ /**
76
+ * Lists
77
+ */
78
+ ol, ul, dl {
79
+ padding: 0;
80
+ list-style: none;
81
+ list-style-image: none;
82
+ }
83
+
84
+ // Modify spacing before item
85
+ ol, ul {
86
+ > li {
87
+ &:before {
88
+ position: absolute;
89
+ width: $li-bul-width;
90
+ margin-left: -$li-bul-width;
91
+ display: inline-block;
92
+ box-sizing: border-box;
93
+ text-align: right;
94
+ }
95
+ }
96
+ }
97
+
98
+ // Modify bullet
99
+ ul {
100
+ > li:before {
101
+ content: "\2022";
102
+ padding-right: $ul-bul-right-space;
103
+ font-family: $ul-bul-font;
104
+ font-size: $ul-bul-font-size;
105
+ line-height: $ul-bul-line-height;
106
+ }
107
+ }
108
+
109
+ // Modify counter
110
+ ol {
111
+ counter-reset: section;
112
+
113
+ > li:before {
114
+ counter-increment: section;
115
+ content: counter(section) ".";
116
+ padding-right: $ol-bul-right-space;
117
+ font-family: $ol-bul-font;
118
+ font-size: $ol-bul-font-size;
119
+ line-height: $ol-bul-line-height;
120
+ }
121
+ }
122
+
123
+ // Modify spacing
124
+ ol, ul {
125
+ > li {
126
+ margin: 0 auto $mob-li-bottom-space $li-bul-width;
127
+ line-height: $li-line-height;
128
+
129
+ @include media-query($on-desktop) {
130
+ margin-bottom: $li-bottom-space;
131
+ }
132
+
133
+ > ol,
134
+ > ul {
135
+ margin-top: $mob-li-bottom-space;
136
+
137
+ @include media-query($on-desktop) {
138
+ margin-bottom: $li-bottom-space;
139
+ }
140
+ }
141
+ }
142
+ }
143
+
144
+ // Modify spacing for nested lists
145
+ li {
146
+ > ol,
147
+ > ul {
148
+ > li {
149
+ margin: 0 auto ($mob-li-bottom-space * $li-child-size-ratio) ($li-bul-width * $li-child-size-ratio);
150
+
151
+ @include relative-font-size($li-child-size-ratio);
152
+
153
+ @include media-query($on-desktop) {
154
+ margin-bottom: $li-bottom-space * $li-child-size-ratio;
155
+ }
156
+ }
157
+ }
158
+ }
159
+
160
+ dt {
161
+ float: left;
162
+ width: $mob-dt-width;
163
+ overflow: auto;
164
+ clear: left;
165
+ text-align: right;
166
+ white-space: nowrap;
167
+ font-weight: bold;
168
+ margin-bottom: $mob-li-bottom-space;
169
+
170
+ @include media-query($on-desktop) {
171
+ width: $dt-width;
172
+ margin-bottom: $li-bottom-space;
173
+ }
174
+ }
175
+
176
+ dd {
177
+ margin-left: $mob-dd-position;
178
+ margin-bottom: $mob-li-bottom-space;
179
+
180
+ @include media-query($on-desktop) {
181
+ margin-left: $dd-position;
182
+ margin-bottom: $li-bottom-space;
183
+ }
184
+ }
185
+
186
+
187
+ /**
188
+ * Blockquotes
189
+ */
190
+ blockquote {
191
+ color: $blockquote-color;
192
+ border-left: .3rem solid lighten($blockquote-color, 30%);
193
+ margin: 0 2rem 1rem 0;
194
+ padding-left: $spacing-unit / 2;
195
+ @include relative-font-size(1.125);
196
+
197
+ > :last-child {
198
+ margin-bottom: 0;
199
+ }
200
+ }
201
+
202
+
203
+ /**
204
+ * Breaks
205
+ */
206
+ hr {
207
+ border: 0;
208
+ border-top: 1px solid $divider-color;
209
+ margin: 1.5rem auto;
210
+ }
211
+
212
+
213
+ /**
214
+ * Images
215
+ */
216
+ img {
217
+ max-width: 100%;
218
+ vertical-align: middle;
219
+ @extend %vertical-space;
220
+ border-radius: 3px;
221
+ display: block;
222
+ }
223
+
224
+
225
+ /**
226
+ * Figures
227
+ */
228
+ figcaption {
229
+ font-size: $small-font-size;
230
+ }
231
+
232
+
233
+ /**
234
+ * Tables
235
+ */
236
+ table {
237
+ margin-bottom: $spacing-unit;
238
+ width: 100%;
239
+ text-align: left;
240
+ border-collapse: collapse;
241
+ border: 1px solid $table-color;
242
+
243
+ tr {
244
+ &:nth-child(even) {
245
+ background-color: lighten($table-color, 2%);
246
+ }
247
+ }
248
+
249
+ th, td {
250
+ padding: ($spacing-unit / 3) ($spacing-unit / 2);
251
+ }
252
+
253
+ th {
254
+ background-color: lighten($table-color, 2%);
255
+ border: 1px solid darken($table-color, 4%);
256
+ border-bottom-color: darken($table-color, 12%);
257
+ }
258
+
259
+ td {
260
+ border: 1px solid $table-color;
261
+ }
262
+ }
263
+
264
+
265
+ /**
266
+ * Code
267
+ */
268
+ code {
269
+ padding: .25em .5em;
270
+ font-size: 85%;
271
+ color: $code-text-color;
272
+ background-color: $code-bg-color;
273
+ border-radius: 3px;
274
+ }
275
+
276
+ pre {
277
+ display: block;
278
+ margin-top: 0;
279
+ margin-bottom: 1rem;
280
+ padding: .5rem;
281
+ @include relative-font-size(0.8);
282
+ line-height: 1.4;
283
+ white-space: pre;
284
+ overflow: auto;
285
+ background-color: $code-bg-color;
286
+
287
+ code {
288
+ padding: 0;
289
+ font-size: 100%;
290
+ color: inherit;
291
+ background-color: transparent;
292
+ }
293
+ }
294
+
295
+ .highlight {
296
+ margin-bottom: 1rem;
297
+ border-radius: 4px;
298
+
299
+ pre {
300
+ margin-bottom: 0;
301
+ }
302
+ }
303
+
304
+
305
+ /**
306
+ * Footnotes
307
+ */
308
+ a.footnote {
309
+ &,
310
+ .post p &,
311
+ .post ol &,
312
+ .post ul & {
313
+ margin: 0 3px;
314
+ font-size: $small-font-size;
315
+ -webkit-text-stroke: 0.25px;
316
+ text-decoration: none;
317
+ }
318
+ }
319
+
320
+ .footnotes {
321
+ padding: 2rem 1em;
322
+ font-size: $small-font-size;
323
+ }
324
+
325
+
326
+ /**
327
+ * Alignment
328
+ */
329
+ .center {
330
+ text-align: center;
331
+
332
+ &-image {
333
+ margin: 0 auto;
334
+ display: block;
335
+ }
336
+ }
337
+
338
+ .right {
339
+ text-align: right
340
+ }
@@ -0,0 +1,5 @@
1
+ ---
2
+ # Empty front matter
3
+ ---
4
+
5
+ @import "kiko-minus";
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kiko-minus-gh
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Areeb Khan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-06-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.8.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.8.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-seo-tag
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.5'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.5'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-feed
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.11'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-paginate
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-sitemap
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.0'
97
+ description:
98
+ email:
99
+ - areebk@protonmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE
105
+ - README.md
106
+ - _includes/fathom.html
107
+ - _includes/footer.html
108
+ - _includes/isso.html
109
+ - _includes/post-list.html
110
+ - _layouts/archive.html
111
+ - _layouts/default.html
112
+ - _layouts/home.html
113
+ - _layouts/page.html
114
+ - _layouts/post.html
115
+ - _sass/kiko-minus.scss
116
+ - _sass/kiko-minus/_colors.scss
117
+ - _sass/kiko-minus/_layout.scss
118
+ - _sass/kiko-minus/_normalize.scss
119
+ - _sass/kiko-minus/_syntax-highlighting.scss
120
+ - _sass/kiko-minus/_typography.scss
121
+ - assets/css/style.scss
122
+ homepage: https://github.com/ask616/kiko-minus-gh
123
+ licenses:
124
+ - MIT
125
+ metadata:
126
+ plugin_type: theme
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubygems_version: 3.0.3
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: A minimalistic, lightweight Jekyll theme based on Kiko Plus. This is a stripped
146
+ down version to support Github Pages
147
+ test_files: []