Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 75 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,82 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Spotify Clone</title>
<!-- don't forget to link your styles -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
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.

<header class="box box1">
<header>
<div class="barranavegacion">
<div class="logo">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/spotify-logo.png?raw=true" alt="logo">
</div>
<nav>
<ul>
<li><a href="#">Premium</a></li>
<li><a href="#">Discover</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Download</a></li>
</ul>
</nav>
</div>

<div class="portada">
<div class="contenido">
<h1>Music for everyone.</h1>
<p>Spotify is now free on mobile, tablet and computer. Listen to the
right music, wherever you are.</p>
</div>
</div>
</header>

<section class="cajas-section">
<div class="caja">
<h2 class="greenzonetitle">What’s on Spotify?</h2>
<div class="contenidospoti">
<div class="cuadro">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/music-icon.png?raw=true" alt="Logo 1">
<h3>Millions of Songs</h3>
<p style="color:black;">There are millions of songs on Spotify</p>
</div>
<div class="cuadro">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/high-quality-icon.png?raw=true" alt="Logo 2">
<h3>HD Music</h3>
<p style="color:black;">Listen to music as if you were listening live</p>
</div>
<div class="cuadro">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/devices-icon.png?raw=true" alt="Logo 3">
<h3>Stream Everywhere</h3>
<p style="color:black;">Stream music on your smartphone, tablet or computer</p>
</div>
</div>
</div>
</section>

<div class="contenedor">
<div class="seccion-izquierda">
<h2 style="color: white;">It’s as yeezy as Kanye West.</h2>
<div class="subseccion">
<h3>Search</h3>
<p>Know what you want to listen to? Just search and hit play.</p>
</div>
<div class="subseccion">
<h3>Browse</h3>
<p>Check out the latest charts, brand new releases and great playlists for right now.</p>
</div>
<div class="subseccion">
<h3>Discover</h3>
<p>Enjoy new music every Monday with your
own personal playlist. Or sit back and enjoy Radio.</p>
</div>
</div>
<div class="whitelogo">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/spotify-icon-white.png?raw=true" alt="Logo">
</div>
<div class="seccion-derecha">
<img src="https://github.com/ironhack-labs/lab-css-spotify-clone-es/blob/master/images/spotify-app.jpg?raw=true" alt="iPhone">
</div>
</div>

</body>
</html>
167 changes: 167 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
}
8 changes: 0 additions & 8 deletions styles/style.css

This file was deleted.