Last active
October 15, 2015 22:13
-
-
Save davidhemphill/a56ed5f793e62e7f1dcc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
<link rel="stylesheet" href="http://buildwithbeard.com/css/app.css"></link> | |
<a href="#" class="bg1:2 tc1:2 ft4 pv2 ph3 dib">Click Me</a> |
This file contains hidden or 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) | |
// ---- | |
$bg1: #222; | |
$bg2: #FF0000; | |
$tc1: #CCC; | |
$tc2: #FFF; | |
.bg1\:2 { | |
background-color: $bg1; | |
&:hover { | |
background-color: $bg2; | |
} | |
} | |
.tc1\:2 { | |
color: $tc1; | |
&:hover { | |
color: $tc2; | |
} | |
} |
This file contains hidden or 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
.bg1\:2 { | |
background-color: #222; | |
} | |
.bg1\:2:hover { | |
background-color: #FF0000; | |
} | |
.tc1\:2 { | |
color: #CCC; | |
} | |
.tc1\:2:hover { | |
color: #FFF; | |
} |
This file contains hidden or 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
<link rel="stylesheet" href="http://buildwithbeard.com/css/app.css"></link> | |
<a href="#" class="bg1:2 tc1:2 ft4 pv2 ph3 dib">Click Me</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment