diff --git a/package.json b/package.json index 988f135f..6002f097 100755 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "", + "name": "To Do List", "version": "", - "description": "", - "author": "", + "description": "Create a todo list", + "author": "Nicole Cotto", "scripts": { "start": "node server.improved.js" }, diff --git a/public/css/style.css b/public/css/style.css index d5f842ab..c3efeb56 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -1 +1,56 @@ -/*Style your own assignment! This is fun! */ \ No newline at end of file +/*Style your own assignment! This is fun! */ +body { + background-color: violet; +} + +table, +th, +td { + border: 1px solid black; + text-align: center; + background: white; +} + +input { + padding: 10px 2px; + margin: 2px 0 10px 10px; +} + +h1 { + font-family: verdana; + color: purple; +} + +button{ + margin: 2px 0 2px 10px; +} + +label{ + font-size: 20px; + margin: 2px 0 2px 10px; +} + +#add { + background-color: green; + color: white; +} + +#submit { + background-color: blue; + color: white; +} + +#delete { + background-color: red; + color: white; +} + +#edit { + background-color: yellow; + color: black; +} + +#results { + background-color: orange; + color: black; +} diff --git a/public/index.html b/public/index.html index c56d620e..5bd1f464 100755 --- a/public/index.html +++ b/public/index.html @@ -1,41 +1,45 @@ - + +
+ + +