Created
July 14, 2015 12:41
-
-
Save tflori/c5a731dc689ec8ca902e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input id="example" type=text value="Example" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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