Skip to content

Instantly share code, notes, and snippets.

@verekia
Created August 23, 2016 21:54
Show Gist options
  • Save verekia/2342601656263a657e07eca1c7aba6ab to your computer and use it in GitHub Desktop.
Save verekia/2342601656263a657e07eca1c7aba6ab to your computer and use it in GitHub Desktop.
/* Taille des coins */
.comment .top-left,
.comment .top-right,
.comment .bottom-left,
.comment .bottom-right{
width:50px;
height:50px;
}
/* Taille des bords gauche et droit */
.comment .left, .comment .right{
width:50px;
}
/* Taille des bords bas et haut */
.comment .top, .comment .bottom{
height:50px;
}
/* Cellules du haut */
.comment .top-left{
background:url("top-left.png");
}
.comment .top{
background:url("top.png");
}
.comment .top-right{
background:url("top-right.png");
}
/* Cellules du milieu */
.comment .left{
background:url("left.png");
}
.comment .content{
background:url("content.png");
}
.comment .right{
background:url("right.png");
}
/* Cellules du bas */
.comment .bottom-left{
background:url("bottom-left.png");
}
.comment .bottom{
background:url("bottom.png");
}
.comment .bottom-right{
background:url("bottom-right.png");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment