Created
August 23, 2016 21:54
-
-
Save verekia/2342601656263a657e07eca1c7aba6ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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