57 lines
979 B
CSS
57 lines
979 B
CSS
@import "tailwindcss";
|
|
|
|
@import "uploadthing/tw/v4";
|
|
@source "../node_modules/@uploadthing/react/dist";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #0a0a0a;
|
|
--foreground: #ededed;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 10px;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.nav-element {
|
|
color: black;
|
|
font-weight: bold;
|
|
background-color: #ffffff;
|
|
border-radius: 20px;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
padding: 9px;
|
|
}
|
|
|
|
.nav-element:hover {
|
|
color: white;
|
|
background-color: #171717;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.active-nav-element {
|
|
color: white;
|
|
font-weight: bold;
|
|
background-color: #171717;
|
|
border-radius: 20px;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
padding: 9px;
|
|
}
|