Spaces:
Running
Running
File size: 1,499 Bytes
192cba8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /* CAPT Memory Palace - Complete Styles */
/* Base resets handled in index.html */
/* Canvas container */
#canvas-container canvas {
display: block;
}
/* Pitch mode - clean presentation view */
body.pitch-mode #main-ui,
body.pitch-mode #stats-bar {
display: none;
}
/* Mobile adjustments */
@media (max-width: 768px) {
.onboarding-content {
padding: 24px;
}
.tagline {
font-size: 20px;
}
.cta-buttons {
flex-direction: column;
}
.btn {
width: 100%;
}
#narrative-text {
font-size: 18px;
padding: 12px 16px;
}
#stats-panel {
font-size: 10px;
padding: 12px;
}
#query-panel {
flex-direction: column;
}
.keyboard-hints {
display: none;
}
}
/* Loading state */
.loading {
position: fixed;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
color: #8b5cf6;
font-size: 18px;
z-index: 200;
}
.loading::after {
content: '';
animation: dots 1.5s infinite;
}
@keyframes dots {
0%, 20% { content: ''; }
40% { content: '.'; }
60% { content: '..'; }
80%, 100% { content: '...'; }
}
/* Smooth transitions for panels */
#narrative-overlay,
#stats-panel,
#control-panel,
#query-panel {
transition: opacity 0.3s ease;
}
/* Custom scrollbar for modals */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0a0a12;
}
::-webkit-scrollbar-thumb {
background: #8b5cf6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #a855f7;
}
|