website: Add Host Control Mode interactive mockup to Bento Card 1 and update translations in all 15 locales

This commit is contained in:
KoalaDev
2026-07-03 11:12:23 +02:00
parent 14ab6b2d50
commit ae3b837bb4
17 changed files with 121 additions and 31 deletions
+74
View File
@@ -3783,3 +3783,77 @@ header[id] {
@keyframes demoAttn {
50% { box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.75); }
}
/* --- Bento Card Host Control Mockup Additions --- */
.bento-content-wrap {
display: flex;
flex-direction: column;
gap: 1.2rem;
width: 100%;
}
.bento-host-control-mockup {
background: rgba(15, 23, 42, 0.6);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 0.75rem 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
width: 100%;
box-sizing: border-box;
}
.bento-mockup-header {
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-muted);
font-weight: 700;
}
.bento-mockup-options {
display: flex;
gap: 0.5rem;
width: 100%;
}
.bento-option {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
font-size: 0.72rem;
font-weight: 600;
padding: 6px 10px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.04);
color: var(--text-muted);
transition: all 0.25s ease;
white-space: nowrap;
}
.bento-option.active {
background: rgba(99, 102, 241, 0.12);
border: 1px solid rgba(99, 102, 241, 0.35);
color: white;
box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}
.bento-option .option-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.25);
transition: background 0.25s ease;
}
.bento-option.active .option-dot {
background: var(--accent);
box-shadow: 0 0 6px var(--accent-glow);
}