Add character profiles, new pages, and update layout styles
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m37s

This commit is contained in:
2025-03-17 18:47:11 +01:00
parent 72158d4464
commit 20b46587ee
21 changed files with 246 additions and 74 deletions

View File

@@ -1,14 +1,25 @@
body {
height: 100vh;
min-height: 100vh;
max-height: 100vh;
display: flex;
flex-direction: column;
overflow-y: scroll;
}
main {
height: calc(100vh - 180px);
overflow-y: scroll;
display: flex;
flex-direction: column;
align-items: center;
flex-grow: 1;
}
footer {
position: sticky !important;
bottom: 0;
width: 100%;
background: var(--dark, #333);
color: var(--white, #fff);
text-align: center;
padding: 10px;
z-index: 1000;
}
.breadcrumb {