blob: 56ed09a58f6d18f0c4d184e137c20ec7750e5672 (
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
|
.form {
display: grid;
grid-template-columns: fit-content(30px) 1fr;
grid-row-gap: var(--text-padding);
grid-column-gap: var(--text-padding);
}
.form textarea {
min-height: 160px;
resize: none;
}
.form button[type="submit"],
.form .status{
grid-column: 1 / -1;
text-align: center;
}
.form input,
.form textarea,
.form button[type="submit"] {
color: white;
background: var(--page-background);
border: none;
box-sizing: border-box;
padding: 4px;
height: 32px;
width: 100%;
box-shadow: none;
}
.form button[type="submit"] {
cursor: pointer;
}
|