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
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
81 changes: 74 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,81 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Spotify Clone</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@500&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@500&family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css"/>
<!-- don't forget to link your styles -->
</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.
<body style="margin-top: 0px;margin-left: 0px;">

<section id="aboutMe" style="position: fixed;">
<div class="barrafija primero">
<img src="./images/spotify-logo.png" class="imagenspot" />
</div>
<div class="segundo">
<ul >
<li class="horizontal">Premium</li>
<li class="horizontal">Discover</li>
<li class="horizontal">Help</li>
<li class="horizontal">Download</li>

</ul>
</div>
</section>
<section class="tamanosection">
<div class="fondoetiqueta">
<h1 class="texto">Music for everyone.</h1>
<p class="textopequeno">Spotify is now free on mobile, tablet and computer.<br/> Listen to the
right music, wherever you are.</p>
</div>

</section>
<section class="margen">
<h1 class="texto_sub" style="color: #1A1A1A;"> What’s on Spotify?</h1>
</section>
<section id="iconos" >
<div class="texto_imagen">
<img src="./images/music-icon.png" class="redimensionar_Icon">
<h2 class="verde"> Millions of Songs</h2>
<h3 class="fuente_icono">There are millions of songs on Spotify</h4>
</div>
<div class="texto_imagen">
<img src="./images/high-quality-icon.png" class="redimensionar_Icon">
<h2 class="verde"> HD Music</h2>
<h3 class="fuente_icono">Listen to music as if you were listening live</h4>
</div>
<div class="texto_imagen">
<img src="./images/devices-icon.png" class="redimensionar_Icon">
<h2 class="verde"> Stream Everywhere</h2>
<h3 class="fuente_icono">Stream music on your smartphone, tablet or computer</h4>
</div>
</section>
<section id="especificaciones">
<div class="informacion">
<h1 class="texto_grande">It’s as yeezy as Kanye West.</h1>
<h3 class="texto_informacion">
Search
</h3>
<p class="texto_informacion_pequeno">Know what you want to listen to?<br>Just search and hit play.</p>
<h3 class="texto_informacion">
Browse
</h3>
<p class="texto_informacion_pequeno">Check out the
latest charts,<br> brand new releases and great<br> playlists for right now.</p>
<h3 class="texto_informacion">Discover</h3>
<p class="texto_informacion_pequeno">Enjoy new music every Monday<br> with your
own personal playlist.<br> Or sit back and enjoy Radio.</p>
</div>
<div class="informacion--imagen">
<img src="./images/spotify-icon-white.png" alt="Icono Spotify blanco" class="reducir_imagen">
</div >
<div class="informacion--album">
<img class="informacion--album--imagen" src="./images/spotify-app.jpg" alt="Imagen de la aplicación Spotify">
</div>
</section>
</body>
</html>
160 changes: 159 additions & 1 deletion styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,162 @@ Colors:
Text: 1A1A1A
Green: #00B172
White: #FFF
*/
*/
.margen{
margin-top: 10vh;
}
body{
margin-bottom: 0%;
}
.barrafija{

width: 60vw;
height: 10vh;
background-color: white;

order: 1;
}
.informacion{
width: 40vw;
height: 93vh;
margin-top: 7vh;
margin-left: 5vw;

}
#especificaciones{
display: flex;
flex-direction: row;

margin-left: 2.5vw;
margin-right: 2.5vw;
background-color: #00B172;
width: 95vw;
height: 100vh;
}

#iconos{
display: flex;
margin-top: 10vh;
flex-direction: row;
justify-content: center;
}
#aboutMe{
display: flex;

flex-direction: row;
justify-content: flex-start;

}
.imagenspot{
width: 15vw;
height: 8vh;
padding-top: 1vh;
padding-left: 15px;

}
.horizontal{
display: inline;
font-family: 'Encode Sans SC', sans-serif;
font-size:medium;
margin-left: 20px;

}
.segundo{
order: 2;
padding-left: 15vh;

height: 10vh;
width: 40vw;
background-color:#FFF;
}
.fondoetiqueta{
background-image: url("../images/landing.jpg");
margin-top: 0%;
background-size:100vw 90vh;
width: 100vw;
height:90vh;
}
.texto{

margin-top: 0%;
padding-top: 25vh;
color: white;
font-family: 'Encode Sans SC', sans-serif;
font-family: 'Open Sans', sans-serif;
text-align: center;
font-size: 70px;
}
.textopequeno{

color: white;
text-align: center;
font-size: 25px;
}
.tamanosection{
padding-top: 10vh;
}
.texto_sub{
text-align: center;
text-decoration: underline #00B172;

}
.texto_imagen{
width: 20vw;
height: 50vh;
text-align: center;
margin-right: 15vh;
margin-left: 15vh;
}
.redimensionar_Icon{
width: 20vw;
height: 20vh;
}
.verde{
color: #00B172;
}
.fuente_icono{
font-family: 'Encode Sans SC', sans-serif;
font-family: 'Open Sans', sans-serif;
color:grey;
}
.texto_grande{
color: #FFF;
font-family: 'Encode Sans SC', sans-serif;
font-family: 'Open Sans', sans-serif;
font-size: 35px;
text-decoration: underline;
}
.texto_informacion{
color: #FFF;
font-family: 'Encode Sans SC', sans-serif;
font-family: 'Open Sans', sans-serif;
font-size: 22px;
}
.texto_informacion_pequeno{
color: #FFF;
font-family: 'Encode Sans SC', sans-serif;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}
.reducir_imagen{
width: 20vh;
height: 20vh;
}
.informacion--imagen{
width: 10vw;
height: 50vh;
padding-top: 40vh;

}
.informacion--album{
width: 40 vw;
height: 80vh;
margin-top: 10vh;
margin-bottom: 10vh;
margin-left: 10vw;
margin-right: 5vw;
}
.informacion--album--imagen{
width: 30vw;
height: 80vh;
}