Files
datamining_881/frontend/app/globals.css
Vadella, Anna d4777b5e72 Updated page.tsx
Updated home page, still using preprocessed_data.xlsx because using updated_datav2.xlsx basically crashes the frontend rn lol :p
2026-04-01 13:02:29 -04:00

36 lines
747 B
CSS

@import "tailwindcss";
:root {
--background: #0A1F44;
--highlight: #62b6cba6;
--text-dark: #000000;
--text-light: #f9fafb;
--box: #DED6D6;
--button: #92140C;
}
@theme inline {
--color-background: var(--background);
--color-highlight: var(--highlight);
--color-text-dark: var(--text-dark);
--color-text-light: var(--text-light);
--color-box: var(--box);
--color-button: var(--button);
--color-button-dark: var(--button-dark)
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}