initial commit
This commit is contained in:
56
app/globals.css
Normal file
56
app/globals.css
Normal file
@@ -0,0 +1,56 @@
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user