blob: a35096c8dbc3dd5c6b9a3b8f45767d182f06c950 (
plain) (
blame)
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
52
53
54
55
56
57
|
body {
font-family: sans-serif;
background: white;
color: #333;
}
form {
width: 100%;
max-width: 300px;
display: flex;
flex-direction: column;
gap: 5px;
}
#forms {
display: flex;
flex-direction: row;
gap: 15px;
flex-wrap: wrap;
}
@media (max-width: 476px) {
form {
max-width: 100%;
}
}
.flex-end {
display: flex;
align-items: end;
flex-direction: column;
}
legend {
font-weight: 600;
}
textarea {
overflow-y: hidden;
min-height: calc(1.5em + .75rem + 2px);
min-width: 260.5px;
}
button {
background: #e9e9ed;
border: 1px solid #8f8f9d;
cursor: pointer;
width: fit-content;
}
button:active {
background: #d1d1d5;
}
input {
}
|