|
@@ -115,6 +115,7 @@ hr {
|
|
|
color: rgb(100,100,100) !important;
|
|
|
}
|
|
|
ul.dashes {
|
|
|
+ margin: 0;
|
|
|
list-style-type: none;
|
|
|
padding-left: 1em;
|
|
|
li:before {
|
|
@@ -123,6 +124,9 @@ ul.dashes {
|
|
|
margin-left: -1em;
|
|
|
}
|
|
|
}
|
|
|
+.schulnummer {
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
.wasserzeichen {
|
|
|
position: absolute;
|
|
|
opacity: 0.5;
|
|
@@ -183,31 +187,31 @@ page[size="A4"][orientation="landscape"] {
|
|
|
height: 210mm;
|
|
|
}
|
|
|
page[size="A3"][orientation="portrait"] {
|
|
|
- width: 420mm;
|
|
|
- height: 297mm;
|
|
|
-}
|
|
|
-page[size="A3"][orientation="landscape"] {
|
|
|
width: 297mm;
|
|
|
height: 420mm;
|
|
|
}
|
|
|
-page[size="A5"][orientation="landscape"] {
|
|
|
+page[size="A3"][orientation="landscape"] {
|
|
|
+ width: 420mm;
|
|
|
+ height: 297mm;
|
|
|
+}
|
|
|
+page[size="A5"][orientation="portrait"] {
|
|
|
width: 14.8cm;
|
|
|
height: 21cm;
|
|
|
}
|
|
|
-page[size="A5"][orientation="portrait"] {
|
|
|
+page[size="A5"][orientation="landscape"] {
|
|
|
width: 21cm;
|
|
|
height: 14.8cm;
|
|
|
}
|
|
|
|
|
|
.grid {
|
|
|
- display: grid;
|
|
|
- grid-template-columns: auto;
|
|
|
- grid-template-rows: auto 1fr auto;
|
|
|
- grid-template-areas: "header"
|
|
|
- "main"
|
|
|
- "footer";
|
|
|
- grid-gap: 0px;
|
|
|
- align-content: start;
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: auto;
|
|
|
+ grid-template-rows: auto 1fr auto;
|
|
|
+ grid-template-areas: "header"
|
|
|
+ "main"
|
|
|
+ "footer";
|
|
|
+ grid-gap: 0px;
|
|
|
+ align-content: start;
|
|
|
}
|
|
|
|
|
|
.header {
|
|
@@ -222,6 +226,37 @@ page[size="A5"][orientation="portrait"] {
|
|
|
grid-area: footer;
|
|
|
align-self: end;
|
|
|
}
|
|
|
+.main-grid {
|
|
|
+ &:active{border-style: solid;}
|
|
|
+ grid-area: main;
|
|
|
+ display: grid;
|
|
|
+ grid-column-gap: 25mm;
|
|
|
+ grid-template-columns: 1fr 1fr;
|
|
|
+ grid-template-rows: auto 1fr auto;
|
|
|
+ grid-template-areas: "header-left header-right"
|
|
|
+ "main-left main-right"
|
|
|
+ "footer-left footer-right";
|
|
|
+}
|
|
|
+.main-left {
|
|
|
+ grid-area: main-left;
|
|
|
+}
|
|
|
+.main-right {
|
|
|
+ grid-area: main-right;
|
|
|
+}
|
|
|
+.footer-grid {
|
|
|
+ grid-area: footer;
|
|
|
+ display: grid;
|
|
|
+ grid-column-gap: 25mm;
|
|
|
+ grid-template-columns: 1fr 1fr;
|
|
|
+ grid-template-rows: auto;
|
|
|
+ grid-template-areas: "footer-left footer-right";
|
|
|
+}
|
|
|
+.footer-left {
|
|
|
+ grid-area: footer-left;
|
|
|
+}
|
|
|
+.footer-right {
|
|
|
+ grid-area: footer-right;
|
|
|
+}
|
|
|
|
|
|
.flex-grid {
|
|
|
display: flex;
|