Layout des Seitenkopfes sauber von der Seitenaufteilung getrennt
[website] / src / main / webapp / less / screen / layout.less
index b5cc0f1..16dcfb2 100644 (file)
@@ -1,24 +1,37 @@
-@import '../variables.less';
+body
+{
+  padding: 0 3em 0 5em;
+}
+
+#header
+{
+  margin-left: -2.125em;
+}
 
 .content
 {
   position: relative;
+  height: 100%;
+  padding-bottom: 7.1875em; /** 115px (gemessene Gesamthöhe des Footers - mit Abstand und Margin) */
 }
-.content.cols_2
+.cols_2 > .content
 {
-  padding: 0 27em 0 0;
-  background-image: url('../../img/bg.gif');
-  background-repeat: repeat-y;
-  background-position: right top;
+  padding-right: 27em;
+  margin-right: -24.375em;
 }
-.content.cols_2 > .main
+.cols_2 > .content > .main
 {
   float: left;
   min-height: 1em;
   position: relative;
   width: 100%;
 }
-.content.cols_2 > .marginal
+.cols_1 > .content > .marginal
+{
+  margin-top: 3em;
+  background-color: @heller;
+}
+.cols_2 > .content > .marginal
 {
   float: left;
   margin: 0 -27em 0 2.625em;
   width: 20.375em;
   background-color: @heller;
 }
-.cols_2 > .content > .marginal h1,
-.cols_2 > .content > .marginal h2,
-.cols_2 > .content > .marginal h3,
-.cols_2 > .content > .marginal h4
+.content > .marginal h1,
+.content > .marginal h2,
+.content > .marginal h3,
+.content > .marginal h4
 {
   color: @hintergrund;
 }
+.content > .marginal h1:first-child,
+.content > .marginal h2:first-child,
+.content > .marginal h3:first-child,
+.content > .marginal h4:first-child
+{
+  margin-top: 0;
+}
+.cols_1 > .content > .marginal aside.m
+{
+  padding: 2em;
+}
 .content #nav
 {
   position: absolute;
   top: 0;
+  right: 0; /** Hier eigentlich nicht nötig, aber für Tablet-Style erforderrlich! */
   width: 100%;
 }
-.content.cols_2 #nav
+.cols_2 > .content #nav
 {
   position: relative;
   top: auto;
   right: auto;
   width: 22.375em; /** 358px = 326px + 32px*/
 }
-.content.cols_2 #nav > #menu
+.cols_2 > .content #nav > #menu
 {
   margin: 0 0 -2.125em 0; /** 0 0 -34px 0 */
 }
@@ -65,7 +90,49 @@ body { overflow-y: scroll; }
 /** Center content, when screen is bigger than 1240 */
 #page
 {
-  position: relative;
-  max-width: 1000px;
+  max-width: 62.375em; /** 608px + 390px (Marginalspalte) = ca. 1000px */
   margin: 0 auto;
 }
+
+/** Make the footer sticky */
+html, body
+{
+  height: 100%;
+}
+#page
+{
+  position: relative;
+  min-height: 100%;
+}
+#footer
+{
+  position: absolute;
+  left: 0;
+  right: 0;
+  bottom: 0;
+}
+
+/** Faux-Column-Hack-Eigengewächs */
+#page.cols_2
+{
+  max-width: 38em; /** 608px + 390px (Marginalspalte) = ca. 1000px */
+  border-right: 24.375em solid @heller;
+}
+#header
+{
+  padding-top: 1em;
+}
+.cols_2 > #header
+{
+  margin-right: -24.375em;
+  background-color: @hintergrund;
+}
+.cols_2 > #breadcrumb
+{
+  right: -24.375em; /** Weil der Breadcrumb sonst an der Faux-Column umbricht! */
+}
+.cols_2 > #footer
+{
+  margin-right: -24.375em;
+  background-color: @hintergrund;
+}