ever-brain / web /frontend /src /app /globals.css
AlexKurian's picture
Deployment: Softened UI background, updated AGENT.md root logic, and finalized docs
52adbb4
Raw
History Blame Contribute Delete
843 Bytes
@import "tailwindcss";
@theme {
--font-outfit: var(--font-outfit);
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-outfit), sans-serif;
overflow-x: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #000;
}
::-webkit-scrollbar-thumb {
background: #111;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #222;
}
/* Subtle Grid Pattern */
.bg-grid {
background-size: 40px 40px;
background-image:
linear-gradient(to right, #080808 1px, transparent 1px),
linear-gradient(to bottom, #080808 1px, transparent 1px);
}
/* Glow Effect for Minimalist UI */
.glow-subtle {
box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}
.glow-accent {
box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}