added basic content to projects page - pictures, links to projects; made sure all links point to new page

This commit is contained in:
Mimi Momo
2020-11-28 15:09:05 -06:00
parent 7e1e436b6a
commit 406ce9d727
9 changed files with 231 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
.parent {
display: grid;
grid-template-columns: auto 800px auto;
grid-template-rows: 25px 90px repeat(2, auto);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.whitespace { grid-area: 1 / 1 / 2 / 4; }
.logo { grid-area: 1 / 2 / 2 / 3; }
.nav-row { grid-area: 2 / 1 / 3 / 4; }
.nav-bar { grid-area: 2 / 2 / 3 / 3; }
.body-row { grid-area: 3 / 1 / 4 / 4; }
.content { grid-area: 3 / 2 / 4 / 3; }
.footer-row { grid-area: 4 / 1 / 5 / 4; }