adjust grid placement of items

This commit is contained in:
emma 2024-12-13 14:22:44 -05:00
parent 4dd1a95639
commit b20dab65ac
2 changed files with 23 additions and 11 deletions

View File

@ -9,8 +9,8 @@
<body>
<?php include "./includes/header.php" ?>
<main>
<?php include "./includes/nav.php" ?>
<main>
<section>
<h1>welcome to emma's place</h1>
<p>

View File

@ -16,25 +16,30 @@ html {
body {
background-color: var(--body-background-color);
display: grid;
grid-template-columns: 15vw 60vw;
grid-template-rows: 5vh 2fr 5vh;
justify-content: center;
align-content: space-evenly;
}
main, nav {
padding-left: 2.5rem;
}
main {
background-color: var(--background-color);
height: auto;
width: 70vw;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 2rem;
width: 60vw;
grid-column: 2/3;
grid-row: 2/3;
}
header {
background-color: var(--background-color);
grid-row: 1/2;
grid-column: 1/3;
height: 5vh;
width: auto;
width: 75vw;
text-align: center;
border-bottom: 10px solid;
border-image-slice: 1;
@ -45,27 +50,34 @@ header {
footer {
background-color: var(--background-color);
grid-row: 3/4;
grid-column: 1/3;
height: 5vh;
width: auto;
width: 75vw;
text-align: center;
align-self: end;
}
header, footer {
justify-self: center;
}
nav {
background-color: var(--background-color);
grid-row: 2/3;
width: 10vw;
height: auto;
grid-column: 1/2;
justify-self: end;
width: 15vw;
height: auto;
border-right: 10px solid;
border-image-slice: 1;
border-width: 5px;
border-image-source: linear-gradient(to bottom, #FCF434, #FFFFFF, #9C59D1, #2C2C2C);
}
/*
section {
grid-column: 2/3;
grid-row: 2/3;
width: 55vw;
}
*/