Round social icons
by kshep92
HTML
<input type=submit value="check it out"/> <a href=#>f</a>
CSS
a {
display: inline-block;
border: 1px solid skyBlue;
width: 20px;
height: 20px;
text-align: center;
border-radius: 20px;
padding: 4px;
font-size: 18px;
font-family: Verdana, Arial, sans-serif;
font-weight: bold;
position: relative;
top: 2px;
text-decoration: none;
color: skyBlue;
}
a:hover {
color: #fff;
background: skyBlue;
}
input { padding: 5px; }