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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 149f4387f6cb1af4610bf78d61fc768ae2ed050eb145edb3e731c0d96f499292
4
- data.tar.gz: 3efbb5a5318d2fe65f89d8f25db5398ffe0d1c5adc5121af2131ed08b39413f1
3
+ metadata.gz: 33f7b0f9d251222c85f49f4af58db521600c1181d7e48b2ae10909cae943d7c1
4
+ data.tar.gz: 6266b78cf47fca3f3f8004f5e014e2b264d0aa7e2ea7f64952162b15c90a0ea4
5
5
  SHA512:
6
- metadata.gz: fd625e247ad90c15fc53fda64ec01b5010f4af4cff390f94fefed06a2b6be3d8447fe16a2302791f7612638981e174c718643f25ae80fbdcc76665a67ae6e447
7
- data.tar.gz: 80cdcc7f7fcf14bae42a2f446c4a16eb11d4719478785f80a61fadcda637800ecd2a60ef6bb58fabc5b7a82da222bda4998308dbbe54e9c01806fb62649a624d
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
@@ -3,6 +3,7 @@
3
3
 
4
4
  @use "typesense-minibar.css";
5
5
 
6
- @use "amethyst";
7
- @use "highlight";
8
- @use "custom";
6
+ @import "amethyst-variables";
7
+ @import "amethyst";
8
+ @import "highlight";
9
+ @import "custom";
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.3
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-15 00:00:00.000000000 Z
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;