420 Theme: Brokkoli-Checkbox hinzugefügt - Animation nur aktiv wenn Checkbox markiert

This commit is contained in:
vibe-bot 2025-08-09 01:31:55 +02:00
parent 581718d152
commit f699a1532a
2 changed files with 33 additions and 1 deletions

View file

@ -274,6 +274,23 @@ body {
box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}
/* 420 Theme Checkbox */
[data-theme="420"] input[type="checkbox"] {
accent-color: #22c55e;
width: 16px;
height: 16px;
border-radius: 3px;
border: 2px solid #4ade80;
background: rgba(17, 24, 39, 0.7);
cursor: pointer;
}
[data-theme="420"] input[type="checkbox"]:checked {
background: #22c55e;
border-color: #22c55e;
box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}
/* Dark (Stitch) */
[data-theme="dark"] .control-panel { background-color:#1e1e1e; border:1px solid #3a3a3c }
[data-theme="dark"] .tag-btn { padding:8px 16px; border-radius:9999px; font-size:.875rem; font-weight:500; background:#2c2c2c; color:#a0a0a0; border:1px solid transparent; }