Created
May 19, 2013 16:22
-
-
Save nc/5608144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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