Last active
December 18, 2015 08:48
-
-
Save josephj/5756485 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
/* | |
* Layout system. | |
* | |
* .grid-full - 1 column | |
* .grid-nav - 2 columns | |
* .grid-compact - 3 columns | |
*/ | |
$width : 65% | |
$min-width : 980px | |
$aside-width : 220px | |
$nav-width : 160px | |
.grid, .grid-full | |
width: $width | |
min-width: $min-width | |
margin: 0 auto | |
.grid-nav | |
@extend .grid-full | |
#bd | |
.grid-b | |
float: left | |
width: $nav-width | |
.grid-main | |
background: #dde4ee | |
float: right | |
margin-left: -($nav-width) | |
width: 100% | |
.grid-b | |
margin-left: $nav-width | |
float: none | |
width: auto | |
.grid-compact | |
@extend .grid-nav | |
#bd | |
.grid-u | |
float: right | |
width: $aside-width | |
.grid-primary | |
background: #eaeef4 | |
float: left | |
margin-right: -($aside-width) | |
width: 100% | |
.grid-u | |
margin-right: $aside-width | |
float: none | |
width: auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment