summaryrefslogtreecommitdiff
path: root/brochure
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2024-09-09 22:28:33 -0400
committerAdam T. Carpenter <atc@53hor.net>2024-09-09 22:28:33 -0400
commit0213fd2dcd09ca4b1252cdc45415a765a887d679 (patch)
tree975beafb05ac296d87167e40c724cac0f9a9dc86 /brochure
parentf2bd378e1a8cdfa7d1520b3734a748dd1cd9de25 (diff)
downloadcarpentertutoring-0213fd2dcd09ca4b1252cdc45415a765a887d679.tar.xz
carpentertutoring-0213fd2dcd09ca4b1252cdc45415a765a887d679.zip
feat: teams and blurbs but lots of todos
Diffstat (limited to 'brochure')
-rw-r--r--brochure/brochure.html38
-rw-r--r--brochure/brochure.js34
-rw-r--r--brochure/index.php24
-rw-r--r--brochure/styles.css93
4 files changed, 0 insertions, 189 deletions
diff --git a/brochure/brochure.html b/brochure/brochure.html
deleted file mode 100644
index 6690f4d..0000000
--- a/brochure/brochure.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!--
-Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--->
-
-
-<button class="button">Flip</button>
-<div class="paper">
- <div class="page left">
- <div class="side front">
- <img src="/assets/brochure/brochure-front-left.png"/>
- </div>
- <div class="side back">
- <img src="/assets/brochure/brochure-back-left.png"/>
- </div>
- </div>
- <div class="page right">
- <div class="side front">
- <img src="/assets/brochure/brochure-front-right.png"/>
- </div>
- <div class="side back">
- <img src="/assets/brochure/brochure-back-right.png"/>
- </div>
- </div>
- <div class="page center">
- <div class="side front">
- <img src="/assets/brochure/brochure-front-center.png"/>
- </div>
- <div class="side back">
- <img src="/assets/brochure/brochure-back-center.png"/>
- </div>
- </div>
-</div>
diff --git a/brochure/brochure.js b/brochure/brochure.js
deleted file mode 100644
index 4872373..0000000
--- a/brochure/brochure.js
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
-Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-
-document.addEventListener("DOMContentLoaded", (event) => {
- const paper = document.querySelector(".paper");
-
- const flipButton = document.querySelector("button")
- flipButton.addEventListener("click", () => {
- paper.classList.toggle("flip")
- })
-
- const leftSide = paper.querySelector(".page.left");
- leftSide.addEventListener("click", () => {
- leftSide.classList.toggle("open")
- });
-
- const rightSide = paper.querySelector(".page.right");
- rightSide.addEventListener("click", () => {
- rightSide.classList.toggle("open")
- });
-
- const centerSide = paper.querySelector(".page.center");
- centerSide.addEventListener("click", () => {
- centerSide.classList.toggle("open")
- });
-});
diff --git a/brochure/index.php b/brochure/index.php
deleted file mode 100644
index 6dd3621..0000000
--- a/brochure/index.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php include('../header.php'); ?>
-<section class="banner">
- <h1>Interactive Brochure</h1>
-</section>
-
-<section class="quiet">
- <noscript>
- This brochure requires JavaScript to work properly. If you prefer not to use JavaScript, you can <a href="/#offerings">view our offerings on our homepage here.</a>
- </noscript>
-
- <p>
- Click on pages to fold and unfold and use <em>Flip</em> to toggle front and back. This works best on a tablet or desktop screen.
- </p>
-
-<?php include('./brochure.html')?>
-
-</section>
-
-<section></section>
-
-<script>
-<?php include('./brochure.js')?>
-</script>
-<?php include('../footer.php'); ?>
diff --git a/brochure/styles.css b/brochure/styles.css
deleted file mode 100644
index 2abb118..0000000
--- a/brochure/styles.css
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
-Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-
-.paper {
- display: grid;
-
- width: 8.25rem;
-
- grid-template-columns: 8.25rem;
- grid-template-rows: 19.41rem; /* .425 aspect */
-
- margin: 2rem auto;
-
- transform-style: preserve-3d;
- transition: transform linear 1s;
-}
-.paper.flip {
- transform: rotateY(180deg);
-}
-
-.paper .page {
- display: inline-block;
-
- grid-column: 1 / 2;
- grid-row: 1 / 2;
-
- position: relative;
-
- transform-style: preserve-3d;
-
- box-shadow: 0 4px 8px #0001;
-}
-
-.paper .page .side {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
-
- background: white;
- backface-visibility: hidden;
-}
-
-.paper .page .side.back {
- transform: rotateY(180deg);
-}
-
-.page {
- transition: transform linear 1s;
-}
-.left.open {
- transform: rotateY(-180deg);
-}
-.right.open {
- transform: rotateY(180deg);
-}
-
-.paper .page .side {
- box-shadow: inset 1px 0 #f2f2f2, inset -1px 0 #f2f2f2;
-}
-
-.side img {
- max-width: 100%;
- max-height: 100%;
-}
-
-.left {
- transform: translateZ(2px);
- transform-origin: center left;
-}
-
-.right {
- transform: translateZ(1px);
- transform-origin: center right;
-}
-
-@media only screen and (min-width: 1500px) {
- .paper {
- width: 21.25em;
-
- grid-template-columns: 21.25em;
- grid-template-rows: 50em; /* .425 aspect */
- }
-}