Spaces:
Running
Running
File size: 1,240 Bytes
43024e4 d515b45 | 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 | .viewport {
flex: 1;
position: relative;
overflow: hidden;
background: #0d0d1a;
}
.viewport canvas {
display: block;
width: 100% !important;
height: 100% !important;
}
/* โโ Floating gizmo toolbar โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
.gizmo-toolbar {
position: absolute;
top: 10px;
left: 10px;
z-index: 10;
display: flex;
gap: 4px;
background: #0d0d22cc;
backdrop-filter: blur(8px);
border: 1px solid #2a2a4a;
border-radius: 8px;
padding: 5px;
}
.gizmo-btn {
display: flex;
align-items: center;
gap: 5px;
padding: 5px 10px;
border-radius: 5px;
border: 1px solid transparent;
background: transparent;
color: #666688;
cursor: pointer;
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
font-weight: 700;
letter-spacing: 1px;
transition: all 0.15s;
}
.gizmo-btn:hover { color: #aaaacc; background: #1e1e3a; }
.gizmo-btn.active { background: #1e1e4a; border-color: #5555cc; color: #aaaaff; }
.gizmo-icon { font-size: 14px; }
.gizmo-key {
font-size: 8px;
color: #444466;
background: #111128;
padding: 1px 4px;
border-radius: 2px;
border: 1px solid #2a2a4a;
} |