Make footer sticky

This commit is contained in:
jultty 2024-11-17 14:56:22 -03:00
commit b5764ba7d9
2 changed files with 54 additions and 38 deletions

View file

@ -5,6 +5,11 @@
html {
font-family: 'Mononoki', monospace;
height: 100%;
}
body {
height: 100%;
}
#theme {
@ -12,7 +17,10 @@ html {
color: #222;
}
* { margin: 0px; }
* {
margin: 0px;
box-sizing: inherit;
}
.header-art {
display: grid;
@ -90,6 +98,12 @@ ul {
list-style: none;
}
#container {
min-height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
}
.post-date, .link-date {
color: #777;
font-size: 14px;