Initial commit: Custom Start Page application with authentication and DynamoDB storage

This commit is contained in:
2026-02-18 22:06:43 -05:00
commit 7175ff14ba
47 changed files with 7592 additions and 0 deletions

35
static/css/main.css Normal file
View File

@@ -0,0 +1,35 @@
/* Custom styles for Custom Start Page */
/* Ensure smooth transitions */
* {
transition: all 0.2s ease-in-out;
}
/* Widget styles */
.widget {
background: white;
border-radius: 0.5rem;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
padding: 1rem;
}
.widget:hover {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.widget-handle {
cursor: move;
}
/* Loading indicator */
.htmx-indicator {
display: none;
}
.htmx-request .htmx-indicator {
display: inline-block;
}
.htmx-request.htmx-indicator {
display: inline-block;
}