Skip to content

Instantly share code, notes, and snippets.

@picandocodigo
Created February 9, 2012 00:20
Show Gist options
  • Save picandocodigo/1775773 to your computer and use it in GitHub Desktop.
Save picandocodigo/1775773 to your computer and use it in GitHub Desktop.
SCSS snippets
@mixin menu_list{
ul { list-style-type: none; }
li { float: left; }
}
@mixin border_top($radius){
border-top-left-radius: $radius;
border-top-right-radius: $radius;
}
@mixin border_bottom($radius){
border-bottom-left-radius: $radius;
border-bottom-right-radius: $radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment