Skip to content

Instantly share code, notes, and snippets.

@officiallyandy
Created January 7, 2014 17:56
Show Gist options
  • Save officiallyandy/8303558 to your computer and use it in GitHub Desktop.
Save officiallyandy/8303558 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$color : red;
$secondaryColor: blue;
$tileWidth : 50px;
$tileHeight : 50px;
@mixin tile($height, $width) {
background : $color;
border-style:solid;
border-color:blue;
height: $height;
width: $width;
}
div { @include tile($tileHeight, $tileWidth)}
div {
background: red;
border-style: solid;
border-color: blue;
height: 50px;
width: 50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment