_list.css
419 Bytes
.list {
list-style: none;
margin: 0;
padding: 0;
background-color: #fff;
}
.list-item {
position: relative;
padding: 30px;
&:after {
content: "";
position: absolute;
left: 30px;
bottom: -1px;
width: 690px;
height: 0;
border-bottom: 1px solid #eee;
z-index: 1;
}
&:last-of-type:after {
display: none;
}
}