From df6f3026238ba75d7a1a97c25fd7578a37d0b217 Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Fri, 8 Feb 2019 15:52:20 -0800 Subject: [PATCH] step 2 updates --- step02/index.html | 22 +++++++++++++------- step02/style.css | 51 +++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 60 insertions(+), 13 deletions(-) diff --git a/step02/index.html b/step02/index.html index 7f84ef1..d960eaf 100644 --- a/step02/index.html +++ b/step02/index.html @@ -1,20 +1,28 @@ - +

todos

- +
- + diff --git a/step02/style.css b/step02/style.css index 289bca9..15642d5 100644 --- a/step02/style.css +++ b/step02/style.css @@ -1,7 +1,46 @@ body { - width: 400px; - margin: 20px auto; - } - h1 { - text-align: left; - } \ No newline at end of file + font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; + width: 400px; + margin: 20px auto; +} +h1 { + text-align: center; +} + +.textfield { + width: 80%; +} + +.add { + margin-left: 5%; +} + +.button { + border: none; + padding: 5px 10px; +} + +.filter { + margin: 10px 0 0; +} + +.filter button { + background: transparent; + border: none; +} +.filter .active { + border-bottom: 2px solid blue; +} + +.todos { + list-style: none; + padding: 0; +} + +footer { + display: flex; +} + +footer span { + flex-grow: 1; +}