This might help: http://stackoverflow.com/a/18423852/1972101
What you have presently is just applying the class, group-list-item, to which you have no styles.. if you just want it to be styled, configure styles for that class, something like this:
.group-list-item {
height: 50px;
margin: 2px 0;
padding: 18px;
background: #fe3;
border: 1px solid #cd6;
opacity: .6;
}
See: https://jsfiddle.net/x38Lzf90/2/
Combining both styles and custom content: https://jsfiddle.net/x38Lzf90/3/