aboutsummaryrefslogtreecommitdiff
path: root/public/admin.css
blob: 991bb2d7c59581ef811cf640c58cbd72334fd745 (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
form {
	display: grid;
	gap: 8px;
}

@media (min-width: 600px) {
	form {
		grid-template-columns: auto 1fr;
	}

	form label {
		grid-column: 1;
	}

	form input,
	form textarea {
		grid-column: 2;
	}
}

form textarea {
	font-family: sans-serif;
	resize: vertical;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table th,
table td {
	padding: 4px;
	border: 2px solid var(--bg-alt);
}

table td:nth-child(1) { text-align: center; }
table td:nth-child(3) { text-align: right; }
table td select,
table td input { width: 100%; }