42 lines
770 B
CSS
42 lines
770 B
CSS
|
|
|
|
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
[data-theme="dark"] {
|
|
html { @apply bg-white text-neutral-900; }
|
|
html.dark { @apply bg-neutral-950 text-neutral-100; }
|
|
|
|
}
|
|
|
|
/* Disable all animations, transitions, and smooth scrolling app-wide */
|
|
html,
|
|
body {
|
|
scroll-behavior: auto !important;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation: none !important;
|
|
transition: none !important;
|
|
}
|
|
|
|
.document-page {
|
|
@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;
|
|
}
|
|
|