X-Git-Url: http://git.scottworley.com/vopamoi/blobdiff_plain/75a42da4667eceebea699c52d85fa4b7c3e6a0bc..4ccaa1d6e256ca198e0d15e5b51553edb063f3bf:/index.html diff --git a/index.html b/index.html index afb9231..2714223 100644 --- a/index.html +++ b/index.html @@ -2,10 +2,16 @@ <html> <head> <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();"> - <form onsubmit="return browserCreateTask(this);"> + <div id="ui"> <input id="taskName" name="taskName"> - </form> + <div id="tasks"></div> + </div> </body> </html>