├── .babelrc ├── .browserslistrc ├── .eslintrc ├── .gitignore ├── .prettierrc ├── Makefile ├── README.md ├── boilerplate ├── develop.boilerplate.pug ├── layout.boilerplate.pug ├── markup.boilerplate.pug ├── readme.boilerplate.md ├── script.boilerplate.js └── style.boilerplate.styl ├── deploy-template.pug ├── package.json ├── src ├── 1-hr │ ├── README.md │ ├── dev.pug │ ├── index.html │ ├── index.pug │ ├── script.js │ ├── style.css │ └── style.styl ├── 100-divs-confetti │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 100-hr │ ├── README.md │ ├── dev.pug │ ├── index.html │ ├── index.pug │ ├── script.js │ ├── style.css │ └── style.styl ├── 100x50-game │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 12-cuboids │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 2d-peter-griffin-container │ ├── PeterBoss--optimized.svg │ ├── PeterBoss.svg │ ├── PeterHat.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-css-desk-fan │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-css-furniture │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-css-package │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-css-rocket │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-css-xwing │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-exploding-book │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-exploding-cube │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-helicopter │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-inkjet │ ├── README.md │ ├── css-tricks-icon.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── sitepoint-icon.svg │ ├── smashing-icon.svg │ └── style.styl ├── 3d-lego-terminal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-plane-demo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-plant-pot │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-playground │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-print-shop │ ├── README.md │ ├── css-tricks-icon.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── sitepoint-icon.svg │ ├── smashing-icon.svg │ └── style.styl ├── 3d-something │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-spotlight │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-starter-kit │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-stopwatch │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-studio-canvas-flicker │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-studio-chair-movement │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-studio │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 3d-toaster │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 403-challenge │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── staff.svg │ ├── style.styl │ └── text-three.svg ├── 404-lights │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 404-particles │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 50-shades-of-hue │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── 500-potato │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── CSS-3D-Squad-Car │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── advent-5 │ └── script.js ├── ambilight │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── angular-cards │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.ts │ └── style.styl ├── animated-gradient-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── apex-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ └── style.styl ├── apple-heart │ ├── README.md │ ├── apple-heart--plain.svg │ ├── apple-heart.svg │ ├── dev.pug │ ├── heart-optimized.svg │ ├── heart.svg │ ├── index.pug │ ├── new-heart.svg │ ├── new-optimized.svg │ ├── script.js │ └── style.styl ├── arrow-container-query-poc │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── awakening-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── baby-yoda │ ├── README.md │ ├── baby-yoda.pug │ ├── baby-yoda.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── background-attachment-parallax │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── background-image-playground │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bad-buttons-react │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── script.tsx │ └── style.styl ├── bandersnatcher │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── basic-canvas-screensaver │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── basic-pinching-support │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── basic-touch-support │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── beach-ball │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bear-darkmode-toggle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── light--optimized.svg │ ├── light--plain.svg │ ├── light.pug │ ├── light.svg │ ├── script.js │ └── style.styl ├── bear-glare │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bear-loader │ ├── README.md │ ├── bear-coding-lines.svg │ ├── bear.pug │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bear-paw-button │ ├── README.md │ ├── bear-palm--back.pug │ ├── bear-palm.pug │ ├── bear-panda--plain.svg │ ├── bear-panda.svg │ ├── bear-paw--palm--plain.svg │ ├── bear-paw--palm.svg │ ├── circle--plain.svg │ ├── circle.svg │ ├── dev.pug │ ├── drawing.svg │ ├── heart-bg.svg │ ├── heart-outline-bg.svg │ ├── heart.svg │ ├── index.pug │ ├── script.js │ ├── slap.pug │ ├── style.styl │ ├── wiggle--plain.svg │ ├── wiggle.pug │ └── wiggle.svg ├── bear-todos │ ├── README.md │ ├── dev.pug │ ├── faces--optimised.svg │ ├── faces.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── bee-sticks-infinite │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bee-sticks │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── blaster-bear │ ├── README.md │ ├── bear--optimised.svg │ ├── bear-inkscape.png │ ├── bear-inkscape.svg │ ├── bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── block-heads │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── shades-2021-cropped-removebg-preview.png │ └── style.styl ├── block-reveal-markup-gen │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── block-reveal-react │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── block-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── blocky-plane │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── book-hype │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── book-promo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── border-radius-playground │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bottomless-rectangle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── botw-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── bouncing-bunnies-delay │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── breakout-square-loop │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── burger-flip │ ├── README.md │ ├── bg--rounded.svg │ ├── bg.svg │ ├── burger.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── canvas-fun │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── open-peeps.png │ ├── script.js │ └── style.styl ├── card-gallery-progressive-enhancement-infinite │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── card-gallery-progressive-enhancement │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── care-bear │ ├── README.md │ ├── care-bear.pug │ ├── care-bear.svg │ ├── dev.pug │ ├── drawing.svg │ ├── heart-optimized.svg │ ├── heart.pug │ ├── heart.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── caret-position │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cascading-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cash-register-superscript │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── catchthecode │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── challenge-3 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── challenge-3b │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── changing-dots-illusion │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cheat-code-hook │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── check-mail │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── christmas-tree-squares │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── circle-illusion │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── circle-rings │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── circular-layout │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clip-path-buttons │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clip-path-morphs │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clipboard-demo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clipped-images │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clips-of-css-code │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── prism.css │ ├── prism.js │ ├── script.js │ └── style.styl ├── clips-of-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── clock │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cock-a-doodle-dark │ ├── cock-a-doodle-dark.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── codepen-canvas │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── codepen-cards │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── codepen-christmas-tree │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── codepen-trails │ ├── README.md │ ├── codepen.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── color-changing-cubes │ ├── README.md │ ├── cubes--optimised.svg │ ├── cubes--plain.svg │ ├── cubes-two.pug │ ├── cubes.pug │ ├── cubes.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── color-detect-hook-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── color-detect-hook │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── color-image-search │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── color-rings │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── colorwheel-pseudo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── configurable-waves-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── wave--infinite.svg │ └── wave.pug ├── configurable-waves │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── wave--infinite.svg ├── container-beard │ ├── README.md │ ├── bearded-wonder.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── short-bearded-wonder.svg │ └── style.styl ├── container-blinds │ ├── PeterBoss--optimized.svg │ ├── PeterBoss.svg │ ├── PeterHat.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── container-drive-by │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── container-poc │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── conways-game-of-life-grid │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── corgo-command │ ├── Corgo--plain.svg │ ├── Corgo.svg │ ├── README.md │ ├── corgo--optimised.svg │ ├── corgo-static.png │ ├── corgo-static.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cover-flow-gsap │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cover-view-gallery-gsap │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-408 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-dinosaurs │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-earth │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-forms-password-gen │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-forms │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-ghosts │ ├── dev.pug │ ├── index.pug │ ├── spook-four.svg │ ├── spook-one.svg │ ├── spook-three.svg │ ├── spook-two.svg │ └── style.styl ├── cpc-gravity │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-jellyfish-v2 │ ├── README.md │ ├── actual-jelly-fish-copy.svg │ ├── actual-jelly-fish.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-jellyfish │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── jelly-fish-copy.svg │ ├── jelly-fish.svg │ ├── script.js │ └── style.styl ├── cpc-masks │ ├── bear-head.svg │ ├── bear-with-masks.svg │ ├── count-mask.svg │ ├── dev.pug │ ├── frankenstein-mask.svg │ ├── ghoul-mask.svg │ ├── grin-mask.svg │ ├── hockey-mask.svg │ ├── index.pug │ ├── mummy-mask.svg │ ├── pumpkin-mask.svg │ ├── script.js │ ├── skeleton-mask.svg │ └── style.styl ├── cpc-menus │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-pandas │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── panda-ink-thuds.svg │ ├── panda-ink.svg │ ├── panda-thuds.svg │ ├── panda.svg │ ├── script.js │ └── style.styl ├── cpc-planets │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.ts │ └── style.styl ├── cpc-skeletons │ ├── all.svg │ ├── bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── skeleton.svg │ └── style.styl ├── cpc-tigers-eye │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-tigers │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── stretched-plain.svg │ └── style.styl ├── cpc-trick-or-treat │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cpc-water │ ├── README.md │ ├── dev.pug │ ├── index.pug │ └── style.styl ├── credits │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-animation-delays │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-auth │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-battenberg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-block-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-bojack │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-cake-slice-demo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-dial-buttons │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-dodecagon │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-drawers-2021 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-game-proto │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-grid-tetris │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-guess-who │ ├── README.md │ ├── a person │ │ ├── bust--trimmed--ada.svg │ │ ├── bust--trimmed--chris.svg │ │ ├── bust--trimmed--eli.svg │ │ ├── bust--trimmed--isaac.svg │ │ ├── bust--trimmed--jack.svg │ │ ├── bust--trimmed--jessy.svg │ │ ├── bust--trimmed--john.svg │ │ ├── bust--trimmed--levi.svg │ │ ├── bust--trimmed--lola.svg │ │ ├── bust--trimmed--molly.svg │ │ ├── bust--trimmed--noah.svg │ │ ├── bust--trimmed--sarah.svg │ │ ├── bust--trimmed--tess.svg │ │ ├── bust--trimmed--will.svg │ │ └── bust--trimmed--zoey.svg │ ├── ada.pug │ ├── chris.pug │ ├── dev.pug │ ├── eli.pug │ ├── index.pug │ ├── isacc.pug │ ├── jessy.pug │ ├── john.pug │ ├── levi.pug │ ├── lola.pug │ ├── molly.pug │ ├── noah.pug │ ├── sarah.pug │ ├── script.js │ ├── style.styl │ ├── tess.pug │ ├── will.pug │ └── zoey.pug ├── css-illustration-challenge │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-jigglypuff │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-kit-kat-clock │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── kit-kat-template.svg │ ├── script.js │ └── style.styl ├── css-leif │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-magic-8 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-nft │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-pie-charts-no-clip │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-pie-charts │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-ps5-controller │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-rain │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-range-rover │ ├── README.md │ ├── Screenshot 2019-10-22 at 19.17.13.png │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-russian-bears │ ├── README.md │ ├── bear-2.svg │ ├── bear-import.svg │ ├── bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-snorlax │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-sorcerers-apprentice │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-stopwatch │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-suez-canal-boat │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-tic-tac-toe │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-tom-nook │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-variable-clip-path-generator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── css-variable-image-zoom │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── mag.pug │ ├── magnifying-glass-optimised.svg │ ├── magnifying-glass.svg │ ├── script.js │ └── style.styl ├── cssarousel │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cubed-svg │ ├── README.md │ ├── cubes--optimised.svg │ ├── cubes--plain.svg │ ├── cubes-two.pug │ ├── cubes.pug │ ├── cubes.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cubed-two │ ├── README.md │ ├── cubes--optimised.svg │ ├── cubes--plain.svg │ ├── cubes-two.pug │ ├── cubes.pug │ ├── cubes.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cubist-burger │ ├── README.md │ ├── burger.svg │ ├── cowboy.svg │ ├── dev.pug │ ├── index.pug │ ├── leftperson.svg │ ├── script.js │ └── style.styl ├── cuboid-generator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── prism-html-css.js │ ├── script.js │ └── style.styl ├── cyberpunk-btn │ ├── README.md │ ├── dev.pug │ ├── index.html │ ├── script.js │ └── style.css ├── cyberpunk-hover │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cyberpunk-image-hover │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cyberpunk-shaders │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── cybrtrk │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── d3-ditto │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── defineglitch │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── details-and-summary │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── dial-btn │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── digital │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── directional-aware-react-buttons │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── directional-lighting-button │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── dismantle-text-gsap │ ├── README.md │ ├── cross-one.pug │ ├── cross-three.pug │ ├── cross-two.pug │ ├── dev.pug │ ├── dismantle.pug │ ├── dismantled.svg │ ├── dismantling.svg │ ├── dot-four.pug │ ├── dot-one.pug │ ├── dot-three.pug │ ├── dot-two.pug │ ├── index.pug │ ├── plain.svg │ ├── script.js │ └── style.styl ├── display-contents │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── ditto-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── doge-500 │ ├── README.md │ ├── dev.pug │ ├── doge-body.svg │ ├── doge.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── donkey-kong-minecart │ ├── README.md │ ├── dev.pug │ ├── dk.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── dont-feel-good │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── download-cubes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── draggable-spoop │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── spoop--edited.svg │ ├── spoop.svg │ └── style.styl ├── drifting-bg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── drop-the-caps │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── duck-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── duotone-2020 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── duotone-filter-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── dynamic-mondrian │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── e-signature │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── easter-egg-hunt │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── egg-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── eggo-jh3y │ ├── README.md │ ├── dev.pug │ ├── eggo-jh3y.svg │ ├── eggo-optimized.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── eggo-lines │ ├── README.md │ ├── dev.pug │ ├── eggo.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── ekg-line-svg │ ├── README.md │ ├── dev.pug │ ├── ekg.svg │ ├── heartline.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── embers-canvas │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── emoji-carousel │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── emoji-spotlight-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── eq-button-houdini-actual │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── eq-button-houdini │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── equalizer-clip-path │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── equalizer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── extrusion-example │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── face-tracking-photos │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── shades--no-band.svg │ ├── shades--with-band.svg │ └── style.styl ├── falling-towers │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── faux-3d-balloons │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── feed-the-world │ ├── README.md │ ├── dev.pug │ ├── globe--optimized.svg │ ├── globe--plain.svg │ ├── globe.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── feral-hogs-motion-path │ ├── README.md │ ├── border.svg │ ├── dev.pug │ ├── hog.svg │ ├── hogscape.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── fidgety-paths │ ├── README.md │ ├── codepen.pug │ ├── codepen.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── text.pug │ └── text.svg ├── finder-faces │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── fireflies │ ├── README.md │ ├── dev.pug │ ├── face-two.svg │ ├── face.svg │ ├── fireflies-plain.svg │ ├── fireflies.pug │ ├── fireflies.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── firework-button │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── five-dots │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── five-line-eight-ball │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── fizz-buzz-range │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── flat-hello-world │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── map.pug │ ├── map.svg │ ├── script.js │ └── style.styl ├── flick-timer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── flipping-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── flippy-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── flippy-snaps-gsap │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── font-size │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── footballlll │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── framer-infinite-slider │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── frog-bun-toggle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── full-page-sat-nav │ ├── README.md │ ├── clean-and-full-nav.svg │ ├── dev.pug │ ├── final.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── fun-cubes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── fuzzybackdrop │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── geminid-2018 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ └── style.styl ├── generative-mountains-d3 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gif-hero │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── glitch-square │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── glitchy-image-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── glitchy-text-effects │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── glitchy-text-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── glittery-svg-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── good-cheap-fast │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gooey-css-full-page-menu │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gooey-js-full-page-nav │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gradient-illusion │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gradient-shaded-words │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── grand │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── grid-gallery-showcase │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-canvas-art │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-code-jump-both │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-hifi │ ├── README.md │ ├── Shimmer.svg │ ├── dev.pug │ ├── dupe.svg │ ├── hifi.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-knockout-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-lightsaber │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── saber--optimized.svg │ ├── saber--two.svg │ ├── saber-aff.afdesign │ ├── saber-aff.svg │ ├── saber-new--optimized.svg │ ├── saber-new.svg │ ├── saber-two--optimized.svg │ ├── saber-two.svg │ ├── saber.svg │ ├── script.js │ └── style.styl ├── gsap-manipulate-time │ ├── Watch.svg │ ├── bear.png │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-play-lwj │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── party-peep.svg │ ├── peep.svg │ ├── rainbow-lines.svg │ ├── script.js │ └── style.styl ├── gsap-product-page │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── gsap-traffic │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── traffic-optimised.svg │ ├── traffic.pug │ └── traffic.svg ├── halloween-cauldron │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── happy-birthday-button │ ├── README.md │ ├── cake--optimised.svg │ ├── cake--plain.svg │ ├── cake.pug │ ├── cake.svg │ ├── dev.pug │ ├── index.pug │ ├── injectable.svg │ ├── script.js │ └── style.styl ├── happy-birthday-card │ ├── README.md │ ├── balloon.pug │ ├── balloon.svg │ ├── cake.pug │ ├── cake.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── happy-hello-world │ ├── README.md │ ├── dev.pug │ ├── happy-hello-world.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── hexadecimal-hangman │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hold-hook │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── holiday-card │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── holidays-themed-3d-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── logo.svg │ ├── script.js │ └── style.styl ├── hooks-color-select-no-bg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-color-select │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-mouse-move │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-share-time │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-typography-scale │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-use-effect-optional │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-window-mouse │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hooks-window-resize │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── houdini-tesla-coil │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── houdini-worklet-fun │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hourglass-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── house-from-up │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hover-property-spotlight │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hover-to-reveal-button-content │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hsl-dimmer-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hsl-light-switch │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hsl-slider │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hsl-sliders │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hulk-smash │ ├── README.md │ ├── dev.pug │ ├── hulk--optimised.svg │ ├── hulk--plain.svg │ ├── hulk.pug │ ├── hulk.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── hxouse-recreate │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hyperspace-2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hyperspace │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hypno-bear │ ├── README.md │ ├── bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hypno-circle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hypno-wheel │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hypno │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── hypnotists-watch │ ├── Hypno-Watch.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── illusion-ring │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-enhancer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-loader-with-clip-path │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-overlays │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-to-conway-tutorial │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-to-conway │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── image-waves │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── wave--infinite.svg ├── impossible-button │ ├── README.md │ ├── angry-bear-arm.svg │ ├── angry-bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── impossible-checkbox │ ├── README.md │ ├── angry-bear-arm.svg │ ├── angry-bear.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── impossible-lightbulb │ ├── README.md │ ├── angry-bear.svg │ ├── angry.pug │ ├── dev.pug │ ├── index.pug │ ├── light--optimized.svg │ ├── light--plain.svg │ ├── light.pug │ ├── light.svg │ ├── script.js │ └── style.styl ├── inertia-slider │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── infinite-fruits │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── infinity-squares │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── infinity-triangles │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── intl-time-from │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── is-a-primary │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── javascript-debounce-throttle-visualisation │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── javascript-volume-meter │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── kent-audio-replay-visualiser │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── kent-recorder │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── kinematic-something-css │ ├── README.md │ ├── dev.pug │ ├── drawing.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── kody-parallax-typescript │ ├── script.tsx │ └── style.css ├── launch-control │ ├── README.md │ ├── control-tower.pug │ ├── dev.pug │ ├── index.pug │ ├── rocket--plain.svg │ ├── rocket-optimised.svg │ ├── rocket.pug │ ├── rocket.svg │ ├── script.js │ └── style.styl ├── lava-lamp │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── lego-cyber-truck │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── legra-webcam │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── light-bulb │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── light--optimized.svg │ ├── light--plain.svg │ ├── light.pug │ ├── light.svg │ ├── script.js │ └── style.styl ├── lipsum-generator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── lisajous-canvas │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── little-book-of-gsap │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── little-book-of-jhey │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── loadman │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── love-button │ ├── README.md │ ├── dev.pug │ ├── heart-optimised.svg │ ├── heart.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── love-death-robots │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── lwj-corgi │ ├── README.md │ ├── corgi--optimised.svg │ ├── corgi--plain.svg │ ├── corgi.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── magic-lamp │ ├── dev.pug │ ├── index.pug │ ├── magic-lamp--optimized.svg │ ├── magic-lamp.svg │ ├── script.js │ └── style.styl ├── magnifier │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mandalorian-rocket │ ├── README.md │ ├── backdrop-optimised.svg │ ├── backdrop.pug │ ├── backdrop.svg │ ├── dev.pug │ ├── index.pug │ ├── mandalorian.svg │ ├── mando-optimised.svg │ ├── mando.pug │ ├── script.js │ └── style.styl ├── masonry-image-gallery │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── masonry │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── matter-playground │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── meander-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── meander-optimized.svg │ ├── meander.svg │ ├── script.js │ └── style.styl ├── meanderer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── infinite-clean.svg │ ├── infinite-new-clean.pug │ ├── infinite-new-clean.svg │ ├── infinite-new.svg │ ├── infinite-path-clean.svg │ ├── infinite-path.pug │ ├── infinite-path.svg │ ├── infinite.pug │ ├── infinite.svg │ ├── popsicle-clean.svg │ ├── popsicle.pug │ ├── popsicle.svg │ ├── script.js │ └── style.styl ├── messy-process │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── mess.svg │ ├── optimized-mess.svg │ ├── script.js │ └── style.styl ├── minecraft-zombie │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── miri-blinds │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mix-blend-mode-exploder │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mondrian-generator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── monochromatic-hsl-palette │ ├── dev.pug │ ├── index.pug │ ├── prism.css │ ├── prism.js │ ├── script.js │ └── style.styl ├── morphing-lines │ ├── Lines.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── og-asset.png │ ├── script.js │ ├── stages.png │ └── style.styl ├── movies-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mr-bump │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mr-greedy │ ├── README.md │ ├── dev.pug │ ├── greedy-bod.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── mr-rush-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── mushroom-fields │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── mushroom-fields--plain.svg │ ├── mushroom-fields--resized.svg │ ├── mushroom-fields.svg │ ├── mushroom.pug │ ├── script.js │ └── style.styl ├── mushroom-grid │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── my-template │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── netflix-scroll-snap │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── neumorphic-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── neumorphic-toolkit │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── neverending-noodles │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── newtons-bulbs-2021 │ ├── README.md │ ├── Scene.svg │ ├── SceneShine.svg │ ├── SceneUpdate.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── newtons-light-bulb │ ├── README.md │ ├── bulbs.pug │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── nft-reflection │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── night-lamp-star-master │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── node-explorer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── non-moving-square-illusion │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── now-animated-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── ny-2021-cube │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── octobear │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── octobear-animated.svg │ ├── octobear-with-glare.svg │ ├── octobear.svg │ ├── script.js │ └── style.styl ├── oddly-cubes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── once-upon-a-time │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── opacity-word-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── orange-and-blue-sun │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── orion-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── orions-optimized.svg │ ├── orions-plain.svg │ ├── orions.svg │ ├── orions.svg.2020_09_11_18_37_12.0.svg │ ├── script.js │ ├── space-turtle-optimized.svg │ ├── space-turtle-plain.svg │ ├── space-turtle.svg │ └── style.styl ├── orionid │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── orions-galaxy │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── orions-optimized.svg │ ├── orions-plain.svg │ ├── orions.svg │ ├── orions.svg.2020_09_11_18_37_12.0.svg │ ├── script.js │ ├── space-turtle-optimized.svg │ ├── space-turtle-plain.svg │ ├── space-turtle.svg │ └── style.styl ├── oscillator-notes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pac-man-password │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pac-reveal │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── page-elevator │ ├── README.md │ ├── cursor-default-outline.svg │ ├── dev.pug │ ├── elevator--optimized.svg │ ├── elevator.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── page-visibility-api │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── palette-generator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pancake-flip │ ├── README.md │ ├── dev.pug │ ├── full-pan.svg │ ├── index.pug │ ├── pancake-back-hard-copy.svg │ ├── pancake-back.svg │ ├── pancake-hard-copy.svg │ ├── pancake-two.svg │ ├── pancake.svg │ ├── script.js │ └── style.styl ├── paper-stack-carousel-gsap │ ├── chevron.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── paperboy-animation │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── parallax-var │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── parks-and-fruits │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── party-bear │ ├── README.md │ ├── bear-copy.png │ ├── bear-copy.svg │ ├── bear-party--2.png │ ├── bear.svg │ ├── dev.pug │ ├── index.pug │ ├── party-bear--plain.svg │ ├── party-bear.svg │ ├── script.js │ └── style.styl ├── party-cubes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── party-egg │ ├── README.md │ ├── dev.pug │ ├── eggo--party.svg │ ├── eggo-jh3y.svg │ ├── eggo-lines.svg │ ├── eggo.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── pentagonal-bypyramid │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── perspective-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── peters-blinds-range │ ├── PeterBoss--optimized.svg │ ├── PeterBoss.svg │ ├── PeterHat.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── phonebook-details │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── photo-transitions │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── photocube │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pixelator │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pixi-blizzard │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pixi-embers │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pixi-multicolor-snow │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── poetry-grabber │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pokedex │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── pokedex--base.pug │ ├── pokedex--flip-inner.pug │ ├── pokedex--flip-outer.pug │ ├── pokedex-base--optimised.svg │ ├── pokedex-base--two.svg │ ├── pokedex-base-two--optimized.svg │ ├── pokedex-base.svg │ ├── pokedex-flip-inner--optimised.svg │ ├── pokedex-flip-inner-two.svg │ ├── pokedex-flip-inner.svg │ ├── pokedex-flip-outer--optimised.svg │ ├── pokedex-flip-outer-two--optimised.svg │ ├── pokedex-flip-outer-two.svg │ ├── pokedex-flip-outer.svg │ ├── pokedex__base-two.pug │ ├── pokedex__flip-inner--two.pug │ ├── pokedex__flip-inner-two-optimised.svg │ ├── pokedex__flip-outer--two.pug │ ├── script.js │ └── style.styl ├── polyline-pattern │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── polywork-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── polywork.svg │ ├── script.js │ └── style.styl ├── pong-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pop-a-mole │ ├── dev.pug │ ├── index.pug │ ├── mole-in-hole--optimized.svg │ ├── mole-in-hole.svg │ ├── script.js │ └── style.styl ├── popsicle-path │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── popsicle-clean.svg │ ├── popsicle.pug │ ├── popsicle.svg │ ├── script.js │ └── style.styl ├── position-playground │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── profiler │ ├── README.md │ ├── badge.styl │ ├── base.styl │ ├── bio.pug │ ├── button.pug │ ├── button.styl │ ├── dev.pug │ ├── footer.pug │ ├── footer.styl │ ├── header.pug │ ├── header.styl │ ├── index.pug │ ├── nav.pug │ ├── nav.styl │ ├── pen.pug │ ├── pen.styl │ ├── promo.pug │ ├── promo.styl │ ├── script.js │ └── style.styl ├── property-car │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── property-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── property-party │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── property-sonar │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── property-transition-hamburger-icon │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── property-waves │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pseudo-dot-loaders │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── puddin-border-radius │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pug-xmas-tree │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── star.svg │ └── style.styl ├── pure-css-carousel │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pure-css-sparkler │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── push-quentin │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── pythagoras-dissection │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── raf-hook │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── rainbow-cloud │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── rainbow-2.pug │ ├── rainbow-cloud--path-eyes.svg │ ├── rainbow-cloud--with-baby--inkscape.svg │ ├── rainbow-cloud--with-baby.svg │ ├── rainbow-cloud.svg │ ├── rainbow-final.pug │ ├── rainbow.pug │ ├── script.js │ └── style.styl ├── rainbow-ralphing │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── rainbow-spinner │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── random-canvas-worms │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── random-circles │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── random-falling-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-audio-visualiser │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-audio-visualizer │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-cards-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-cards │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-context-16.3 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-context-state-management-todo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-hoc-drag-and-resize │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-masonry │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-mp3-visualiser │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-parallax-bg-position │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-parallax │ ├── battery.png │ ├── dev.pug │ ├── index.pug │ ├── kody-flying_blue.png │ ├── kody-flying_blue.webp │ ├── kody.png │ ├── leaf-eight.png │ ├── leaf-eleven.png │ ├── leaf-five.png │ ├── leaf-four.png │ ├── leaf-nine.png │ ├── leaf-one.png │ ├── leaf-seven.png │ ├── leaf-six.png │ ├── leaf-ten.png │ ├── leaf-three.png │ ├── leaf-two.png │ ├── one-wheel.png │ ├── refresh.png │ ├── script.js │ ├── snowboards.png │ ├── speaker.png │ └── style.styl ├── react-portals │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-starter │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-video-player │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── react-waves │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── wave.svg ├── reflective-voices-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── render-props-watchfaces │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── repeating-rows │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── resizable-christmas-tree │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── tree-layer.svg ├── resizable │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── responsive-camera │ ├── README.md │ ├── dev.html │ ├── index.pug │ ├── script.js │ └── style.styl ├── responsive-motion-path-playground │ ├── README.md │ ├── big-clean.svg │ ├── big-path.svg │ ├── candidate.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── zaggy-clean.svg │ └── zaggy.svg ├── responsive-motion-path-w-d3 │ ├── README.md │ ├── candidate.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── retro-wavey-cat │ ├── README.md │ ├── Retro Cat.svg │ ├── Vector.svg │ ├── dev.pug │ ├── index.pug │ ├── retro--optimized.svg │ ├── retro.svg │ ├── script.js │ └── style.styl ├── rgba-slider │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── rilakkuma-css │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── rotating-shape-with-conic │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── santa-box-model │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── santa-list │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scalectrix │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── track--optimized.svg │ ├── track--resized.svg │ ├── track-resized-optimized.svg │ ├── track-two-player--optimized.svg │ ├── track-two-player.svg │ └── track.svg ├── scaled-container-query-poc │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── screaming-snake-circle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── optimized-snake.svg │ ├── script.js │ ├── snake-case--circle.svg │ ├── snake-case--plain.svg │ ├── snake-case.svg │ ├── snake.svg │ └── style.styl ├── screaming-snake │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── snake-case--plain.svg │ ├── snake-case.svg │ ├── snake.svg │ └── style.styl ├── scroll-stache │ ├── Cowboy-Base.svg │ ├── Cowboy.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scroll-that-trigger │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scroll-to-reveal-css-variables │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scroller │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scrolling-stop-motion │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scrolling-text-effects-v2 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── scrolling-text-effects │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── seeing-stars │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── ship-it │ ├── README.md │ ├── boat--final.svg │ ├── boat--optimized.svg │ ├── boat--plain.svg │ ├── boat--stripped-plain.svg │ ├── boat--stripped.svg │ ├── boat-optimal.svg │ ├── boat.svg │ ├── container--final.svg │ ├── container.svg │ ├── dev.pug │ ├── index.pug │ ├── proto--plain.svg │ ├── proto.svg │ ├── script.js │ ├── style.styl │ ├── waves-optimised.svg │ ├── with-text.svg │ ├── with-waves--plain.svg │ └── with-waves.svg ├── shooting-stars │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sibling-calendar-view │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sibling-combinator-demo │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── prism.css │ ├── prism.js │ ├── script.js │ └── style.styl ├── sibling-record-player │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── single-div-truck │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── site-404 │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sky-jose-text-clip │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── slack-logo-toggle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ └── style.styl ├── sliding-name │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sloan-twitch-overlay │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── sloan-dev.jpg │ ├── sloan.svg │ ├── style.styl │ ├── yolo-sloan--optimized.svg │ ├── yolo-sloan.svg │ └── yolo.svg ├── smash-bros-is-coming │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sounder │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── speech-recognition-play │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── speed-dial-btn │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── splat-path │ ├── Apple.svg │ ├── Code.svg │ ├── Dumbell.svg │ ├── README.md │ ├── dev.pug │ ├── drop.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── spoopy-button │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── spoopy-ghost │ ├── README.md │ ├── dev.pug │ ├── ghost--optimized.svg │ ├── ghost--plain.svg │ ├── ghost.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── spotlight-property │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sr-71 │ ├── README.md │ ├── desertscape-optimised.svg │ ├── desertscape.svg │ ├── dev.pug │ ├── exp.svg │ ├── index.pug │ ├── landscape.svg │ ├── scene.pug │ ├── script.js │ └── style.styl ├── stack-overflow-filo │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── stack-overflow-scroll │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── stack-overflow-toggle │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── stack-overflowed │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── stacker │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── staggered-cubes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── star-cursor │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── optimized.svg │ ├── script.js │ ├── star.pug │ ├── star.svg │ └── style.styl ├── star-trails │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── static │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── steveg-collab │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── stopwatch │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── strangerizer │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── sunny-moony │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── sunny-moony-clean.svg │ ├── sunny-moony-inkscape.svg │ ├── sunny-moony-new.svg │ ├── sunny-moony-optimized.svg │ ├── sunny-moony-original.pug │ ├── sunny-moony.pug │ └── sunny-moony.svg ├── sunrise-text │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── superstar-dj │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── svg-waves │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── wave--optimised.svg │ └── wave--plain--infinite.svg ├── swap-loader │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── swappy-circles │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── t-shirt-cannon-button │ ├── README.md │ ├── cannon-optimized.svg │ ├── cannon-shirt.pug │ ├── cannon.pug │ ├── cannon.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── t-shirt--optimized.svg │ ├── t-shirt--two.svg │ ├── t-shirt.pug │ └── t-shirt.svg ├── t-shirt-poc │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── t-shirt-sizing-container │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── t-shirt.svg ├── table │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── temporal-logo-stroke │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── temporal.svg ├── temporal-star-canvas │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── temporal-vs │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── tesla-coil │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── text-shadow-intro │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── that-cup │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── the-off-click │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── threejs-game-of-life │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── threejs-lego-brick │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── threejs-lego-cyber-truck │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── threejs-supreme-bauble │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── throttle-and-debounce │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── til-bear │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── shocked-bear.svg │ └── style.styl ├── top-10-christmas-movies │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── touch-to-circle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── train-path │ ├── README.md │ ├── cedar.pug │ ├── cedar.svg │ ├── dev.pug │ ├── drawing-2.svg │ ├── drawing.svg │ ├── hedge.pug │ ├── hedge.svg │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── train-optimized.svg │ ├── train.pug │ ├── train.svg │ ├── tree-one4.svg │ └── tree.pug ├── trig-circle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── tunnel-illusion │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── turbo-kitty │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── turbo-kitty--optimised.svg │ └── turbo-kitty.svg ├── tweet-grabber │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── twenty-two-toggle │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── twitter-debates │ ├── Domo-optimized.svg │ ├── Domo.svg │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── two-coils │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── typesetting │ ├── README.md │ ├── blog.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── unfolding-box │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── unsplash-color-keyword-search │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── url-state-filter │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── use-a-progress-bar │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── use-dark-mode │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── var-buttons │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── var-carousel │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── variable-animation-scrubber │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── video-player │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── vincent-van-git-animation │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ ├── vincent-van-git--optimized.svg │ └── vincent-van-git--plain.svg ├── voyce-code │ ├── README.md │ ├── code--optimized.svg │ ├── code.svg │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── vue-mail-app │ ├── README.md │ ├── back-icon.svg │ ├── close-icon.svg │ ├── compose-icon.svg │ ├── dev.pug │ ├── gear-icon.svg │ ├── index.pug │ ├── mail-icon.svg │ ├── paperclip-icon.svg │ ├── reply-icon.svg │ ├── script.js │ ├── send-icon.svg │ ├── star-icon.svg │ ├── style.styl │ ├── trash-icon.svg │ └── warning-icon.svg ├── whac-a-mole-react │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── whassup │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── which-key │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── winter-olympics │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── workflow │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── worldwide-dj │ ├── README.md │ ├── dev.pug │ ├── dj.svg │ ├── index.pug │ ├── script.js │ └── style.styl ├── xbox-series-s │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ ├── style.styl │ └── xbox.svg ├── yarn-kitty │ ├── dev.pug │ ├── index.pug │ ├── kitty-optimised.svg │ ├── kitty.svg │ ├── script.js │ └── style.styl ├── zdog-box-ring │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-clock │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-dino │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-dna │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-pipes │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-sandwich-board │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-sandwich │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl ├── zdog-spaceship │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl └── zdog-watch │ ├── README.md │ ├── dev.pug │ ├── index.pug │ ├── script.js │ └── style.styl └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/.prettierrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/README.md -------------------------------------------------------------------------------- /boilerplate/markup.boilerplate.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /boilerplate/script.boilerplate.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /deploy-template.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/deploy-template.pug -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/package.json -------------------------------------------------------------------------------- /src/1-hr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/README.md -------------------------------------------------------------------------------- /src/1-hr/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/1-hr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/index.html -------------------------------------------------------------------------------- /src/1-hr/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/index.pug -------------------------------------------------------------------------------- /src/1-hr/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/script.js -------------------------------------------------------------------------------- /src/1-hr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/style.css -------------------------------------------------------------------------------- /src/1-hr/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/1-hr/style.styl -------------------------------------------------------------------------------- /src/100-hr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/README.md -------------------------------------------------------------------------------- /src/100-hr/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/100-hr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/index.html -------------------------------------------------------------------------------- /src/100-hr/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/index.pug -------------------------------------------------------------------------------- /src/100-hr/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/script.js -------------------------------------------------------------------------------- /src/100-hr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/style.css -------------------------------------------------------------------------------- /src/100-hr/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100-hr/style.styl -------------------------------------------------------------------------------- /src/100x50-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100x50-game/README.md -------------------------------------------------------------------------------- /src/100x50-game/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100x50-game/dev.pug -------------------------------------------------------------------------------- /src/100x50-game/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100x50-game/index.pug -------------------------------------------------------------------------------- /src/100x50-game/script.js: -------------------------------------------------------------------------------- 1 | // NOT FOUND 2 | -------------------------------------------------------------------------------- /src/100x50-game/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/100x50-game/style.styl -------------------------------------------------------------------------------- /src/12-cuboids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/12-cuboids/README.md -------------------------------------------------------------------------------- /src/12-cuboids/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/12-cuboids/dev.pug -------------------------------------------------------------------------------- /src/12-cuboids/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/12-cuboids/index.pug -------------------------------------------------------------------------------- /src/12-cuboids/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/12-cuboids/script.js -------------------------------------------------------------------------------- /src/12-cuboids/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/12-cuboids/style.styl -------------------------------------------------------------------------------- /src/2d-peter-griffin-container/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-css-desk-fan/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-desk-fan/dev.pug -------------------------------------------------------------------------------- /src/3d-css-desk-fan/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-css-furniture/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-css-package/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-package/dev.pug -------------------------------------------------------------------------------- /src/3d-css-package/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-css-rocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-rocket/README.md -------------------------------------------------------------------------------- /src/3d-css-rocket/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-rocket/dev.pug -------------------------------------------------------------------------------- /src/3d-css-rocket/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-rocket/index.pug -------------------------------------------------------------------------------- /src/3d-css-rocket/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-rocket/script.js -------------------------------------------------------------------------------- /src/3d-css-xwing/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-xwing/dev.pug -------------------------------------------------------------------------------- /src/3d-css-xwing/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-xwing/index.pug -------------------------------------------------------------------------------- /src/3d-css-xwing/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-xwing/script.js -------------------------------------------------------------------------------- /src/3d-css-xwing/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-css-xwing/style.styl -------------------------------------------------------------------------------- /src/3d-helicopter/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-helicopter/dev.pug -------------------------------------------------------------------------------- /src/3d-helicopter/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-helicopter/index.pug -------------------------------------------------------------------------------- /src/3d-helicopter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-helicopter/script.js -------------------------------------------------------------------------------- /src/3d-inkjet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-inkjet/README.md -------------------------------------------------------------------------------- /src/3d-inkjet/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-inkjet/dev.pug -------------------------------------------------------------------------------- /src/3d-inkjet/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-inkjet/index.pug -------------------------------------------------------------------------------- /src/3d-inkjet/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-inkjet/script.js -------------------------------------------------------------------------------- /src/3d-inkjet/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-inkjet/style.styl -------------------------------------------------------------------------------- /src/3d-plane-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plane-demo/README.md -------------------------------------------------------------------------------- /src/3d-plane-demo/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plane-demo/dev.pug -------------------------------------------------------------------------------- /src/3d-plane-demo/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plane-demo/index.pug -------------------------------------------------------------------------------- /src/3d-plane-demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plane-demo/script.js -------------------------------------------------------------------------------- /src/3d-plant-pot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plant-pot/README.md -------------------------------------------------------------------------------- /src/3d-plant-pot/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plant-pot/dev.pug -------------------------------------------------------------------------------- /src/3d-plant-pot/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plant-pot/index.pug -------------------------------------------------------------------------------- /src/3d-plant-pot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plant-pot/script.js -------------------------------------------------------------------------------- /src/3d-plant-pot/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-plant-pot/style.styl -------------------------------------------------------------------------------- /src/3d-playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-playground/README.md -------------------------------------------------------------------------------- /src/3d-playground/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-playground/dev.pug -------------------------------------------------------------------------------- /src/3d-playground/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-playground/index.pug -------------------------------------------------------------------------------- /src/3d-playground/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-playground/script.js -------------------------------------------------------------------------------- /src/3d-print-shop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-print-shop/README.md -------------------------------------------------------------------------------- /src/3d-print-shop/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-print-shop/dev.pug -------------------------------------------------------------------------------- /src/3d-print-shop/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-print-shop/index.pug -------------------------------------------------------------------------------- /src/3d-print-shop/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-print-shop/script.js -------------------------------------------------------------------------------- /src/3d-something/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-something/README.md -------------------------------------------------------------------------------- /src/3d-something/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-something/dev.pug -------------------------------------------------------------------------------- /src/3d-something/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-something/index.pug -------------------------------------------------------------------------------- /src/3d-something/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-something/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-something/style.styl -------------------------------------------------------------------------------- /src/3d-spotlight/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-spotlight/dev.pug -------------------------------------------------------------------------------- /src/3d-spotlight/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-spotlight/index.pug -------------------------------------------------------------------------------- /src/3d-spotlight/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-spotlight/script.js -------------------------------------------------------------------------------- /src/3d-spotlight/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-spotlight/style.styl -------------------------------------------------------------------------------- /src/3d-starter-kit/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-starter-kit/dev.pug -------------------------------------------------------------------------------- /src/3d-stopwatch/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-stopwatch/dev.pug -------------------------------------------------------------------------------- /src/3d-stopwatch/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-stopwatch/index.pug -------------------------------------------------------------------------------- /src/3d-stopwatch/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-stopwatch/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-stopwatch/style.styl -------------------------------------------------------------------------------- /src/3d-studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-studio/README.md -------------------------------------------------------------------------------- /src/3d-studio/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-studio/dev.pug -------------------------------------------------------------------------------- /src/3d-studio/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-studio/index.pug -------------------------------------------------------------------------------- /src/3d-studio/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-studio/script.js -------------------------------------------------------------------------------- /src/3d-studio/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-studio/style.styl -------------------------------------------------------------------------------- /src/3d-toaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-toaster/README.md -------------------------------------------------------------------------------- /src/3d-toaster/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-toaster/dev.pug -------------------------------------------------------------------------------- /src/3d-toaster/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-toaster/index.pug -------------------------------------------------------------------------------- /src/3d-toaster/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/3d-toaster/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/3d-toaster/style.styl -------------------------------------------------------------------------------- /src/403-challenge/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/404-lights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/404-lights/README.md -------------------------------------------------------------------------------- /src/404-lights/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/404-lights/dev.pug -------------------------------------------------------------------------------- /src/404-lights/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/404-lights/index.pug -------------------------------------------------------------------------------- /src/404-lights/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/404-particles/dev.pug: -------------------------------------------------------------------------------- 1 | canvas 2 | .content 3 | h1 404 -------------------------------------------------------------------------------- /src/50-shades-of-hue/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/500-potato/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/500-potato/README.md -------------------------------------------------------------------------------- /src/500-potato/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/500-potato/dev.pug -------------------------------------------------------------------------------- /src/500-potato/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/500-potato/index.pug -------------------------------------------------------------------------------- /src/500-potato/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/advent-5/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/advent-5/script.js -------------------------------------------------------------------------------- /src/ambilight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ambilight/README.md -------------------------------------------------------------------------------- /src/ambilight/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ambilight/dev.pug -------------------------------------------------------------------------------- /src/ambilight/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ambilight/index.pug -------------------------------------------------------------------------------- /src/ambilight/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/ambilight/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ambilight/style.styl -------------------------------------------------------------------------------- /src/angular-cards/dev.pug: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/apex-loader/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/apex-loader/dev.pug -------------------------------------------------------------------------------- /src/apple-heart/dev.pug: -------------------------------------------------------------------------------- 1 | include new-optimized.svg 2 | -------------------------------------------------------------------------------- /src/arrow-container-query-poc/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/awakening-loader/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/baby-yoda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/baby-yoda/README.md -------------------------------------------------------------------------------- /src/baby-yoda/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/baby-yoda/dev.pug -------------------------------------------------------------------------------- /src/baby-yoda/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/baby-yoda/index.pug -------------------------------------------------------------------------------- /src/baby-yoda/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/baby-yoda/script.js -------------------------------------------------------------------------------- /src/baby-yoda/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/baby-yoda/style.styl -------------------------------------------------------------------------------- /src/background-image-playground/dev.pug: -------------------------------------------------------------------------------- 1 | .head 2 | label -------------------------------------------------------------------------------- /src/bad-buttons-react/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/bandersnatcher/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/basic-canvas-screensaver/dev.pug: -------------------------------------------------------------------------------- 1 | canvas 2 | button Start Screensaver -------------------------------------------------------------------------------- /src/basic-touch-support/dev.pug: -------------------------------------------------------------------------------- 1 | .swiper 2 | h1 Swipe left or right! ✋ -------------------------------------------------------------------------------- /src/beach-ball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/beach-ball/README.md -------------------------------------------------------------------------------- /src/beach-ball/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/beach-ball/dev.pug -------------------------------------------------------------------------------- /src/beach-ball/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/beach-ball/index.pug -------------------------------------------------------------------------------- /src/beach-ball/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/bear-glare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-glare/README.md -------------------------------------------------------------------------------- /src/bear-glare/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-glare/dev.pug -------------------------------------------------------------------------------- /src/bear-glare/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-glare/index.pug -------------------------------------------------------------------------------- /src/bear-glare/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/bear-loader/bear.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-loader/bear.pug -------------------------------------------------------------------------------- /src/bear-loader/dev.pug: -------------------------------------------------------------------------------- 1 | include bear.pug -------------------------------------------------------------------------------- /src/bear-loader/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/bear-todos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-todos/README.md -------------------------------------------------------------------------------- /src/bear-todos/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/bear-todos/faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-todos/faces.svg -------------------------------------------------------------------------------- /src/bear-todos/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-todos/index.pug -------------------------------------------------------------------------------- /src/bear-todos/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bear-todos/script.js -------------------------------------------------------------------------------- /src/bee-sticks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bee-sticks/README.md -------------------------------------------------------------------------------- /src/bee-sticks/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bee-sticks/dev.pug -------------------------------------------------------------------------------- /src/bee-sticks/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bee-sticks/index.pug -------------------------------------------------------------------------------- /src/bee-sticks/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/bee-sticks/script.js -------------------------------------------------------------------------------- /src/blaster-bear/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/blaster-bear/dev.pug -------------------------------------------------------------------------------- /src/block-heads/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/block-heads/dev.pug -------------------------------------------------------------------------------- /src/block-reveal-markup-gen/dev.pug: -------------------------------------------------------------------------------- 1 | div -------------------------------------------------------------------------------- /src/block-reveal-react/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/block-reveal/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/block-reveal/dev.pug -------------------------------------------------------------------------------- /src/blocky-plane/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/blocky-plane/dev.pug -------------------------------------------------------------------------------- /src/book-hype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-hype/README.md -------------------------------------------------------------------------------- /src/book-hype/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-hype/dev.pug -------------------------------------------------------------------------------- /src/book-hype/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-hype/index.pug -------------------------------------------------------------------------------- /src/book-hype/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-hype/script.js -------------------------------------------------------------------------------- /src/book-hype/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-hype/style.styl -------------------------------------------------------------------------------- /src/book-promo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-promo/README.md -------------------------------------------------------------------------------- /src/book-promo/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-promo/dev.pug -------------------------------------------------------------------------------- /src/book-promo/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-promo/index.pug -------------------------------------------------------------------------------- /src/book-promo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/book-promo/script.js -------------------------------------------------------------------------------- /src/border-radius-playground/dev.pug: -------------------------------------------------------------------------------- 1 | .box 2 | .output -------------------------------------------------------------------------------- /src/bottomless-rectangle/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/botw-loader/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/botw-loader/dev.pug -------------------------------------------------------------------------------- /src/botw-loader/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/breakout-square-loop/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/burger-flip/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/burger-flip/bg.svg -------------------------------------------------------------------------------- /src/burger-flip/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/burger-flip/dev.pug -------------------------------------------------------------------------------- /src/burger-flip/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/canvas-fun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/canvas-fun/README.md -------------------------------------------------------------------------------- /src/canvas-fun/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/canvas-fun/dev.pug -------------------------------------------------------------------------------- /src/canvas-fun/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/canvas-fun/index.pug -------------------------------------------------------------------------------- /src/canvas-fun/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/canvas-fun/script.js -------------------------------------------------------------------------------- /src/care-bear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/README.md -------------------------------------------------------------------------------- /src/care-bear/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/dev.pug -------------------------------------------------------------------------------- /src/care-bear/heart.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/heart.pug -------------------------------------------------------------------------------- /src/care-bear/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/heart.svg -------------------------------------------------------------------------------- /src/care-bear/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/index.pug -------------------------------------------------------------------------------- /src/care-bear/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/script.js -------------------------------------------------------------------------------- /src/care-bear/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/care-bear/style.styl -------------------------------------------------------------------------------- /src/catchthecode/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/catchthecode/dev.pug -------------------------------------------------------------------------------- /src/challenge-3/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/challenge-3/dev.pug -------------------------------------------------------------------------------- /src/challenge-3/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/challenge-3b/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/challenge-3b/dev.pug -------------------------------------------------------------------------------- /src/changing-dots-illusion/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/changing-dots-illusion/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/cheat-code-hook/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/check-mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/check-mail/README.md -------------------------------------------------------------------------------- /src/check-mail/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/check-mail/dev.pug -------------------------------------------------------------------------------- /src/check-mail/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/check-mail/index.pug -------------------------------------------------------------------------------- /src/check-mail/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/christmas-tree-squares/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/circle-rings/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/circle-rings/dev.pug -------------------------------------------------------------------------------- /src/circle-rings/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/clip-path-buttons/script.js: -------------------------------------------------------------------------------- 1 | // NOT FOUND 2 | -------------------------------------------------------------------------------- /src/clipped-images/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/clips-of-css-code/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/clips-of-css/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clips-of-css/dev.pug -------------------------------------------------------------------------------- /src/clips-of-css/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clock/README.md -------------------------------------------------------------------------------- /src/clock/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clock/dev.pug -------------------------------------------------------------------------------- /src/clock/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clock/index.pug -------------------------------------------------------------------------------- /src/clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clock/script.js -------------------------------------------------------------------------------- /src/clock/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/clock/style.styl -------------------------------------------------------------------------------- /src/codepen-canvas/dev.pug: -------------------------------------------------------------------------------- 1 | canvas#app -------------------------------------------------------------------------------- /src/codepen-cards/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/codepen-christmas-tree/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/codepen-trails/dev.pug: -------------------------------------------------------------------------------- 1 | include codepen.svg 2 | canvas#app -------------------------------------------------------------------------------- /src/color-changing-cubes/dev.pug: -------------------------------------------------------------------------------- 1 | include cubes.pug -------------------------------------------------------------------------------- /src/color-detect-hook-v2/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/color-detect-hook/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/color-image-search/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/color-rings/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/color-rings/dev.pug -------------------------------------------------------------------------------- /src/color-rings/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/colorwheel-pseudo/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/colorwheel-pseudo/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/container-beard/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/container-drive-by/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/corgo-command/dev.pug: -------------------------------------------------------------------------------- 1 | include corgo--optimised.svg -------------------------------------------------------------------------------- /src/cpc-408/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-408/README.md -------------------------------------------------------------------------------- /src/cpc-408/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-408/dev.pug -------------------------------------------------------------------------------- /src/cpc-408/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-408/index.pug -------------------------------------------------------------------------------- /src/cpc-408/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-408/script.js -------------------------------------------------------------------------------- /src/cpc-408/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-408/style.styl -------------------------------------------------------------------------------- /src/cpc-dinosaurs/script.js: -------------------------------------------------------------------------------- 1 | // ? 2 | -------------------------------------------------------------------------------- /src/cpc-earth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-earth/README.md -------------------------------------------------------------------------------- /src/cpc-earth/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/cpc-earth/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-earth/index.pug -------------------------------------------------------------------------------- /src/cpc-earth/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-earth/script.js -------------------------------------------------------------------------------- /src/cpc-earth/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-earth/style.styl -------------------------------------------------------------------------------- /src/cpc-forms-password-gen/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/cpc-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-forms/README.md -------------------------------------------------------------------------------- /src/cpc-forms/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-forms/dev.pug -------------------------------------------------------------------------------- /src/cpc-forms/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-forms/index.pug -------------------------------------------------------------------------------- /src/cpc-forms/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-forms/script.js -------------------------------------------------------------------------------- /src/cpc-forms/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-forms/style.styl -------------------------------------------------------------------------------- /src/cpc-ghosts/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-ghosts/dev.pug -------------------------------------------------------------------------------- /src/cpc-ghosts/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-ghosts/index.pug -------------------------------------------------------------------------------- /src/cpc-gravity/dev.pug: -------------------------------------------------------------------------------- 1 | #root -------------------------------------------------------------------------------- /src/cpc-jellyfish-v2/dev.pug: -------------------------------------------------------------------------------- 1 | include actual-jelly-fish-copy.svg -------------------------------------------------------------------------------- /src/cpc-jellyfish/dev.pug: -------------------------------------------------------------------------------- 1 | include jelly-fish-copy.svg -------------------------------------------------------------------------------- /src/cpc-masks/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-masks/dev.pug -------------------------------------------------------------------------------- /src/cpc-masks/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-masks/index.pug -------------------------------------------------------------------------------- /src/cpc-masks/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-masks/script.js -------------------------------------------------------------------------------- /src/cpc-masks/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-masks/style.styl -------------------------------------------------------------------------------- /src/cpc-menus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-menus/README.md -------------------------------------------------------------------------------- /src/cpc-menus/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-menus/dev.pug -------------------------------------------------------------------------------- /src/cpc-menus/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-menus/index.pug -------------------------------------------------------------------------------- /src/cpc-menus/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/cpc-menus/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-menus/style.styl -------------------------------------------------------------------------------- /src/cpc-pandas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-pandas/README.md -------------------------------------------------------------------------------- /src/cpc-pandas/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-pandas/dev.pug -------------------------------------------------------------------------------- /src/cpc-pandas/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-pandas/index.pug -------------------------------------------------------------------------------- /src/cpc-pandas/panda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-pandas/panda.svg -------------------------------------------------------------------------------- /src/cpc-pandas/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-pandas/script.js -------------------------------------------------------------------------------- /src/cpc-planets/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-planets/dev.pug -------------------------------------------------------------------------------- /src/cpc-tigers-eye/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/cpc-tigers/dev.pug: -------------------------------------------------------------------------------- 1 | include stretched-plain.svg -------------------------------------------------------------------------------- /src/cpc-tigers/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-tigers/index.pug -------------------------------------------------------------------------------- /src/cpc-tigers/script.js: -------------------------------------------------------------------------------- 1 | // NOPE 2 | -------------------------------------------------------------------------------- /src/cpc-trick-or-treat/script.js: -------------------------------------------------------------------------------- 1 | // ??? 2 | -------------------------------------------------------------------------------- /src/cpc-water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-water/README.md -------------------------------------------------------------------------------- /src/cpc-water/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-water/dev.pug -------------------------------------------------------------------------------- /src/cpc-water/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-water/index.pug -------------------------------------------------------------------------------- /src/cpc-water/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cpc-water/style.styl -------------------------------------------------------------------------------- /src/credits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/credits/README.md -------------------------------------------------------------------------------- /src/credits/dev.pug: -------------------------------------------------------------------------------- 1 | .title dev 2 | -------------------------------------------------------------------------------- /src/credits/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/credits/index.pug -------------------------------------------------------------------------------- /src/credits/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/credits/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/credits/style.styl -------------------------------------------------------------------------------- /src/css-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-auth/README.md -------------------------------------------------------------------------------- /src/css-auth/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-auth/dev.pug -------------------------------------------------------------------------------- /src/css-auth/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-auth/index.pug -------------------------------------------------------------------------------- /src/css-auth/script.js: -------------------------------------------------------------------------------- 1 | // No JavaScript was harmed here 2 | -------------------------------------------------------------------------------- /src/css-auth/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-auth/style.styl -------------------------------------------------------------------------------- /src/css-battenberg/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-bojack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-bojack/README.md -------------------------------------------------------------------------------- /src/css-bojack/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-bojack/dev.pug -------------------------------------------------------------------------------- /src/css-bojack/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-bojack/index.pug -------------------------------------------------------------------------------- /src/css-bojack/script.js: -------------------------------------------------------------------------------- 1 | // NOT FOUND 2 | -------------------------------------------------------------------------------- /src/css-dial-buttons/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/css-dodecagon/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-drawers-2021/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-game-proto/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/css-guess-who/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-illustration-challenge/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-jigglypuff/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-leif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-leif/README.md -------------------------------------------------------------------------------- /src/css-leif/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-leif/dev.pug -------------------------------------------------------------------------------- /src/css-leif/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-leif/index.pug -------------------------------------------------------------------------------- /src/css-leif/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-leif/script.js -------------------------------------------------------------------------------- /src/css-leif/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-leif/style.styl -------------------------------------------------------------------------------- /src/css-magic-8/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-magic-8/dev.pug -------------------------------------------------------------------------------- /src/css-magic-8/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css-nft/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-nft/dev.pug -------------------------------------------------------------------------------- /src/css-nft/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-nft/index.pug -------------------------------------------------------------------------------- /src/css-nft/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-nft/script.js -------------------------------------------------------------------------------- /src/css-nft/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-nft/style.styl -------------------------------------------------------------------------------- /src/css-pie-charts/script.js: -------------------------------------------------------------------------------- 1 | // NADA 2 | -------------------------------------------------------------------------------- /src/css-ps5-controller/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-rain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-rain/README.md -------------------------------------------------------------------------------- /src/css-rain/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-rain/dev.pug -------------------------------------------------------------------------------- /src/css-rain/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-rain/index.pug -------------------------------------------------------------------------------- /src/css-rain/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/css-rain/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-rain/style.styl -------------------------------------------------------------------------------- /src/css-range-rover/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-russian-bears/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-snorlax/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-snorlax/dev.pug -------------------------------------------------------------------------------- /src/css-snorlax/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-sorcerers-apprentice/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-stopwatch/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-tic-tac-toe/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/css-tom-nook/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/css-tom-nook/dev.pug -------------------------------------------------------------------------------- /src/css-tom-nook/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/css-variable-clip-path-generator/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/cssarousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cssarousel/README.md -------------------------------------------------------------------------------- /src/cssarousel/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cssarousel/dev.pug -------------------------------------------------------------------------------- /src/cssarousel/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cssarousel/index.pug -------------------------------------------------------------------------------- /src/cssarousel/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cubed-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/README.md -------------------------------------------------------------------------------- /src/cubed-svg/cubes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/cubes.pug -------------------------------------------------------------------------------- /src/cubed-svg/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/cubes.svg -------------------------------------------------------------------------------- /src/cubed-svg/dev.pug: -------------------------------------------------------------------------------- 1 | include cubes.pug -------------------------------------------------------------------------------- /src/cubed-svg/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/index.pug -------------------------------------------------------------------------------- /src/cubed-svg/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/script.js -------------------------------------------------------------------------------- /src/cubed-svg/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-svg/style.styl -------------------------------------------------------------------------------- /src/cubed-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/README.md -------------------------------------------------------------------------------- /src/cubed-two/cubes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/cubes.pug -------------------------------------------------------------------------------- /src/cubed-two/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/cubes.svg -------------------------------------------------------------------------------- /src/cubed-two/dev.pug: -------------------------------------------------------------------------------- 1 | include cubes.pug -------------------------------------------------------------------------------- /src/cubed-two/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/index.pug -------------------------------------------------------------------------------- /src/cubed-two/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/script.js -------------------------------------------------------------------------------- /src/cubed-two/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cubed-two/style.styl -------------------------------------------------------------------------------- /src/cuboid-generator/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/cyberpunk-btn/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/cyberpunk-hover/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/cyberpunk-image-hover/dev.pug: -------------------------------------------------------------------------------- 1 | .img 2 | //- img(src='https://assets.codepen.io/605876/cybr.jpg') -------------------------------------------------------------------------------- /src/cybrtrk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cybrtrk/README.md -------------------------------------------------------------------------------- /src/cybrtrk/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cybrtrk/dev.pug -------------------------------------------------------------------------------- /src/cybrtrk/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cybrtrk/index.pug -------------------------------------------------------------------------------- /src/cybrtrk/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/cybrtrk/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/cybrtrk/style.styl -------------------------------------------------------------------------------- /src/d3-ditto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/d3-ditto/README.md -------------------------------------------------------------------------------- /src/d3-ditto/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/d3-ditto/dev.pug -------------------------------------------------------------------------------- /src/d3-ditto/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/d3-ditto/index.pug -------------------------------------------------------------------------------- /src/d3-ditto/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/d3-ditto/script.js -------------------------------------------------------------------------------- /src/d3-ditto/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/d3-ditto/style.styl -------------------------------------------------------------------------------- /src/defineglitch/dev.pug: -------------------------------------------------------------------------------- 1 | canvas 2 | -------------------------------------------------------------------------------- /src/details-and-summary/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/dial-btn/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/dial-btn/dev.pug -------------------------------------------------------------------------------- /src/dial-btn/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/dial-btn/index.pug -------------------------------------------------------------------------------- /src/dial-btn/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/dial-btn/script.js -------------------------------------------------------------------------------- /src/dial-btn/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/dial-btn/style.styl -------------------------------------------------------------------------------- /src/digital/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/digital/README.md -------------------------------------------------------------------------------- /src/digital/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/digital/dev.pug -------------------------------------------------------------------------------- /src/digital/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/digital/index.pug -------------------------------------------------------------------------------- /src/digital/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/digital/script.js -------------------------------------------------------------------------------- /src/digital/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/digital/style.styl -------------------------------------------------------------------------------- /src/directional-aware-react-buttons/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/display-contents/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ditto-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ditto-v2/README.md -------------------------------------------------------------------------------- /src/ditto-v2/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ditto-v2/dev.pug -------------------------------------------------------------------------------- /src/ditto-v2/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ditto-v2/index.pug -------------------------------------------------------------------------------- /src/ditto-v2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ditto-v2/script.js -------------------------------------------------------------------------------- /src/ditto-v2/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ditto-v2/style.styl -------------------------------------------------------------------------------- /src/doge-500/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/doge-500/README.md -------------------------------------------------------------------------------- /src/doge-500/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/doge-500/dev.pug -------------------------------------------------------------------------------- /src/doge-500/doge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/doge-500/doge.svg -------------------------------------------------------------------------------- /src/doge-500/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/doge-500/index.pug -------------------------------------------------------------------------------- /src/doge-500/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/doge-500/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/doge-500/style.styl -------------------------------------------------------------------------------- /src/donkey-kong-minecart/dev.pug: -------------------------------------------------------------------------------- 1 | .track 2 | include dk.svg -------------------------------------------------------------------------------- /src/donkey-kong-minecart/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/download-cubes/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/drifting-bg/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/drifting-bg/dev.pug -------------------------------------------------------------------------------- /src/drop-the-caps/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/duck-loader/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/duck-loader/dev.pug -------------------------------------------------------------------------------- /src/duotone-2020/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/duotone-2020/dev.pug -------------------------------------------------------------------------------- /src/dynamic-mondrian/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/e-signature/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/easter-egg-hunt/script.js: -------------------------------------------------------------------------------- 1 | // None 2 | -------------------------------------------------------------------------------- /src/egg-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/egg-css/README.md -------------------------------------------------------------------------------- /src/egg-css/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/egg-css/dev.pug -------------------------------------------------------------------------------- /src/egg-css/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/egg-css/index.pug -------------------------------------------------------------------------------- /src/egg-css/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/egg-css/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/egg-css/style.styl -------------------------------------------------------------------------------- /src/eggo-jh3y/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-jh3y/README.md -------------------------------------------------------------------------------- /src/eggo-jh3y/dev.pug: -------------------------------------------------------------------------------- 1 | include eggo-optimized.svg -------------------------------------------------------------------------------- /src/eggo-jh3y/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-jh3y/index.pug -------------------------------------------------------------------------------- /src/eggo-jh3y/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/eggo-jh3y/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-jh3y/style.styl -------------------------------------------------------------------------------- /src/eggo-lines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-lines/README.md -------------------------------------------------------------------------------- /src/eggo-lines/dev.pug: -------------------------------------------------------------------------------- 1 | include eggo.svg -------------------------------------------------------------------------------- /src/eggo-lines/eggo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-lines/eggo.svg -------------------------------------------------------------------------------- /src/eggo-lines/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/eggo-lines/index.pug -------------------------------------------------------------------------------- /src/eggo-lines/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/ekg-line-svg/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ekg-line-svg/dev.pug -------------------------------------------------------------------------------- /src/ekg-line-svg/ekg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ekg-line-svg/ekg.svg -------------------------------------------------------------------------------- /src/ekg-line-svg/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/emoji-carousel/script.js: -------------------------------------------------------------------------------- 1 | // Nope 2 | -------------------------------------------------------------------------------- /src/eq-button-houdini-actual/dev.pug: -------------------------------------------------------------------------------- 1 | .container 2 | button Beats -------------------------------------------------------------------------------- /src/eq-button-houdini/dev.pug: -------------------------------------------------------------------------------- 1 | .container 2 | button.wand Tune -------------------------------------------------------------------------------- /src/equalizer-clip-path/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/equalizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/equalizer/README.md -------------------------------------------------------------------------------- /src/equalizer/dev.pug: -------------------------------------------------------------------------------- 1 | .equalizer -------------------------------------------------------------------------------- /src/equalizer/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/equalizer/index.pug -------------------------------------------------------------------------------- /src/equalizer/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/equalizer/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/equalizer/style.styl -------------------------------------------------------------------------------- /src/falling-towers/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/feral-hogs-motion-path/script.js: -------------------------------------------------------------------------------- 1 | // NOT FOUND 2 | -------------------------------------------------------------------------------- /src/fidgety-paths/dev.pug: -------------------------------------------------------------------------------- 1 | .text 2 | include codepen.pug -------------------------------------------------------------------------------- /src/finder-faces/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/finder-faces/dev.pug -------------------------------------------------------------------------------- /src/finder-faces/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/fireflies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/README.md -------------------------------------------------------------------------------- /src/fireflies/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/dev.pug -------------------------------------------------------------------------------- /src/fireflies/face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/face.svg -------------------------------------------------------------------------------- /src/fireflies/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/index.pug -------------------------------------------------------------------------------- /src/fireflies/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/script.js -------------------------------------------------------------------------------- /src/fireflies/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fireflies/style.styl -------------------------------------------------------------------------------- /src/firework-button/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/five-dots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/five-dots/README.md -------------------------------------------------------------------------------- /src/five-dots/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/five-dots/dev.pug -------------------------------------------------------------------------------- /src/five-dots/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/five-dots/index.pug -------------------------------------------------------------------------------- /src/five-dots/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/five-dots/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/five-dots/style.styl -------------------------------------------------------------------------------- /src/flat-hello-world/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/flick-timer/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/flick-timer/dev.pug -------------------------------------------------------------------------------- /src/flipping-text/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/flippy-loader/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/flippy-snaps-gsap/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/font-size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/font-size/README.md -------------------------------------------------------------------------------- /src/font-size/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/font-size/dev.pug -------------------------------------------------------------------------------- /src/font-size/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/font-size/index.pug -------------------------------------------------------------------------------- /src/font-size/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/font-size/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/font-size/style.styl -------------------------------------------------------------------------------- /src/footballlll/dev.pug: -------------------------------------------------------------------------------- 1 | h1.showing Click to add balls!
⚽️ 2 | .info 3 | -------------------------------------------------------------------------------- /src/framer-infinite-slider/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frog-bun-toggle/script.js: -------------------------------------------------------------------------------- 1 | // Nope 2 | -------------------------------------------------------------------------------- /src/fun-cubes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fun-cubes/README.md -------------------------------------------------------------------------------- /src/fun-cubes/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fun-cubes/dev.pug -------------------------------------------------------------------------------- /src/fun-cubes/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fun-cubes/index.pug -------------------------------------------------------------------------------- /src/fun-cubes/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/fun-cubes/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/fun-cubes/style.styl -------------------------------------------------------------------------------- /src/geminid-2018/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/geminid-2018/dev.pug -------------------------------------------------------------------------------- /src/gif-hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gif-hero/README.md -------------------------------------------------------------------------------- /src/gif-hero/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gif-hero/dev.pug -------------------------------------------------------------------------------- /src/gif-hero/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gif-hero/index.pug -------------------------------------------------------------------------------- /src/gif-hero/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gif-hero/script.js -------------------------------------------------------------------------------- /src/gif-hero/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gif-hero/style.styl -------------------------------------------------------------------------------- /src/glitchy-image-reveal/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/glittery-svg-text/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/good-cheap-fast/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/gooey-css-full-page-menu/script.js: -------------------------------------------------------------------------------- 1 | //404 2 | -------------------------------------------------------------------------------- /src/gradient-illusion/dev.pug: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gradient-illusion/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/gradient-shaded-words/script.js: -------------------------------------------------------------------------------- 1 | // ??? -------------------------------------------------------------------------------- /src/grand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/grand/README.md -------------------------------------------------------------------------------- /src/grand/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/grand/dev.pug -------------------------------------------------------------------------------- /src/grand/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/grand/index.pug -------------------------------------------------------------------------------- /src/grand/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/grand/script.js -------------------------------------------------------------------------------- /src/grand/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/grand/style.styl -------------------------------------------------------------------------------- /src/grid-gallery-showcase/script.js: -------------------------------------------------------------------------------- 1 | // ? -------------------------------------------------------------------------------- /src/gsap-hifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/README.md -------------------------------------------------------------------------------- /src/gsap-hifi/dev.pug: -------------------------------------------------------------------------------- 1 | include hifi.svg -------------------------------------------------------------------------------- /src/gsap-hifi/dupe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/dupe.svg -------------------------------------------------------------------------------- /src/gsap-hifi/hifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/hifi.svg -------------------------------------------------------------------------------- /src/gsap-hifi/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/index.pug -------------------------------------------------------------------------------- /src/gsap-hifi/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/script.js -------------------------------------------------------------------------------- /src/gsap-hifi/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/gsap-hifi/style.styl -------------------------------------------------------------------------------- /src/gsap-manipulate-time/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/gsap-play-lwj/dev.pug: -------------------------------------------------------------------------------- 1 | include peep.svg 2 | h1 Say "Corgi", wait, "Party" -------------------------------------------------------------------------------- /src/gsap-traffic/dev.pug: -------------------------------------------------------------------------------- 1 | include traffic.pug -------------------------------------------------------------------------------- /src/happy-hello-world/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/happy-hello-world/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/hexadecimal-hangman/dev.pug: -------------------------------------------------------------------------------- 1 | #app 2 | h1 Loading... -------------------------------------------------------------------------------- /src/hold-hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hold-hook/README.md -------------------------------------------------------------------------------- /src/hold-hook/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hold-hook/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hold-hook/index.pug -------------------------------------------------------------------------------- /src/hold-hook/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hold-hook/script.js -------------------------------------------------------------------------------- /src/hold-hook/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hold-hook/style.styl -------------------------------------------------------------------------------- /src/holiday-card/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/holiday-card/dev.pug -------------------------------------------------------------------------------- /src/holiday-card/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/hooks-color-select-no-bg/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-color-select/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-mouse-move/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-share-time/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-typography-scale/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-use-effect-optional/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-window-mouse/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hooks-window-resize/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/houdini-tesla-coil/dev.pug: -------------------------------------------------------------------------------- 1 | .container 2 | button.tesla It's Alive! -------------------------------------------------------------------------------- /src/houdini-worklet-fun/dev.pug: -------------------------------------------------------------------------------- 1 | .container 2 | button Tune -------------------------------------------------------------------------------- /src/hourglass-loader/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/hourglass-loader/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hsl-slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hsl-slider/README.md -------------------------------------------------------------------------------- /src/hsl-slider/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/hsl-slider/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hsl-slider/index.pug -------------------------------------------------------------------------------- /src/hsl-slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hsl-slider/script.js -------------------------------------------------------------------------------- /src/hsl-sliders/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hsl-sliders/dev.pug -------------------------------------------------------------------------------- /src/hulk-smash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/README.md -------------------------------------------------------------------------------- /src/hulk-smash/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/dev.pug -------------------------------------------------------------------------------- /src/hulk-smash/hulk.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/hulk.pug -------------------------------------------------------------------------------- /src/hulk-smash/hulk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/hulk.svg -------------------------------------------------------------------------------- /src/hulk-smash/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/index.pug -------------------------------------------------------------------------------- /src/hulk-smash/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hulk-smash/script.js -------------------------------------------------------------------------------- /src/hxouse-recreate/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hyperspace-2/dev.pug: -------------------------------------------------------------------------------- 1 | //- Hold mouse/finger down to initiate the jump to Hyperspace 🤓 -------------------------------------------------------------------------------- /src/hyperspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hyperspace/README.md -------------------------------------------------------------------------------- /src/hyperspace/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hyperspace/dev.pug -------------------------------------------------------------------------------- /src/hyperspace/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hyperspace/index.pug -------------------------------------------------------------------------------- /src/hyperspace/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hyperspace/script.js -------------------------------------------------------------------------------- /src/hypno-bear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-bear/README.md -------------------------------------------------------------------------------- /src/hypno-bear/bear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-bear/bear.svg -------------------------------------------------------------------------------- /src/hypno-bear/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-bear/dev.pug -------------------------------------------------------------------------------- /src/hypno-bear/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-bear/index.pug -------------------------------------------------------------------------------- /src/hypno-bear/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-bear/script.js -------------------------------------------------------------------------------- /src/hypno-circle/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-circle/dev.pug -------------------------------------------------------------------------------- /src/hypno-circle/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/hypno-wheel/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno-wheel/dev.pug -------------------------------------------------------------------------------- /src/hypno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno/README.md -------------------------------------------------------------------------------- /src/hypno/dev.pug: -------------------------------------------------------------------------------- 1 | canvas 2 | button 3 | i.fa.fa-refresh 4 | -------------------------------------------------------------------------------- /src/hypno/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno/index.pug -------------------------------------------------------------------------------- /src/hypno/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno/script.js -------------------------------------------------------------------------------- /src/hypno/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/hypno/style.styl -------------------------------------------------------------------------------- /src/hypnotists-watch/dev.pug: -------------------------------------------------------------------------------- 1 | include Hypno-Watch.svg -------------------------------------------------------------------------------- /src/image-overlays/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/image-waves/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/image-waves/dev.pug -------------------------------------------------------------------------------- /src/image-waves/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/impossible-button/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/impossible-checkbox/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/infinity-triangles/script.js: -------------------------------------------------------------------------------- 1 | // NOPE 2 | -------------------------------------------------------------------------------- /src/is-a-primary/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/javascript-debounce-throttle-visualisation/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/javascript-volume-meter/dev.pug: -------------------------------------------------------------------------------- 1 | //- Audio level label 2 | h1 Volume -------------------------------------------------------------------------------- /src/kent-audio-replay-visualiser/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/kent-recorder/dev.pug: -------------------------------------------------------------------------------- 1 | #root -------------------------------------------------------------------------------- /src/kinematic-something-css/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/lava-lamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lava-lamp/README.md -------------------------------------------------------------------------------- /src/lava-lamp/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lava-lamp/dev.pug -------------------------------------------------------------------------------- /src/lava-lamp/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lava-lamp/index.pug -------------------------------------------------------------------------------- /src/lava-lamp/script.js: -------------------------------------------------------------------------------- 1 | //NOPE 2 | -------------------------------------------------------------------------------- /src/lava-lamp/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lava-lamp/style.styl -------------------------------------------------------------------------------- /src/lego-cyber-truck/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/legra-webcam/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/legra-webcam/dev.pug -------------------------------------------------------------------------------- /src/light-bulb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/light-bulb/README.md -------------------------------------------------------------------------------- /src/light-bulb/dev.pug: -------------------------------------------------------------------------------- 1 | include light.pug -------------------------------------------------------------------------------- /src/light-bulb/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/light-bulb/index.pug -------------------------------------------------------------------------------- /src/light-bulb/light.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/light-bulb/light.pug -------------------------------------------------------------------------------- /src/light-bulb/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/light-bulb/light.svg -------------------------------------------------------------------------------- /src/light-bulb/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/light-bulb/script.js -------------------------------------------------------------------------------- /src/lipsum-generator/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/lisajous-canvas/dev.pug: -------------------------------------------------------------------------------- 1 | canvas.showcase -------------------------------------------------------------------------------- /src/loadman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/loadman/README.md -------------------------------------------------------------------------------- /src/loadman/dev.pug: -------------------------------------------------------------------------------- 1 | .load-man 2 | -------------------------------------------------------------------------------- /src/loadman/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/loadman/index.pug -------------------------------------------------------------------------------- /src/loadman/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/loadman/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/loadman/style.styl -------------------------------------------------------------------------------- /src/love-button/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/love-button/dev.pug -------------------------------------------------------------------------------- /src/lwj-corgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lwj-corgi/README.md -------------------------------------------------------------------------------- /src/lwj-corgi/corgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lwj-corgi/corgi.svg -------------------------------------------------------------------------------- /src/lwj-corgi/dev.pug: -------------------------------------------------------------------------------- 1 | include corgi--optimised.svg -------------------------------------------------------------------------------- /src/lwj-corgi/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lwj-corgi/index.pug -------------------------------------------------------------------------------- /src/lwj-corgi/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lwj-corgi/script.js -------------------------------------------------------------------------------- /src/lwj-corgi/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/lwj-corgi/style.styl -------------------------------------------------------------------------------- /src/magic-lamp/dev.pug: -------------------------------------------------------------------------------- 1 | include magic-lamp--optimized.svg -------------------------------------------------------------------------------- /src/magic-lamp/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magic-lamp/index.pug -------------------------------------------------------------------------------- /src/magic-lamp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magic-lamp/script.js -------------------------------------------------------------------------------- /src/magnifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magnifier/README.md -------------------------------------------------------------------------------- /src/magnifier/dev.pug: -------------------------------------------------------------------------------- 1 | div(magnify) 2 | -------------------------------------------------------------------------------- /src/magnifier/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magnifier/index.pug -------------------------------------------------------------------------------- /src/magnifier/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magnifier/script.js -------------------------------------------------------------------------------- /src/magnifier/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/magnifier/style.styl -------------------------------------------------------------------------------- /src/masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/masonry/README.md -------------------------------------------------------------------------------- /src/masonry/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/masonry/dev.pug -------------------------------------------------------------------------------- /src/masonry/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/masonry/index.pug -------------------------------------------------------------------------------- /src/masonry/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/masonry/script.js -------------------------------------------------------------------------------- /src/masonry/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/masonry/style.styl -------------------------------------------------------------------------------- /src/matter-playground/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/meander-text/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meander-text/dev.pug -------------------------------------------------------------------------------- /src/meanderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meanderer/README.md -------------------------------------------------------------------------------- /src/meanderer/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meanderer/dev.pug -------------------------------------------------------------------------------- /src/meanderer/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meanderer/index.pug -------------------------------------------------------------------------------- /src/meanderer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meanderer/script.js -------------------------------------------------------------------------------- /src/meanderer/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/meanderer/style.styl -------------------------------------------------------------------------------- /src/messy-process/dev.pug: -------------------------------------------------------------------------------- 1 | main 2 | include optimized-mess.svg -------------------------------------------------------------------------------- /src/miri-blinds/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/miri-blinds/dev.pug -------------------------------------------------------------------------------- /src/miri-blinds/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/morphing-lines/dev.pug: -------------------------------------------------------------------------------- 1 | include Lines.svg -------------------------------------------------------------------------------- /src/movies-text/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/movies-text/dev.pug -------------------------------------------------------------------------------- /src/mr-bump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-bump/README.md -------------------------------------------------------------------------------- /src/mr-bump/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-bump/dev.pug -------------------------------------------------------------------------------- /src/mr-bump/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-bump/index.pug -------------------------------------------------------------------------------- /src/mr-bump/script.js: -------------------------------------------------------------------------------- 1 | // Nope 2 | -------------------------------------------------------------------------------- /src/mr-bump/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-bump/style.styl -------------------------------------------------------------------------------- /src/mr-greedy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-greedy/README.md -------------------------------------------------------------------------------- /src/mr-greedy/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-greedy/dev.pug -------------------------------------------------------------------------------- /src/mr-greedy/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-greedy/index.pug -------------------------------------------------------------------------------- /src/mr-greedy/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-greedy/script.js -------------------------------------------------------------------------------- /src/mr-greedy/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-greedy/style.styl -------------------------------------------------------------------------------- /src/mr-rush-css/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/mr-rush-css/dev.pug -------------------------------------------------------------------------------- /src/mr-rush-css/script.js: -------------------------------------------------------------------------------- 1 | // NOPE 2 | -------------------------------------------------------------------------------- /src/mushroom-fields/dev.pug: -------------------------------------------------------------------------------- 1 | include mushroom.pug -------------------------------------------------------------------------------- /src/my-template/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/my-template/style.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/netflix-scroll-snap/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/neumorphic-text/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/neumorphic-toolkit/dev.pug: -------------------------------------------------------------------------------- 1 | #app 2 | -------------------------------------------------------------------------------- /src/neverending-noodles/dev.pug: -------------------------------------------------------------------------------- 1 | #root -------------------------------------------------------------------------------- /src/newtons-bulbs-2021/dev.pug: -------------------------------------------------------------------------------- 1 | include Scene.svg -------------------------------------------------------------------------------- /src/night-lamp-star-master/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/node-explorer/dev.pug: -------------------------------------------------------------------------------- 1 | #mocha -------------------------------------------------------------------------------- /src/node-explorer/style.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/non-moving-square-illusion/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/ny-2021-cube/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ny-2021-cube/dev.pug -------------------------------------------------------------------------------- /src/ny-2021-cube/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/octobear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/octobear/README.md -------------------------------------------------------------------------------- /src/octobear/dev.pug: -------------------------------------------------------------------------------- 1 | include octobear-with-glare.svg -------------------------------------------------------------------------------- /src/octobear/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/octobear/index.pug -------------------------------------------------------------------------------- /src/octobear/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/octobear/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/octobear/style.styl -------------------------------------------------------------------------------- /src/oddly-cubes/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/oddly-cubes/dev.pug -------------------------------------------------------------------------------- /src/orion-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/README.md -------------------------------------------------------------------------------- /src/orion-v2/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/dev.pug -------------------------------------------------------------------------------- /src/orion-v2/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/index.pug -------------------------------------------------------------------------------- /src/orion-v2/orions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/orions.svg -------------------------------------------------------------------------------- /src/orion-v2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/script.js -------------------------------------------------------------------------------- /src/orion-v2/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orion-v2/style.styl -------------------------------------------------------------------------------- /src/orionid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orionid/README.md -------------------------------------------------------------------------------- /src/orionid/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orionid/dev.pug -------------------------------------------------------------------------------- /src/orionid/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orionid/index.pug -------------------------------------------------------------------------------- /src/orionid/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orionid/script.js -------------------------------------------------------------------------------- /src/orionid/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/orionid/style.styl -------------------------------------------------------------------------------- /src/pac-reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pac-reveal/README.md -------------------------------------------------------------------------------- /src/pac-reveal/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pac-reveal/dev.pug -------------------------------------------------------------------------------- /src/pac-reveal/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pac-reveal/index.pug -------------------------------------------------------------------------------- /src/pac-reveal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pac-reveal/script.js -------------------------------------------------------------------------------- /src/page-visibility-api/dev.pug: -------------------------------------------------------------------------------- 1 | .container 2 | h1.title Hey! You're here. Don't leave 😅 -------------------------------------------------------------------------------- /src/palette-generator/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/pancake-flip/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pancake-flip/dev.pug -------------------------------------------------------------------------------- /src/paper-stack-carousel-gsap/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/parallax-var/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/parallax-var/dev.pug -------------------------------------------------------------------------------- /src/party-bear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-bear/README.md -------------------------------------------------------------------------------- /src/party-bear/bear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-bear/bear.svg -------------------------------------------------------------------------------- /src/party-bear/dev.pug: -------------------------------------------------------------------------------- 1 | include bear-copy.svg -------------------------------------------------------------------------------- /src/party-bear/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-bear/index.pug -------------------------------------------------------------------------------- /src/party-bear/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/party-cubes/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-cubes/dev.pug -------------------------------------------------------------------------------- /src/party-cubes/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/party-egg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-egg/README.md -------------------------------------------------------------------------------- /src/party-egg/dev.pug: -------------------------------------------------------------------------------- 1 | include eggo.svg 2 | -------------------------------------------------------------------------------- /src/party-egg/eggo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-egg/eggo.svg -------------------------------------------------------------------------------- /src/party-egg/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-egg/index.pug -------------------------------------------------------------------------------- /src/party-egg/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/party-egg/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/party-egg/style.styl -------------------------------------------------------------------------------- /src/pentagonal-bypyramid/script.js: -------------------------------------------------------------------------------- 1 | //404 2 | -------------------------------------------------------------------------------- /src/perspective-text/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/photo-transitions/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/photocube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/photocube/README.md -------------------------------------------------------------------------------- /src/photocube/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/photocube/dev.pug -------------------------------------------------------------------------------- /src/photocube/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/photocube/index.pug -------------------------------------------------------------------------------- /src/photocube/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/photocube/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/photocube/style.styl -------------------------------------------------------------------------------- /src/pixelator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pixelator/README.md -------------------------------------------------------------------------------- /src/pixelator/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/pixelator/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pixelator/index.pug -------------------------------------------------------------------------------- /src/pixelator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pixelator/script.js -------------------------------------------------------------------------------- /src/pixelator/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pixelator/style.styl -------------------------------------------------------------------------------- /src/pixi-blizzard/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pixi-embers/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/poetry-grabber/dev.pug: -------------------------------------------------------------------------------- 1 | #root 2 | h2.loading__msg Contacting PoetryDB... 📞 -------------------------------------------------------------------------------- /src/pokedex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pokedex/README.md -------------------------------------------------------------------------------- /src/pokedex/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pokedex/dev.pug -------------------------------------------------------------------------------- /src/pokedex/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pokedex/index.pug -------------------------------------------------------------------------------- /src/pokedex/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pokedex/script.js -------------------------------------------------------------------------------- /src/pokedex/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pokedex/style.styl -------------------------------------------------------------------------------- /src/polywork-loader/dev.pug: -------------------------------------------------------------------------------- 1 | include polywork.svg -------------------------------------------------------------------------------- /src/pong-loader/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pong-loader/dev.pug -------------------------------------------------------------------------------- /src/pong-loader/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/pop-a-mole/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pop-a-mole/dev.pug -------------------------------------------------------------------------------- /src/pop-a-mole/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pop-a-mole/index.pug -------------------------------------------------------------------------------- /src/pop-a-mole/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/pop-a-mole/script.js -------------------------------------------------------------------------------- /src/profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/README.md -------------------------------------------------------------------------------- /src/profiler/badge.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/badge.styl -------------------------------------------------------------------------------- /src/profiler/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/base.styl -------------------------------------------------------------------------------- /src/profiler/bio.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/bio.pug -------------------------------------------------------------------------------- /src/profiler/button.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/button.pug -------------------------------------------------------------------------------- /src/profiler/button.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/button.styl -------------------------------------------------------------------------------- /src/profiler/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/dev.pug -------------------------------------------------------------------------------- /src/profiler/footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/footer.pug -------------------------------------------------------------------------------- /src/profiler/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/footer.styl -------------------------------------------------------------------------------- /src/profiler/header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/header.pug -------------------------------------------------------------------------------- /src/profiler/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/header.styl -------------------------------------------------------------------------------- /src/profiler/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/index.pug -------------------------------------------------------------------------------- /src/profiler/nav.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/nav.pug -------------------------------------------------------------------------------- /src/profiler/nav.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/nav.styl -------------------------------------------------------------------------------- /src/profiler/pen.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/pen.pug -------------------------------------------------------------------------------- /src/profiler/pen.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/pen.styl -------------------------------------------------------------------------------- /src/profiler/promo.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/promo.pug -------------------------------------------------------------------------------- /src/profiler/promo.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/promo.styl -------------------------------------------------------------------------------- /src/profiler/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/profiler/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/profiler/style.styl -------------------------------------------------------------------------------- /src/property-car/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/property-car/dev.pug -------------------------------------------------------------------------------- /src/property-car/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/property-loader/dev.pug: -------------------------------------------------------------------------------- 1 | .loader Charging... -------------------------------------------------------------------------------- /src/property-loader/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/property-party/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/property-sonar/dev.pug: -------------------------------------------------------------------------------- 1 | .sonar -------------------------------------------------------------------------------- /src/property-sonar/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/property-waves/dev.pug: -------------------------------------------------------------------------------- 1 | .waves -------------------------------------------------------------------------------- /src/property-waves/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/pseudo-dot-loaders/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/pug-xmas-tree/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/pure-css-carousel/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/push-quentin/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/push-quentin/dev.pug -------------------------------------------------------------------------------- /src/pythagoras-dissection/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/raf-hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/raf-hook/README.md -------------------------------------------------------------------------------- /src/raf-hook/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/raf-hook/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/raf-hook/index.pug -------------------------------------------------------------------------------- /src/raf-hook/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/raf-hook/script.js -------------------------------------------------------------------------------- /src/raf-hook/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/raf-hook/style.styl -------------------------------------------------------------------------------- /src/rainbow-cloud/dev.pug: -------------------------------------------------------------------------------- 1 | include rainbow-final.pug 2 | button Make me happy 🌈 -------------------------------------------------------------------------------- /src/rainbow-spinner/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/random-canvas-worms/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/random-circles/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/react-audio-visualiser/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-audio-visualizer/dev.pug: -------------------------------------------------------------------------------- 1 | #root -------------------------------------------------------------------------------- /src/react-cards-css/dev.pug: -------------------------------------------------------------------------------- 1 | #app 2 | h1(style="color: #fff") Loading... ⌛️ -------------------------------------------------------------------------------- /src/react-cards/dev.pug: -------------------------------------------------------------------------------- 1 | #app 2 | h1(style="color: #fff") Loading... ⌛️ -------------------------------------------------------------------------------- /src/react-context-16.3/dev.pug: -------------------------------------------------------------------------------- 1 | #root Loading... 2 | -------------------------------------------------------------------------------- /src/react-context-state-management-todo/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-hoc-drag-and-resize/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-masonry/dev.pug: -------------------------------------------------------------------------------- 1 | #root 2 | .loader -------------------------------------------------------------------------------- /src/react-mp3-visualiser/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-parallax-bg-position/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-parallax/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-portals/dev.pug: -------------------------------------------------------------------------------- 1 | #app 2 | #outside -------------------------------------------------------------------------------- /src/react-starter/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-video-player/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/react-waves/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/react-waves/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/react-waves/wave.svg -------------------------------------------------------------------------------- /src/render-props-watchfaces/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/repeating-rows/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/resizable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/resizable/README.md -------------------------------------------------------------------------------- /src/resizable/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/resizable/dev.pug -------------------------------------------------------------------------------- /src/resizable/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/resizable/index.pug -------------------------------------------------------------------------------- /src/resizable/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/resizable/script.js -------------------------------------------------------------------------------- /src/resizable/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/resizable/style.styl -------------------------------------------------------------------------------- /src/responsive-motion-path-playground/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/retro-wavey-cat/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/rgba-slider/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/rilakkuma-css/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/santa-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/santa-list/README.md -------------------------------------------------------------------------------- /src/santa-list/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/santa-list/dev.pug -------------------------------------------------------------------------------- /src/santa-list/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/santa-list/index.pug -------------------------------------------------------------------------------- /src/santa-list/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/santa-list/script.js -------------------------------------------------------------------------------- /src/scalectrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scalectrix/README.md -------------------------------------------------------------------------------- /src/scalectrix/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scalectrix/dev.pug -------------------------------------------------------------------------------- /src/scalectrix/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scalectrix/index.pug -------------------------------------------------------------------------------- /src/scalectrix/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/scalectrix/track.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scalectrix/track.svg -------------------------------------------------------------------------------- /src/scaled-container-query-poc/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/screaming-snake-circle/dev.pug: -------------------------------------------------------------------------------- 1 | include optimized-snake.svg -------------------------------------------------------------------------------- /src/screaming-snake/dev.pug: -------------------------------------------------------------------------------- 1 | include snake.svg -------------------------------------------------------------------------------- /src/scroll-to-reveal-css-variables/dev.pug: -------------------------------------------------------------------------------- 1 | h1 Revealed! -------------------------------------------------------------------------------- /src/scroller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scroller/README.md -------------------------------------------------------------------------------- /src/scroller/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scroller/dev.pug -------------------------------------------------------------------------------- /src/scroller/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scroller/index.pug -------------------------------------------------------------------------------- /src/scroller/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scroller/script.js -------------------------------------------------------------------------------- /src/scroller/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/scroller/style.styl -------------------------------------------------------------------------------- /src/seeing-stars/dev.pug: -------------------------------------------------------------------------------- 1 | canvas#app -------------------------------------------------------------------------------- /src/ship-it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/README.md -------------------------------------------------------------------------------- /src/ship-it/boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/boat.svg -------------------------------------------------------------------------------- /src/ship-it/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/dev.pug -------------------------------------------------------------------------------- /src/ship-it/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/index.pug -------------------------------------------------------------------------------- /src/ship-it/proto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/proto.svg -------------------------------------------------------------------------------- /src/ship-it/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/script.js -------------------------------------------------------------------------------- /src/ship-it/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/ship-it/style.styl -------------------------------------------------------------------------------- /src/ship-it/with-text.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shooting-stars/dev.pug: -------------------------------------------------------------------------------- 1 | canvas#app -------------------------------------------------------------------------------- /src/sibling-calendar-view/script.js: -------------------------------------------------------------------------------- 1 | // NOPE 2 | -------------------------------------------------------------------------------- /src/sibling-combinator-demo/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/single-div-truck/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/single-div-truck/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/site-404/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/site-404/README.md -------------------------------------------------------------------------------- /src/site-404/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/site-404/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/site-404/index.pug -------------------------------------------------------------------------------- /src/site-404/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/site-404/script.js -------------------------------------------------------------------------------- /src/site-404/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/site-404/style.styl -------------------------------------------------------------------------------- /src/sliding-name/dev.pug: -------------------------------------------------------------------------------- 1 | h1.sliding-name 2 | span Your Name? 3 | -------------------------------------------------------------------------------- /src/sliding-name/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/sloan-twitch-overlay/dev.pug: -------------------------------------------------------------------------------- 1 | include yolo-sloan.svg -------------------------------------------------------------------------------- /src/smash-bros-is-coming/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/sounder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sounder/README.md -------------------------------------------------------------------------------- /src/sounder/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/sounder/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sounder/index.pug -------------------------------------------------------------------------------- /src/sounder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sounder/script.js -------------------------------------------------------------------------------- /src/sounder/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sounder/style.styl -------------------------------------------------------------------------------- /src/splat-path/Apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/Apple.svg -------------------------------------------------------------------------------- /src/splat-path/Code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/Code.svg -------------------------------------------------------------------------------- /src/splat-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/README.md -------------------------------------------------------------------------------- /src/splat-path/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/dev.pug -------------------------------------------------------------------------------- /src/splat-path/drop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/splat-path/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/index.pug -------------------------------------------------------------------------------- /src/splat-path/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/splat-path/script.js -------------------------------------------------------------------------------- /src/spoopy-button/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/spoopy-button/script.js: -------------------------------------------------------------------------------- 1 | //404 2 | -------------------------------------------------------------------------------- /src/spoopy-ghost/dev.pug: -------------------------------------------------------------------------------- 1 | include ghost--optimized.svg 2 | h1 Tap -------------------------------------------------------------------------------- /src/spotlight-property/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/sr-71/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/README.md -------------------------------------------------------------------------------- /src/sr-71/dev.pug: -------------------------------------------------------------------------------- 1 | include scene.pug -------------------------------------------------------------------------------- /src/sr-71/exp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/exp.svg -------------------------------------------------------------------------------- /src/sr-71/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/index.pug -------------------------------------------------------------------------------- /src/sr-71/landscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/landscape.svg -------------------------------------------------------------------------------- /src/sr-71/scene.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/scene.pug -------------------------------------------------------------------------------- /src/sr-71/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/script.js -------------------------------------------------------------------------------- /src/sr-71/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sr-71/style.styl -------------------------------------------------------------------------------- /src/stacker/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stacker/dev.pug -------------------------------------------------------------------------------- /src/stacker/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stacker/index.pug -------------------------------------------------------------------------------- /src/stacker/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/stacker/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stacker/style.styl -------------------------------------------------------------------------------- /src/staggered-cubes/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/star-cursor/dev.pug: -------------------------------------------------------------------------------- 1 | .star-container 2 | h1 👇 -------------------------------------------------------------------------------- /src/star-cursor/star.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/star-cursor/star.pug -------------------------------------------------------------------------------- /src/star-cursor/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/star-cursor/star.svg -------------------------------------------------------------------------------- /src/star-trails/dev.pug: -------------------------------------------------------------------------------- 1 | canvas#app -------------------------------------------------------------------------------- /src/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/static/README.md -------------------------------------------------------------------------------- /src/static/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/static/dev.pug -------------------------------------------------------------------------------- /src/static/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/static/index.pug -------------------------------------------------------------------------------- /src/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/static/script.js -------------------------------------------------------------------------------- /src/static/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/static/style.styl -------------------------------------------------------------------------------- /src/steveg-collab/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/stopwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stopwatch/README.md -------------------------------------------------------------------------------- /src/stopwatch/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stopwatch/dev.pug -------------------------------------------------------------------------------- /src/stopwatch/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stopwatch/index.pug -------------------------------------------------------------------------------- /src/stopwatch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stopwatch/script.js -------------------------------------------------------------------------------- /src/stopwatch/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/stopwatch/style.styl -------------------------------------------------------------------------------- /src/strangerizer/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/strangerizer/dev.pug -------------------------------------------------------------------------------- /src/sunny-moony/dev.pug: -------------------------------------------------------------------------------- 1 | include sunny-moony.pug 2 | -------------------------------------------------------------------------------- /src/sunrise-text/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/sunrise-text/dev.pug -------------------------------------------------------------------------------- /src/superstar-dj/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/superstar-dj/dev.pug -------------------------------------------------------------------------------- /src/svg-waves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/svg-waves/README.md -------------------------------------------------------------------------------- /src/svg-waves/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/svg-waves/dev.pug -------------------------------------------------------------------------------- /src/svg-waves/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/svg-waves/index.pug -------------------------------------------------------------------------------- /src/svg-waves/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/svg-waves/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/svg-waves/style.styl -------------------------------------------------------------------------------- /src/swap-loader/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/swap-loader/dev.pug -------------------------------------------------------------------------------- /src/swap-loader/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/swappy-circles/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/t-shirt-cannon-button/cannon-shirt.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/t-shirt-poc/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/t-shirt-poc/dev.pug -------------------------------------------------------------------------------- /src/t-shirt-poc/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/t-shirt-sizing-container/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/table/README.md -------------------------------------------------------------------------------- /src/table/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/table/dev.pug -------------------------------------------------------------------------------- /src/table/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/table/index.pug -------------------------------------------------------------------------------- /src/table/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/table/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/table/style.styl -------------------------------------------------------------------------------- /src/temporal-logo-stroke/dev.pug: -------------------------------------------------------------------------------- 1 | include temporal.svg -------------------------------------------------------------------------------- /src/temporal-star-canvas/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/temporal-vs/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/tesla-coil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/tesla-coil/README.md -------------------------------------------------------------------------------- /src/tesla-coil/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/tesla-coil/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/tesla-coil/index.pug -------------------------------------------------------------------------------- /src/tesla-coil/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/tesla-coil/script.js -------------------------------------------------------------------------------- /src/text-shadow-intro/dev.pug: -------------------------------------------------------------------------------- 1 | .title 2 | - for (let l of 'codepen'.split('')) 3 | span.play= l 4 | -------------------------------------------------------------------------------- /src/that-cup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/that-cup/README.md -------------------------------------------------------------------------------- /src/that-cup/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/that-cup/dev.pug -------------------------------------------------------------------------------- /src/that-cup/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/that-cup/index.pug -------------------------------------------------------------------------------- /src/that-cup/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/that-cup/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/that-cup/style.styl -------------------------------------------------------------------------------- /src/threejs-game-of-life/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/threejs-lego-brick/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/threejs-lego-cyber-truck/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/threejs-supreme-bauble/dev.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/til-bear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/til-bear/README.md -------------------------------------------------------------------------------- /src/til-bear/dev.pug: -------------------------------------------------------------------------------- 1 | include shocked-bear.svg 2 | -------------------------------------------------------------------------------- /src/til-bear/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/til-bear/index.pug -------------------------------------------------------------------------------- /src/til-bear/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/til-bear/script.js -------------------------------------------------------------------------------- /src/til-bear/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/til-bear/style.styl -------------------------------------------------------------------------------- /src/top-10-christmas-movies/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/touch-to-circle/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/train-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/README.md -------------------------------------------------------------------------------- /src/train-path/cedar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/cedar.pug -------------------------------------------------------------------------------- /src/train-path/cedar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/cedar.svg -------------------------------------------------------------------------------- /src/train-path/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/dev.pug -------------------------------------------------------------------------------- /src/train-path/hedge.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/hedge.pug -------------------------------------------------------------------------------- /src/train-path/hedge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/hedge.svg -------------------------------------------------------------------------------- /src/train-path/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/index.pug -------------------------------------------------------------------------------- /src/train-path/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/script.js -------------------------------------------------------------------------------- /src/train-path/train.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/train.pug -------------------------------------------------------------------------------- /src/train-path/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/train.svg -------------------------------------------------------------------------------- /src/train-path/tree.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/train-path/tree.pug -------------------------------------------------------------------------------- /src/trig-circle/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/trig-circle/dev.pug -------------------------------------------------------------------------------- /src/trig-circle/script.js: -------------------------------------------------------------------------------- 1 | // 404 2 | -------------------------------------------------------------------------------- /src/turbo-kitty/dev.pug: -------------------------------------------------------------------------------- 1 | include turbo-kitty--optimised.svg -------------------------------------------------------------------------------- /src/tweet-grabber/dev.pug: -------------------------------------------------------------------------------- 1 | #root 2 | h2 Loading... 🐦 -------------------------------------------------------------------------------- /src/twenty-two-toggle/dev.pug: -------------------------------------------------------------------------------- 1 | h1 New Awesome Pen! 2 | -------------------------------------------------------------------------------- /src/twenty-two-toggle/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/twitter-debates/dev.pug: -------------------------------------------------------------------------------- 1 | include Domo-optimized.svg -------------------------------------------------------------------------------- /src/two-coils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/two-coils/README.md -------------------------------------------------------------------------------- /src/two-coils/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/two-coils/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/two-coils/index.pug -------------------------------------------------------------------------------- /src/two-coils/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/two-coils/script.js -------------------------------------------------------------------------------- /src/two-coils/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/two-coils/style.styl -------------------------------------------------------------------------------- /src/typesetting/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/typesetting/blog.md -------------------------------------------------------------------------------- /src/typesetting/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/typesetting/dev.pug -------------------------------------------------------------------------------- /src/unsplash-color-keyword-search/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/url-state-filter/dev.pug: -------------------------------------------------------------------------------- 1 | input(type='search') -------------------------------------------------------------------------------- /src/use-dark-mode/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/var-buttons/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/var-buttons/dev.pug -------------------------------------------------------------------------------- /src/var-carousel/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/var-carousel/dev.pug -------------------------------------------------------------------------------- /src/var-carousel/script.js: -------------------------------------------------------------------------------- 1 | ;(function(){ 2 | console.info('New pen created!'); 3 | })(); 4 | -------------------------------------------------------------------------------- /src/video-player/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/video-player/dev.pug -------------------------------------------------------------------------------- /src/voyce-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/voyce-code/README.md -------------------------------------------------------------------------------- /src/voyce-code/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/voyce-code/code.svg -------------------------------------------------------------------------------- /src/voyce-code/dev.pug: -------------------------------------------------------------------------------- 1 | include code--optimized.svg -------------------------------------------------------------------------------- /src/voyce-code/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/voyce-code/index.pug -------------------------------------------------------------------------------- /src/voyce-code/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/voyce-code/script.js -------------------------------------------------------------------------------- /src/vue-mail-app/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/vue-mail-app/dev.pug -------------------------------------------------------------------------------- /src/whac-a-mole-react/dev.pug: -------------------------------------------------------------------------------- 1 | #app -------------------------------------------------------------------------------- /src/whassup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/whassup/README.md -------------------------------------------------------------------------------- /src/whassup/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/whassup/dev.pug -------------------------------------------------------------------------------- /src/whassup/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/whassup/index.pug -------------------------------------------------------------------------------- /src/whassup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/whassup/script.js -------------------------------------------------------------------------------- /src/whassup/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/whassup/style.styl -------------------------------------------------------------------------------- /src/which-key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/which-key/README.md -------------------------------------------------------------------------------- /src/which-key/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/which-key/dev.pug -------------------------------------------------------------------------------- /src/which-key/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/which-key/index.pug -------------------------------------------------------------------------------- /src/which-key/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/which-key/script.js -------------------------------------------------------------------------------- /src/which-key/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/which-key/style.styl -------------------------------------------------------------------------------- /src/workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/workflow/README.md -------------------------------------------------------------------------------- /src/workflow/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/workflow/dev.pug -------------------------------------------------------------------------------- /src/workflow/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/workflow/index.pug -------------------------------------------------------------------------------- /src/workflow/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/workflow/script.js -------------------------------------------------------------------------------- /src/workflow/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/workflow/style.styl -------------------------------------------------------------------------------- /src/worldwide-dj/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/worldwide-dj/dev.pug -------------------------------------------------------------------------------- /src/worldwide-dj/dj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/worldwide-dj/dj.svg -------------------------------------------------------------------------------- /src/yarn-kitty/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/yarn-kitty/dev.pug -------------------------------------------------------------------------------- /src/yarn-kitty/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/yarn-kitty/index.pug -------------------------------------------------------------------------------- /src/yarn-kitty/kitty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/yarn-kitty/kitty.svg -------------------------------------------------------------------------------- /src/yarn-kitty/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/yarn-kitty/script.js -------------------------------------------------------------------------------- /src/zdog-box-ring/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-clock/README.md -------------------------------------------------------------------------------- /src/zdog-clock/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-clock/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-clock/index.pug -------------------------------------------------------------------------------- /src/zdog-clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-clock/script.js -------------------------------------------------------------------------------- /src/zdog-dino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dino/README.md -------------------------------------------------------------------------------- /src/zdog-dino/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-dino/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dino/index.pug -------------------------------------------------------------------------------- /src/zdog-dino/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dino/script.js -------------------------------------------------------------------------------- /src/zdog-dino/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dino/style.styl -------------------------------------------------------------------------------- /src/zdog-dna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dna/README.md -------------------------------------------------------------------------------- /src/zdog-dna/dev.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dna/dev.pug -------------------------------------------------------------------------------- /src/zdog-dna/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dna/index.pug -------------------------------------------------------------------------------- /src/zdog-dna/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dna/script.js -------------------------------------------------------------------------------- /src/zdog-dna/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-dna/style.styl -------------------------------------------------------------------------------- /src/zdog-pipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-pipes/README.md -------------------------------------------------------------------------------- /src/zdog-pipes/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-pipes/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-pipes/index.pug -------------------------------------------------------------------------------- /src/zdog-pipes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-pipes/script.js -------------------------------------------------------------------------------- /src/zdog-sandwich-board/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-sandwich/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-watch/README.md -------------------------------------------------------------------------------- /src/zdog-watch/dev.pug: -------------------------------------------------------------------------------- 1 | canvas -------------------------------------------------------------------------------- /src/zdog-watch/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-watch/index.pug -------------------------------------------------------------------------------- /src/zdog-watch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/src/zdog-watch/script.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/stationery-cabinet/HEAD/yarn.lock --------------------------------------------------------------------------------