My little To-do list with HTML5/CSS3 and JavaScript
Beside the Linux stuff, I try to do something more easy, even on a static (no online) webpage. Only for me. How it looks like The code HTML5 CSS3 /* aufgabenliste.css – finale, saubere Version */ body { margin: 0; min-width: 250px; font-family: system-ui, -apple-system, sans-serif; background: #f5f7fa; color: #333; } h2 { color: white; margin: 0 0 20px 0; font-size: 2em; } /* Box-Modell */ * { box-sizing: border-box; } /* Zähler */ #counter { margin: 20px 0; font-size:…