From 7c9031bd0c29c250512780fec0530d9fa49db3ea Mon Sep 17 00:00:00 2001 From: Alison Polton-Simon Date: Sun, 11 Dec 2016 12:06:33 -0800 Subject: [PATCH 1/3] Finished day 1 --- ...{index-START.html => index-completed.html} | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) rename 01 - JavaScript Drum Kit/{index-START.html => index-completed.html} (72%) diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-completed.html similarity index 72% rename from 01 - JavaScript Drum Kit/index-START.html rename to 01 - JavaScript Drum Kit/index-completed.html index 4070d32767..28c18b014d 100644 --- a/01 - JavaScript Drum Kit/index-START.html +++ b/01 - JavaScript Drum Kit/index-completed.html @@ -58,6 +58,27 @@ From eacd0c290114ee971c63b04354006ad26a10d390 Mon Sep 17 00:00:00 2001 From: Alison Polton-Simon Date: Thu, 15 Dec 2016 23:36:07 -0800 Subject: [PATCH 2/3] Made a clock --- .../{index-START.html => index-complete.html} | 38 ++++++++++++++++--- 1 file changed, 33 insertions(+), 5 deletions(-) rename 02 - JS + CSS Clock/{index-START.html => index-complete.html} (54%) diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-complete.html similarity index 54% rename from 02 - JS + CSS Clock/index-START.html rename to 02 - JS + CSS Clock/index-complete.html index 2712384201..41e80f64d2 100644 --- a/02 - JS + CSS Clock/index-START.html +++ b/02 - JS + CSS Clock/index-complete.html @@ -56,17 +56,45 @@ } .hand { - width:50%; - height:6px; - background:black; + width: 50%; + height: 6px; + background: black; position: absolute; - top:50%; + top: 50%; + transform-origin: 100%; + transform: rotate(90deg) + transition: all 0.05s; + transition-timing-function: cubic-bezier(0.3, 1.84, 0.52, 0.57) } - From 78e3e9d5d81a93a2ed52c9a3c170415f517b2a75 Mon Sep 17 00:00:00 2001 From: Alison Polton-Simon Date: Tue, 20 Dec 2016 17:31:36 -0800 Subject: [PATCH 3/3] Finished #3. Rememebered semicolons matter for CSS --- .../{index-START.html => index-complete.html} | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) rename 03 - CSS Variables/{index-START.html => index-complete.html} (64%) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-complete.html similarity index 64% rename from 03 - CSS Variables/index-START.html rename to 03 - CSS Variables/index-complete.html index bf0f33e3ba..5f4c12e08b 100644 --- a/03 - CSS Variables/index-START.html +++ b/03 - CSS Variables/index-complete.html @@ -21,7 +21,21 @@

Update CSS Variables with JS