feat: Implement SQLite backend and configuration UI

This commit is contained in:
Keith Solomon
2025-08-15 07:08:26 -05:00
parent 23e98e3696
commit b9cb61750d
8 changed files with 199 additions and 29 deletions

View File

@@ -77,6 +77,23 @@ h1 { color: var(--h1-color-light); }
&:hover { background-color: var(--button-hover-background-color); }
}
.actions a.button {
background-color: var(--button-background-color);
border: none;
color: var(--button-text-color);
cursor: pointer;
display: inline-block;
font-size: 1em;
margin: 0 .5rem 1.5rem;
padding: .5rem 1.5rem;
text-decoration: none;
transition: background-color 0.3s;
}
.actions a.button:hover {
background-color: var(--button-hover-background-color);
}
.intro {
font-size: 1.1rem;
line-height: 1.4;