jekyll-theme-amethyst 2.1.3 → 2.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/_sass/amethyst.scss +20 -1
- data/assets/styles.scss +4 -3
- metadata +2 -3
- data/_sass/amethyst-variables-all.scss +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33f7b0f9d251222c85f49f4af58db521600c1181d7e48b2ae10909cae943d7c1
|
4
|
+
data.tar.gz: 6266b78cf47fca3f3f8004f5e014e2b264d0aa7e2ea7f64952162b15c90a0ea4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e727632a049809d4f346d2d9cf89fc13a21e6428f87cb4b806edda1765be44611abff2c05d470902510d2099dee40bb234439169692fe08eb2d3adcbb532a4a1
|
7
|
+
data.tar.gz: a2f951769200180f3e5159c63af66641c8155b45ceeef2fb3e21d74b86643ebb3c4ed297dc23a899dd27f18c1b37e3235aa289a0f5186a2a88130d8699511147
|
data/_sass/amethyst.scss
CHANGED
@@ -2,10 +2,29 @@
|
|
2
2
|
|
3
3
|
// Amethyst theme for Jekyll
|
4
4
|
|
5
|
-
@use "amethyst-variables-all" as *;
|
6
5
|
@use "sass:color";
|
7
6
|
@use "sass:string";
|
8
7
|
|
8
|
+
$size-sm: 0.8rem;
|
9
|
+
$size-1: 1rem;
|
10
|
+
$size-2: 1.333rem;
|
11
|
+
$size-3: 1.777rem;
|
12
|
+
$size-4: 2.369rem;
|
13
|
+
$size-5: 3.157rem;
|
14
|
+
$size-spacing: $size-2;
|
15
|
+
$box-spacing: $size-1;
|
16
|
+
|
17
|
+
$color-white: #fff;
|
18
|
+
$color-light: #f4f4f4;
|
19
|
+
$color-off-white: #cdcdcd;
|
20
|
+
$color-darkgrey: #63676d; // based on 2015 api.jquery.com design
|
21
|
+
$color-black: #333;
|
22
|
+
|
23
|
+
$screen-s: 480px;
|
24
|
+
$screen-m: 768px;
|
25
|
+
$screen-l: 992px;
|
26
|
+
$screen-xl: 1200px;
|
27
|
+
|
9
28
|
* {
|
10
29
|
box-sizing: border-box;
|
11
30
|
}
|
data/assets/styles.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-amethyst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Tijhof
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-01-
|
12
|
+
date: 2025-01-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -124,7 +124,6 @@ files:
|
|
124
124
|
- _layouts/posts-year.html
|
125
125
|
- _layouts/posts.html
|
126
126
|
- _layouts/wrapper.html
|
127
|
-
- _sass/amethyst-variables-all.scss
|
128
127
|
- _sass/amethyst-variables.scss
|
129
128
|
- _sass/amethyst.scss
|
130
129
|
- _sass/custom.scss
|
@@ -1,21 +0,0 @@
|
|
1
|
-
@forward "amethyst-variables";
|
2
|
-
|
3
|
-
$size-sm: 0.8rem;
|
4
|
-
$size-1: 1rem;
|
5
|
-
$size-2: 1.333rem;
|
6
|
-
$size-3: 1.777rem;
|
7
|
-
$size-4: 2.369rem;
|
8
|
-
$size-5: 3.157rem;
|
9
|
-
$size-spacing: $size-2;
|
10
|
-
$box-spacing: $size-1;
|
11
|
-
|
12
|
-
$color-white: #fff;
|
13
|
-
$color-light: #f4f4f4;
|
14
|
-
$color-off-white: #cdcdcd;
|
15
|
-
$color-darkgrey: #63676d; // based on 2015 api.jquery.com design
|
16
|
-
$color-black: #333;
|
17
|
-
|
18
|
-
$screen-s: 480px;
|
19
|
-
$screen-m: 768px;
|
20
|
-
$screen-l: 992px;
|
21
|
-
$screen-xl: 1200px;
|