git.fiddlerwoaroof.com
js/twigkit-semantic.gs-22e0e79/examples/nested/nested.scss
be9b2e82
 @import '../../stylesheets/reset.css';
 @import '../../stylesheets/demo.css';
 @import '../../stylesheets/scss/grid.scss';
 
 
 //////////
 // GRID //
 //////////
 
 // Specify the number of columns and set column and gutter widths
 $columns: 12;
 $column-width: 60;
 $gutter-width: 20;
 
 // Remove the definition below for a pixel-based layout
 $total-width: 100%;
 
 
 ////////////
 // LAYOUT //
 ////////////
 
 // center the contents
 div.center {
 	margin: 0 auto;
 	overflow: hidden;
 }
 
 // header
 header#top {
 	margin-bottom: 1em;
 }
 
 // main column
 #maincolumn {
 	@include column(9);
 
 	ul#boxes {
 		@include row(9);
 
 		li {
 			@include column(3,9);
 			margin-bottom: 1em;
 		}
 	}
 }
 
 // sidebar
 #sidebar {
 	@include column(3);
 }