Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Created March 20, 2014 21:51
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 KatieK2/9674689 to your computer and use it in GitHub Desktop.
Save KatieK2/9674689 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.3)
// Compass (v1.0.0.alpha.18)
// ----
@function genRandom($int) {
$random: random(210);
$random2: ($int * $random);
@return $random2;
@debug $random2;
}
$eight: 8;
.classthing {
height: genRandom($eight);
}
.classthing {
height: 576;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment