Skip to content

Commit 91f3ad0

Browse files
committed
Release v2.3.7
1 parent cbb2241 commit 91f3ad0

22 files changed

+128
-41
lines changed

dist/blogger-tweaks.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/layouts/block-duo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Block Duo layout -- Two big columns followed by a single footer

dist/layouts/color-blocks.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Color Blocks layout -- Two columns of colorful blocks

dist/layouts/color-slide.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Color Slide layout -- Top to botttom color transition

dist/layouts/letterbox.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Letterbox layout -- Edge-to-edge semi-opaque bar over cover background image

dist/layouts/modern.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Modern layout -- Clean blog post page

dist/layouts/neon.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Neon layout -- For hackers and space junkies

dist/layouts/neon.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
//! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License
1+
//! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License
22
const numNeonImages=8;const randomImage=Date.now()%numNeonImages+1;globalThis.document.body.classList.add("neon-image-"+String(randomImage));

dist/layouts/vertical-bars.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Vertical Bars layout -- traditional boring old-school webpage

dist/layouts/zebra-sections.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.3.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.3.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
@@ -17,7 +17,7 @@ HTML (<body>):
1717
a.current
1818
h1, h2, h4, img[alt=avatar]
1919
main
20-
section
20+
section.night-mode[data-background=xyz]
2121
h2
2222
img
2323
cite //author byline or date modified notice
@@ -221,6 +221,7 @@ main >section >div >menu >li i.font-icon {
221221
main >section >form {
222222
display: inline-flex;
223223
flex-direction: column;
224+
color: dimgray;
224225
background-color: gainsboro;
225226
padding: 35px 40px;
226227
margin: 0px 10px 30px 10px;
@@ -253,6 +254,7 @@ main >section >footer {
253254
padding-top: 20px;
254255
}
255256
main >section >footer.flip-icons {
257+
letter-spacing: 0.1em;
256258
transform: scaleX(-1);
257259
}
258260
body >footer {
@@ -285,7 +287,27 @@ body >main >section >ol.marble-checklist {
285287
padding: 0px 10px;
286288
}
287289

288-
/* Mobile devices */
290+
/* Dark Mode */
291+
@media (prefers-color-scheme: dark) {
292+
main >section {
293+
color: gainsboro;
294+
background-color: var(--colorTar);
295+
}
296+
main >section:nth-child(even) {
297+
background-color: var(--colorCharcoal);
298+
}
299+
}
300+
301+
/* Night Mode */
302+
main >section.night-mode {
303+
color: gainsboro;
304+
background-color: black;
305+
}
306+
main:has(>section.night-mode:last-child)+footer {
307+
background-color: var(--colorTar);
308+
}
309+
310+
/* Mobile Devices */
289311
@media (max-width: 667px) { /* selects iPhone 6/6s/7/8/SE2/SE3 landscape and anything narrower */
290312
body >header.responsive-avatar {
291313
img {

0 commit comments

Comments
 (0)