diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
deleted file mode 100644
index 4070d32767..0000000000
--- a/01 - JavaScript Drum Kit/index-START.html
+++ /dev/null
@@ -1,66 +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/index-FINISHED.html b/01 - JavaScript Drum Kit/index.html
similarity index 88%
rename from 01 - JavaScript Drum Kit/index-FINISHED.html
rename to 01 - JavaScript Drum Kit/index.html
index 1a16d0997c..c301403b16 100644
--- a/01 - JavaScript Drum Kit/index-FINISHED.html
+++ b/01 - JavaScript Drum Kit/index.html
@@ -58,24 +58,24 @@
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
old mode 100644
new mode 100755
index 075578c930..3e0a320b37
--- a/01 - JavaScript Drum Kit/style.css
+++ b/01 - JavaScript Drum Kit/style.css
@@ -1,6 +1,6 @@
html {
font-size: 10px;
- background: url(http://i.imgur.com/b9r5sEL.jpg) bottom center;
+ background:url(http://i.imgur.com/b9r5sEL.jpg) bottom center;
background-size: cover;
}
body,html {
@@ -10,41 +10,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: .4rem solid black;
- border-radius: .5rem;
- margin: 1rem;
+ border:4px solid black;
+ border-radius:5px;
+ margin:1rem;
font-size: 1.5rem;
- padding: 1rem .5rem;
- transition: all .07s ease;
- width: 10rem;
+ padding:1rem .5rem;
+ transition:all .07s;
+ width:100px;
text-align: center;
- color: white;
- background: rgba(0,0,0,0.4);
- text-shadow: 0 0 .5rem black;
+ color:white;
+ background:rgba(0,0,0,0.4);
+ text-shadow:0 0 5px black;
}
.playing {
- transform: scale(1.1);
- border-color: #ffc600;
- box-shadow: 0 0 1rem #ffc600;
+ transform:scale(1.1);
+ border-color:#ffc600;
+ box-shadow: 0 0 10px #ffc600;
}
kbd {
display: block;
- font-size: 4rem;
+ font-size: 40px;
}
.sound {
font-size: 1.2rem;
text-transform: uppercase;
- letter-spacing: .1rem;
- color: #ffc600;
+ letter-spacing: 1px;
+ color:#ffc600;
}
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
deleted file mode 100644
index 2712384201..0000000000
--- a/02 - JS + CSS Clock/index-START.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
- JS + CSS Clock
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/02 - JS + CSS Clock/index-FINISHED.html b/02 - JS + CSS Clock/index.html
similarity index 72%
rename from 02 - JS + CSS Clock/index-FINISHED.html
rename to 02 - JS + CSS Clock/index.html
index ac30c1ef0e..52dd1c546d 100644
--- a/02 - JS + CSS Clock/index-FINISHED.html
+++ b/02 - JS + CSS Clock/index.html
@@ -61,38 +61,37 @@
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.58, 1);
+ transform-origin: 100%;
+ transition: all .05s cubic-bezier(0.08, 2.43, 0.54, 1.02);
}
-
-
+