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
59 changes: 59 additions & 0 deletions css/stayl.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
body{
font-family: Arial;
margin: 0;
}


.container{
display: flex;
-webkit-box-shadow: 0px 3px 2px 1px rgba(0,0,0,0.07);
-moz-box-shadow: 0px 3px 2px 1px rgba(0,0,0,0.07);
box-shadow: 0px 3px 2px 1px rgba(0,0,0,0.07);

}

.image{
margin: 0;
display: flex;
}

.text{
font-size: 20px;
align-self: center;
margin-left: 50px;
color: #aaa;

}

.stars{
font-size: 20px;
display: flex;
justify-content: flex-end;
margin-right: 30px;

}

h5{
color: #aaa;
margin: 30px 0 0 30px;
font-size: 25px;

}

.stars a {
font-size: 50px;
margin-right: 10px;
text-decoration: none;
display: inline-block;
font-size: 32px;
font-size: 2rem;
color: #888;
}

.stars:hover a {
color: #EDEA15;
}

.stars > a:hover ~ a {
color: #888;
}
Binary file added image/calavera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/stayl.css">
<title>reto-05</title>
</head>
<body>
<main class="container">
<figure class="image">
<img src="image/calavera.png" alt="" height="90%" width="35%">
<div class="text">
<h2>Rozes</h2>
<p>Under the grave <br> (2016) </p>
</div>
</figure>
</main>
<h5>Rate this album</h5>
<div class="stars">
<a href="#" data-value="1" title="Votar con 1 estrellas">&#9733;</a>
<a href="#" data-value="2" title="Votar con 2 estrellas">&#9733;</a>
<a href="#" data-value="3" title="Votar con 3 estrellas">&#9733;</a>
<a href="#" data-value="4" title="Votar con 4 estrellas">&#9733;</a>
<a href="#" data-value="5" title="Votar con 5 estrellas">&#9733;</a>
</div>

</body>
</html>