Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created November 29, 2013 23:51
Show Gist options
  • Select an option

  • Save hsquareweb/7713518 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/7713518 to your computer and use it in GitHub Desktop.
Dynamic List Styles
%list-reset {
padding: 0;
margin: 0;
list-style: none;
}
%list-across {
@extend .clearfix;
> li {
float: left;
}
a {
display: block;
padding: 0 1em;
}
}
%list-dividers {
> li {
&:nth-child(1) a {
border: none;
}
> a {
border-left: 1px solid #EEE;
line-height: 1em;
}
}
}
ul.footer_nav
@extend %list-reset
@extend %list-across
@extend %list-dividers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment