Skip to content

Instantly share code, notes, and snippets.

@taea
Created December 19, 2012 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taea/4338704 to your computer and use it in GitHub Desktop.
Save taea/4338704 to your computer and use it in GitHub Desktop.
sample.scss
@mixin line-bottom($op1: .2, $op2: .3){
border-bottom: 1px solid rgba(0, 0, 0, $op1);
@include box-shadow(rgba(255, 255, 255, $op2)0 1px 0);
}
#main {
color: #666;
font-size: 0.3em;
@include line-bottom(.3, .1);
a {
font: {
weight: bold;
family: serif;
color: #F00
}
&:hover {
background-color: #FF0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment