Skip to content

Instantly share code, notes, and snippets.

@nschonni
Created August 14, 2014 04:16
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 nschonni/366d46064bfae8353588 to your computer and use it in GitHub Desktop.
Save nschonni/366d46064bfae8353588 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<!doctype html>
<head>
<title>Intro to Sass</title>
</head>
<body>
<h1 class="awesome">Look Ma</h1>
</body>
// ----
// libsass (v2.0.0)
// ----
$dont-even: blink;
.awesome {
text-decoration: $dont-even;
$me-pink: #d69;
color: $me-pink;
}
.sass {
.is {
.so {
@extend .awesome;
}
}
}
.awesome, .sass .is .so {
text-decoration: blink;
color: #d69; }
<!doctype html>
<head>
<title>Intro to Sass</title>
</head>
<body>
<h1 class="awesome">Look Ma</h1>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment