restructure test/gui to ui/

This commit is contained in:
Believethehype
2024-01-26 12:09:35 +01:00
parent 7adf478a4c
commit f0ebf1dc03
43 changed files with 350 additions and 4 deletions

38
ui/noogle/src/app.css Normal file
View File

@@ -0,0 +1,38 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
padding: 3px;
}
.purple {
@apply text-nostr;
text-decoration: none;
transition: 0.4s;
padding: 3px;
}
.menu {
color: white;
@apply btn bg-transparent border-transparent tracking-wide;
}