278 lines
4.8 KiB
CSS
278 lines
4.8 KiB
CSS
|
|
:root {
|
||
|
|
color-scheme: light dark;
|
||
|
|
--bg: #f1ead6;
|
||
|
|
--panel: rgba(255, 248, 232, 0.92);
|
||
|
|
--panel-border: rgba(94, 73, 37, 0.25);
|
||
|
|
--ink: #2d2212;
|
||
|
|
--muted: #6e5a37;
|
||
|
|
--accent: #0d6c7d;
|
||
|
|
--accent-strong: #114f59;
|
||
|
|
--viewport: #0e1218;
|
||
|
|
--tile-border: rgba(255, 255, 255, 0.04);
|
||
|
|
--shadow: 0 18px 45px rgba(59, 40, 8, 0.16);
|
||
|
|
--font-ui: "Segoe UI Variable Text", "Aptos", "Trebuchet MS", sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (prefers-color-scheme: dark) {
|
||
|
|
:root {
|
||
|
|
--bg: #12161d;
|
||
|
|
--panel: rgba(22, 28, 38, 0.92);
|
||
|
|
--panel-border: rgba(166, 187, 211, 0.16);
|
||
|
|
--ink: #edf2fa;
|
||
|
|
--muted: #aab8cc;
|
||
|
|
--accent: #46a7bc;
|
||
|
|
--accent-strong: #2a7b8d;
|
||
|
|
--viewport: #06080d;
|
||
|
|
--tile-border: rgba(255, 255, 255, 0.03);
|
||
|
|
--shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
min-height: 100vh;
|
||
|
|
font-family: var(--font-ui);
|
||
|
|
color: var(--ink);
|
||
|
|
background:
|
||
|
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32%),
|
||
|
|
linear-gradient(135deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 75%, #6e8aa3 25%) 100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.shell {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 340px minmax(0, 1fr);
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
.panel {
|
||
|
|
padding: 24px;
|
||
|
|
background: var(--panel);
|
||
|
|
backdrop-filter: blur(16px);
|
||
|
|
border-right: 1px solid var(--panel-border);
|
||
|
|
box-shadow: var(--shadow);
|
||
|
|
}
|
||
|
|
|
||
|
|
.panel h1 {
|
||
|
|
margin: 0;
|
||
|
|
font-size: 1.6rem;
|
||
|
|
line-height: 1.1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.lede,
|
||
|
|
.muted {
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.stack {
|
||
|
|
display: grid;
|
||
|
|
gap: 10px;
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
label {
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
select,
|
||
|
|
button,
|
||
|
|
.action-link {
|
||
|
|
width: 100%;
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 1px solid rgba(65, 48, 21, 0.18);
|
||
|
|
padding: 12px 14px;
|
||
|
|
font: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
button,
|
||
|
|
.action-link {
|
||
|
|
cursor: pointer;
|
||
|
|
color: white;
|
||
|
|
background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
|
||
|
|
text-decoration: none;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
button:disabled,
|
||
|
|
select:disabled,
|
||
|
|
.action-link.is-disabled {
|
||
|
|
cursor: not-allowed;
|
||
|
|
opacity: 0.55;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button-row {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(4, 1fr);
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toggle-grid,
|
||
|
|
.status,
|
||
|
|
.meta-panel {
|
||
|
|
padding: 12px 14px;
|
||
|
|
border-radius: 14px;
|
||
|
|
background: rgba(255, 255, 255, 0.58);
|
||
|
|
border: 1px solid rgba(65, 48, 21, 0.08);
|
||
|
|
overflow-wrap: anywhere;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toggle-grid {
|
||
|
|
display: grid;
|
||
|
|
gap: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toggle {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 0.92rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.toggle input {
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.action-link {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-weight: 700;
|
||
|
|
}
|
||
|
|
|
||
|
|
.status {
|
||
|
|
min-height: 72px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-panel {
|
||
|
|
min-height: 240px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-empty {
|
||
|
|
margin: 0;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-section + .meta-section {
|
||
|
|
margin-top: 14px;
|
||
|
|
padding-top: 14px;
|
||
|
|
border-top: 1px solid color-mix(in srgb, var(--panel-border) 70%, transparent 30%);
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-title {
|
||
|
|
margin: 0 0 8px;
|
||
|
|
font-size: 0.84rem;
|
||
|
|
font-weight: 800;
|
||
|
|
letter-spacing: 0.08em;
|
||
|
|
text-transform: uppercase;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
||
|
|
gap: 6px 12px;
|
||
|
|
font-size: 0.92rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-grid dt {
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.meta-grid dd {
|
||
|
|
margin: 0;
|
||
|
|
text-align: right;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workspace {
|
||
|
|
min-width: 0;
|
||
|
|
padding: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.viewport {
|
||
|
|
position: relative;
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100vh - 36px);
|
||
|
|
overflow: hidden;
|
||
|
|
border-radius: 24px;
|
||
|
|
background:
|
||
|
|
linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03)),
|
||
|
|
linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
|
||
|
|
linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
|
||
|
|
var(--viewport);
|
||
|
|
background-size: auto, 32px 32px, 32px 32px, auto;
|
||
|
|
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), var(--shadow);
|
||
|
|
touch-action: none;
|
||
|
|
cursor: grab;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.scene {
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
top: 0;
|
||
|
|
transform-origin: top left;
|
||
|
|
will-change: transform;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layer {
|
||
|
|
position: absolute;
|
||
|
|
inset: 0 auto auto 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tile {
|
||
|
|
position: absolute;
|
||
|
|
image-rendering: pixelated;
|
||
|
|
image-rendering: crisp-edges;
|
||
|
|
border: 1px solid var(--tile-border);
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.viewport.is-dragging {
|
||
|
|
cursor: grabbing;
|
||
|
|
}
|
||
|
|
|
||
|
|
.viewport-hint {
|
||
|
|
position: absolute;
|
||
|
|
top: 16px;
|
||
|
|
left: 16px;
|
||
|
|
z-index: 2;
|
||
|
|
padding: 8px 12px;
|
||
|
|
border-radius: 999px;
|
||
|
|
background: rgba(6, 8, 12, 0.66);
|
||
|
|
color: rgba(255, 255, 255, 0.82);
|
||
|
|
font-size: 0.86rem;
|
||
|
|
backdrop-filter: blur(10px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.empty-state {
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
display: grid;
|
||
|
|
place-items: center;
|
||
|
|
padding: 24px;
|
||
|
|
color: rgba(255,255,255,0.72);
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 900px) {
|
||
|
|
.shell {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
|
||
|
|
.panel {
|
||
|
|
border-right: 0;
|
||
|
|
border-bottom: 1px solid var(--panel-border);
|
||
|
|
}
|
||
|
|
|
||
|
|
.viewport {
|
||
|
|
height: 70vh;
|
||
|
|
}
|
||
|
|
}
|