jekyll-theme-slate 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/default.html +2 -2
- data/_sass/jekyll-theme-slate.scss +56 -7
- data/_sass/rouge-github.scss +7 -7
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50a509ddd4d77bc8e7ee9df93da1b0dff99edc15
|
4
|
+
data.tar.gz: a16ca0cb8d2cea915cc006b1237f4ea72eb742bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 854ad48c4af23392f891e896ac9125f2ae5a5f28fd4a3b082c353bc17196618625d32a3a411fed1f865c2575e1acd68ac199a2b9268ac5f8e4419b05e64e5b75
|
7
|
+
data.tar.gz: 4cdf2ef515caf9bf2e77b8e8758379577acd111e2308c1cc44913fc465a01dbbddc8942f9d4058faa6a99d884c37348722c16c2f056c3d4134eab7d691c98207
|
data/_layouts/default.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
3
|
|
4
4
|
<head>
|
5
5
|
<meta charset='utf-8'>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
11
11
|
|
12
|
-
|
12
|
+
{% seo %}
|
13
13
|
</head>
|
14
14
|
|
15
15
|
<body>
|
@@ -98,7 +98,7 @@ footer p {
|
|
98
98
|
|
99
99
|
a {
|
100
100
|
text-decoration: none;
|
101
|
-
color: #
|
101
|
+
color: #0F79D0;
|
102
102
|
text-shadow: none;
|
103
103
|
|
104
104
|
transition: color 0.5s ease;
|
@@ -113,14 +113,17 @@ a {
|
|
113
113
|
-ms-transition: text-shadow 0.5s ease;
|
114
114
|
}
|
115
115
|
|
116
|
-
a:hover, a:focus {
|
116
|
+
a:hover, a:focus {
|
117
|
+
text-decoration: underline;
|
118
|
+
font-weight:bold;
|
119
|
+
}
|
117
120
|
|
118
121
|
footer a {
|
119
122
|
color: #F2F2F2;
|
120
123
|
text-decoration: underline;
|
121
124
|
}
|
122
125
|
|
123
|
-
em {
|
126
|
+
em, cite {
|
124
127
|
font-style: italic;
|
125
128
|
}
|
126
129
|
|
@@ -153,7 +156,6 @@ p img {
|
|
153
156
|
}
|
154
157
|
|
155
158
|
pre, code {
|
156
|
-
width: 100%;
|
157
159
|
color: #222;
|
158
160
|
background-color: #fff;
|
159
161
|
|
@@ -166,7 +168,6 @@ pre, code {
|
|
166
168
|
}
|
167
169
|
|
168
170
|
pre {
|
169
|
-
width: 100%;
|
170
171
|
padding: 10px;
|
171
172
|
box-shadow: 0 0 10px rgba(0,0,0,.1);
|
172
173
|
overflow: auto;
|
@@ -418,8 +419,56 @@ Small Device Styles
|
|
418
419
|
}
|
419
420
|
|
420
421
|
code, pre {
|
421
|
-
|
422
|
-
|
422
|
+
font-size: 11px;
|
423
|
+
}
|
424
|
+
|
425
|
+
}
|
426
|
+
|
427
|
+
@media screen and (max-width: 320px) {
|
428
|
+
body {
|
429
|
+
font-size:14px;
|
430
|
+
}
|
431
|
+
|
432
|
+
#downloads {
|
433
|
+
display: none;
|
434
|
+
}
|
435
|
+
|
436
|
+
.inner {
|
437
|
+
min-width: 240px;
|
438
|
+
max-width: 320px;
|
439
|
+
}
|
440
|
+
|
441
|
+
#project_title {
|
442
|
+
font-size: 28px;
|
443
|
+
}
|
444
|
+
|
445
|
+
h1 {
|
446
|
+
font-size: 24px;
|
447
|
+
}
|
448
|
+
|
449
|
+
h2 {
|
450
|
+
font-size: 21px;
|
451
|
+
}
|
452
|
+
|
453
|
+
h3 {
|
454
|
+
font-size: 18px;
|
455
|
+
}
|
456
|
+
|
457
|
+
h4 {
|
458
|
+
font-size: 16px;
|
459
|
+
}
|
460
|
+
|
461
|
+
h5 {
|
462
|
+
font-size: 14px;
|
463
|
+
}
|
464
|
+
|
465
|
+
h6 {
|
466
|
+
font-size: 12px;
|
467
|
+
}
|
468
|
+
|
469
|
+
code, pre {
|
470
|
+
min-width: 240px;
|
471
|
+
max-width: 320px;
|
423
472
|
font-size: 11px;
|
424
473
|
}
|
425
474
|
|
data/_sass/rouge-github.scss
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
.highlight table td { padding: 5px; }
|
2
2
|
.highlight table pre { margin: 0; }
|
3
3
|
.highlight .cm {
|
4
|
-
color: #
|
4
|
+
color: #777772;
|
5
5
|
font-style: italic;
|
6
6
|
}
|
7
7
|
.highlight .cp {
|
8
|
-
color: #
|
8
|
+
color: #797676;
|
9
9
|
font-weight: bold;
|
10
10
|
}
|
11
11
|
.highlight .c1 {
|
12
|
-
color: #
|
12
|
+
color: #777772;
|
13
13
|
font-style: italic;
|
14
14
|
}
|
15
15
|
.highlight .cs {
|
16
|
-
color: #
|
16
|
+
color: #797676;
|
17
17
|
font-weight: bold;
|
18
18
|
font-style: italic;
|
19
19
|
}
|
20
20
|
.highlight .c, .highlight .cd {
|
21
|
-
color: #
|
21
|
+
color: #777772;
|
22
22
|
font-style: italic;
|
23
23
|
}
|
24
24
|
.highlight .err {
|
@@ -37,7 +37,7 @@
|
|
37
37
|
color: #aa0000;
|
38
38
|
}
|
39
39
|
.highlight .gh {
|
40
|
-
color: #
|
40
|
+
color: #797676;
|
41
41
|
}
|
42
42
|
.highlight .gi {
|
43
43
|
color: #000000;
|
@@ -144,7 +144,7 @@
|
|
144
144
|
color: #008080;
|
145
145
|
}
|
146
146
|
.highlight .bp {
|
147
|
-
color: #
|
147
|
+
color: #797676;
|
148
148
|
}
|
149
149
|
.highlight .nb {
|
150
150
|
color: #0086B3;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-slate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Costello
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-08-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -17,14 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '3.
|
20
|
+
version: '3.5'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '3.
|
27
|
+
version: '3.5'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: jekyll-seo-tag
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '2.0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '2.0'
|
28
42
|
description:
|
29
43
|
email:
|
30
44
|
- opensource+jekyll-theme-slate@github.com
|