#main {
background: Grey;
box-sizing: border-box;
padding: 30px;
}
/* Not needed! Here to illustrate that items stay within the confines of the alloted space, as defined by #main with padding */
#confines {
background: white;
}
/* The next three enties are the important part */
#container {
margin: -5px;
}
.item {
box-sizing: border-box;
padding: 5px;
/* sloppyMasonry.js */
width: 20%;
}
.item-inner {
background: DarkGrey;
}