Very useful thank you Julian! I also found some code to give list views a rounded corner border, drop shadow and hover effect. I thought I would share for those interested.
.kn-list-item-container:hover {
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.kn-list-item-container {
border: solid 0.4px grey;
-webkit-box-shadow: -1px 2px 5px 7px rgba(163,163,163,0.33);
-moz-box-shadow: -1px 2px 5px 7px rgba(163,163,163,0.33);
box-shadow: -1px 2px 5px 7px rgba(163,163,163,0.33);
margin-top:20px;
padding-bottom:30px;
border-radius:1em;
color:grey;
width:75%;
margin:10px auto;
background:white;
transition: all 0.4s;
}