jekyll-whiteglass 1.11.5 → 1.11.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/_sass/whiteglass/_base.scss +3 -1
- data/_sass/whiteglass.scss +4 -2
- data/assets/main.scss +3 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4aad3b5daba9e9f0dc9f4968b896e9d4c72217337b67b86b29a44a6bd6f46f3
|
4
|
+
data.tar.gz: 5c639ed7c650c86c8ecec1eb0d1d3a18094a7bbaeee9e303769500f3cba42cfc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 248849df1141ff0370b978dc21b6a163ca5b99ca620e30ffdde53bb5d3766349b15114369f4d012fc1ac42211b09463dde9f96b10249dd66a48139eac4ddf380
|
7
|
+
data.tar.gz: 18e68f980b135d4676ed14eacfc995f029b0af12db41fbce89e0f163bb44f5ecb1bcb403a4c077f54afcff2b3b5b319ce5148d96b8537558294a16292a459fe7
|
data/CHANGELOG.md
CHANGED
data/_sass/whiteglass/_base.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "sass:color";
|
2
|
+
|
1
3
|
/**
|
2
4
|
* Reset some basic elements
|
3
5
|
*/
|
@@ -110,7 +112,7 @@ a {
|
|
110
112
|
text-decoration: none;
|
111
113
|
|
112
114
|
&:visited {
|
113
|
-
color:
|
115
|
+
color: color.adjust($brand-color, $lightness: -10%);
|
114
116
|
}
|
115
117
|
|
116
118
|
&:hover {
|
data/_sass/whiteglass.scss
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
@use "sass:color";
|
2
|
+
|
1
3
|
// Define defaults for each variable.
|
2
4
|
$base-font-family: Bitter, "Apple SD Gothic Neo", "Noto Sans", "Source Han Sans", "Noto Sans CJK JP", "Source Han Sans JP", "Noto Sans CJK KR", "Source Han Sans KR", NanumBarunGothic, AppleGothic, "Malgun Gothic", Dotum, sans-serif !default;
|
3
5
|
$monospace-font-family: Monaco, Menlo, Consolas, "Courier New", DotumChe, monospace !default;
|
@@ -13,8 +15,8 @@ $background-color: #fdfdfd !default;
|
|
13
15
|
$brand-color: #2568ba !default;
|
14
16
|
|
15
17
|
$grey-color: #757575 !default;
|
16
|
-
$grey-color-light:
|
17
|
-
$grey-color-dark:
|
18
|
+
$grey-color-light: color.adjust($grey-color, $lightness: 45%) !default;
|
19
|
+
$grey-color-dark: color.adjust($grey-color, $lightness: -20%) !default;
|
18
20
|
|
19
21
|
// Width of the content area
|
20
22
|
$content-width: 800px !default;
|
data/assets/main.scss
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Only the main Sass file needs front matter (the dashes are enough)
|
3
3
|
---
|
4
4
|
@charset "utf-8";
|
5
|
+
@use "sass:color";
|
5
6
|
|
6
7
|
// Our variables
|
7
8
|
$base-font-family: Bitter, "Apple SD Gothic Neo", AppleGothic, NanumBarunGothic, "Malgun Gothic", Dotum, sans-serif;
|
@@ -18,8 +19,8 @@ $background-color: #fdfdfd;
|
|
18
19
|
$brand-color: #2568ba;
|
19
20
|
|
20
21
|
$grey-color: #757575;
|
21
|
-
$grey-color-light:
|
22
|
-
$grey-color-dark:
|
22
|
+
$grey-color-light: color.adjust($grey-color, $lightness: 45%);
|
23
|
+
$grey-color-dark: color.adjust($grey-color, $lightness: -20%);
|
23
24
|
|
24
25
|
// Width of the content area
|
25
26
|
$content-width: 800px;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-whiteglass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
4
|
+
version: 1.11.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chayoung You
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
152
|
- !ruby/object:Gem::Version
|
153
153
|
version: '0'
|
154
154
|
requirements: []
|
155
|
-
rubygems_version: 3.5.
|
155
|
+
rubygems_version: 3.5.16
|
156
156
|
signing_key:
|
157
157
|
specification_version: 4
|
158
158
|
summary: Minimal, responsive Jekyll theme for hackers.
|