summaryrefslogtreecommitdiff
path: root/public/style.css
blob: 1b9481c9154a0b8b73964f16572708e39c179c22 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
html, input, textarea {
	font-family: "Source Serif", "Georgia", "Dingbats", "Noto Emoji", serif;
	font-size: 16px;
}
button, select {
	font-family: "Source Sans", "Verdana", "Dingbats", "Noto Emoji", sans-serif;
	font-size: 16px;
}

html, body { margin: 0; }
h1 { margin-left: -2px; }
h2 { margin-left: -1px; }
a { color: blue; }
.w { white-space: nowrap; }
.r { text-align: right; }

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid brown;
	padding-right: 1em;
}
header img {
	display: block;
	margin: 4px 0 -2px 2px;
}
header nav a { margin: 0 1em; color: black; }
article { margin: 2em; }
article p, article dl, article ul { max-width: 50rem; }

img.avatar {
	float: left; margin: 0 20px 5px 0;
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,.5);
	width: 80px;
	height: 80px;
}

img.logo {
	float: left;
	margin: 0 20px 5px 0;
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5);
	height: 200px;
}

table { min-width: min(50rem,100%); }
table { border-collapse: collapse; }
th { text-align: left; background-color: gainsboro; }
th, td { border: 1px solid black; padding: 3px 1ex; }
th a:not(:hover), td:not(.command) a:not(:hover) { text-decoration: none; }
td.body { white-space: pre-wrap; padding: 10px 10px; }

input[type="text"], input[type="password"], textarea {
	padding: 5px;
	margin: 5px 0;
	border: 1px solid black;
}
button, select {
	margin: 5px 10px 5px 0;
	padding: 1px 10px;
	background-color: gainsboro;
	vertical-align: top;
	border: 2px outset white;
	outline: 1px solid black;
}
button:enabled:active:hover, select:active {
	border: 2px inset white;
	padding: 2px 9px 0px 11px;
}
button:disabled {
	color: gray;
	border: 2px solid gainsboro;
	outline: 1px solid gray;
}

td.is_active { background-color: lemonchiffon; }
p.error { color: brown; font-style: italic; white-space: pre-wrap; }
p.warning { color: brown; }
p.warning::before { content: "\26a0"; }

article hr { max-width: 50rem; margin-right: auto; margin-left: 0; }
article hr { border: none; border-top: 2px dotted brown; }
article hr + p { font-style: italic; }