Skip to content

Instantly share code, notes, and snippets.

@kpennell
Last active December 4, 2015 17:07
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 kpennell/33379fbb6ed8f8e59556 to your computer and use it in GitHub Desktop.
Save kpennell/33379fbb6ed8f8e59556 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>nested</title>
</head>
<body>
<header>
<h1>Welcome <span>to our world</span></h1>
</header>
</body>
</html>
// ----
// libsass (v3.2.5)
// ----
$primary-color: #294e7c;
header {
background-color: $primary-color;
color: #eee;
margin: 0;
padding: 1em;
span {
color: #ccc;
font-size: 0.5em;
}
}
header {
background-color: #294e7c;
color: #eee;
margin: 0;
padding: 1em;
}
header span {
color: #ccc;
font-size: 0.5em;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>nested</title>
</head>
<body>
<header>
<h1>Welcome <span>to our world</span></h1>
</header>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment