add to git

This commit is contained in:
David Meincke
2022-03-21 17:43:17 +01:00
commit bb44e0e92d
33 changed files with 23209 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
html, body, body > * {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.flex-horiz {
display: flex;
flex-direction: row;
height: 100%;
}
.flex-vert {
display: flex;
flex-direction: column;
height: 100%;
}
.flex-horiz > *, .flex-vert > * {
flex-grow: 1;
flex-shrink: 1;
flex-basis: 1px;
}
.flex-horiz .flex-shrink, .flex-vert .flex-shrink {
flex-grow: 0;
flex-shrink: 1;
}
.flex-horiz .flex-grow, .flex-vert .flex-grow {
flex-grow: 1;
flex-shrink: 0;
}
body {
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
}
.section {
background: #e3e3e3;
padding: 20px;
font-size: 22px;
}
.section.top {
border-bottom: 1px solid #c2c2c2;
}
.section.bottom {
border-top: 1px solid #c2c2c2;
font-size: 16px;
text-align: right;
}