jekyll-theme-scrawl 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +42 -0
- data/_includes/content.md +120 -0
- data/_layouts/page.html +68 -0
- data/_layouts/post.html +7 -0
- data/_sass/normalize.LICENSE.txt +21 -0
- data/_sass/normalize.scss +341 -0
- data/_sass/primer-base.scss +166 -0
- data/_sass/primer-markdown.scss +455 -0
- data/_sass/primer.LICENSE.txt +21 -0
- data/_sass/rouge.scss +281 -0
- data/_sass/scrawl.scss +80 -0
- data/assets/css/style.scss +8 -0
- metadata +99 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 GitHub Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/_sass/rouge.scss
ADDED
@@ -0,0 +1,281 @@
|
|
1
|
+
/*! primer v0.5.3 | MIT License | github.com/pages-themes/primer */
|
2
|
+
|
3
|
+
.highlight table td {
|
4
|
+
padding: 5px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.highlight table pre {
|
8
|
+
margin: 0;
|
9
|
+
}
|
10
|
+
|
11
|
+
.highlight .cm {
|
12
|
+
color: #999988;
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
|
16
|
+
.highlight .cp {
|
17
|
+
color: #999999;
|
18
|
+
font-weight: bold;
|
19
|
+
}
|
20
|
+
|
21
|
+
.highlight .c1 {
|
22
|
+
color: #999988;
|
23
|
+
font-style: italic;
|
24
|
+
}
|
25
|
+
|
26
|
+
.highlight .cs {
|
27
|
+
color: #999999;
|
28
|
+
font-weight: bold;
|
29
|
+
font-style: italic;
|
30
|
+
}
|
31
|
+
|
32
|
+
.highlight .c,
|
33
|
+
.highlight .cd {
|
34
|
+
color: #999988;
|
35
|
+
font-style: italic;
|
36
|
+
}
|
37
|
+
|
38
|
+
.highlight .err {
|
39
|
+
color: #a61717;
|
40
|
+
background-color: #e3d2d2;
|
41
|
+
}
|
42
|
+
|
43
|
+
.highlight .gd {
|
44
|
+
color: #000000;
|
45
|
+
background-color: #ffdddd;
|
46
|
+
}
|
47
|
+
|
48
|
+
.highlight .ge {
|
49
|
+
color: #000000;
|
50
|
+
font-style: italic;
|
51
|
+
}
|
52
|
+
|
53
|
+
.highlight .gr {
|
54
|
+
color: #aa0000;
|
55
|
+
}
|
56
|
+
|
57
|
+
.highlight .gh {
|
58
|
+
color: #999999;
|
59
|
+
}
|
60
|
+
|
61
|
+
.highlight .gi {
|
62
|
+
color: #000000;
|
63
|
+
background-color: #ddffdd;
|
64
|
+
}
|
65
|
+
|
66
|
+
.highlight .go {
|
67
|
+
color: #888888;
|
68
|
+
}
|
69
|
+
|
70
|
+
.highlight .gp {
|
71
|
+
color: #555555;
|
72
|
+
}
|
73
|
+
|
74
|
+
.highlight .gs {
|
75
|
+
font-weight: bold;
|
76
|
+
}
|
77
|
+
|
78
|
+
.highlight .gu {
|
79
|
+
color: #aaaaaa;
|
80
|
+
}
|
81
|
+
|
82
|
+
.highlight .gt {
|
83
|
+
color: #aa0000;
|
84
|
+
}
|
85
|
+
|
86
|
+
.highlight .kc {
|
87
|
+
color: #000000;
|
88
|
+
font-weight: bold;
|
89
|
+
}
|
90
|
+
|
91
|
+
.highlight .kd {
|
92
|
+
color: #000000;
|
93
|
+
font-weight: bold;
|
94
|
+
}
|
95
|
+
|
96
|
+
.highlight .kn {
|
97
|
+
color: #000000;
|
98
|
+
font-weight: bold;
|
99
|
+
}
|
100
|
+
|
101
|
+
.highlight .kp {
|
102
|
+
color: #000000;
|
103
|
+
font-weight: bold;
|
104
|
+
}
|
105
|
+
|
106
|
+
.highlight .kr {
|
107
|
+
color: #000000;
|
108
|
+
font-weight: bold;
|
109
|
+
}
|
110
|
+
|
111
|
+
.highlight .kt {
|
112
|
+
color: #445588;
|
113
|
+
font-weight: bold;
|
114
|
+
}
|
115
|
+
|
116
|
+
.highlight .k,
|
117
|
+
.highlight .kv {
|
118
|
+
color: #000000;
|
119
|
+
font-weight: bold;
|
120
|
+
}
|
121
|
+
|
122
|
+
.highlight .mf {
|
123
|
+
color: #009999;
|
124
|
+
}
|
125
|
+
|
126
|
+
.highlight .mh {
|
127
|
+
color: #009999;
|
128
|
+
}
|
129
|
+
|
130
|
+
.highlight .il {
|
131
|
+
color: #009999;
|
132
|
+
}
|
133
|
+
|
134
|
+
.highlight .mi {
|
135
|
+
color: #009999;
|
136
|
+
}
|
137
|
+
|
138
|
+
.highlight .mo {
|
139
|
+
color: #009999;
|
140
|
+
}
|
141
|
+
|
142
|
+
.highlight .m,
|
143
|
+
.highlight .mb,
|
144
|
+
.highlight .mx {
|
145
|
+
color: #009999;
|
146
|
+
}
|
147
|
+
|
148
|
+
.highlight .sb {
|
149
|
+
color: #d14;
|
150
|
+
}
|
151
|
+
|
152
|
+
.highlight .sc {
|
153
|
+
color: #d14;
|
154
|
+
}
|
155
|
+
|
156
|
+
.highlight .sd {
|
157
|
+
color: #d14;
|
158
|
+
}
|
159
|
+
|
160
|
+
.highlight .s2 {
|
161
|
+
color: #d14;
|
162
|
+
}
|
163
|
+
|
164
|
+
.highlight .se {
|
165
|
+
color: #d14;
|
166
|
+
}
|
167
|
+
|
168
|
+
.highlight .sh {
|
169
|
+
color: #d14;
|
170
|
+
}
|
171
|
+
|
172
|
+
.highlight .si {
|
173
|
+
color: #d14;
|
174
|
+
}
|
175
|
+
|
176
|
+
.highlight .sx {
|
177
|
+
color: #d14;
|
178
|
+
}
|
179
|
+
|
180
|
+
.highlight .sr {
|
181
|
+
color: #009926;
|
182
|
+
}
|
183
|
+
|
184
|
+
.highlight .s1 {
|
185
|
+
color: #d14;
|
186
|
+
}
|
187
|
+
|
188
|
+
.highlight .ss {
|
189
|
+
color: #990073;
|
190
|
+
}
|
191
|
+
|
192
|
+
.highlight .s {
|
193
|
+
color: #d14;
|
194
|
+
}
|
195
|
+
|
196
|
+
.highlight .na {
|
197
|
+
color: #008080;
|
198
|
+
}
|
199
|
+
|
200
|
+
.highlight .bp {
|
201
|
+
color: #999999;
|
202
|
+
}
|
203
|
+
|
204
|
+
.highlight .nb {
|
205
|
+
color: #0086B3;
|
206
|
+
}
|
207
|
+
|
208
|
+
.highlight .nc {
|
209
|
+
color: #445588;
|
210
|
+
font-weight: bold;
|
211
|
+
}
|
212
|
+
|
213
|
+
.highlight .no {
|
214
|
+
color: #008080;
|
215
|
+
}
|
216
|
+
|
217
|
+
.highlight .nd {
|
218
|
+
color: #3c5d5d;
|
219
|
+
font-weight: bold;
|
220
|
+
}
|
221
|
+
|
222
|
+
.highlight .ni {
|
223
|
+
color: #800080;
|
224
|
+
}
|
225
|
+
|
226
|
+
.highlight .ne {
|
227
|
+
color: #990000;
|
228
|
+
font-weight: bold;
|
229
|
+
}
|
230
|
+
|
231
|
+
.highlight .nf {
|
232
|
+
color: #990000;
|
233
|
+
font-weight: bold;
|
234
|
+
}
|
235
|
+
|
236
|
+
.highlight .nl {
|
237
|
+
color: #990000;
|
238
|
+
font-weight: bold;
|
239
|
+
}
|
240
|
+
|
241
|
+
.highlight .nn {
|
242
|
+
color: #555555;
|
243
|
+
}
|
244
|
+
|
245
|
+
.highlight .nt {
|
246
|
+
color: #000080;
|
247
|
+
}
|
248
|
+
|
249
|
+
.highlight .vc {
|
250
|
+
color: #008080;
|
251
|
+
}
|
252
|
+
|
253
|
+
.highlight .vg {
|
254
|
+
color: #008080;
|
255
|
+
}
|
256
|
+
|
257
|
+
.highlight .vi {
|
258
|
+
color: #008080;
|
259
|
+
}
|
260
|
+
|
261
|
+
.highlight .nv {
|
262
|
+
color: #008080;
|
263
|
+
}
|
264
|
+
|
265
|
+
.highlight .ow {
|
266
|
+
color: #000000;
|
267
|
+
font-weight: bold;
|
268
|
+
}
|
269
|
+
|
270
|
+
.highlight .o {
|
271
|
+
color: #000000;
|
272
|
+
font-weight: bold;
|
273
|
+
}
|
274
|
+
|
275
|
+
.highlight .w {
|
276
|
+
color: #bbbbbb;
|
277
|
+
}
|
278
|
+
|
279
|
+
.highlight {
|
280
|
+
background-color: #f8f8f8;
|
281
|
+
}
|
data/_sass/scrawl.scss
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
body {
|
2
|
+
padding: 0 25px;
|
3
|
+
}
|
4
|
+
|
5
|
+
.container {
|
6
|
+
margin: 0 auto;
|
7
|
+
}
|
8
|
+
|
9
|
+
header {
|
10
|
+
width: 270px;
|
11
|
+
float: left;
|
12
|
+
position: fixed;
|
13
|
+
padding-top: 25px;
|
14
|
+
padding-bottom: 25px;
|
15
|
+
overflow-y: auto;
|
16
|
+
height: 100%;
|
17
|
+
}
|
18
|
+
|
19
|
+
header h1 {
|
20
|
+
font-size: 26px;
|
21
|
+
margin-bottom: 8px;
|
22
|
+
}
|
23
|
+
|
24
|
+
header p {
|
25
|
+
margin-bottom: 20px;
|
26
|
+
}
|
27
|
+
|
28
|
+
header ul {
|
29
|
+
font-size: 16px;
|
30
|
+
line-height: 1.5;
|
31
|
+
}
|
32
|
+
|
33
|
+
header ul li {
|
34
|
+
padding: 3px 0;
|
35
|
+
}
|
36
|
+
|
37
|
+
footer {
|
38
|
+
text-align: right;
|
39
|
+
}
|
40
|
+
|
41
|
+
body.fluid {
|
42
|
+
section {
|
43
|
+
left: 295px;
|
44
|
+
position: absolute;
|
45
|
+
right: 0;
|
46
|
+
padding: 25px 25px;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
body.fixed {
|
51
|
+
.container {
|
52
|
+
width: 1012px;
|
53
|
+
}
|
54
|
+
|
55
|
+
section {
|
56
|
+
margin: 0 auto;
|
57
|
+
width: 710px;
|
58
|
+
float: right;
|
59
|
+
padding: 25px 0;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
@media all and (max-width: 960px) {
|
64
|
+
body.fluid, body.fixed {
|
65
|
+
header {
|
66
|
+
border-bottom: 1px solid #dbdddf;
|
67
|
+
}
|
68
|
+
|
69
|
+
.container {
|
70
|
+
width: auto;
|
71
|
+
}
|
72
|
+
|
73
|
+
header, section {
|
74
|
+
float: none;
|
75
|
+
position: static;
|
76
|
+
width: auto;
|
77
|
+
padding: 25px 0;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-scrawl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Matt Light
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-05-08 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.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-github-metadata
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.9'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.9'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-seo-tag
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- matt.light@lightdatasys.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE
|
63
|
+
- README.md
|
64
|
+
- _includes/content.md
|
65
|
+
- _layouts/page.html
|
66
|
+
- _layouts/post.html
|
67
|
+
- _sass/normalize.LICENSE.txt
|
68
|
+
- _sass/normalize.scss
|
69
|
+
- _sass/primer-base.scss
|
70
|
+
- _sass/primer-markdown.scss
|
71
|
+
- _sass/primer.LICENSE.txt
|
72
|
+
- _sass/rouge.scss
|
73
|
+
- _sass/scrawl.scss
|
74
|
+
- assets/css/style.scss
|
75
|
+
homepage: https://github.com/lightster/scrawl
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.6.14
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: Jekyll theme for written
|
99
|
+
test_files: []
|