MirHamid
Regarding the badges, in fact both variants are doable with pure CSS:
Badges on the right side of the username:
.PostUser-badges {
float: none;
margin-left: 0;
width: auto;
}
.PostUser-badges .Badge {
margin-left: 10px;
}
Badges on the left side of the username:
.PostUser {
float: left;
}
.PostUser h3 {
float: right;
margin: 0;
}
.PostUser-badges {
margin-left: 10px;
width: auto;
}
.PostUser-badges .Badge {
margin: 0 5px 0 0;
}
The preview of the composer needs a little more work, but that should be easy.
MirHamid you can not create this just with css
You can do that, that's the second of my two versions.