diff --git a/Video Speed Controller [28-30]/index.html b/Video Speed Controller [28-30]/index.html new file mode 100644 index 0000000..0b5b2e5 --- /dev/null +++ b/Video Speed Controller [28-30]/index.html @@ -0,0 +1,39 @@ + + + + + Video Speed Scrubber + + + + + +
+ +
+
+
+
+ + + + diff --git a/Video Speed Controller [28-30]/style.css b/Video Speed Controller [28-30]/style.css new file mode 100644 index 0000000..656c796 --- /dev/null +++ b/Video Speed Controller [28-30]/style.css @@ -0,0 +1,42 @@ +body { + margin: 0; + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #4C4C4C url('https://unsplash.it/1500/900?image=1021'); + background-size: cover; + font-family: sans-serif; +} + +.wrapper { + width: 850px; + display: flex; +} + +video { + box-shadow: 0 0 1px 3px rgba(0,0,0,0.1); +} + +.speed { + background: #efefef; + flex: 1; + display: flex; + align-items: flex-start; + margin: 10px; + border-radius: 50px; + box-shadow: 0 0 1px 3px rgba(0,0,0,0.1); + overflow: hidden; +} + +.speed-bar { + width: 100%; + background: linear-gradient(-170deg, #2376ae 0%, #c16ecf 100%); + text-shadow: 1px 1px 0 rgba(0,0,0,0.2); + display: flex; + align-items: center; + justify-content: center; + padding: 2px; + color: white; + height: 16.3%; +}