2014-04-12 01:35:42 +00:00
|
|
|
/*
|
|
|
|
Main Containers
|
|
|
|
*/
|
|
|
|
|
|
|
|
html,
|
2014-04-06 14:14:03 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-04-12 01:35:42 +00:00
|
|
|
width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2014-04-09 23:43:20 +00:00
|
|
|
background: $dark-blue;
|
|
|
|
@include background-image(linear-gradient($dark-blue, $medium-gray));
|
2014-04-06 14:14:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:35:42 +00:00
|
|
|
#container {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
%container-padded {
|
|
|
|
padding: 0 em(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
@include outer-container;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
@extend %container-padded;
|
|
|
|
}
|
|
|
|
|
2014-04-12 01:35:42 +00:00
|
|
|
#content {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include span-columns(12);
|
2014-04-09 20:44:04 +00:00
|
|
|
background: $light-blue;
|
2014-04-06 14:14:03 +00:00
|
|
|
padding-top: em(20);
|
|
|
|
}
|
|
|
|
|
2014-04-12 01:35:42 +00:00
|
|
|
#forums {
|
|
|
|
@include span-columns(12);
|
|
|
|
}
|
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
#main {
|
|
|
|
@include span-columns(9);
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
@include span-columns(3);
|
|
|
|
@include omega();
|
|
|
|
}
|