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,108 @@
.knowledge-check {
padding: 1.5rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 12px;
margin: 1rem;
}
.quiz-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
font-family: var(--nexus-font-sans);
}
.header-title {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
}
.expand-btn {
background: none;
border: none;
color: #666;
font-size: 1.2rem;
cursor: pointer;
}
.question-text {
font-size: 0.95rem;
color: #ccc;
margin-bottom: 1rem;
}
.options-list {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.option-item {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 0.8rem 1rem;
display: flex;
align-items: center;
gap: 1rem;
cursor: pointer;
transition: all 0.2s ease;
text-align: left;
width: 100%;
}
.option-item:hover {
background: rgba(255, 255, 255, 0.06);
}
.option-item.selected {
border-color: var(--nexus-neon);
background: rgba(0, 255, 153, 0.05);
}
.option-letter {
font-weight: 600;
color: var(--nexus-neon);
min-width: 25px;
}
.option-text {
font-size: 0.9rem;
color: #fff;
}
.quiz-footer {
margin-top: 1.5rem;
display: flex;
justify-content: center;
}
.submit-btn {
padding: 0.6rem 2.5rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
color: #888;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}
.submit-btn:not(:disabled) {
background: var(--nexus-neon);
color: #000;
border-color: var(--nexus-neon);
}
.option-correct {
border-color: #00ff99 !important;
background: rgba(0, 255, 153, 0.1) !important;
}
.option-incorrect {
border-color: #ff4444 !important;
background: rgba(255, 68, 68, 0.1) !important;
}