From c34d15a4899c47f87223be2f6141f93557c7ef7f Mon Sep 17 00:00:00 2001 From: davidwells Date: Mon, 11 Jun 2018 22:34:57 -0700 Subject: [PATCH] styles --- src/App.css | 12 ++++++++++-- src/App.js | 2 +- src/index.css | 3 ++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/App.css b/src/App.css index 9a877c3..60ff282 100644 --- a/src/App.css +++ b/src/App.css @@ -33,14 +33,16 @@ padding-top: 10px; width: 600px; } + .todo-create-wrapper { margin-bottom: 20px; } .todo-create-input { - padding: 12px 10px; + font-size: 14px; + padding: 11px 15px; min-width: 300px; display: inline-block; - box-shadow: 0px 0px 0px 2px rgba(69, 101, 173, 0.1); + box-shadow: 0px 0px 0px 2px rgba(120, 130, 152, 0.25); border: none; outline: none; transition: all 0.3s ease; @@ -55,6 +57,12 @@ display: flex; align-items: center; justify-content: space-between; + min-height: 43px; +} +.todo-list-title { + font-size: 17px; + font-weight: 500; + color: #5a5a5a; } @keyframes App-logo-spin { diff --git a/src/App.js b/src/App.js index 42c6dc4..16943c0 100644 --- a/src/App.js +++ b/src/App.js @@ -123,7 +123,7 @@ class App extends Component { } return (
-
+
{data.title}
{deleteButton} diff --git a/src/index.css b/src/index.css index 76ff592..625ee9e 100644 --- a/src/index.css +++ b/src/index.css @@ -1,7 +1,7 @@ body { margin: 0; padding: 0; - font-family: sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; } button { @@ -21,6 +21,7 @@ button { transition-property: background-color,color,border,box-shadow; outline: 0; cursor: pointer; + margin-bottom: 3px; } button:focus, button:hover {