jekyll-theme-handwritten 4.1.0 → 4.2.0

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: 879406d10c6dd630c0079f455e4424c1374f92fab81a8bf334eccf43e54a3ac5
4
- data.tar.gz: b17117773c32fdb050446c04ae3a56260ed3ffe680b113efed7d2e9c6f342aa6
3
+ metadata.gz: fa73ab7582532db7dc7b56dc3937b93208c08abb91573f8256f88d6dc56bdf03
4
+ data.tar.gz: 8f2bdd8bee55fb63e82a57467da0cfe93a408e810d4ca76dbd32b745207cb8b2
5
5
  SHA512:
6
- metadata.gz: eb318487faa4ffa99f8f0ad019c0359a18f8a6d00caf4827ba404fb931443353e3041caf52c36fe8bcf46cbb6093815808bfde4f0c75a7ef66e9600ad3e7f3ef
7
- data.tar.gz: c91b08e8b0a4b8911c6608e5eb4dba305213bcdbbd27ab10d0e2233c34b9be1509412c0543313cb8be8a36d5dc240b5e634c4b802a7c7f6c62bd8de5433e6781
6
+ metadata.gz: 0f5e9e7ae228410dc0353d41a145d5a38d87314b5cb2e7ba5e95b99e1c0c97b49afddd29d34edfbe19cc3d5a134bc0cb518e1d7acec7bd0e7fc38f104d1bfbc2
7
+ data.tar.gz: ef52cf1d3bae03f119fbc0e4a6d64de7ec932a0e00eecf93326860efad0ca53d09101376c2391db01cdfcea1ff686d330220b78233a4cba68089fbfed43130ad
@@ -7,7 +7,6 @@
7
7
  >
8
8
  Home</a
9
9
  >
10
-
11
10
  {%- for path in page_paths -%}
12
11
  {%- assign my_page = site.pages | where: 'path', path | first -%}
13
12
  {%- if my_page.title -%}
@@ -19,5 +18,6 @@
19
18
  </a>
20
19
  {%- endif -%}
21
20
  {%- endfor -%}
21
+
22
22
  </nav>
23
23
  {%- endif -%}
@@ -4,10 +4,14 @@
4
4
 
5
5
  .site-header {
6
6
  border-top: 5px solid var(--md-sys-color-outline-dark);
7
+
7
8
  // border-bottom: 1px solid var(--md-sys-color-outline);
8
9
  min-height: $spacing-unit * 1.865;
9
10
  // Positioning context for the mobile navigation icon
10
11
  position: relative;
12
+ @media screen and (min-width:601px) {
13
+ padding-top: 24px;
14
+ }
11
15
  }
12
16
 
13
17
  .site-title {
@@ -19,10 +19,6 @@
19
19
  grid-auto-rows: minmax(200px, auto);
20
20
  margin-left: 0;
21
21
  list-style: none;
22
-
23
- // > li {
24
- // margin-bottom: $spacing-unit/2;
25
- // }
26
22
  }
27
23
  .post-card {
28
24
  position: relative;
@@ -107,8 +103,6 @@
107
103
  left: -12px;
108
104
  right: -10px;
109
105
  bottom: -10px;
110
- // width: calc(100% + 12px);
111
- // height: calc(100% + 12px);
112
106
  z-index: 10;
113
107
  background-image: url("/assets/theme-assets/theme-images/border-thick.svg");
114
108
  background-size: 100% 100%;
@@ -121,7 +115,7 @@
121
115
  display: flex;
122
116
  flex-direction: column;
123
117
  height: 100vh;
124
- justify-content: center;
118
+ justify-content: flex-start;
125
119
  align-items: center;
126
120
  z-index: 99;
127
121
  padding: 30px 8px 30px 16px;
@@ -161,17 +155,27 @@
161
155
  color: var(--md-sys-color-on-surface);
162
156
  }
163
157
  .navrail-icon {
164
- // filter: var(--outline-filter);
165
158
  max-width: 40px;
166
159
  }
167
160
 
168
161
  .theme-selector {
169
162
  position: relative;
170
163
  display: flex;
171
- // width: 100%;
172
164
  justify-content: flex-end;
173
- padding: 12px;
174
- padding-top: 18px;
165
+ margin-left: auto;
166
+ padding: 6px;
167
+ margin-top: 8px;
168
+ margin-right: 8px;
169
+ border-radius: 99px;
170
+ background-color: rgba(70, 70, 70, 0.233);
171
+ backdrop-filter: blur(8px);
172
+ width: fit-content;
173
+ @media screen and (min-width: 601px) {
174
+ position: fixed;
175
+ z-index: 103;
176
+ bottom: 10px;
177
+ left: 30px;
178
+ }
175
179
  }
176
180
 
177
181
  .current-theme {
@@ -183,20 +187,12 @@
183
187
  cursor: pointer;
184
188
  transition: transform 0.3s;
185
189
  }
186
-
187
190
  .theme-options {
188
- // position: absolute;
189
191
  display: flex;
190
- // top: 50%;
191
- // right: 20px;
192
- // transform: translate(-50%, -50%);
193
- // display: none;
194
- // flex-wrap: wrap;
195
192
  gap: 10px;
196
193
  max-width: 0px;
197
194
  transition: all 0.3s;
198
195
  }
199
-
200
196
  .theme-option {
201
197
  width: 26px;
202
198
  height: 26px;
@@ -222,8 +218,6 @@
222
218
  top: -34px;
223
219
  right: 15px;
224
220
  z-index: 11;
225
-
226
- // filter: var(--outline-filter);
227
221
  }
228
222
  .pin-path {
229
223
  stroke: var(--md-sys-color-tertiary);
@@ -242,17 +236,15 @@ h1 {
242
236
  margin-left: auto;
243
237
  margin-right: auto;
244
238
  }
245
- .divider-path{
239
+ .divider-path {
246
240
  stroke: var(--md-sys-color-outline);
247
241
  stroke-width: 2;
248
242
  }
249
- .divider-svg{
243
+ .divider-svg {
250
244
  width: 100%;
251
245
  height: auto;
252
246
  margin-left: auto;
253
247
  margin-right: auto;
254
- @include media-query($on-palm){
255
-
256
-
248
+ @include media-query($on-palm) {
257
249
  }
258
- }
250
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-handwritten
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gul Noor
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-28 00:00:00.000000000 Z
11
+ date: 2024-07-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: