This commit is contained in:
2025-03-11 19:07:16 -04:00
parent 84290f9c46
commit 74808f3fb2
8 changed files with 46 additions and 122 deletions

View File

@@ -35,30 +35,43 @@
cursor: pointer;
}
h1 {
font-size: 1.2rem;
}
body {
display: grid;
grid-template-columns: 240px auto;
grid-template-rows: 40px auto;
font-family: Arial, sans-serif;
}
.nav {
grid-column: 1;
grid-row: 1 / 3;
background-color: #FFC0C0;
.nav-header {
font-size: 1.5rem;
padding: 10px 15px;
grid-column: 1 / 3;
grid-row: 1;
background-color: #C0C0C0;
}
.nav-items {
padding: 10px 15px;
grid-column: 1;
grid-row: 2 / 3;
background-color: #C0C0C0;
}
.message {
grid-column: 2;
grid-row: 1;
background-color: #C0FFC0;
align-content: center;
justify-items: center;
grid-column: 2;
grid-row: 1;
background-color: #C0C0C0;
align-content: center;
justify-items: center;
}
.content {
grid-column: 2;
grid-row: 2;
background-color: #C0C0FF;
background-color: #E0E0E0;
}