Created
February 6, 2014 23:46
-
-
Save peterpme/8854870 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
<h1>Styling Links</h1> | |
<a href="#" class="box">Google.com</a><br/> |
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
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
$red: #cccccc; | |
.box { | |
display: block; | |
background: $red; | |
text-decoration: underline; | |
} | |
.circle { | |
background: $red; | |
} | |
.square { | |
background: $red; | |
} |
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
.box { | |
display: block; | |
background: #cccccc; | |
text-decoration: underline; | |
} | |
.circle { | |
background: #cccccc; | |
} | |
.square { | |
background: #cccccc; | |
} |
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
<h1>Styling Links</h1> | |
<a href="#" class="box">Google.com</a><br/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment