HTML:
<ul class="list_header">
<li><a href="#">06 december 2013</a></li>
<li><a href="#">item2</a></li>
<li><a href="#">item3</a></li>
<li><a href="#">item4</a></li>
<li><a href="#">item5</a></li>
<li><a href="#">item6</a></li>
</ul>
CSS:
.list_header{
font: italic 70% Georgia;
margin: 15px 0 0 15px;
}
.list_header li{
display: inline-block;
}
.list_header a{
color: #bbb;
text-decoration: none;
}
.list_header li:first-child :after{
content: '/t';
height: 3px;
border-radius: 50%;
background: #bbb;
padding: 0px 0px 0px 5px;
margin: 0px 0px 0px 5px;
}
http://codepen.io/hristofor/pen/aILlC
What is the best way to decrease the size of the circle in the CSS code above? I attempted to adjust the width and height parameters, but it did not have the desired effect. Any suggestions on how to make the circle smaller?