Skip to content

Instantly share code, notes, and snippets.

@sadaco
Created May 31, 2012 09:17
Show Gist options
  • Select an option

  • Save sadaco/2842187 to your computer and use it in GitHub Desktop.

Select an option

Save sadaco/2842187 to your computer and use it in GitHub Desktop.
Mixins
.rounded{
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#main {
width: 200px;
height: 200px;
background: @lightgray;
.rounded;
}
.textarea{
background: @globalblue;
width:150px;
height:80px;
margin:0px auto;
.rounded;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment