cpred/_sass/_layout.scss
Florian 20b46587ee
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m37s
Add character profiles, new pages, and update layout styles
2025-03-17 18:47:11 +01:00

39 lines
523 B
SCSS

body {
height: 100vh;
min-height: 100vh;
max-height: 100vh;
display: flex;
flex-direction: column;
overflow-y: scroll;
}
main {
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 {
font-size: 14px;
color: #ffcc00;
padding: 5px 10px;
}
.breadcrumb a {
color: #ff003c;
text-decoration: none;
}
.breadcrumb span {
color: #888;
}