Skip to content

Instantly share code, notes, and snippets.

@nc
Created May 19, 2013 16:22
Show Gist options
  • Save nc/5608144 to your computer and use it in GitHub Desktop.
Save nc/5608144 to your computer and use it in GitHub Desktop.
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="page.css">
</head>
<body>
<article>
<header>
header
</header>
<section class="hero">
hero
</section>
<ol>
<li>a</li>
<li>b</li>
<li>c</li>
</ol>
<footer>
footer
</footer>
</article>
<script type="text/javascript" data-project="bourbon-neat-example" src="http://localhost:48626/javascripts/edge.js"></script>
</body>
</html>
@import "bourbon/bourbon";
$max-width: 960px;
@import "neat/neat";
// grid
article {
@include outer-container;
}
header, footer, section, ol {
@include span-columns(12);
@include pad;
}
ol li {
@include span-columns(4);
@include pad;
}
// styles
html {
font-family: "Monaco";
}
header {
margin-bottom: 15px;
}
header, footer, section, ol, li {
min-height: 50px;
background: rgba(0,0,0,0.1);
}
ol li {
min-height: 200px;
}
section.hero {
min-height: 400px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment