Whoops missed this

This commit is contained in:
John Doty 2024-09-24 18:52:24 -07:00
parent 86971c39d6
commit daf015bde1

43
cry/static/style.css Normal file
View file

@ -0,0 +1,43 @@
body {
margin-right: 4rem;
margin-left: 4rem;
margin-top: 0;
margin-bottom: 0;
display: flex;
flex-direction: column;
height: 100vh;
}
header {
/* padding: 10px; */
}
.content {
flex: 1; /* This makes the content section fill the available space */
overflow-y: auto; /* Allows vertical scrolling */
padding: 10px;
}
footer {
padding: 10px;
}
h1 {
margin-top: 2rem;
margin-bottom: 0.25rem;
}
h2 {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
li.entry {
display: inline;
padding-right: 1rem;
}
li.entry:before {
content: '\2022';
padding-right: 0.5rem;
}