From 6bb5c07c4c07a5795e09e08854e0c2521c116271 Mon Sep 17 00:00:00 2001 From: iamluismoran Date: Thu, 3 Jul 2025 11:43:24 +0200 Subject: [PATCH 1/2] done --- index.html | 68 ++++++++++++++++-- styles/style.css | 175 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 237 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..0f3a56625 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,70 @@ 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?

+
+
+ icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+ icon +

HD Music

+

Listen to music as if you were listening live

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

+
+ +
+ spotify-icon +
+ +
+ spotify-app +
+
+
diff --git a/styles/style.css b/styles/style.css index 55efb32c6..184c25de7 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,178 @@ Green: #00B172 White: #FFF */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} +body{ + background-color: white; + color: #1A1A1A; + font-family: Arial, sans-serif; + line-height: 1.3; +} + +nav { + position: fixed; + top: 0; + width: 100%; + background-color: white; + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 40px; + z-index: 1000; + border-bottom: 1px solid rgb(rgb(164, 82, 82)); +} + +nav img { + height: 40px; +} + +nav ul { + list-style: none; + display: flex; + gap: 25px; +} + +nav li { + cursor: pointer; +} + +nav li:hover { + color: #00B172; +} + +.hero { + background-image: url(../images/landing.jpg); + background-size: cover; + background-position: center; + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + color: white; + padding: 0 20px; + padding-top: 80px; +} + +.hero h1 { + font-size: 50px; + margin-bottom: 10px; +} + +.hero p { + font-size: 20px; + max-width: 600px; +} + +.features { + padding: 80px 40px; + text-align: center; +} + +.features h2 { + font-size: 30px; + color: #00B172; + margin-bottom: 40px; + border-bottom: 3px solid #00B172; + display: inline-block; + padding-bottom: 5px; +} + +.features-cards { + display: flex; + justify-content: space-between; + flex-wrap: wrap; + gap: 10px; + margin-top: 40px; +} + .card { + flex: 1; + padding: 30px 20px; + border-radius: 10px; + transition: 0.5s ease; + } + + .card:hover { + transform: scale(1.03); + } + + .card img { + height: 50px; + margin-bottom: 10px; + } + + .card h3 { + font-size: 25px; + margin-bottom: 10px; + color: #00B172; +} + +.card p { + font-size: 15px; +} + +.green { + background-color: #00B172; + color: #ffffff; + display: flex; + justify-content: space-between; + align-items: flex-start; + padding: 80px 40px; + flex-wrap: wrap; +} + +.left{ + flex: 1; + min-width: 300px; + padding-right: 40px; +} + +.left h2{ + font-size: 30px; + margin-top: 20px; + border-bottom: 2px solid rgb(255, 255, 255); + display: inline-block; + padding-bottom: 5px; +} + +.left h3{ + font-size: 20px; + margin-top: 40px; + margin-bottom: 20px; +} + +.left p { + font-size: 15px; + white-space: pre-line; + line-height: 1.5; +} + +.right { + flex: 1; + display: flex; + justify-content: center; + align-items: center; +} + +.right img { + max-width: 90%; + height: 500px; + max-height: 100%; +} + +.spotify-icon { + display: flex; + justify-content: center; + align-items: center; + padding: 40px +} + +.spotify-icon img{ + margin-top: 200px; + height: 90px; +} \ No newline at end of file From 6f9a0d9897d8c274deca1b9216d8082e8517b575 Mon Sep 17 00:00:00 2001 From: iamluismoran Date: Thu, 3 Jul 2025 11:46:48 +0200 Subject: [PATCH 2/2] done --- styles/style.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/styles/style.css b/styles/style.css index 184c25de7..b152f1a64 100644 --- a/styles/style.css +++ b/styles/style.css @@ -27,8 +27,6 @@ nav { justify-content: space-between; align-items: center; padding: 15px 40px; - z-index: 1000; - border-bottom: 1px solid rgb(rgb(164, 82, 82)); } nav img {