You have to "inspect element" those links with your right click. Then you will know the CSS properties of those tags.
Heres's what in my CSS, you may pay attention to the border-radius:
.qa-tag-link {
display: inline-block;
background-color: #eee;
color: #424242!important;
font-size: 16px;
padding: 2px 12px;
margin-right: 6px;
margin-bottom: 6px;
border-radius: 3px;
transition: box-shadow .2s ease-in-out;
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .302), 0 1px 3px 1px rgba(60, 64, 67, .149)
}