diff --git a/_includes/footer.njk b/_includes/footer.njk index 8c0d37b..5785252 100644 --- a/_includes/footer.njk +++ b/_includes/footer.njk @@ -11,5 +11,6 @@ {% endfor %} {% endif %} Sitemap + Fly

diff --git a/content/special/flying-toasters/base.css b/content/special/flying-toasters/base.css new file mode 100644 index 0000000..e160ee3 --- /dev/null +++ b/content/special/flying-toasters/base.css @@ -0,0 +1,38 @@ +/* apply a natural box layout model to all elements */ +*, +*:before, +*:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +html, +body { + background-color: #111; + margin: 0; + height: 100%; + width: 100%; + overflow: hidden; +} + +/* Hide only visually, but have it available for screenreaders & for SEO purposes. See h5bp.com/v */ +.visuallyhidden { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.clearfix:before, +.clearfix:after { + content: " "; + display: table; +} + +.clearfix:after { + clear: both; +} diff --git a/content/special/flying-toasters/img/favicon.png b/content/special/flying-toasters/img/favicon.png new file mode 100644 index 0000000..9773e3e Binary files /dev/null and b/content/special/flying-toasters/img/favicon.png differ diff --git a/content/special/flying-toasters/img/toast0.gif b/content/special/flying-toasters/img/toast0.gif new file mode 100644 index 0000000..2391bdf Binary files /dev/null and b/content/special/flying-toasters/img/toast0.gif differ diff --git a/content/special/flying-toasters/img/toast1.gif b/content/special/flying-toasters/img/toast1.gif new file mode 100644 index 0000000..ccdb6d0 Binary files /dev/null and b/content/special/flying-toasters/img/toast1.gif differ diff --git a/content/special/flying-toasters/img/toast2.gif b/content/special/flying-toasters/img/toast2.gif new file mode 100644 index 0000000..4d8c39d Binary files /dev/null and b/content/special/flying-toasters/img/toast2.gif differ diff --git a/content/special/flying-toasters/img/toast3.gif b/content/special/flying-toasters/img/toast3.gif new file mode 100644 index 0000000..847504a Binary files /dev/null and b/content/special/flying-toasters/img/toast3.gif differ diff --git a/content/special/flying-toasters/img/toaster-sprite.gif b/content/special/flying-toasters/img/toaster-sprite.gif new file mode 100644 index 0000000..f484c00 Binary files /dev/null and b/content/special/flying-toasters/img/toaster-sprite.gif differ diff --git a/content/special/flying-toasters/index.html b/content/special/flying-toasters/index.html new file mode 100644 index 0000000..fb0d99e --- /dev/null +++ b/content/special/flying-toasters/index.html @@ -0,0 +1,541 @@ + + + + + Flying Toasters Screensaver | After Dark in CSS + + + + + + + +
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+ + +
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + diff --git a/eleventy.config.js b/eleventy.config.js index ab1aec1..6af4fe9 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -194,7 +194,9 @@ export default async function (eleventyConfig) { // Passthrough - eleventyConfig.addPassthroughCopy({ "./public/": "/" }); + eleventyConfig + .addPassthroughCopy({ "./public/": "/" }) + .addPassthroughCopy("./content/special/"); // Get the first `n` elements of a collection. eleventyConfig.addFilter("head", (array, n) => {