summaryrefslogtreecommitdiff
path: root/static/main.css
blob: 62f4d7301e2b164b530a2c864e3beef3292320b8 (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
body {
	background-color: #fcfcfc;
	color: #232629;
	max-width:72ch;
	text-align:justify;
	margin:auto;
	padding:1em 0;
	font-family: sans-serif;
}

.content { min-height: calc(100vh - 20ch); }

a {text-decoration:none;color:#1d99f3;}

h1 {text-align:center;font-size:2rem;}
h2 {text-align:center;font-size:1.5rem;}
h3 {text-align:center;font-size:1rem;}

.nav a:link   {color:#232629;}
.nav a:visited{color:#232629;}
.nav a:hover  {color:#1d99f3;}
.nav a:focus  {color:#1d99f3;}
.nav a:active {color:#1d99f3;}

.nav {height:2rem;font-size:2rem;}
.navl {width:30%;float:left;text-align:left;}
.navr {width:70%;float:left;text-align:right;}

@media (prefers-color-scheme: dark) {
body {
	background-color: #232629;
	color: #fcfcfc;
}
.nav a:link   {color:#fcfcfc;}
.nav a:visited{color:#fcfcfc;}
.nav a:hover  {color:#1d99f3;}
.nav a:focus  {color:#1d99f3;}
.nav a:active {color:#1d99f3;}
}