Skip to content

Commit

Permalink
Reformatted
Browse files Browse the repository at this point in the history
  • Loading branch information
99TheDark committed Jun 3, 2023
1 parent af88765 commit 1851117
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 22 deletions.
4 changes: 2 additions & 2 deletions about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
<h2 class="h q-title" tabindex="0">Who?</h2>
<div class="q-text">
<p>
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.
</p>
<p>
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.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion about/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions global/generic/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
10 changes: 5 additions & 5 deletions global/generic/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down
27 changes: 18 additions & 9 deletions global/tiles/footer.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer</title>
</head>

<body>
<div id="footer">
<div><p>
Renegade Girls is a 501(c)(3) charitable organization
</p></div>
<div><p>
Our EIN is 47-3570606
</p></div>
<div><p>
Made by 99TheDark on <a href="https://github.com/99TheDark">Github</a>
</p></div>
<div>
<p>
Renegade Girls is a 501(c)(3) charitable organization
</p>
</div>
<div>
<p>
Our EIN is 47-3570606
</p>
</div>
<div>
<p>
Made by 99TheDark on <a href="https://github.com/99TheDark">Github</a>
</p>
</div>
</div>
</body>

</html>
3 changes: 3 additions & 0 deletions global/tiles/navigation.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navigation Bar</title>
</head>

<body>
<nav>
<ul id="navigation">
Expand Down Expand Up @@ -62,4 +64,5 @@
</nav>
<script src="../global/utils/nav.js"></script>
</body>

</html>
4 changes: 2 additions & 2 deletions home/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ const resizeDots = () => {
topContent.style.height = `${innerHeight - topContent.offsetTop}px`;
};

ready(() => resizeDots());
addEventListener("resize", () => resizeDots());
ready(resizeDots);
addEventListener("resize", resizeDots);
1 change: 1 addition & 0 deletions home/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
50% {
transform: scale(120%, 120%);
}

100% {
transform: scale(100%, 100%);
}
Expand Down

0 comments on commit 1851117

Please sign in to comment.