From b8ae2d172d4dcea494e647417481aed2f3693497 Mon Sep 17 00:00:00 2001 From: iarru92 Date: Fri, 5 Apr 2024 17:28:09 +0200 Subject: [PATCH] final-version --- index.html | 82 +++++++++++++++++++++-- style.css | 167 +++++++++++++++++++++++++++++++++++++++++++++++ styles/style.css | 8 --- 3 files changed, 242 insertions(+), 15 deletions(-) create mode 100644 style.css delete mode 100644 styles/style.css diff --git a/index.html b/index.html index 0697f92..08cfc1c 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,82 @@ 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?

+
+
+ Logo 1 +

Millions of Songs

+

There are millions of songs on Spotify

+
+
+ Logo 2 +

HD Music

+

Listen to music as if you were listening live

+
+
+ Logo 3 +

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.

+
+
+ +
+ iPhone +
+
+ diff --git a/style.css b/style.css new file mode 100644 index 0000000..dbb9e5e --- /dev/null +++ b/style.css @@ -0,0 +1,167 @@ +/* +Colors: + +Text: 1A1A1A +Green: #00B172 +White: #FFF + +*/ + +* { + box-sizing: border-box; + } + + body { + margin: 0; + font-family: Arial, sans-serif; +} + +.barranavegacion { + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px 20px; +} + +.logo img { + width: 100px; +} + +nav ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +nav ul li { + display: inline; +} + +nav ul li a { + text-decoration: none; + padding: 10px; + margin: 0 5px; + color: #333; +} + +.portada { + background-image: url('https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/landing.jpg?raw=true'); + background-size: cover; + background-position: center; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; +} + +.contenido { + text-align: center; + color: #FFF; +} + +.contenido h1 { + font-size: 3em; + margin-bottom: 20px; + line-height: 1.5; + letter-spacing: 1px; +} + +.contenido p { + font-size: 1.5em; + line-height: 1.5; + letter-spacing: 1px; +} + +.cajas-section { + padding: 0px 0; +} + +.caja { + background-color: #FFF; + padding: 20px; + text-align: center; +} + +.caja h2 { + margin-top: 20px; + margin-bottom: 20px; + text-decoration: underline; + text-decoration-color: #00B172; + text-decoration-skip-ink; +} + +.contenidospoti { + display: flex; + justify-content: space-around; + margin-top: 50px; + margin-bottom: 50px; + line-height: 1.5; + letter-spacing: 1px; +} + +.cuadro { + width: 300px; + padding: 20px; + background-color: #FFF +} + +.cuadro img { + width: 80px; + margin: 0 auto; +} + +.cuadro h3, .cuadro p { + margin: 10px 0; + color: #00B172; +} + +.contenedor { + display: flex; + background-color: #00B172; + height: 65vh; +} + +.seccion-izquierda, .seccion-derecha { + flex: 1; + padding: 20px; +} + +.whitelogo { + flex: 1; + display: flex; + justify-content: center; + align-items: center; +} + +.whitelogo img { + max-width: 20%; +} + +h2 { + text-decoration: underline; + margin-left: 100px; + line-height: 1.5; + letter-spacing: 1px; +} + +.subseccion { + margin-top: 50px; + margin-left: 100px; +} + +.subseccion h3 { + margin: 0; + color: #FFF; +} + +.subseccion p { + margin: 20px 0; + color: #FFF; + line-height: 1.5; + letter-spacing: 1px; +} + +.seccion-derecha img { + max-width: 45%; + margin-top: 40px; +} \ No newline at end of file diff --git a/styles/style.css b/styles/style.css deleted file mode 100644 index 55efb32..0000000 --- a/styles/style.css +++ /dev/null @@ -1,8 +0,0 @@ -/* -Colors: - -Text: 1A1A1A -Green: #00B172 -White: #FFF - -*/