From 46783643ecfc0407452b716b890972ef5755a2a5 Mon Sep 17 00:00:00 2001 From: MarioLJFerreira Date: Sat, 7 Jun 2025 15:27:04 +0100 Subject: [PATCH 1/2] done --- index.html | 79 +++++++++++++++++++++++--- styles/style.css | 144 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 216 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..45b89abd6 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,79 @@ 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?

+
+
+ +

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. +

+
+
+ + +
+
+
diff --git a/styles/style.css b/styles/style.css index 55efb32c6..a8245f280 100644 --- a/styles/style.css +++ b/styles/style.css @@ -5,4 +5,148 @@ Text: 1A1A1A Green: #00B172 White: #FFF + + + + */ +body { + font-family: sans-serif; +} +body, +h1 { + padding: 0; + margin: 0; +} +header { + position: fixed; + width: 100%; + background-color: white; + display: flex; + justify-content: space-between; + align-items: center; + height: 6rem; + padding-left: 2rem; +} + +header > img { + height: 4rem; +} + +.navbar { + padding-right: 50px; +} + +header ul { + display: flex; + list-style-type: none; +} + +header li { + margin: 0.5rem; +} + +#intro { + background-image: url("../images/landing.jpg"); + padding-top: 6rem; + height: 900px; + color: white; + background-size: cover; + display: flex; + justify-content: center; +} +#intro-text { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + max-width: 50%; +} + +#intro h1 { + font-size: 4rem; + +} +#intro p { + text-align: center; + font-size: 1.2rem; +} +.row { + display: flex; + flex-direction: row; +} + +.column { + display: flex; + flex-direction: column; +} + +#features { + display: flex; + flex-direction: column; + align-items: center; +} + +#features h2{ + text-decoration: underline; + text-decoration-thickness: 2.5px; + text-underline-offset: 13px; + text-decoration-color: #00b172; +} +#features img { + height: 100px; +} + +.card h3 { + color: #00b172; +} + +.card { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + padding: 2rem; +} + +#app h2 { + text-decoration: underline; + text-decoration-thickness: 2.5px; + text-underline-offset: 13px; +} + +#app { + background-color: #00b172; + color: white; + margin: 30px; + padding: 50px 100px; + display: flex; + flex-direction: column; +} +#app-features { + width: 25%; +} + +#spotify-icon { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + height: 100px; +} + +#spotify-app { + height: 500px; +} + +hr { + width: 50%; +} + +#app-card { + position: relative; + display: flex; + justify-content: space-between; + align-items: center; +} From 94f4fbd686dbd9c19e6d96acfc640e1f4a6638b4 Mon Sep 17 00:00:00 2001 From: MarioLJFerreira Date: Sat, 7 Jun 2025 16:00:44 +0100 Subject: [PATCH 2/2] final --- styles/style.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/styles/style.css b/styles/style.css index a8245f280..fd35b419b 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,14 +1,8 @@ /* Colors: - Text: 1A1A1A Green: #00B172 White: #FFF - - - - - */ body { font-family: sans-serif;