ai-station/public/custom.css

37 lines
876 B
CSS
Raw Permalink Normal View History

/* dFm AI Station - Perplexity Clean Style */
2025-12-29 05:50:06 +00:00
:root {
--bg-color: #0B0F1A;
--card-color: #161B2C;
--accent-color: #6366F1;
2025-12-29 05:50:06 +00:00
}
body { background-color: var(--bg-color) !important; color: #F1F5F9 !important; }
2025-12-29 05:50:06 +00:00
/* Header e Logo */
header {
background: rgba(11, 15, 26, 0.8) !important;
backdrop-filter: blur(8px);
border-bottom: 1px solid #23293F !important;
2025-12-29 05:50:06 +00:00
}
/* Sidebar */
.MuiDrawer-paper {
background-color: var(--bg-color) !important;
border-right: 1px solid #23293F !important;
2025-12-29 05:50:06 +00:00
}
/* Messaggi */
div[class*="user"] {
background: #1E253A !important;
border-radius: 12px !important;
border-left: 4px solid var(--accent-color) !important;
2025-12-29 05:50:06 +00:00
}
/* Input Area */
form {
background: var(--card-color) !important;
border-radius: 20px !important;
border: 1px solid #334155 !important;
box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
2025-12-29 05:50:06 +00:00
}