-
Explore new music
+ Explore new music
Add seeds below to build your sound. Let's start with
{this.props.authorized ? " two of your favorite artists" : " the chill genre"}.
diff --git a/src/scss/app.scss b/src/scss/app.scss
index 319ea1cd..d22e0871 100755
--- a/src/scss/app.scss
+++ b/src/scss/app.scss
@@ -14,7 +14,7 @@
@import 'components/icon';
@import 'components/search-form';
@import 'components/slider';
-@import 'components/player';
+@import 'components/playback-controls';
@import 'components/sidebar';
@import 'components/sidebar-toggle-button';
@import 'components/lists';
diff --git a/src/scss/components/_header.scss b/src/scss/components/_header.scss
index fd0237e8..8f91c9a3 100755
--- a/src/scss/components/_header.scss
+++ b/src/scss/components/_header.scss
@@ -1,8 +1,7 @@
main {
header {
- padding: 14px 20px;
- line-height: 24px;
+ padding: 30px 40px;
box-sizing: border-box;
h1 {
@@ -14,7 +13,7 @@ main {
padding-right: 14px;
height: 2.5rem;
vertical-align: bottom;
- margin-bottom: -5px;
+ margin-bottom: 5px;
}
.options {
diff --git a/src/scss/components/_playback-controls.scss b/src/scss/components/_playback-controls.scss
new file mode 100755
index 00000000..ceadff8e
--- /dev/null
+++ b/src/scss/components/_playback-controls.scss
@@ -0,0 +1,118 @@
+
+.playback-controls {
+ position: fixed;
+ z-index: 99;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ height: 50px;
+ background: $white;
+ color: $black;
+ border-top: 1px solid $light_grey;
+
+ .current-track {
+ position: absolute;
+ bottom: 51px;
+ background: $white;
+ height: 100px;
+ width: 220px;
+ border-top: 1px solid $light_grey;
+ }
+
+ .control {
+ @include animate();
+ font-size: 16px;
+ color: $dark_grey;
+ cursor: pointer;
+ padding: 8px;
+ display: inline-block;
+ vertical-align: top;
+
+ &.play {
+ font-size: 24px;
+ margin-top: -4px;
+ }
+
+ &.active {
+ color: $turquoise;
+ }
+
+ &:hover {
+ color: $blue;
+ }
+ }
+
+ section {
+ position: absolute;
+ top: 10px;
+
+ &.playback {
+ left: 20px;
+ top: 11px;
+ width: 120px;
+ text-align: center;
+ }
+
+ &.progress {
+ top: 12px;
+ left: 140px;
+ right: 280px;
+ padding-left: 20px;
+ padding-right: 20px;
+ color: $mid_grey;
+
+ .slider {
+ position: absolute;
+ top: 0;
+ left: 50px;
+ right: 50px;
+ }
+
+ .current {
+ position: absolute;
+ top: 5px;
+ left: 0;
+ width: 45px;
+ text-align: right;
+ }
+
+ .total {
+ position: absolute;
+ top: 5px;
+ right: 0;
+ width: 45px;
+ }
+ }
+
+ &.settings {
+ top: 11px;
+ right: 170px;
+ width: 120px;
+ text-align: center;
+ }
+
+ &.volume {
+ top: 12px;
+ right: 20px;
+ width: 150px;
+
+ .modal-trigger {
+ display: none;
+ }
+
+ .control {
+ position: absolute;
+ top: 0;
+ left: 0;
+ }
+
+ .slider-wrapper {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 30px;
+ }
+ }
+ }
+}
+
diff --git a/src/scss/components/_player.scss b/src/scss/components/_player.scss
index 75f8b5e9..ad6e98b3 100755
--- a/src/scss/components/_player.scss
+++ b/src/scss/components/_player.scss
@@ -111,16 +111,18 @@
&.mini-player {
position: fixed;
bottom: 0;
+ right: 0;
left: 0;
- width: 220px;
+ height: 50px;
+ background: $white;
+ border-top: 1px solid $light_grey;
box-sizing: border-box;
z-index: 97;
- padding: 14px;
- color: #FFFFFF;
+ color: $black;
.artist-sentence {
.artist:hover {
- border-color: #FFFFFF !important;
+ border-color: $black !important;
}
}
@@ -194,3 +196,9 @@
}
}
}
+
+
+.playback-controls {
+
+}
+
diff --git a/src/scss/components/_sidebar.scss b/src/scss/components/_sidebar.scss
index 26ad6bbf..30920647 100755
--- a/src/scss/components/_sidebar.scss
+++ b/src/scss/components/_sidebar.scss
@@ -7,7 +7,7 @@ aside{
z-index: 96;
width: 220px;
overflow: hidden;
- border-right: 2px solid $light_grey;
+ border-right: 1px solid $light_grey;
.liner {
overflow-y: auto;
@@ -57,6 +57,8 @@ aside{
display: block;
padding: 6px 18px 6px 6px;
border-left: 4px solid transparent;
+ font-family: "Raleway";
+ font-weight: 700;
.icon {
height: 14px;
diff --git a/src/scss/components/_slider.scss b/src/scss/components/_slider.scss
index 904410a7..26786b91 100755
--- a/src/scss/components/_slider.scss
+++ b/src/scss/components/_slider.scss
@@ -5,7 +5,7 @@
.track {
position: absolute;
- background: rgba(255,255,255,0.3);
+ background: $light_grey;
.progress {
position: absolute;
@@ -22,12 +22,11 @@
}
&.horizontal {
- margin: 10px 0;
height: 20px;
.track {
- height: 2px;
- top: 9px;
+ height: 5px;
+ top: 12px;
right: 0;
left: 0;
@@ -43,10 +42,10 @@
height: 100%;
.track {
- width: 2px;
+ width: 5px;
top: 0;
bottom: 0;
- left: 9px;
+ left: 12px;
.progress {
bottom: 0;
diff --git a/src/scss/global/_core.scss b/src/scss/global/_core.scss
index 1aeaad83..a74e486c 100755
--- a/src/scss/global/_core.scss
+++ b/src/scss/global/_core.scss
@@ -3,8 +3,8 @@
body,
html {
background: $off_white;
- color: #000000;
- font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
+ color: $black;
+ font-family: "Archivo Narrow", Helvetica, Arial, sans-serif;
font-size: 14px;
touch-action: manipulation;
}
@@ -40,6 +40,7 @@ footer {
main {
position: relative;
min-height: 100vh;
+ padding-bottom: 50px;
a {
color: inherit;
@@ -90,13 +91,13 @@ main {
h1 {
font-weight: 700;
font-size: 3rem;
- font-family: "Montserrat";
+ font-family: "Raleway";
}
h2 {
font-size: 2.5rem;
font-weight: 500;
- font-family: "Montserrat";
+ font-family: "Raleway";
}
h3 {
diff --git a/src/scss/views/_discover.scss b/src/scss/views/_discover.scss
index 997a12bf..ae5f8c0f 100755
--- a/src/scss/views/_discover.scss
+++ b/src/scss/views/_discover.scss
@@ -20,7 +20,7 @@
position: relative;
color: $white;
- h1 {
+ h2 {
padding-bottom: 8px;
}
@@ -109,7 +109,7 @@
.discover-new-releases-view {
.intro {
position: relative;
- padding-top: 50px;
+ padding-top: 120px;
.parallax {
position: absolute;
@@ -132,12 +132,13 @@
}
h1,
+ h2,
h3,
.actions {
padding-left: 240px;
}
- h1 {
+ h2 {
padding-top: 20px;
}
@@ -160,7 +161,7 @@
padding-top: 0;
}
- h1,
+ h2,
h3,
.actions {
padding-left: 120px;