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
.flex-row,
.flex-column {
justify-content: space-between;
padding: 1em;
border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.flex-row:last-child {
padding: .5em;
border-bottom: unset;
}
label {
padding: .1em;
}
span {
padding-bottom: .25em;
}
select,
input[type=number] {
margin: 0;
width: 65%;
}
input[type="checkbox"] {
transform: scale(1.5);
}
@media (max-width: 650px) {
select,
input[type=number] {
margin: 0;
width: 100%;
}
}
.icon-trashcan {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="24" width="24"><path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3zM7 6h10v13H7zm2 2v9h2V8zm4 0v9h2V8z" fill="white"/></svg>');
}