diff --git a/src/layout.txt b/src/layout.txt
index b2eb474..c57b7e6 100644
--- a/src/layout.txt
+++ b/src/layout.txt
@@ -29,3 +29,61 @@ row
/column
/row
+
+
+
+.container {
+ display: flex;
+ flex-flow: row;
+ min-height: 50px;
+
+}
+.left {
+ flex: 0 0;
+ background-color: blue;
+ height: 100vh;
+}
+.main {
+ width: 100%;
+ background-color: red;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ height: 100vh;
+ }
+.col {
+ margin: 2px;
+}
+.top {
+ flex: 0 0;
+ height: 20px;
+ background: yellow;
+ }
+.middle {
+ height: 100%;
+ background: pink;
+ }
+.bottom {
+ flex: 0 0;
+ height: 20px;
+ background: cyan;
+ }
+
+.ver_hor_center
+{
+ /* horizontal und vertikal zentrieren */
+ position: absolute;
+ top: 50%;
+ left: 50%;
+}