build form from yaml

This commit is contained in:
2019-12-29 22:23:39 +01:00
parent a1b8f5a1a1
commit faa41feaf6
12 changed files with 575 additions and 56 deletions
+27
View File
@@ -0,0 +1,27 @@
*, *::before, *::after {
box-sizing: border-box;
}
form .Row {
display: flex;
padding: .25rem;
}
form .Row label {
flex-shrink: 0;
width: 10rem;
text-align: right;
display: inline-block;
padding-right: .5rem;
}
form .Row input,
form .Row select {
height: 2.1rem;
}
form .Row textarea {
flex-shrink: 1;
width: 30rem;
height: 6rem;
}