From 3b387dc750b586bfc3990813bce8b0202380c3a8 Mon Sep 17 00:00:00 2001 From: DForeman Date: Fri, 28 May 2021 20:34:53 -0500 Subject: [PATCH 1/9] Changed font-size to 'vw' --- Calculator/CSS/Calculator_CSS.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calculator/CSS/Calculator_CSS.css b/Calculator/CSS/Calculator_CSS.css index 556aac9..e8031bf 100644 --- a/Calculator/CSS/Calculator_CSS.css +++ b/Calculator/CSS/Calculator_CSS.css @@ -1,6 +1,6 @@ /* Sets .html's elements' font size; any added padding/border gets included in element's total size */ html { - font-size: 70%; + font-size: 1vw; box-sizing: border-box; } From c05d275663158703ccba515e9d2dbc8dedf5f3eb Mon Sep 17 00:00:00 2001 From: DForeman Date: Fri, 28 May 2021 20:37:12 -0500 Subject: [PATCH 2/9] Corrected getContent() - 100% g2g --- AJAX/ajax_basic.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AJAX/ajax_basic.html b/AJAX/ajax_basic.html index b364586..9d1941e 100644 --- a/AJAX/ajax_basic.html +++ b/AJAX/ajax_basic.html @@ -26,9 +26,9 @@

Get The Latest Content:

} // Step 4: Send the AJAX request for data: - function getContent() {} + function getContent() { ajax.send() - document.getElementById("btn-content").style.display = "none"; // <<<< 'style.display=none' removes this element from display + document.getElementById("btn-content").style.display = "none";} // <<<< 'style.display=none' removes this element from display \ No newline at end of file From 1ab5c253a05dba91b04783e115725c02b6377edf Mon Sep 17 00:00:00 2001 From: DForeman Date: Sat, 29 May 2021 22:25:58 -0500 Subject: [PATCH 3/9] Created folders & files for ToDo App Assignment --- ToDo_App/ToDo_CSS/ToDo.css | 0 ToDo_App/ToDo_JS/ToDo.js | 0 ToDo_App/index.html | 22 ++++++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 ToDo_App/ToDo_CSS/ToDo.css create mode 100644 ToDo_App/ToDo_JS/ToDo.js create mode 100644 ToDo_App/index.html diff --git a/ToDo_App/ToDo_CSS/ToDo.css b/ToDo_App/ToDo_CSS/ToDo.css new file mode 100644 index 0000000..e69de29 diff --git a/ToDo_App/ToDo_JS/ToDo.js b/ToDo_App/ToDo_JS/ToDo.js new file mode 100644 index 0000000..e69de29 diff --git a/ToDo_App/index.html b/ToDo_App/index.html new file mode 100644 index 0000000..37c977c --- /dev/null +++ b/ToDo_App/index.html @@ -0,0 +1,22 @@ + + + + + + + + ToDo App Assignment + + + +
+
+ + +
+
+ www.ToDoApp.com  |  © 2021 +
+
+ + From fd80087c52f3b076d7534cec57c24e958318a6b9 Mon Sep 17 00:00:00 2001 From: DForeman Date: Sat, 29 May 2021 22:32:05 -0500 Subject: [PATCH 4/9] Per Step 412, updated .css --- ToDo_App/ToDo_CSS/ToDo.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/ToDo_App/ToDo_CSS/ToDo.css b/ToDo_App/ToDo_CSS/ToDo.css index e69de29..eb43945 100644 --- a/ToDo_App/ToDo_CSS/ToDo.css +++ b/ToDo_App/ToDo_CSS/ToDo.css @@ -0,0 +1,28 @@ +html { + font-family: "Avenir Next", Helvetica, sans-serif; + text-align: center; +} + +body { + max-width: 500px; + margin: 0 auto; +} + +input { + padding-top: 30px; + width: 500px; + height: 60px; + font-size: 40px; + border: 0; +} + +input:focus { + outline: none; +} + +li { + text-align: left; + font-size: 40px; + list-style: none; + margin: 0; +} From 22973a59ad73fbf9bb3cc29b32fe9fb9aed509cf Mon Sep 17 00:00:00 2001 From: DForeman Date: Sun, 30 May 2021 01:26:10 -0500 Subject: [PATCH 5/9] Per Step 413, centered ; made