jekyll-theme-minimalistic 0.2.3 → 0.2.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/colors.scss +34 -36
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 389bfe7d6f421b991da016d9ec8820c689f9a056875b998646fe79768245904e
4
- data.tar.gz: 0fdcc7100e91cce02ff00512ce45fe7291bc80762edd837685c3f8a57d1a6879
3
+ metadata.gz: 62ff952272c4b5040429c5c55d5a380d23e88d8ecbbebe8e9c466ac5b9bf9600
4
+ data.tar.gz: 3b714214e06229e5dc9dcded405a10bcd2948be5120acd593e58961cab659430
5
5
  SHA512:
6
- metadata.gz: bc3427a49c4efe2f39d0b41b27cf9228eec43e50a66df60666e71f585027f92c53b2d6926d25dc2fc5013a90897f44ba2322a2a7ea6cb466063461cd80a7bc82
7
- data.tar.gz: 0dfed0f4fa8e87503da3a1bb850350ac55c149e21a06903db243cdf445a1a64ca8ecef3620cea15cdd2eadc2def2cad7c57fd70e13f8eab9a56b4fdd736113f4
6
+ metadata.gz: aeba33c32b851a072cb02712f863fdfd853393d06d7f58a2584b6540ef744ae7cd5a9f7fbac97414af20ac1433edea137fbdb2c4401014baaa3f163073175676
7
+ data.tar.gz: cf52bbc5c0b2972a523bf2a0bfd78f8cfa8f6cd1b220559fe691b826c4602dce54bc0c2b6532502e599fcd43781ba63cfd68feff335d1c75d42997d5c688366c
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;//the number that --L-a-text gets changed by when it is hovered eg a button has 30% luminosity when left it luminosity is then timesed by 0.8 when the button is hovered
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));//the buttons in the main section at the top titled "download zip" "download tarbell" "veiw on github"
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,17 +55,16 @@ 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));// akbd elemnts border bottom and its shadow color
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));//a color for the lines that split tables, appear on the left pf blockquotes and mark new sections
63
+ --clr-small-in-a: hsl(0, 0%, var(--L-small-in-a));//the color for small elements in a's this color is used on the veiw on github button above the download buttons
64
+ --clr-table-header-and-dt: hsl(0, 0%, var(--L-table-header-and-dt)); //more info on dt's https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_dd_test
65
65
  }
66
66
 
67
67
  @mixin light-colors {
68
- color-scheme: light;
69
68
  // buttons
70
69
  --L-a-text: 35%;
71
70
  --L-buttons-main-bg: 96%;
@@ -90,37 +89,36 @@ hvr -> hover
90
89
  --L-kbd-text: 30%;
91
90
  // miscellaneous
92
91
  --L-bg: 100%;
93
- --L-splitter-blockquote-and-section: 90%;
92
+ --L-splitter-blockquote-and-section: 90%;//for elements like hr + blockquote
94
93
  --L-small-in-a: 47%;
95
- --L-table-header-and-dt: 27%;
94
+ --L-table-header-and-dt: 27%; //more on dt's https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_dd_test
96
95
  }
97
96
 
98
97
  @mixin dark-colors {
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%;
98
+ // buttons
99
+ --L-a-text: 60%;
100
+ --L-buttons-main-bg: 17%;
101
+ --L-buttons-main-border: 26%;
102
+ --L-buttons-main-text: 76%;
103
+ --L-buttons-main-text-hover: 80%;
104
+ // headers + text
105
+ --L-h1-and-bold: 90%;
106
+ --L-h2: 83%;
107
+ --L-h-3-6: 76%;
108
+ --L-text: 70%;
109
+ // code blocks
110
+ --L-code-text: 80%;
111
+ --L-code-bg: 3%;
112
+ --L-code-border: 5%;
113
+ --L-code-bold-text: 100%;
114
+ //kbd these are keyboard shortcuts eg <kbd>CMD+R</kbd>
115
+ --L-kbd-bg: 30%;
116
+ --L-kbd-border: 45%;
117
+ --L-kbd-border-bottom-and-shadow: 55%;
118
+ --L-kbd-text: 100%;
119
+ // miscellaneous
120
+ --L-splitter-blockquote-and-section: 15%;// for elements like hr and blockquote
121
+ --L-bg: 10%;
122
+ --L-small-in-a: 60%;
123
+ --L-table-header-and-dt: 90%;
126
124
  }
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.2.3
4
+ version: 0.2.21
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-02 00:00:00.000000000 Z
12
+ date: 2022-07-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll