mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-01 07:11:41 +00:00
775f5682a4
Improved articles styling Improved bbcode to html formatting HTML and CSS refactorings Moved Extra into concerns Changed repo URL to read-only for deploys Fixes quotes in comments
51 lines
611 B
SCSS
51 lines
611 B
SCSS
/*
|
|
Main Containers
|
|
*/
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: $dark-blue;
|
|
@include background-image(linear-gradient($dark-blue, $medium-gray));
|
|
}
|
|
|
|
#container {
|
|
min-height: 100%;
|
|
}
|
|
|
|
%container-padded {
|
|
padding: 0 em(20);
|
|
}
|
|
|
|
.wrapper {
|
|
@include outer-container;
|
|
}
|
|
|
|
#content {
|
|
@extend %container-padded;
|
|
}
|
|
|
|
#content {
|
|
@include span-columns(12);
|
|
background: $light-blue;
|
|
padding-top: em(20);
|
|
}
|
|
|
|
#forums {
|
|
@include span-columns(12);
|
|
}
|
|
|
|
#main {
|
|
@include span-columns(9);
|
|
}
|
|
|
|
#sidebar {
|
|
@include span-columns(3);
|
|
@include omega();
|
|
}
|