diff --git a/about/index.html b/about/index.html index e5402bf..c164576 100644 --- a/about/index.html +++ b/about/index.html @@ -44,10 +44,10 @@

Who?

- Terri heads up content development, including curriculum, course planning, project books, and design, and has written a series of books available on Amazon. Terri, a lifelong maker of things and user of power tools, moved to San Francisco in 1996 to pursue a career merging art, technology, and storytelling in the field of digital animation. + Terri heads up content development, including curriculum, course planning, project books, and design, and has written a series of books available on Amazon. Terri, a lifelong maker of things and user of power tools, moved to San Francisco in 1996 to pursue a career merging art, technology, and storytelling in the field of digital animation.

- Vicky heads up operations, including hiring, scheduling, site selection, partnering, marketing and bill paying. Vicky moved to the Bay Area in 1989 after earning a BS in Mechanical Engineering from Carnegie Mellon. She worked for GE, then earned an MBA from Stanford. Vicky then worked in biotechnology with Genentech and various startups. + Vicky heads up operations, including hiring, scheduling, site selection, partnering, marketing and bill paying. Vicky moved to the Bay Area in 1989 after earning a BS in Mechanical Engineering from Carnegie Mellon. She worked for GE, then earned an MBA from Stanford. Vicky then worked in biotechnology with Genentech and various startups.

diff --git a/about/style.css b/about/style.css index a1b8467..7239b58 100644 --- a/about/style.css +++ b/about/style.css @@ -11,7 +11,7 @@ font-family: "Comme"; font-size: 2.5em; color: var(--c); - + /* Safari doesn't support the text-decoration shorthand */ text-decoration-line: underline; text-decoration-color: var(--e); diff --git a/global/generic/footer.css b/global/generic/footer.css index a939057..8cc5d1f 100644 --- a/global/generic/footer.css +++ b/global/generic/footer.css @@ -11,18 +11,18 @@ font-size: 1.2em; } -#footer>div { +#footer > div { flex-grow: 1; text-align: center; display: flex; } -#footer>div>* { +#footer > div > * { padding: 0px 5px; width: 100%; } -#footer>div:not(:last-child)::after { +#footer > div:not(:last-child)::after { content: ""; border: 1px solid var(--a); } diff --git a/global/generic/nav.css b/global/generic/nav.css index f6eac65..a38f2fa 100644 --- a/global/generic/nav.css +++ b/global/generic/nav.css @@ -34,12 +34,12 @@ img { cursor: pointer; } -.page>a { +.page > a { text-decoration: none; color: inherit; } -.page>a>i { +.page > a > i { font-size: min(5rem, 30px); display: none; } @@ -66,15 +66,15 @@ img { } @media (max-width: 900px) { - .page>a>p { + .page > a > p { display: none; } - .page>a>i { + .page > a > i { display: block; } - .pagebar>a::after { + .pagebar > a::after { height: 2px; top: 5px; } diff --git a/global/tiles/footer.html b/global/tiles/footer.html index 41e269a..143f83d 100644 --- a/global/tiles/footer.html +++ b/global/tiles/footer.html @@ -1,22 +1,31 @@ + Footer + + \ No newline at end of file diff --git a/global/tiles/navigation.html b/global/tiles/navigation.html index cebda97..48a3b01 100644 --- a/global/tiles/navigation.html +++ b/global/tiles/navigation.html @@ -1,11 +1,13 @@ + Navigation Bar + + \ No newline at end of file diff --git a/home/script.js b/home/script.js index c23eb6d..2c8dd54 100644 --- a/home/script.js +++ b/home/script.js @@ -4,5 +4,5 @@ const resizeDots = () => { topContent.style.height = `${innerHeight - topContent.offsetTop}px`; }; -ready(() => resizeDots()); -addEventListener("resize", () => resizeDots()); \ No newline at end of file +ready(resizeDots); +addEventListener("resize", resizeDots); \ No newline at end of file diff --git a/home/style.css b/home/style.css index 413a1b9..8197d5a 100644 --- a/home/style.css +++ b/home/style.css @@ -77,6 +77,7 @@ 50% { transform: scale(120%, 120%); } + 100% { transform: scale(100%, 100%); }