hitchens-theme 0.4.1 → 0.5.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 +4 -4
- data/README.md +2 -4
- data/_sass/_footnotes.scss +35 -0
- data/assets/css/main.scss +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a071cff5270aca2b7c2fea9d848789d5a86cb8b
|
4
|
+
data.tar.gz: 7987ed8efbac19c71532d200cc338eff96575481
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2c5e9d01aae90e8d685c69ff3112a44f5421a719327fe6b17243097aca09e7c71303b77f0848f423e471b09c8071a90795b2f8d407daf6fa56d77a9817ac5a1
|
7
|
+
data.tar.gz: 5768360a3fc73155b3d10986470ec8afe411f751ba403c457f2c86ad15286801283e3dae82cddb68b282596c84309af9b733000ac347fa98610596dd8da3c825
|
data/README.md
CHANGED
@@ -15,9 +15,7 @@ This theme is, itself, a Jekyll blog, meaning the code base you see has everythi
|
|
15
15
|
|
16
16
|
To get started quickly, follow the instructions below:
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
1. Click the `Fork` button above;
|
18
|
+
1. Click the `Fork` button at the top of [the repository](https://github.com/patdryburgh/hitchens/);
|
21
19
|
2. Go to your forked repo's `Settings` screen;
|
22
20
|
3. Scroll down to the `GitHub Pages` section;
|
23
21
|
4. Under `Source`, select the `Master` branch;
|
@@ -184,4 +182,4 @@ The code for this theme is available as open source under the terms of the [MIT
|
|
184
182
|
|
185
183
|
The font, EB Garamond, is Copyright 2017 The EB Garamond Project Authors and licensed under the [SIL Open Font License Version 1.1](https://github.com/patdryburgh/hitchens/blob/master/assets/fonts/OFL.txt).
|
186
184
|
|
187
|
-
Graphics are released to the public domain.
|
185
|
+
Graphics are released to the public domain.
|
@@ -0,0 +1,35 @@
|
|
1
|
+
.footnote {
|
2
|
+
border: 1px solid $muted-text-color;
|
3
|
+
border-radius: 1em;
|
4
|
+
color: $text-color;
|
5
|
+
display: inline;
|
6
|
+
font-size: .75em;
|
7
|
+
font-weight: 700;
|
8
|
+
padding: 0 .75em;
|
9
|
+
text-decoration: none;
|
10
|
+
margin: 0 .25em;
|
11
|
+
&:hover,
|
12
|
+
&:focus {
|
13
|
+
background: $brand-color;
|
14
|
+
border-color: $brand-color;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
.footnotes::before {
|
19
|
+
content: '';
|
20
|
+
@include divider;
|
21
|
+
margin: 4em auto;
|
22
|
+
}
|
23
|
+
|
24
|
+
.footnotes {
|
25
|
+
margin-bottom: 4em;
|
26
|
+
}
|
27
|
+
|
28
|
+
.footnotes li {
|
29
|
+
margin-bottom: 1em;
|
30
|
+
}
|
31
|
+
|
32
|
+
.reversefootnote {
|
33
|
+
font-size: .75em;
|
34
|
+
opacity: .75;
|
35
|
+
}
|
data/assets/css/main.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hitchens-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Dryburgh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -74,6 +74,7 @@ files:
|
|
74
74
|
- _sass/_article.scss
|
75
75
|
- _sass/_base.scss
|
76
76
|
- _sass/_font.scss
|
77
|
+
- _sass/_footnotes.scss
|
77
78
|
- _sass/_masthead.scss
|
78
79
|
- _sass/_menu.scss
|
79
80
|
- _sass/_mixins.scss
|