Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tarea #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion css/puls4.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ nav .menu li a:hover{background:rgba(0,0,0,0.1)}
.posts .post{background:#fff;border-radius:0 0 .5em .5em;box-shadow:2px 2px 10px rgba(0,0,0,0.5);color:#7a7a7a;margin-bottom:.5em;}
.posts .post .acciones{border-top:3px solid #22bce0;padding:.5em;overflow:hidden;}
.posts .post .acciones .datos{float:right;}
.posts .post .acciones .datos .comentarios{background:#444;border-radius:3px;color:#fff;margin:0 1em 0 0;padding:2px 5px;text-decoration:none}
.posts .post .acciones .datos .comentarios{background:#797979;border-radius:3px;color:#fff;margin:0 1em 0 0;padding:2px 5px;position:relative;text-decoration:none;}
.posts .post .acciones .datos .comentarios:after{border-left:6px solid transparent;border-right:2px solid transparent;border-top:5px solid #797979;bottom:-5px;content:" ";height:0;left:17px;position:absolute;width:0}
.posts .post .acciones .datos .estrellita{text-decoration:none;}
.posts .post .acciones .datos .estrellita:after{color:#fcb92d;content:"\e601";font-family:"iconitos";font-size:1.1em}
.posts .post .acciones .votos{float:left;}
Expand Down
19 changes: 16 additions & 3 deletions css/puls4.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
azul = #22BCE0
naranja = #DD4F24
gris_texto = #7A7A7A
gris_claro = #797979
gris_oscuro = #444
gris_texto = #7A7A7A
naranja = #DD4F24

@font-face {
font-family: 'iconitos';
Expand Down Expand Up @@ -181,13 +182,25 @@ nav
float right

.comentarios
background gris_oscuro
background gris_claro
border-radius 3px
color white
margin 0 1em 0 0
padding 2px 5px
position relative
text-decoration none

&:after
border-left 6px solid transparent
border-right 2px solid transparent
border-top 5px solid gris_claro
bottom -5px
content " "
height 0
left 17px
position absolute
width 0

.estrellita
text-decoration none

Expand Down