File tree Expand file tree Collapse file tree 16 files changed +92
-19
lines changed Expand file tree Collapse file tree 16 files changed +92
-19
lines changed Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Block Duo layout -- Two big columns followed by a single footer
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Color Blocks layout -- Two columns of colorful blocks
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Color Slide layout -- Top to botttom color transition
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Letterbox layout -- Edge-to-edge semi-opaque bar over cover background image
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Modern layout -- Clean blog post page
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Neon layout -- For hackers and space junkies
Original file line number Diff line number Diff line change 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
2
2
const numNeonImages = 8 ; const randomImage = Date . now ( ) % numNeonImages + 1 ; globalThis . document . body . classList . add ( "neon-image-" + String ( randomImage ) ) ;
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Vertical Bars layout -- traditional boring old-school webpage
Original file line number Diff line number Diff line change 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 */
2
2
3
3
/*
4
4
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
@@ -113,6 +113,9 @@ main >section:first-child {
113
113
main > section : nth-child (even) {
114
114
background-color : whitesmoke;
115
115
}
116
+ main > section : last-child {
117
+ padding-bottom : 50px ;
118
+ }
116
119
main > section > h2 {
117
120
font-size : 1.6rem ;
118
121
margin-top : -8px ;
@@ -144,6 +147,12 @@ main >section >ul {
144
147
max-width : 600px ;
145
148
text-align : left;
146
149
}
150
+ main > section > figure {
151
+ padding : 0px 10px ;
152
+ }
153
+ main > section > figure img {
154
+ max-height : 600px ;
155
+ }
147
156
main > section figure {
148
157
display : inline-block;
149
158
min-width : auto;
@@ -161,12 +170,24 @@ main >section figure img.popup-image:hover {
161
170
main > section figure figcaption {
162
171
font-style : italic;
163
172
}
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
+ }
164
182
body > footer {
165
183
flex-direction : column;
166
184
text-align : center;
167
185
color : silver;
168
186
background-color : black;
169
187
}
188
+ body > footer > div {
189
+ padding : 5px 0px ;
190
+ }
170
191
body > footer a {
171
192
color : silver;
172
193
}
@@ -182,6 +203,17 @@ body >footer i[data-brand] {
182
203
font-size : 1.6rem ;
183
204
margin : 0px 5px ;
184
205
}
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
+ }
185
217
/******************************************************************************/
186
218
187
219
/* Zebra Sections layout -- customize colors */
You can’t perform that action at this time.
0 commit comments