Initial commit: NexusArchitect Professional Workstation Overhaul

This commit is contained in:
Debian
2026-04-24 20:27:22 +02:00
commit f3e94c4f42
193 changed files with 5809 additions and 0 deletions
@@ -0,0 +1,93 @@
.app-container {
display: grid;
grid-template-columns: 1fr 450px;
width: 100vw;
height: 100vh;
overflow: hidden;
background: #121212;
transition: grid-template-columns 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reader-pane {
background: #F9F9F9;
position: relative;
overflow-y: auto;
display: flex;
flex-direction: column;
z-index: 5;
}
.intelligence-sidebar {
display: grid;
grid-template-columns: 50px 1fr;
width: 450px;
height: 100%;
background: #121212;
border-left: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
}
.app-container.focus-mode-active {
grid-template-columns: 1fr 0px;
}
.app-container.focus-mode-active .intelligence-sidebar {
width: 0;
border-left-width: 0;
opacity: 0;
}
.intelligence-content {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.intelligence-header {
height: 50px;
display: flex;
align-items: center;
padding: 0 1.5rem;
gap: 0.8rem;
background: rgba(255, 255, 255, 0.02);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
font-family: var(--nexus-font-sans);
font-size: 0.9rem;
color: #fff;
flex-shrink: 0;
}
.intelligence-header .close-btn {
margin-left: auto;
background: none;
border: none;
color: #666;
font-size: 1.5rem;
cursor: pointer;
}
.intelligence-scroll-area {
flex: 1;
overflow-y: auto;
display: flex;
flex-direction: column;
}
main {
flex: 1;
padding-bottom: 40px; /* footer height */
}
/* Platform Specifics */
.platform-mobile .intelligence-sidebar {
position: fixed;
right: 0;
top: 0;
bottom: 0;
width: 80%;
z-index: 100;
}