From e43bc9d7bf48412d86386ab2fb5e3e7fa3f32671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Monz=C3=B3n?= Date: Wed, 25 Sep 2024 11:55:19 +0200 Subject: [PATCH 1/3] =?UTF-8?q?Enlazado=20con=20CSS(vac=C3=ADo)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 0697f92fe..6ab83d251 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ Spotify Clone + Premium Discover Help Download Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the From 97ccdffc7037dea17e88017f37873750c65b46c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Monz=C3=B3n?= Date: Fri, 27 Sep 2024 21:35:40 +0200 Subject: [PATCH 2/3] Mejorada la parte inferior --- index.html | 119 +++++++++++++++++++++++++++++++----- styles/style.css | 153 +++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 250 insertions(+), 22 deletions(-) diff --git a/index.html b/index.html index 6ab83d251..507e00aac 100644 --- a/index.html +++ b/index.html @@ -1,19 +1,106 @@ - - - - - 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. - + + + + Spotify Landing Page + + + + + +
+ + + +
+ + +
+ +
+ +

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

Millions of Songs

+ +

There are millions of songs on Spotify

+ +
+ +
+ + HD Music + +

HD Music

+ +

Listen to music as if you were listening live

+ +
+ +
+ + Stream Everywhere + +

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, new releases and playlists.

+ +

Discover: Enjoy new music every Monday with your own personal playlists.

+ +
+ +
+ + Kanye West Player + +
+ +
+ + + diff --git a/styles/style.css b/styles/style.css index 55efb32c6..d69be46a6 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,8 +1,149 @@ -/* -Colors: +/* General */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} -Text: 1A1A1A -Green: #00B172 -White: #FFF +body { + font-family: Arial, sans-serif; + color: #333; +} -*/ +a { + text-decoration: none; + color: #333; +} + +/* CABECERA */ + +header { + background-color: #fff; + padding: 20px; + position: fixed; + width: 100%; + top: 0; + left: 0; + z-index: 100; + display: flex; + justify-content: space-between; + align-items: center; +} + +#logo { + width: 100px; +} + +#linksCabecera { + display: flex; + justify-content: flex-end; +} + +#linksCabecera li { + list-style: none; + margin-left: 20px; +} + +#linksCabecera a { + font-size: 16px; + font-weight: bold; + color: #333; +} +/* FIN DE LA CABECERA */ + +/* PARTE CENTRAL*/ + +#parteCentral { + height: 100vh; + background: url('../images/landing.jpg') no-repeat center center/cover; + display: flex; + justify-content: center; + align-items: center; + text-align: center; + color: white; + margin-top: 80px; +} + +#parteCentral h1 { + font-size: 4rem; + margin-bottom: 20px; +} + +#parteCentral p { + font-size: 1.5rem; +} + +h3 { + + color: #31a65a; + +} + +/*FIN PARTE CENTRAL*/ + +/* OFERTAS */ + +#ofertas { + padding: 60px 20px; + text-align: center; + background-color: #f8f8f8; +} + +#ofertas h2 { + font-size: 2.5rem; + margin-bottom: 40px; +} + +#ofertas-cajas { + display: flex; + justify-content: space-around; + max-width: 1200px; + margin: 0 auto; +} + +.oferta { + width: 30%; + text-align: center; +} + +.oferta img { + width: 60px; + margin-bottom: 20px; +} + +.oferta h3 { + font-size: 1.5rem; + margin-bottom: 10px; +} + + +/* FIN DE LA PARTE DE OFERTAS */ + + +/* FINAL */ + +#final { + background-color: #31a65a; + color: white; + padding: 50px 20px; + display: flex; + justify-content: space-between; + align-items: center; +} + +#textoFinal { + width: 50%; + font-size: 1.2rem; + line-height: 1.5; +} + +#spotify-player { + width: 300px; +} + +#spotify-player img { + width: 100%; +} + + +/* FINAL DE LA PARTE FINAL*/ \ No newline at end of file From 31670a1cc5fc5f504569d6f2522579743d61ffd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Monz=C3=B3n?= Date: Fri, 27 Sep 2024 22:16:49 +0200 Subject: [PATCH 3/3] Arreglada la parte inferior --- index.html | 8 +++++++- styles/style.css | 12 ++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 507e00aac..b2813949a 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@