Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Created December 11, 2013 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save blackfalcon/7905297 to your computer and use it in GitHub Desktop.
Save blackfalcon/7905297 to your computer and use it in GitHub Desktop.
Random color feature - not working
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$red: rgb(random(255), random(255), random(255));
.col {
background-color: $red;
width: 100px;
height: 100px;
position: absolute;
left: calc(50% - 100px);
right: calc(50% - 100px);
}
.col {
background-color: #72d646;
width: 100px;
height: 100px;
position: absolute;
left: calc(50% - 100px);
right: calc(50% - 100px);
}
<div class='col'></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment