summaryrefslogtreecommitdiffstats
path: root/src/style.css
blob: 5ce9612993fff2c8ecaa3da4f3b614a49228ab13 (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
body {
	max-width: 800px ;
	margin: auto ;
	margin-bottom: 500px ;
}

h1 {
	text-align: center ;
}

footer {
	text-align: center ;
}

img {
	max-width: 600px ;
	margin: auto ;
	display: block ;
}

@media (prefers-color-scheme: dark) {
	body {
		background: #151515 ;
		color: white ;
	}
	a {
		color: lightblue ;
	}
	a:visited {
		color: gray ;
	}
	h2 {
		color: tomato ;
	}
}