diff --git a/01 - JavaScript Drum Kit/index-CF.html b/01 - JavaScript Drum Kit/index-CF.html
new file mode 100644
index 0000000000..b11dfd3b29
--- /dev/null
+++ b/01 - JavaScript Drum Kit/index-CF.html
@@ -0,0 +1,91 @@
+
+
+
+
+ JS Drum Kit
+
+
+
+
+
+
+
+ A
+ clap
+
+
+ S
+ hihat
+
+
+ D
+ kick
+
+
+ F
+ openhat
+
+
+ G
+ boom
+
+
+ H
+ ride
+
+
+ J
+ snare
+
+
+ K
+ tom
+
+
+ L
+ tink
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/02 - JS + CSS Clock/img/1000.jpg b/02 - JS + CSS Clock/img/1000.jpg
new file mode 100644
index 0000000000..b281b9ecd3
Binary files /dev/null and b/02 - JS + CSS Clock/img/1000.jpg differ
diff --git a/02 - JS + CSS Clock/index-CF.html b/02 - JS + CSS Clock/index-CF.html
new file mode 100644
index 0000000000..ddc38ad0b0
--- /dev/null
+++ b/02 - JS + CSS Clock/index-CF.html
@@ -0,0 +1,76 @@
+
+
+
+
+ JS + CSS Clock
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/02 - JS + CSS Clock/index-NEW.html b/02 - JS + CSS Clock/index-NEW.html
new file mode 100644
index 0000000000..a21bcdb726
--- /dev/null
+++ b/02 - JS + CSS Clock/index-NEW.html
@@ -0,0 +1,102 @@
+
+
+
+
+ JS + CSS Clock
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/03 - CSS Variables/index-CF.html b/03 - CSS Variables/index-CF.html
new file mode 100644
index 0000000000..8bdf0fd64c
--- /dev/null
+++ b/03 - CSS Variables/index-CF.html
@@ -0,0 +1,88 @@
+
+
+
+
+ Scoped CSS Variables and JS
+
+
+ Update CSS Variables with JS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/04 - Array Cardio Day 1/index-01.html b/04 - Array Cardio Day 1/index-01.html
new file mode 100644
index 0000000000..5333be7224
--- /dev/null
+++ b/04 - Array Cardio Day 1/index-01.html
@@ -0,0 +1,91 @@
+
+
+
+
+ Array Cardio 💪
+
+
+ Psst: have a look at the JavaScript Console 💁
+
+
+
diff --git a/04 - Array Cardio Day 1/index-START-CF.html b/04 - Array Cardio Day 1/index-START-CF.html
new file mode 100644
index 0000000000..9a12aa6724
--- /dev/null
+++ b/04 - Array Cardio Day 1/index-START-CF.html
@@ -0,0 +1,155 @@
+
+
+
+
+ Array Cardio 💪
+
+
+ Psst: have a look at the JavaScript Console 💁
+
+
+
diff --git a/05 - Flex Panel Gallery/index-CF.html b/05 - Flex Panel Gallery/index-CF.html
new file mode 100644
index 0000000000..534c8c378c
--- /dev/null
+++ b/05 - Flex Panel Gallery/index-CF.html
@@ -0,0 +1,163 @@
+
+
+
+
+ Flex Panels 💪
+
+
+
+
+
+
+
+
+
+
Give
+
Take
+
Receive
+
+
+
Experience
+
It
+
Today
+
+
+
+
+
+
+
+
+
+
+
diff --git a/06 - Type Ahead/index-CF.html b/06 - Type Ahead/index-CF.html
new file mode 100644
index 0000000000..41c0bfd964
--- /dev/null
+++ b/06 - Type Ahead/index-CF.html
@@ -0,0 +1,70 @@
+
+
+
+
+ Type Ahead 👀
+
+
+
+
+
+
+
+
diff --git a/06 - Type Ahead/style-CF.css b/06 - Type Ahead/style-CF.css
new file mode 100644
index 0000000000..36dc55f30e
--- /dev/null
+++ b/06 - Type Ahead/style-CF.css
@@ -0,0 +1,87 @@
+ html {
+ box-sizing: border-box;
+ background:#ffc600;
+ font-family:'helvetica neue';
+ font-size: 20px;
+ font-weight: 200;
+ }
+ *, *:before, *:after {
+ box-sizing: inherit;
+ }
+ input {
+ width: 100%;
+ padding:20px;
+ }
+
+ .search-form {
+ max-width:400px;
+ margin:50px auto;
+ }
+
+ input.search {
+ margin: 0;
+ text-align: center;
+ outline:0;
+ border: 10px solid #F7F7F7;
+ width: 120%;
+ left: -10%;
+ position: relative;
+ top: 10px;
+ z-index: 2;
+ border-radius: 5px;
+ font-size: 40px;
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.19);
+ }
+
+
+ .suggestions {
+ margin: 0;
+ padding: 0;
+ position: relative;
+ /*perspective:20px;*/
+ }
+ .suggestions li {
+ background:white;
+ list-style: none;
+ border-bottom: 1px solid #D8D8D8;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
+ margin:0;
+ padding:20px;
+ transition:background 0.2s;
+ display:flex;
+ justify-content:space-between;
+ text-transform: capitalize;
+ }
+
+ .suggestions li:nth-child(even) {
+ transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
+ background: linear-gradient(to bottom, #ffffff 0%,#EFEFEF 100%);
+ }
+ .suggestions li:nth-child(odd) {
+ transform: perspective(100px) rotateX(-3deg) translateY(3px);
+ background: linear-gradient(to top, #ffffff 0%,#EFEFEF 100%);
+ }
+
+ span.population {
+ font-size: 15px;
+ }
+
+
+ .details {
+ text-align: center;
+ font-size: 15px;
+ }
+
+ .hl {
+ background:#ffc600;
+ }
+
+ .love {
+ text-align: center;
+ }
+
+ a {
+ color:black;
+ background:rgba(0,0,0,0.1);
+ text-decoration: none;
+ }
diff --git a/07 - Array Cardio Day 2/index-CF.html b/07 - Array Cardio Day 2/index-CF.html
new file mode 100644
index 0000000000..42bd2d6a5e
--- /dev/null
+++ b/07 - Array Cardio Day 2/index-CF.html
@@ -0,0 +1,64 @@
+\
+
+
+
+ Array Cardio 💪💪
+
+
+ Psst: have a look at the JavaScript Console 💁
+
+
+
diff --git a/08 - Fun with HTML5 Canvas/index-CF.html b/08 - Fun with HTML5 Canvas/index-CF.html
new file mode 100644
index 0000000000..b208b7aadf
--- /dev/null
+++ b/08 - Fun with HTML5 Canvas/index-CF.html
@@ -0,0 +1,66 @@
+
+
+
+
+ HTML5 Canvas
+
+
+
+
+
+
+
+
+
diff --git a/09 - Dev Tools Domination/index-CF.html b/09 - Dev Tools Domination/index-CF.html
new file mode 100644
index 0000000000..a6be10d632
--- /dev/null
+++ b/09 - Dev Tools Domination/index-CF.html
@@ -0,0 +1,85 @@
+
+
+
+
+ Console Tricks!
+
+
+
+ ×BREAK×DOWN×
+
+
+
+
diff --git a/10 - Hold Shift and Check Checkboxes/index-CF.html b/10 - Hold Shift and Check Checkboxes/index-CF.html
new file mode 100644
index 0000000000..a1111951f0
--- /dev/null
+++ b/10 - Hold Shift and Check Checkboxes/index-CF.html
@@ -0,0 +1,143 @@
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
This is an inbox layout.
+
+
+
+
+
Hold down your Shift key
+
+
+
+
+
Everything inbetween should also be set to checked
+
+
+
+
Try do it with out any libraries
+
+
+
+
Just regular JavaScript
+
+
+
+
+
Don't forget to tweet your result!
+
+
+
+
+
+
diff --git a/10 - Hold Shift and Check Checkboxes/index-CF_lesson.html b/10 - Hold Shift and Check Checkboxes/index-CF_lesson.html
new file mode 100644
index 0000000000..84834d9d0b
--- /dev/null
+++ b/10 - Hold Shift and Check Checkboxes/index-CF_lesson.html
@@ -0,0 +1,142 @@
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
This is an inbox layout.
+
+
+
+
+
Hold down your Shift key
+
+
+
+
+
Everything inbetween should also be set to checked
+
+
+
+
Try do it with out any libraries
+
+
+
+
Just regular JavaScript
+
+
+
+
+
Don't forget to tweet your result!
+
+
+
+
+
+
diff --git a/10 - Hold Shift and Check Checkboxes/index-FINISHED.html b/10 - Hold Shift and Check Checkboxes/index-FINISHED.html
index 3ce296cc4b..8275be669b 100644
--- a/10 - Hold Shift and Check Checkboxes/index-FINISHED.html
+++ b/10 - Hold Shift and Check Checkboxes/index-FINISHED.html
@@ -126,6 +126,7 @@
checkbox.checked = true;
}
});
+
}
lastChecked = this;
diff --git a/11 - Custom Video Player/index.html b/11 - Custom Video Player/index.html
index 281a15eaa8..37450b1315 100644
--- a/11 - Custom Video Player/index.html
+++ b/11 - Custom Video Player/index.html
@@ -3,7 +3,7 @@
HTML Video Player
-
+
@@ -19,9 +19,10 @@
+
-
+