aboutsummaryrefslogtreecommitdiff
path: root/theme/static/styles.css
blob: b15a4180e1d1ff38eacb313b7ffdac3581d9e355 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
body { max-width: 800px; margin: 0 auto; }
a, a:visited { color:blue; }
nav ul { list-style: none; padding: 0; display: flex; flex-direction: row; }
nav ul li { padding-right: 0.5rem;}
img { max-width: 100%; }
.post-list-item { display: flexbox; list-style: none; }
.post-list-item time { padding-right: 0.5rem; }
.post-list-year { list-style: none; margin-top: 1rem; margin-bottom: 0.5rem; font-weight: bold; }
.skip-link { display: none; }
footer { margin: 2rem 0;}
pre, blockquote { margin: 1rem 0; padding: 0.5rem; background-color: lightgrey; }
pre { overflow: auto; white-space: pre; }
blockquote p { margin: 0; }
code { color: darkred; }
@media (prefers-color-scheme: dark) {
	body { background-color: #181a1b; color: #e8e6e3; }
	a, a:visited { color: #66adff; }
	code { #ff6b6b; }
}