feat: characters page

This commit is contained in:
2025-07-15 13:12:40 -07:00
parent 168f9b9ad5
commit 7adf2e7f58
2 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,26 @@
.character {
display: grid;
grid-template-areas:
"image name"
"image description";
grid-template-columns: 250px auto;
}
img {
grid-area: image;
width: 250px;
height: auto;
}
h2 {
grid-area: name;
}
p {
grid-area: description;
}
hr {
border: 2px solid var(--foreground);
margin: 10px 0;
}