Skip to content

Commit

Permalink
Release v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jun 5, 2024
1 parent b038e12 commit b9ff71b
Show file tree
Hide file tree
Showing 17 changed files with 54 additions and 25 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"editor.rulers": [100],
"editor.scrollBeyondLastLine": false,
"editor.tabSize": 3,
"files.insertFinalNewline": true,
Expand Down
2 changes: 1 addition & 1 deletion dist/blogger-tweaks.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/layouts/block-duo.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Block Duo layout -- Two big columns followed by a single footer
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-blocks.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Blocks layout -- Two columns of colorful blocks
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-slide.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Slide layout -- Top to botttom color transition
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/letterbox.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Letterbox layout -- Edge-to-edge semi-opaque bar over cover background image
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/modern.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Modern layout -- Clean blog post page
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Neon layout -- For hackers and space junkies
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.min.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
//! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License
const numNeonImages=8;const randomImage=Date.now()%numNeonImages+1;globalThis.document.body.classList.add("neon-image-"+String(randomImage));
2 changes: 1 addition & 1 deletion dist/layouts/vertical-bars.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Vertical Bars layout -- traditional boring old-school webpage
Expand Down
38 changes: 33 additions & 5 deletions dist/layouts/zebra-sections.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
Expand All @@ -20,7 +20,10 @@ HTML (<body>):
section
h2
img
p
div
blockquote
cite
footer
*/
body {
Expand Down Expand Up @@ -138,9 +141,31 @@ main >section >div { /* centered flow box */
display: flex;
flex-wrap: wrap;
justify-content: center;
column-gap: 40px;
row-gap: 20px;
}
main >section >div >* {
margin: 0px 20px 20px 20px;
main >section >div >blockquote {
display: block;
width: 100%;
font-size: 1.2rem;
font-style: italic;
text-align: left;
border: 1px solid silver;
padding: 10px 25px;
margin: 0px;
}
main >section >div >blockquote >cite {
display: block;
font-size: 0.8rem;
font-weight: 100;
font-style: normal;
letter-spacing: 0.05em;
text-align: right;
padding-top: 5px;
}
main >section >div >blockquote >cite::before {
content: "\2014"; /* character: — (em dash) */
margin-right: 0.4em;
}
main >section >ul {
width: 80%;
Expand All @@ -167,10 +192,13 @@ main >section figure img.popup-image:hover {
main >section figure figcaption {
font-style: italic;
}
main >section >blockquote {
main >section code {
white-space: normal;
}
main >section >blockquote { /* deprecated */
font-style: italic;
}
main >section >blockquote cite {
main >section >blockquote cite { /* deprecated */
display: block;
font-size: 0.8rem;
font-weight: 100;
Expand Down
2 changes: 1 addition & 1 deletion dist/lib-x.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License

export type GlobalKey = keyof typeof globalThis;
export type Json = string | number | boolean | null | undefined | JsonObject | Json[];
Expand Down
4 changes: 2 additions & 2 deletions dist/lib-x.dev.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License

const libXDom = {
stateDepot: [],
Expand Down Expand Up @@ -826,7 +826,7 @@ const libXExtra = {
},
};
const libX = {
version: '2.2.0',
version: '2.2.1',
dom: libXDom,
ui: libXUi,
util: libXUtil,
Expand Down
4 changes: 2 additions & 2 deletions dist/lib-x.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.2.0 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.2.1 ~~ https://github.com/center-key/web-ignition ~~ MIT License

const libXDom = {
stateDepot: [],
Expand Down Expand Up @@ -826,7 +826,7 @@ const libXExtra = {
},
};
const libX = {
version: '2.2.0',
version: '2.2.1',
dom: libXDom,
ui: libXUi,
util: libXUtil,
Expand Down
4 changes: 2 additions & 2 deletions dist/lib-x.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit b9ff71b

Please sign in to comment.