diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..047d4e2895 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -58,7 +58,26 @@
diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html
index 12f721b183..f73b1b7aae 100644
--- a/02 - JS and CSS Clock/index-START.html
+++ b/02 - JS and CSS Clock/index-START.html
@@ -56,19 +56,47 @@
transform: translateY(-3px); /* account for the height of the clock hands */
}
+
.hand {
width: 50%;
height: 6px;
background: black;
position: absolute;
top: 50%;
+ transform-origin: 100%;
+ transform: rotate(90deg);
+ transition: all 0.05s;
+ transition-timing-function: cubic-bezier(0.1, 2.7, 0.59, 1);
+ }
+ .min-hand {
+ height: 9px;
+ }
+ .hour-hand {
+ height: 12px;
}
-