Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Created April 29, 2015 10:08
Show Gist options
  • Save aviogreen/93dff9b5bfdfd4ad5ec0 to your computer and use it in GitHub Desktop.
Save aviogreen/93dff9b5bfdfd4ad5ec0 to your computer and use it in GitHub Desktop.
simple list icon using <ul>
ul.social {
list-style: none;
margin: 0;
padding: 0;
li{
float: left;
margin: 5px;
a {
display: block;
border: 3px solid #aaa;
color: #aaa;
height: 40px;
width: 40px;
font-size: 20px;
text-align: center;
padding-top: 3px;
.border-radius(50%);
&:hover, &:focus {
background: @brand-primary;
border-color: @brand-primary;
color: white;
text-decoration: none;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment