jekyll-theme-hamilton 0.2.0 → 0.2.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.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/_sass/hamilton/base.scss +2 -3
- data/_sass/hamilton/skin.scss +2 -3
- data/_sass/hamilton/skins/daylight.scss +1 -1
- data/_sass/hamilton/skins/midnight.scss +1 -1
- data/_sass/hamilton/skins/sunrise.scss +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f249693147fe84b3daec97be5eced96d45f3f8bd49bb539232e37928d54546a
|
4
|
+
data.tar.gz: 83e131e6b92b3e83e7249f4b945fb68bd7a263fba27a391a4f13e41307d50979
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d3342f2f17ce90b1e2ebc310ddf45b8978b181d94be59ab2e0937b6877b7ca52a0f224ee4a20d6cfd3202ced9a60898ff8b5620c1d2c4e26672d33630176a8a
|
7
|
+
data.tar.gz: e5099f913e02e14f47a961f086437cc2b6a18a2708c049a983be665003c436f0375ddf1edab2e26dcba9124a4e2c952bbce2ef2d514b71ebbae56f02c1e610d0
|
data/README.md
CHANGED
@@ -4,7 +4,9 @@ Another minimal style of Jekyll theme for writers. The original purpose of this
|
|
4
4
|
|
5
5
|
Please check out the [demo](https://ngzhio.github.io/jekyll-theme-hamilton/).
|
6
6
|
|
7
|
-
|
7
|
+
| Daylight | Sunrise/Sunset | Midnight |
|
8
|
+
| --- | --- | --- |
|
9
|
+
|  |  | 
|
8
10
|
|
9
11
|
## Features <!-- omit in toc -->
|
10
12
|
|
data/_sass/hamilton/base.scss
CHANGED
@@ -100,8 +100,8 @@ a {
|
|
100
100
|
* Blockquotes
|
101
101
|
*/
|
102
102
|
blockquote {
|
103
|
-
border-left: 0.
|
104
|
-
padding: $spacing-unit;
|
103
|
+
border-left: 0.1em solid;
|
104
|
+
padding-left: $spacing-unit;
|
105
105
|
font-style: italic;
|
106
106
|
|
107
107
|
> :last-child {
|
@@ -128,7 +128,6 @@ code {
|
|
128
128
|
}
|
129
129
|
|
130
130
|
pre {
|
131
|
-
border: 1px solid;
|
132
131
|
padding: 8px 12px;
|
133
132
|
overflow-x: auto;
|
134
133
|
|
data/_sass/hamilton/skin.scss
CHANGED
@@ -18,9 +18,8 @@ a {
|
|
18
18
|
}
|
19
19
|
|
20
20
|
blockquote {
|
21
|
-
background-color: $border-color-light;
|
22
21
|
color: $text-color-light;
|
23
|
-
border-left-color: $border-color;
|
22
|
+
border-left-color: $border-color-light;
|
24
23
|
}
|
25
24
|
|
26
25
|
pre,
|
@@ -29,7 +28,7 @@ code {
|
|
29
28
|
}
|
30
29
|
|
31
30
|
pre {
|
32
|
-
|
31
|
+
box-shadow: $box-shadow;
|
33
32
|
}
|
34
33
|
|
35
34
|
.highlight {
|
@@ -16,7 +16,7 @@ $table-header-bg-color: mix($background-color, $border-color, 80%) !default;
|
|
16
16
|
$table-header-border: $border-color !default;
|
17
17
|
$table-border-color: lighten($border-color, 20%) !default;
|
18
18
|
|
19
|
-
$box-shadow: 0
|
19
|
+
$box-shadow: 0 0 4px rgba(17,17,17,0.4) inset !default;
|
20
20
|
|
21
21
|
$subscribe-color: #b21000 !default;
|
22
22
|
|
@@ -16,7 +16,7 @@ $table-header-bg-color: mix($background-color, $border-color-light, 5%) !default
|
|
16
16
|
$table-header-border: lighten($border-color, 30%) !default;
|
17
17
|
$table-border-color: lighten($border-color, 20%) !default;
|
18
18
|
|
19
|
-
$box-shadow: 0
|
19
|
+
$box-shadow: 0 0 4px rgba(255,255,255,0.4) inset !default;
|
20
20
|
|
21
21
|
$subscribe-color: tomato !default;
|
22
22
|
|
@@ -16,7 +16,7 @@ $table-header-bg-color: mix($background-color, $border-color, 70%) !default;
|
|
16
16
|
$table-header-border: $border-color !default;
|
17
17
|
$table-border-color: $border-color-light !default;
|
18
18
|
|
19
|
-
$box-shadow: 0
|
19
|
+
$box-shadow: 0 0 4px rgba(34,34,34,0.4) inset !default;
|
20
20
|
|
21
21
|
$subscribe-color: #004e00 !default;
|
22
22
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-hamilton
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shangzhi Huang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -96,7 +96,7 @@ dependencies:
|
|
96
96
|
version: '12.0'
|
97
97
|
description:
|
98
98
|
email:
|
99
|
-
- ngzhio@
|
99
|
+
- ngzhio@gmail.com
|
100
100
|
executables: []
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|