X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/4e05a0a2a1072be98d271ac60de9426125e179e4..9db534f6ab9420b8fd5836e791dbe09abb0a92d8:/index.html diff --git a/index.html b/index.html index 55c3b35..9833510 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,18 @@ <!doctype html> <html> <head> + <meta charset="utf-8"/> <script src="vopamoi.js" defer="true"></script> <link rel="stylesheet" href="vopamoi.css"/> + <style id="viewStyle"> + .task:not([data-state=todo]) { display: none } + :root { --view-state-indicator-color: white; } + </style> </head> <body onload="browserInit();"> - <input id="taskName" name="taskName"> - <div id="tasks"></div> + <div id="ui"> + <input id="taskName" name="taskName"> + <div id="tasks"></div> + </div> </body> </html>