You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
434 B
Plaintext

.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; }