Skip to content

Instantly share code, notes, and snippets.

@j-cam
Last active August 29, 2015 14:23
Show Gist options
  • Save j-cam/db951e2f439063c7bd2c to your computer and use it in GitHub Desktop.
Save j-cam/db951e2f439063c7bd2c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<header>Header</header>
<nav>Nav</nav>
<article>Article</article>
<footer>Footer</footer>
// ----
// libsass (v3.2.5)
// ----
@import "susy";
$susy: (
debug: (
image: show,
color: blue,
output: overlay,
toggle: top right,
),
);
header{
}
nav {
}
article {
}
footer {
}
//visuals
$debug-bg: rgb(255, 0, 128);
html {background: #fff;}
header,nav,article,footer {
padding-top: 1em;
padding-bottom: 1em;
background:linear-gradient(
rgba($debug-bg,.125),
rgba($debug-bg,.125)
), rgba($debug-bg,.25);
background-clip: content-box, border-box;
box-shadow: 0 0 0 1px rgba($debug-bg, .25) inset;
}
html {
background: #fff;
}
header, nav, article, footer {
padding-top: 1em;
padding-bottom: 1em;
background: linear-gradient(rgba(255, 0, 128, 0.125), rgba(255, 0, 128, 0.125)), rgba(255, 0, 128, 0.25);
background-clip: content-box, border-box;
box-shadow: 0 0 0 1px rgba(255, 0, 128, 0.25) inset;
}
<header>Header</header>
<nav>Nav</nav>
<article>Article</article>
<footer>Footer</footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment