diff --git a/package-lock.json b/package-lock.json
index ef2b86a..6f95a46 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -3817,6 +3817,7 @@
"version": "2.3.5",
"bundled": true,
"dev": true,
+ "optional": true,
"requires": {
"safe-buffer": "^5.1.2",
"yallist": "^3.0.0"
@@ -3835,6 +3836,7 @@
"version": "0.5.1",
"bundled": true,
"dev": true,
+ "optional": true,
"requires": {
"minimist": "0.0.8"
}
@@ -3928,6 +3930,7 @@
"version": "1.4.0",
"bundled": true,
"dev": true,
+ "optional": true,
"requires": {
"wrappy": "1"
}
@@ -4013,7 +4016,8 @@
"safe-buffer": {
"version": "5.1.2",
"bundled": true,
- "dev": true
+ "dev": true,
+ "optional": true
},
"safer-buffer": {
"version": "2.1.2",
@@ -4113,12 +4117,14 @@
"wrappy": {
"version": "1.0.2",
"bundled": true,
- "dev": true
+ "dev": true,
+ "optional": true
},
"yallist": {
"version": "3.0.3",
"bundled": true,
- "dev": true
+ "dev": true,
+ "optional": true
}
}
},
diff --git a/step1-02/README.md b/step1-02/README.md
index f8aa83a..151ab5a 100644
--- a/step1-02/README.md
+++ b/step1-02/README.md
@@ -2,8 +2,12 @@
## Demo
-Scaffold out page
+Write html tag down to ul > li, footer
+add CSS link
+Add active styles, describe specificity
## Exercise
-Add and style footer
+Update list item to match (already styled)
+duplicate 3 more times
+Add and style footer content
diff --git a/step1-02/demo/index.html b/step1-02/demo/index.html
new file mode 100644
index 0000000..0e76edd
--- /dev/null
+++ b/step1-02/demo/index.html
@@ -0,0 +1 @@
+
diff --git a/step1-02/demo/style.css b/step1-02/demo/style.css
new file mode 100644
index 0000000..4df1196
--- /dev/null
+++ b/step1-02/demo/style.css
@@ -0,0 +1,37 @@
+body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ width: 400px;
+ margin: 20px auto;
+}
+
+h1 {
+ text-align: center;
+}
+
+.addTodo {
+ display: flex;
+}
+
+.textfield {
+ flex-grow: 1;
+ margin-right: 10px;
+}
+
+.submit {
+ border: none;
+ padding: 5px 10px;
+}
+
+.filter {
+ margin: 10px 0 0;
+}
+
+.filter button {
+ background: transparent;
+ border: none;
+}
+
+.todos {
+ list-style: none;
+ padding: 0;
+}
diff --git a/step1-02/exercise/index.html b/step1-02/exercise/index.html
new file mode 100644
index 0000000..52cf71f
--- /dev/null
+++ b/step1-02/exercise/index.html
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/step1-02/exercise/style.css b/step1-02/exercise/style.css
new file mode 100644
index 0000000..986a4e1
--- /dev/null
+++ b/step1-02/exercise/style.css
@@ -0,0 +1,41 @@
+body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ width: 400px;
+ margin: 20px auto;
+}
+
+h1 {
+ text-align: center;
+}
+
+.addTodo {
+ display: flex;
+}
+
+.textfield {
+ flex-grow: 1;
+ margin-right: 10px;
+}
+
+.submit {
+ 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;
+}
diff --git a/step1-02/finished/index.html b/step1-02/final/index.html
similarity index 87%
rename from step1-02/finished/index.html
rename to step1-02/final/index.html
index 3f93472..0ea87e3 100644
--- a/step1-02/finished/index.html
+++ b/step1-02/final/index.html
@@ -6,7 +6,10 @@
todos
-
+
+
+
+