jekyll-theme-minimalistic 0.2.21 → 0.3.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/_layouts/default.html +3 -0
- data/_sass/colors.scss +36 -34
- data/_sass/jekyll-theme-minimalistic.scss +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d439c70965fcf9fc824632fc3dfad9a5dffc50ec137a710379970333c54a125
|
4
|
+
data.tar.gz: '08b5218c748769a6c9a5bdda1d6904c7e3e43282602b6b0a9659c79b56db890d'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5a87d2b8147a2115bd3b289ed0b69836f3f4569e669e6dad834216407ed0349da11b6165aaf55ecee89ab10a2a4e7b1779c5997640538e26a75da3c81bfb4f9
|
7
|
+
data.tar.gz: 4295482129c13ffb4e1c4b75e580ef11742f0d0491b273728c8aff44b3c900fa08fda8d5878df7e72044a8162e36afb51cae98ef9cade8db95108c73635c3845
|
data/_layouts/default.html
CHANGED
data/_sass/colors.scss
CHANGED
@@ -35,10 +35,10 @@ hvr -> hover
|
|
35
35
|
|
36
36
|
@mixin colors {
|
37
37
|
// buttons
|
38
|
-
--L-a-text-hover-change: 0.8
|
38
|
+
--L-a-text-hover-change: 0.8;
|
39
39
|
--clr-a-text: hsl(200, 100%, var(--L-a-text));
|
40
40
|
--clr-a-text-hvr: hsl(200, 100%, calc(var(--L-a-text) * var(--L-a-text-hover-change)));
|
41
|
-
--clr-buttons-main-bg: hsl(0, 0%, var(--L-buttons-main-bg))
|
41
|
+
--clr-buttons-main-bg: hsl(0, 0%, var(--L-buttons-main-bg));
|
42
42
|
--clr-buttons-main-border: hsl(0, 0%, var(--L-buttons-main-border));
|
43
43
|
--clr-buttons-main-text: hsl(0, 0%, var(--L-buttons-main-text));
|
44
44
|
--clr-buttons-main-text-hover: hsl(0, 6%, var(--L-buttons-main-text-hover));
|
@@ -55,16 +55,17 @@ hvr -> hover
|
|
55
55
|
//kbd these are keyboard shortcuts eg <kbd>CMD+R</kbd>
|
56
56
|
--clr-kbd-bg: hsl(210, 25%, var(--L-kbd-bg));
|
57
57
|
--clr-kbd-border: hsl(212.7, 10.7%, var(--L-kbd-border));
|
58
|
-
--clr-kbd-border-bottom-and-shadow: hsl(210, 8.2%, var(--L-kbd-border-bottom-and-shadow))
|
58
|
+
--clr-kbd-border-bottom-and-shadow: hsl(210, 8.2%, var(--L-kbd-border-bottom-and-shadow));
|
59
59
|
--clr-kbd-text: hsl(210, 11.7%, var(--L-kbd-text));
|
60
60
|
// miscellaneous
|
61
61
|
--clr-bg: hsl(0, 0%, var(--L-bg));//the bg of the page
|
62
|
-
--clr-splitter-blockquote-and-section: hsl(0, 0%, var(--L-splitter-blockquote-and-section))
|
63
|
-
--clr-small-in-a: hsl(0, 0%, var(--L-small-in-a))
|
64
|
-
--clr-table-header-and-dt: hsl(0, 0%, var(--L-table-header-and-dt));
|
62
|
+
--clr-splitter-blockquote-and-section: hsl(0, 0%, var(--L-splitter-blockquote-and-section));
|
63
|
+
--clr-small-in-a: hsl(0, 0%, var(--L-small-in-a));
|
64
|
+
--clr-table-header-and-dt: hsl(0, 0%, var(--L-table-header-and-dt));
|
65
65
|
}
|
66
66
|
|
67
67
|
@mixin light-colors {
|
68
|
+
color-scheme: light;
|
68
69
|
// buttons
|
69
70
|
--L-a-text: 35%;
|
70
71
|
--L-buttons-main-bg: 96%;
|
@@ -89,36 +90,37 @@ hvr -> hover
|
|
89
90
|
--L-kbd-text: 30%;
|
90
91
|
// miscellaneous
|
91
92
|
--L-bg: 100%;
|
92
|
-
--L-splitter-blockquote-and-section: 90
|
93
|
+
--L-splitter-blockquote-and-section: 90%;
|
93
94
|
--L-small-in-a: 47%;
|
94
|
-
--L-table-header-and-dt: 27%;
|
95
|
+
--L-table-header-and-dt: 27%;
|
95
96
|
}
|
96
97
|
|
97
98
|
@mixin dark-colors {
|
98
|
-
|
99
|
-
|
100
|
-
--L-
|
101
|
-
--L-buttons-main-
|
102
|
-
--L-buttons-main-
|
103
|
-
--L-buttons-main-text
|
104
|
-
|
105
|
-
|
106
|
-
--L-
|
107
|
-
--L-
|
108
|
-
--L-
|
109
|
-
|
110
|
-
|
111
|
-
--L-code-
|
112
|
-
--L-code-
|
113
|
-
--L-code-
|
114
|
-
|
115
|
-
|
116
|
-
--L-kbd-
|
117
|
-
--L-kbd-border
|
118
|
-
--L-kbd-
|
119
|
-
|
120
|
-
|
121
|
-
--L-
|
122
|
-
--L-
|
123
|
-
--L-
|
99
|
+
color-scheme: dark;
|
100
|
+
// buttons
|
101
|
+
--L-a-text: 60%;
|
102
|
+
--L-buttons-main-bg: 17%;
|
103
|
+
--L-buttons-main-border: 26%;
|
104
|
+
--L-buttons-main-text: 76%;
|
105
|
+
--L-buttons-main-text-hover: 80%;
|
106
|
+
// headers + text
|
107
|
+
--L-h1-and-bold: 90%;
|
108
|
+
--L-h2: 83%;
|
109
|
+
--L-h-3-6: 76%;
|
110
|
+
--L-text: 70%;
|
111
|
+
// code blocks
|
112
|
+
--L-code-text: 80%;
|
113
|
+
--L-code-bg: 3%;
|
114
|
+
--L-code-border: 5%;
|
115
|
+
--L-code-bold-text: 100%;
|
116
|
+
//kbd these are keyboard shortcuts eg <kbd>CMD+R</kbd>
|
117
|
+
--L-kbd-bg: 30%;
|
118
|
+
--L-kbd-border: 45%;
|
119
|
+
--L-kbd-border-bottom-and-shadow: 55%;
|
120
|
+
--L-kbd-text: 100%;
|
121
|
+
// miscellaneous
|
122
|
+
--L-splitter-blockquote-and-section: 15%;
|
123
|
+
--L-bg: 10%;
|
124
|
+
--L-small-in-a: 60%;
|
125
|
+
--L-table-header-and-dt: 90%;
|
124
126
|
}
|
@@ -181,6 +181,10 @@ section {
|
|
181
181
|
padding-bottom:30px;
|
182
182
|
}
|
183
183
|
|
184
|
+
footer {
|
185
|
+
display: none;
|
186
|
+
}
|
187
|
+
|
184
188
|
small {
|
185
189
|
font-size:11px;
|
186
190
|
}
|
@@ -242,6 +246,10 @@ hr {
|
|
242
246
|
display: none;
|
243
247
|
}
|
244
248
|
|
249
|
+
footer {
|
250
|
+
display: initial;
|
251
|
+
}
|
252
|
+
|
245
253
|
div.wrapper {
|
246
254
|
width:auto;
|
247
255
|
margin:0;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-minimalistic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vaibhav Vikas
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-07-
|
12
|
+
date: 2022-07-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|