jekyll-theme-console-bulma 1.0.0 → 1.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 791118de68377760f6c5f8dab59eae70066f8c79be535505db2b0dd8e9c1e9ee
|
|
4
|
+
data.tar.gz: db4e9f1e74f1afcca63aaaf6eb879578345250afc84d940ddfc92badc5980c71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31e589d12159c7b0cb4dd54e3d4511142e4d2c1643190a42c646f29eeed2ad246a97386d09b781fcb33ec2db4ef14cebb2a6765301cc27f7ecb777b074825e92
|
|
7
|
+
data.tar.gz: a93eb8733eebd6fc13b1ed137b4eb3da09e0dc42e332275dc3c9ead4daae62e6213b5dfe4d541887f335270186a775ca1d758e56a155d94c34535814560bcb14
|
data/README.md
CHANGED
|
@@ -2,7 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
*Terminal-inspired Jekyll theme. Bulma-powered, retro-styled, hacker-approved.*
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**[Demo: retromatter.github.io/jekyll-theme-console-bulma](https://retromatter.github.io/jekyll-theme-console-bulma)**
|
|
6
|
+
|
|
7
|
+
| Light | Dark |
|
|
8
|
+
|-------|------|
|
|
9
|
+
|  |  |
|
|
10
|
+
|
|
11
|
+
| Hacker | Nord |
|
|
12
|
+
|--------|------|
|
|
13
|
+
|  |  |
|
|
6
14
|
|
|
7
15
|
## Installation
|
|
8
16
|
|
|
@@ -8,7 +8,9 @@ body {
|
|
|
8
8
|
min-height: 100vh;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
h1, h2, h3, h4, h5, h6, .title, .subtitle
|
|
11
|
+
h1, h2, h3, h4, h5, h6, .title, .subtitle,
|
|
12
|
+
.content h1, .content h2, .content h3,
|
|
13
|
+
.content h4, .content h5, .content h6 {
|
|
12
14
|
color: var(--text-color);
|
|
13
15
|
font-family: inherit;
|
|
14
16
|
font-weight: bold;
|
|
@@ -97,3 +97,21 @@ code {
|
|
|
97
97
|
.content strong {
|
|
98
98
|
color: inherit;
|
|
99
99
|
}
|
|
100
|
+
|
|
101
|
+
.content blockquote {
|
|
102
|
+
background-color: var(--background-color);
|
|
103
|
+
border-left-color: var(--base-color);
|
|
104
|
+
color: var(--text-color);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.content table thead th,
|
|
108
|
+
.content table thead td {
|
|
109
|
+
color: var(--text-color);
|
|
110
|
+
border-color: var(--base-color);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.content table td,
|
|
114
|
+
.content table th {
|
|
115
|
+
color: var(--text-color);
|
|
116
|
+
border-color: var(--base-color);
|
|
117
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
1
|
+
@import "jekyll-theme-console-bulma/variables";
|
|
2
|
+
@import "jekyll-theme-console-bulma/base";
|
|
3
|
+
@import "jekyll-theme-console-bulma/layout";
|
|
4
|
+
@import "jekyll-theme-console-bulma/components";
|
data/assets/main.scss
CHANGED