style: update CSS for a bitmap aesthetic, enhance export options in templates, and streamline form field styling

This commit is contained in:
Jennie Robinson Faber 2025-08-16 17:21:52 +01:00
parent d7e52293e4
commit ca5f7dd446
7 changed files with 1326 additions and 2951 deletions

View file

@ -23,5 +23,20 @@ body {
}
.document-page {
@apply max-w-4xl mx-auto bg-white relative p-8 border-1 border-neutral-900 dark:border-neutral-100;
}
@apply max-w-4xl mx-auto relative p-8 border-1 border-neutral-900 dark:border-neutral-100;
}
/* Bitmap aesthetic overrides - remove all rounded corners */
* {
border-radius: 0 !important;
font-family: "Ubuntu", monospace !important;
}
/* Form fields with bitmap styling */
input,
textarea,
select {
font-family: "Ubuntu Mono", monospace !important;
}