First commit

This commit is contained in:
2025-09-10 14:42:57 -04:00
commit 1d12903e4e
65 changed files with 3587 additions and 0 deletions

34
Prep 6/holy-grail.css Executable file
View File

@@ -0,0 +1,34 @@
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
header,
footer {
background-color: sandybrown;
}
.middler {
display: flex;
flex-direction: row;
flex-grow: 1;
}
aside {
flex-basis: 150px;
background-color: cornsilk;
}
main {
flex-grow: 1;
flex-basis: 0;
}
main,
aside,
header,
footer {
padding: 10px;
}