diff --git a/01 - JavaScript Drum Kit/index-FINISHED.html b/01 - JavaScript Drum Kit/index-FINISHED.html
old mode 100644
new mode 100755
diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
old mode 100644
new mode 100755
index 4070d32767..8d7ac5acb6
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -58,7 +58,24 @@
diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html
new file mode 100755
index 0000000000..a18f2bc2ca
--- /dev/null
+++ b/01 - JavaScript Drum Kit/index.html
@@ -0,0 +1,83 @@
+
+
+
+
+ JS Drum Kit
+
+
+
+
+
+
+
+ A
+ clap
+
+
+ S
+ hihat
+
+
+ D
+ kick
+
+
+ F
+ openhat
+
+
+ G
+ boom
+
+
+ H
+ ride
+
+
+ J
+ snare
+
+
+ K
+ tom
+
+
+ L
+ tink
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
old mode 100644
new mode 100755
diff --git a/02 - JS + CSS Clock/index-FINISHED.html b/02 - JS + CSS Clock/index-FINISHED.html
old mode 100644
new mode 100755
index db653a5340..36c420f534
--- a/02 - JS + CSS Clock/index-FINISHED.html
+++ b/02 - JS + CSS Clock/index-FINISHED.html
@@ -2,7 +2,7 @@
- JS + CSS Clock
+ Document
@@ -42,7 +42,7 @@
position: relative;
padding:2rem;
box-shadow:
- 0 0 0 4px rgba(0,0,0,0.1),
+ 0 0 0px 4px rgba(0,0,0,0.1),
inset 0 0 0 3px #EFEFEF,
inset 0 0 10px black,
0 0 10px rgba(0,0,0,0.2);
@@ -84,15 +84,13 @@
const minsDegrees = ((mins / 60) * 360) + 90;
minsHand.style.transform = `rotate(${minsDegrees}deg)`;
- const hour = now.getHours();
- const hourDegrees = ((hour / 12) * 360) + 90;
+ const hour = now.getMinutes();
+ const hourDegrees = ((mins / 12) * 360) + 90;
hourHand.style.transform = `rotate(${hourDegrees}deg)`;
}
setInterval(setDate, 1000);
- setDate();
-
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
old mode 100644
new mode 100755
index 2712384201..592db16927
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -2,7 +2,7 @@
- JS + CSS Clock
+ Document
@@ -42,7 +42,7 @@
position: relative;
padding:2rem;
box-shadow:
- 0 0 0 4px rgba(0,0,0,0.1),
+ 0 0 0px 4px rgba(0,0,0,0.1),
inset 0 0 0 3px #EFEFEF,
inset 0 0 10px black,
0 0 10px rgba(0,0,0,0.2);
@@ -61,12 +61,35 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%;
+ transform: rotate(90deg);
+ transition: all 0.05s;
+ transition-timing-function: cubic-bezier(0, 2.7, .58, 1);
}
diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html
new file mode 100755
index 0000000000..36c420f534
--- /dev/null
+++ b/02 - JS + CSS Clock/index.html
@@ -0,0 +1,96 @@
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/03 - CSS Variables/index-FINISHED.html b/03 - CSS Variables/index-FINISHED.html
old mode 100644
new mode 100755
index c3217fc003..9401d7b339
--- a/03 - CSS Variables/index-FINISHED.html
+++ b/03 - CSS Variables/index-FINISHED.html
@@ -57,6 +57,11 @@ Update CSS Variables with JS
margin-bottom: 50px;
}
+ a {
+ color: var(--base);
+ text-decoration: none;
+ }
+
input {
width:100px;
}
diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html
old mode 100644
new mode 100755
index 7171607a8b..4b36471e31
--- a/03 - CSS Variables/index-START.html
+++ b/03 - CSS Variables/index-START.html
@@ -21,6 +21,21 @@ Update CSS Variables with JS
diff --git a/04 - Array Cardio Day 1/index-FINISHED.html b/04 - Array Cardio Day 1/index-FINISHED.html
old mode 100644
new mode 100755
index ede883f1f9..850a61a7d9
--- a/04 - Array Cardio Day 1/index-FINISHED.html
+++ b/04 - Array Cardio Day 1/index-FINISHED.html
@@ -5,7 +5,6 @@
Array Cardio πͺ
- Psst: have a look at the JavaScript Console π