Skip to content

Instantly share code, notes, and snippets.

@peterpme
Created February 6, 2014 23:46
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 peterpme/8854870 to your computer and use it in GitHub Desktop.
Save peterpme/8854870 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<h1>Styling Links</h1>
<a href="#" class="box">Google.com</a><br/>
// ----
// 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;
}
.box {
display: block;
background: #cccccc;
text-decoration: underline;
}
.circle {
background: #cccccc;
}
.square {
background: #cccccc;
}
<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