summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/web/bios.css
blob: c934a55fa9a3e1cd0ef9061f7f8f7f36cbb61153 (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
/*
 * SPDX-FileCopyrightText: syuilo and other misskey contributors
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

* {
	font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
}

html {
	background: #ffb4e1;
}

main {
	background: #dedede;
}
main > .tabs {
	padding: 16px;
	border-bottom: solid 4px #c3c3c3;
}

#lsEditor > .adder {
	margin: 16px;
	padding: 16px;
	border: solid 2px #c3c3c3;
}
#lsEditor > .adder > textarea {
	display: block;
	width: 100%;
	min-height: 5em;
	box-sizing: border-box;
}
#lsEditor > .record {
	padding: 16px;
	border-bottom: solid 1px #c3c3c3;
}
#lsEditor > .record > header {
	font-weight: bold;
}
#lsEditor > .record > textarea {
	display: block;
	width: 100%;
	min-height: 5em;
	box-sizing: border-box;
}