2013-09-16 13:46:04 -04:00
|
|
|
.main-content {
|
|
|
|
@include clearfix();
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column {
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
2013-10-27 06:32:12 -04:00
|
|
|
|
|
|
|
@include respond-to(mobile) {
|
2014-05-21 07:01:41 -04:00
|
|
|
display: none;
|
|
|
|
width: 100%;
|
2013-10-27 06:32:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-left {
|
|
|
|
float: left;
|
|
|
|
|
2014-05-21 07:01:41 -04:00
|
|
|
@include respond-to(mobile) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-10-27 06:32:12 -04:00
|
|
|
@include respond-to(desktop) {
|
|
|
|
width: $content-nav-width;
|
|
|
|
border-right: 1px solid $color-grey-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.shift-right {
|
|
|
|
@include respond-to(mobile) {
|
2014-05-21 07:01:41 -04:00
|
|
|
.column {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.column-left {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-27 06:32:12 -04:00
|
|
|
}
|
2013-09-16 13:46:04 -04:00
|
|
|
}
|