blob: 84fe20314a1c6816ecdd94201d15295b7e403451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
form {
display: grid;
grid-template-columns: [label] max-content [input] max-content;
}
form label {
margin: 1ex 0.5em;
grid-column-start: label;
justify-self: end;
}
form input,
form select {
margin: 1ex 0.5em;
grid-column-start: input;
}
form button {
padding: 1ex 2em;
width: 7em;
justify-self: end;
grid-column-start: input;
}
#output {
display: grid;
grid-template-columns: max-content;
margin-top: 1ex;
}
#download {
justify-self: end;
}
#output table {
margin-top: 1ex;
border-collapse: collapse;
}
#output table thead {
font-weight: bold;
}
#output table tr {
// border-bottom: 1px solid black;
}
#output table td {
padding: 0.5ex 0.5em;
border: 1px solid black;
}
|