jekyll-theme-dusk 0.4.1 → 0.5.2

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-dusk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Parmjot Singh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-11 00:00:00.000000000 Z
11
+ date: 2024-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -30,6 +30,26 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '5.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: json
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">"
38
+ - !ruby/object:Gem::Version
39
+ version: '0.1'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '9.9'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">"
48
+ - !ruby/object:Gem::Version
49
+ version: '0.1'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '9.9'
33
53
  description:
34
54
  email:
35
55
  - parmjotsinghrobot@gmail.com
@@ -56,10 +76,19 @@ files:
56
76
  - _sass/base.scss
57
77
  - _sass/css-reset.scss
58
78
  - _sass/device-support.scss
59
- - _sass/fonts.scss
60
- - _sass/include.scss
61
- - _sass/layout.scss
79
+ - _sass/text.scss
80
+ - _sass/variables.scss
62
81
  - assets/css/styles.scss
82
+ - assets/fonts/Chivo_Mono/ChivoMono-Italic-VariableFont_wght.woff
83
+ - assets/fonts/Chivo_Mono/ChivoMono-Italic-VariableFont_wght.woff2
84
+ - assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff
85
+ - assets/fonts/Chivo_Mono/ChivoMono-VariableFont_wght.woff2
86
+ - assets/fonts/Chivo_Mono/OFL.txt
87
+ - assets/fonts/Titillium_Web/OFL.txt
88
+ - assets/fonts/Titillium_Web/TitilliumWeb-Italic-VF.woff
89
+ - assets/fonts/Titillium_Web/TitilliumWeb-Italic-VF.woff2
90
+ - assets/fonts/Titillium_Web/TitilliumWeb-VF.woff
91
+ - assets/fonts/Titillium_Web/TitilliumWeb-VF.woff2
63
92
  - assets/images/about-icon.png
64
93
  - assets/images/blog-icon.png
65
94
  - assets/images/cross.png
data/_sass/fonts.scss DELETED
@@ -1,18 +0,0 @@
1
- /* Fonts */
2
- /* Display */
3
- @import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap');
4
-
5
- /* Content */
6
- @import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap');
7
-
8
- /* Symbols */
9
- @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
10
-
11
- /* symbols font config */
12
- .material-symbols-outlined {
13
- font-variation-settings:
14
- 'FILL' 1,
15
- 'wght' 400,
16
- 'GRAD' 0,
17
- 'opsz' 48;
18
- }
data/_sass/include.scss DELETED
@@ -1,175 +0,0 @@
1
- /* _include file formatting */
2
- /* header-home.html */
3
- .home { /* this is to make sure that this code only affects the header-home.html file, and none of the other headers. */
4
- header {
5
- display: block;
6
- height: 50vh;
7
- text-align: center;
8
- /* parallax effect in background */
9
- background-image: url("/assets/images/dusk-gray.jpg");
10
- background-repeat: no-repeat;
11
- background-attachment: fixed;
12
- background-position: center;
13
- background-size: cover;
14
-
15
- /* center content in header */
16
- position: relative;
17
- }
18
-
19
- #header-content {
20
- display: inline-flex;
21
- flex-direction: column;
22
- width: 50%;
23
- /* center content in header */
24
- margin: 0;
25
- position: absolute;
26
- top: 50%;
27
- left: 50%;
28
- transform: translate(-50%, -50%);
29
-
30
- h1 {
31
- font-size: min(max(3rem, 9vw), 70px);
32
- }
33
- }
34
- }
35
- #why {/* container around .b2b-container div. Button doesn't look correct without this for some reason, hence the name #why */
36
- display: flex;
37
- flex-direction: row;
38
- justify-content: flex-start;
39
- }
40
-
41
- .b2b-container {
42
- display: inline-flex;
43
- justify-content: center;
44
- width: 120px;
45
- margin: 0;
46
- padding: 0;
47
-
48
- border: 1px solid rgba(255, 255, 255, 0.2);
49
- border-radius: 4px;
50
- }
51
-
52
- .b2b-container:hover {
53
- background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
54
- }
55
-
56
- .b2b-icon-container {
57
- position: relative;
58
- height: 100%;
59
- aspect-ratio: 1/1;
60
-
61
- img {
62
- padding: 15%;
63
- position: absolute;
64
- }
65
- }
66
-
67
- /* header-default.html */
68
- header {
69
- display: block;
70
- height: 30vh;
71
-
72
- /* parallax effect in background */
73
- background-image: url("/assets/images/dusk-gray.jpg");
74
- background-repeat: no-repeat;
75
- background-attachment: fixed;
76
- background-position: center;
77
- background-size: cover;
78
-
79
- /* center content in header */
80
- position: relative;
81
- }
82
-
83
- #header-content {
84
- display: block;
85
- width: 80vw;
86
- /* center content in header */
87
- margin: 0;
88
- position: absolute;
89
- top: 50%;
90
- left: 50%;
91
- transform: translate(-50%, -50%);
92
- }
93
-
94
- /* navigation.html */
95
- .sidenav {
96
- height: 100%;
97
- width: 0; /* changed with JavaScript */
98
- position: fixed;
99
- z-index: 2;
100
- top: 0;
101
- right: 0;
102
- overflow-x: hidden;
103
- transition: 0.5s;
104
-
105
- text-align: center;
106
- background-color: rgba(0, 0, 0, 0.6);
107
-
108
- a {
109
- display: flex;
110
- justify-content: space-between;
111
-
112
- padding: 11px;
113
- transition: 0.5s;
114
- height: 45px;
115
- width: 100%;
116
- }
117
-
118
- .closebtn {
119
- position: absolute;
120
- top: 0;
121
- left: 0;
122
- width: 45px;
123
- }
124
-
125
- a:hover, .closebtn:hover {
126
- background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
127
- }
128
- }
129
-
130
- #open-nav {
131
- background-color: rgba(0, 0, 0, 0.6);
132
- position: fixed;
133
- top: 7px;
134
- right: 7px;
135
- z-index: 1;
136
- display: block;
137
-
138
- transition: 0.5s;
139
- cursor: pointer;
140
- border: 1px solid rgba(255, 255, 255, 0.2);
141
- border-radius: 4px;
142
- padding: 3px 10px;
143
- }
144
-
145
- #open-nav:hover {
146
- background: rgba(199, 188, 135, 0.2) url(/assets/images/noise.png);
147
- }
148
-
149
- .nav-links-icon {
150
- width: 24px;
151
- display: inline-block;
152
- }
153
-
154
- /* footer.html */
155
- footer {
156
- display: flex;
157
- justify-content: space-between;
158
- background: linear-gradient(100deg, #202020, #323232);
159
- padding: 3% 10%;
160
- margin-top: 5%;
161
- }
162
-
163
- #footer-links {
164
- display: inline-flex;
165
- flex-direction: column;
166
- }
167
-
168
- #blatant-advertising {
169
- display: flex;
170
- flex-direction: column;
171
- justify-content: flex-end;
172
- text-align: right;
173
- font-size: 85%;
174
- width: 50%;
175
- opacity: 50%;}
data/_sass/layout.scss DELETED
@@ -1,10 +0,0 @@
1
- body {
2
- display: flex;
3
- flex-direction: column;
4
- align-items: stretch;
5
- justify-content: space-between;
6
- }
7
-
8
- header {
9
- flex-shrink: 0;
10
- }