aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: e816df1cc39aaa7e6dd439806727a7d4e7a776c4 (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
html {
	font-family: sans-serif;
	--link-color: #7c3e66;
	--text-decoration-color: #b8b8b8;
	--box-background-color: #e6e6e6;
}
html, code, pre {
	font-size: 1rem;
}

.padding-wrapper {
	padding: 0 1rem;
	max-width: 50em;
	margin: 0 auto;
}
.padding-wrapper > * {
	width: 100%;
}
a:link, a:visited {
	text-decoration-color: var(--text-decoration-color);
	color: var(--link-color);
}
code {
	background-color: var(--box-background-color);
	border-radius: 2px;
	padding: 2px;
}