Skip to content

Instantly share code, notes, and snippets.

@tflori
Created July 14, 2015 12:41
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 tflori/c5a731dc689ec8ca902e to your computer and use it in GitHub Desktop.
Save tflori/c5a731dc689ec8ca902e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<input id="example" type=text value="Example" />
// ----
// libsass (v3.2.5)
// ----
$CIPrimary: #FFAF8F;
/** RULES **/
$Primary: if(saturation($CIPrimary), #F06522, $CIPrimary);
body:before {
content: #{saturation($CIPrimary)};
}
/** USAGE **/
input#example {
border: none;
color: #fff;
background: $Primary;
padding: 10px;
font-family: "Open Sans";
font-weight: 400;
font-size: 10px;
}
/** RULES **/
body:before {
content: 100%;
}
/** USAGE **/
input#example {
border: none;
color: #fff;
background: #F06522;
padding: 10px;
font-family: "Open Sans";
font-weight: 400;
font-size: 10px;
}
<input id="example" type=text value="Example" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment