big kahuna

This commit is contained in:
2026-08-15 23:05:57 -06:00
parent 6fec70c7c8
commit 84893662ca
25 changed files with 3886 additions and 27 deletions

4
public/static/css/cw.css Normal file
View File

@@ -0,0 +1,4 @@
h1, h2, h3, h4, h5, p, a {
color: darkgreen;
text-decoration-color: darkgreen;
}

View File

@@ -0,0 +1,58 @@
/* Background */
body {
background-color: #FBFFFF;
}
/* Typography */
* {
font-size: 1rem;
}
h1, h2, h3, h4, a, p {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
font-size: 2.5rem;
}
p, a {
font-size: calc(1.33rem + 0.01vh);
}
/* Header */
.logo {
width: 17.33rem;
height: 11.99rem;
}
.header-wrapper {
display: flex;
flex-direction: row;
}
/* Navigation */
.navbar-link {
font-size: 1.2rem;
}
nav.navbar {
display: flex;
flex-direction: row;
align-content: left;
align-items: left;
justify-content: space-between;
}
/* Mobile */
@media screen and (max-width: 480px) {
.header-wrapper {
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
text-align: center;
}
}