todo.py 294 B

12345678910111213141516171819
  1. LIST = [
  2. {
  3. "name": "This thing",
  4. "crossed": "no"
  5. },
  6. {
  7. "name": "That thing",
  8. "crossed": "no"
  9. },
  10. {
  11. "name": "That other thing",
  12. "crossed": "yes"
  13. },
  14. ]
  15. CSS = """body {
  16. background-color: transparent;
  17. color: white;
  18. }"""