Skip to content

Commit 6f12f8c

Browse files
committed
Release v2.1.3
1 parent bca69a3 commit 6f12f8c

16 files changed

+92
-19
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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License
1+
//! web-ignition v2.1.3 ~~ 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.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ 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: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! web-ignition v2.1.2 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
1+
/*! web-ignition v2.1.3 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
22

33
/*
44
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
@@ -113,6 +113,9 @@ main >section:first-child {
113113
main >section:nth-child(even) {
114114
background-color: whitesmoke;
115115
}
116+
main >section:last-child {
117+
padding-bottom: 50px;
118+
}
116119
main >section >h2 {
117120
font-size: 1.6rem;
118121
margin-top: -8px;
@@ -144,6 +147,12 @@ main >section >ul {
144147
max-width: 600px;
145148
text-align: left;
146149
}
150+
main >section >figure {
151+
padding: 0px 10px;
152+
}
153+
main >section >figure img {
154+
max-height: 600px;
155+
}
147156
main >section figure {
148157
display: inline-block;
149158
min-width: auto;
@@ -161,12 +170,24 @@ main >section figure img.popup-image:hover {
161170
main >section figure figcaption {
162171
font-style: italic;
163172
}
173+
main >section >blockquote {
174+
font-style: italic;
175+
}
176+
main >section >blockquote cite {
177+
display: block;
178+
font-size: 0.8rem;
179+
font-weight: 100;
180+
font-style: normal;
181+
}
164182
body >footer {
165183
flex-direction: column;
166184
text-align: center;
167185
color: silver;
168186
background-color: black;
169187
}
188+
body >footer >div {
189+
padding: 5px 0px;
190+
}
170191
body >footer a {
171192
color: silver;
172193
}
@@ -182,6 +203,17 @@ body >footer i[data-brand] {
182203
font-size: 1.6rem;
183204
margin: 0px 5px;
184205
}
206+
207+
/* Mobile devices */
208+
@media (max-width: 667px) { /* selects iPhone 6/6s/7/8/SE2/SE3 landscape and anything narrower */
209+
body >header img {
210+
bottom: -50px;
211+
width: 100px;
212+
}
213+
main >section:first-child {
214+
padding-top: 80px;
215+
}
216+
}
185217
/******************************************************************************/
186218

187219
/* Zebra Sections layout -- customize colors */

0 commit comments

Comments
 (0)