diff --git a/index.html b/index.html index 0697f92..712ee78 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,80 @@ + + + + Spotify Clone - - Premium Discover Help Download Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the - right music, wherever you are. What’s on Spotify? Millions of Songs There are millions of songs on Spotify HD Music - Listen to music as if you were listening live Stream Everywhere Stream music on your smartphone, tablet or computer - It’s as yeezy as Kanye West. Search Know what you want to listen to? Just search and hit play. Browse Check out the - latest charts, brand new releases and great playlists for right now. Discover Enjoy new music every Monday with your - own personal playlist. Or sit back and enjoy Radio. + +
+
+

Music for everyone.

+

Spotify is now free on mobile, tablet and computer.

+

Listen to the right music, wherever you are.

+
+
+
+
+

What’s on Spotify?

+
+
+ music icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+  HD music icon +

HD Music

+

Listen to music as if you were listening live

+
+
+  HD music icon +

Stream Everywhere

+

Stream music on your smartphone, tablet or computer

+
+
+
+
+
+

It’s as yeezy as Kanye West.

+
+
+

Search

+

Know what you want to listen to? Just search and hit play.

+
+
+

Browse

+

Check out the + latest charts, brand new releases and great playlists for right now.

+
+
+

Discover

+

Enjoy new music every Monday with your + own personal playlist. Or sit back and enjoy Radio.

+
+
+
+ +
+ app +
+
+
diff --git a/styles/style.css b/styles/style.css index 55efb32..1233a3e 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,216 @@ -/* -Colors: +:root { + --text: #1A1A1A; + --green: #00B172; + --white: #FFF +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +* { + margin: 0; + padding: 0; + box-sizing: border-box; + text-decoration: none; + list-style: none; +} -*/ +body { + width: 100%; + font-family: "Poppins", sans-serif; +} + +p { + font-size: 1.3rem; +} + +/* navigation bar */ + +.nav--items { + position: relative; +} + +.nav--bar { + display: flex; + justify-content: space-between; + align-items: center; + position: fixed; + width: 100%; + background-color: var(--white); + height: 11vh; + z-index: 100; + padding: 1.5em 1.5em; +} + +.nav--bar ul { + display: flex; + gap: 1em; +} + +.nav--bar ul li { + cursor: pointer; +} + +.logo { + width: 9em; +} + +/* landing--page */ +.landing--page { + background: url(../images/landing.jpg) center center / cover no-repeat; + height: 85vh; + color: #fff; + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.message h2 { + font-size: 4rem; + font-weight: 700; + margin-bottom: .2em; +} + +.message p { + font-size: 1.2rem; +} + + +/* content */ +/* info cards */ + +.content { + display: flex; + flex-direction: column; + gap: 2em; padding: 1.5em; +} +.info--cards { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 2em; +} + +.info--cards h2 { + font-size: 2rem; +} + +.info--cards h2::after { + content: ''; + display: block; + width: 100%; + height: 4px; + margin-top: 5px; + background: var(--green); +} + +.cards { + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + gap: 1em; +} + +.card { + width: 100%; + padding: 4em; + border: 5px solid rgb(243, 243, 66); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: .5em; + text-align: center; +} + +.card p { + font-weight: 300; +} + +.card h4 { + font-size: 1.5rem; + color: var(--green); +} + +.card--img { + width: 8em; + height: auto; +} + +.card.hd { + padding: 4.5em; +} + +.card.stream { + height: 339px; + +} + +/* footer */ + +.spotify--details { + width: 100%; + background: var(--green); + height: 120vh; + display: flex; + justify-content: space-between; + padding: 3em 6em; + gap: 20em; + color: white; + position: relative; +} + +#spotify--white { + width: 100px; + position: absolute; + top: 50%; + left: 55%; + transform: translate(-100%, -100%); +} + +.spotify--app { + width: 463px; + + margin-top: 3em; +} + +.spotify--app img { + width: 100%; +} + +.info { + display: flex; + flex-direction: column; + gap: 1em; + width: 50%; +} + +.info h3 { + font-size: 1.8rem; +} + +.info h3::after { + content: ''; + display: block; + width: 100%; + height: 4px; + margin-top: .2em; + background: var(--white); +} + +.info--details { + margin-top: 1.2em; + width: 350px; + display: flex; + flex-direction: column; + gap: 2em; + justify-content: space-between; + font-weight: 300; + font-size: .8rem; +} + +.info--details h4 { + font-size: 1.3rem; + font-weight: 600; + margin-bottom: 1em; +}