Skip to content

Commit

Permalink
Reproduccion
Browse files Browse the repository at this point in the history
se agrego pagina de reproduccion
  • Loading branch information
andjrua committed Mar 21, 2018
1 parent 614d582 commit 5ed8c00
Show file tree
Hide file tree
Showing 8 changed files with 4,072 additions and 2 deletions.
2 changes: 1 addition & 1 deletion css/estilos.css

Large diffs are not rendered by default.

Binary file added fonts/icomoon.eot
Binary file not shown.
902 changes: 902 additions & 0 deletions fonts/icomoon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fonts/icomoon.ttf
Binary file not shown.
Binary file added fonts/icomoon.woff
Binary file not shown.
40 changes: 39 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</head>
<body>
<header class="header relative border-bottom">
<a href="" class="button-menu">*</a>
<a href="" class="button-menu icon-menu"></a>
<nav class="menu">
<ul class="list">
<li class="ite">
Expand All @@ -38,6 +38,44 @@
</span>
</div>
</header>
<section class="playing small center-block">
<figure class="image relative">
<img src="img/songs/equis.jpg" width="320" height="320" alt="X(Equis) Nicki Jam ft J. Balvin">
<div class="actions padding right-text">
<a href="" class="action icon-plus"></a>
<a href="" class="action icon-heart"></a>
<a href="" class="action icon-share"></a>
</div>
</figure>
<div class="padding">
<div class="progress">
<span class="min">1:12</span>
<div class="total">
<div class="state">
<div class="circle">

</div>
</div>
</div>
<span class="max">4:05</span>
</div>
<div class="description center-text border-bottom">
<p class="name">
X (Equis)
</p>
<p class="author">
Nicki Jam ft J. Balvin
</p>
</div>
<div class="play center-text padding-tb">
<a href="" class="action gray icon-backward"></a>
<a href="" class="action gray icon-play2"></a>
<a href="" class="action gray icon-forward2"></a>
<a href="" class="action gray icon-shuffle"></a>
<a href="" class="action gray icon-volume-low"></a>
</div>
</div>
</section>
<section class="container">
<article class="song">
<figure class="image">
Expand Down
72 changes: 72 additions & 0 deletions stylus/estilos.styl
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@import "normalize.styl"
@import "fonts.styl"
gris_oscuro = #333333
gris_claro = #818181
rojo = red

a
text-decoration none
Expand All @@ -14,6 +16,11 @@ figure
top 50%
margin-top -10px
left 0.5rem
color gris_oscuro
.center-block
margin 0 auto
.center-text
text-align center
.container
padding 1.4rem
font-size 0
Expand Down Expand Up @@ -47,3 +54,68 @@ figure
margin-right 0
p
margin 0.5rem 0
.playing
&.small
width 20rem
.padding-tb
padding 1rem 0
.action
color white
margin-right .5rem
font-size 1.2rem
&:last-child
margin-right 0
&.gray
color gris_oscuro
.actions
position absolute
background rgba(white,.3)
bottom 0
left 0
right 0
.relative
position relative
.padding
padding 1rem
.right-text
text-align right
img
vertical-align top
.progress
margin 1rem 0
position relative
.min
.max
font .8rem
top -5px
position absolute
.min
left 0
.max
right 0
.total
margin 0 auto
height 5px
background gris_claro
border-radius 5px
width 75%
.state
position relative
height 5px
background rojo
border-radius 5px
width 30%
.circle
position absolute
right 0
top -2px
width 10px
height 10px
border-radius 50%
background gris_oscuro
.play
.action
font-size 1.7rem



Loading

0 comments on commit 5ed8c00

Please sign in to comment.