Files
nostrdvm/ui/noogle/src/app.css
2024-11-04 08:16:44 +01:00

48 lines
725 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color-scheme: light;
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 hover:text-orange-400;
text-decoration: none;
transition: 0.4s;
padding: 3px;
}
.white {
@apply text-white;
text-decoration: none;
transition: 0.4s;
padding: 3px;
}
.menu {
color: white;
@apply btn bg-transparent border-transparent tracking-wide;
}