feat: add base template with Pico CSS dark theme and home page
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
36
app/static/css/sneakyswole.css
Normal file
36
app/static/css/sneakyswole.css
Normal file
@@ -0,0 +1,36 @@
|
||||
/* SneakySwole custom CSS overrides
|
||||
Built on top of Pico CSS dark theme.
|
||||
Keep Pico mostly untouched — only override what's necessary. */
|
||||
|
||||
/* Slightly bolder nav styling */
|
||||
nav h1 {
|
||||
margin-bottom: 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* Active nav link indicator */
|
||||
nav a[aria-current="page"] {
|
||||
font-weight: 700;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Spacing for main content area */
|
||||
main.container {
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
/* Flash message styling */
|
||||
.flash-success {
|
||||
color: var(--pico-ins-color);
|
||||
border-left: 4px solid var(--pico-ins-color);
|
||||
padding: 0.5rem 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.flash-error {
|
||||
color: var(--pico-del-color);
|
||||
border-left: 4px solid var(--pico-del-color);
|
||||
padding: 0.5rem 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
Reference in New Issue
Block a user