I have this style that I got from the page
.circulo {
width: 100px;
height: 100px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background: #5cb85c;
}
without it ceasing to be a circle, I want to give it a border when I click it and when it is hover it enlarges a bit
and with this I increase it in the hover
.circle ul li a:hover {
background-color: transparent;
-webkit-transform:scale(1.3);transform:scale(1.3);
cursor:pointer;
cursor: hand;
}
As you can see in the center at the bottom is the "circle" and has white center and pink border.