diff --git a/.gitignore b/.gitignore
index 6e1a3738b8..164ae8655c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
node_modules/
*.log
haters/
+.idea/
diff --git a/01 - JavaScript Drum Kit/background.jpg b/01 - JavaScript Drum Kit/background.jpg
new file mode 100644
index 0000000000..590036d636
Binary files /dev/null and b/01 - JavaScript Drum Kit/background.jpg differ
diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..c64c9c5785 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -57,8 +57,25 @@
-
diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html
deleted file mode 100644
index 246639f990..0000000000
--- a/01 - JavaScript Drum Kit/index.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- 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/sounds/tink.wav b/01 - JavaScript Drum Kit/sounds/tink.wav
old mode 100755
new mode 100644
index f907ea2c0e..1f3c7b9191
Binary files a/01 - JavaScript Drum Kit/sounds/tink.wav and b/01 - JavaScript Drum Kit/sounds/tink.wav differ
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
index 3e0a320b37..bfdba84312 100644
--- a/01 - JavaScript Drum Kit/style.css
+++ b/01 - JavaScript Drum Kit/style.css
@@ -1,8 +1,9 @@
html {
font-size: 10px;
- background:url(http://i.imgur.com/b9r5sEL.jpg) bottom center;
+ background: url('./background.jpg') bottom center;
background-size: cover;
}
+
body,html {
margin: 0;
padding: 0;
@@ -10,41 +11,41 @@ body,html {
}
.keys {
- display:flex;
- flex:1;
- min-height:100vh;
+ display: flex;
+ flex: 1;
+ min-height: 100vh;
align-items: center;
justify-content: center;
}
.key {
- border:4px solid black;
- border-radius:5px;
- margin:1rem;
+ border: .4rem solid black;
+ border-radius: .5rem;
+ margin: 1rem;
font-size: 1.5rem;
- padding:1rem .5rem;
- transition:all .07s;
- width:100px;
+ padding: 1rem .5rem;
+ transition: all .07s ease;
+ width: 10rem;
text-align: center;
- color:white;
- background:rgba(0,0,0,0.4);
- text-shadow:0 0 5px black;
+ color: white;
+ background: rgba(0,0,0,0.4);
+ text-shadow: 0 0 .5rem black;
}
.playing {
- transform:scale(1.1);
- border-color:#ffc600;
- box-shadow: 0 0 10px #ffc600;
+ transform: scale(1.1);
+ border-color: #ffc600;
+ box-shadow: 0 0 1rem #ffc600;
}
kbd {
display: block;
- font-size: 40px;
+ font-size: 4rem;
}
.sound {
font-size: 1.2rem;
text-transform: uppercase;
- letter-spacing: 1px;
- color:#ffc600;
+ letter-spacing: .1rem;
+ color: #ffc600;
}
diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html
deleted file mode 100644
index d5c9ec9596..0000000000
--- a/02 - JS + CSS Clock/index.html
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
- Document
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/02 - JS + CSS Clock/index-FINISHED.html b/02 - JS and CSS Clock/index-FINISHED.html
similarity index 76%
rename from 02 - JS + CSS Clock/index-FINISHED.html
rename to 02 - JS and CSS Clock/index-FINISHED.html
index 220faf779d..04d1a4e40e 100644
--- a/02 - JS + CSS Clock/index-FINISHED.html
+++ b/02 - JS and CSS Clock/index-FINISHED.html
@@ -2,7 +2,7 @@
- Document
+ JS + CSS Clock
@@ -18,17 +18,18 @@
diff --git a/03 - CSS Variables/index-FINISHED.html b/03 - CSS Variables/index-FINISHED.html
index 9401d7b339..2f0d1464ff 100644
--- a/03 - CSS Variables/index-FINISHED.html
+++ b/03 - CSS Variables/index-FINISHED.html
@@ -9,13 +9,13 @@ Update CSS Variables with JS
-
+
-
+
-
+
@@ -43,9 +43,6 @@ Update CSS Variables with JS
body {
text-align: center;
- }
-
- body {
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
@@ -57,13 +54,8 @@ Update CSS Variables with JS
margin-bottom: 50px;
}
- a {
- color: var(--base);
- text-decoration: none;
- }
-
input {
- width:100px;
+ width: 100px;
}
diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html
index bf0f33e3ba..6b9b539c09 100644
--- a/03 - CSS Variables/index-START.html
+++ b/03 - CSS Variables/index-START.html
@@ -9,13 +9,13 @@ Update CSS Variables with JS
-
+
-
+
-
+
@@ -28,9 +28,6 @@ Update CSS Variables with JS
body {
text-align: center;
- }
-
- body {
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
@@ -42,13 +39,8 @@ Update CSS Variables with JS
margin-bottom: 50px;
}
- a {
- color: var(--base);
- text-decoration: none;
- }
-
input {
- width:100px;
+ width: 100px;
}
diff --git a/04 - Array Cardio Day 1/index-FINISHED.html b/04 - Array Cardio Day 1/index-FINISHED.html
index f68d8c3545..d1f6ce33d6 100644
--- a/04 - Array Cardio Day 1/index-FINISHED.html
+++ b/04 - Array Cardio Day 1/index-FINISHED.html
@@ -5,6 +5,7 @@
Array Cardio 💪
+ Psst: have a look at the JavaScript Console 💁
diff --git a/05 - Flex Panel Gallery/index-FINISHED.html b/05 - Flex Panel Gallery/index-FINISHED.html
index 243f8a221d..bfa64d6be3 100644
--- a/05 - Flex Panel Gallery/index-FINISHED.html
+++ b/05 - Flex Panel Gallery/index-FINISHED.html
@@ -9,30 +9,32 @@
diff --git a/05 - Flex Panel Gallery/index-START.html b/05 - Flex Panel Gallery/index-START.html
index e1d643ad5c..71d1c26f00 100644
--- a/05 - Flex Panel Gallery/index-START.html
+++ b/05 - Flex Panel Gallery/index-START.html
@@ -9,29 +9,31 @@
diff --git a/06 - Type Ahead/index-START.html b/06 - Type Ahead/index-START.html
index 1436886918..109c90fb36 100644
--- a/06 - Type Ahead/index-START.html
+++ b/06 - Type Ahead/index-START.html
@@ -18,5 +18,5 @@
const endpoint = 'https://gist.githubusercontent.com/Miserlou/c5cd8364bf9b2420bb29/raw/2bf258763cdddd704f8ffd3ea9a3e81d25e2c6f6/cities.json';
-