Spaces:
Runtime error
Runtime error
File size: 4,317 Bytes
0d1be5e 66e0ddc 0d1be5e | 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | /* ββ Layout: Top Bar βββββββββββββββββββββββββββββββββββββββββββββ */
#topBar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
border-bottom: 1px solid var(--panel-border);
background: rgba(2, 6, 23, 0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
/* ββ Layout: Main Area βββββββββββββββββββββββββββββββββββββββββββ */
#mainArea {
display: flex;
gap: 12px;
padding: 12px;
min-height: 0;
overflow: hidden;
}
#videoFeed {
flex: 7;
min-width: 0;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
#drawer {
flex: 3;
min-width: 0;
display: flex;
flex-direction: column;
align-items: stretch;
overflow: hidden;
}
/* ββ Layout: Timeline ββββββββββββββββββββββββββββββββββββββββββββ */
#timeline {
margin: 0 12px;
padding: 10px 16px;
display: flex;
flex-direction: column;
align-items: stretch;
gap: 6px;
min-height: 48px;
position: relative;
}
/* ββ Layout: Command Bar βββββββββββββββββββββββββββββββββββββββββ */
#commandBar {
margin: 8px 12px 12px;
padding: 10px 16px;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 10px;
background: transparent;
border: 1px solid var(--panel-border);
border-radius: 10px;
min-height: 44px;
position: relative;
}
/* ββ Top Bar Internals ββββββββββββββββββββββββββββββββββββββββββ */
.topbar-left, .topbar-right {
display: flex;
align-items: center;
gap: 10px;
}
.topbar-sep {
color: var(--text-tertiary);
font-weight: 300;
font-size: 16px;
margin: 0 2px;
}
.topbar-mission {
color: var(--success);
letter-spacing: 2.5px;
}
.topbar-pulse {
animation: pulse-dot 2s ease-in-out infinite;
}
.topbar-indicator {
font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
font-size: 10px;
color: var(--text-secondary);
letter-spacing: 0.5px;
display: inline-flex;
align-items: center;
gap: 5px;
}
.topbar-clock {
min-width: 72px;
text-align: right;
}
/* ββ Placeholder Labels ββββββββββββββββββββββββββββββββββββββββββ */
.placeholder-label {
color: var(--text-tertiary);
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
user-select: none;
}
/* ββ Drawer βββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.drawer-tabs {
display: flex;
border-bottom: 1px solid var(--panel-border);
flex-shrink: 0;
}
.drawer-tab {
flex: 1;
background: none;
border: none;
color: var(--text-tertiary);
font-family: inherit;
font-size: 9px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 10px 0;
cursor: pointer;
}
.drawer-tab:hover {
color: var(--text-secondary);
}
.drawer-tab.active {
color: var(--accent-light);
}
.drawer-section {
flex: 1;
overflow-y: auto;
padding: 10px 12px;
}
/* ββ Min Width Guard βββββββββββββββββββββββββββββββββββββββββββββ */
@media (max-width: 1280px) {
body {
min-width: 1280px;
}
}
|