-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
50 lines (48 loc) · 1.1 KB
/
style.css
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
/* TODO: clean me up! */
@media (prefers-color-scheme: dark){
body {color:#fff;background:#000}
a:link {color:#cdf}
a:hover, a:visited:hover {color:#def}
a:visited {color:#dcf}
* (-ms-high-contrast: black-on-white){background-color: #000;
color: white;
color-scheme: dark;
prefer-color-scheme: dark}
}
body{
background-color: black;
color: white;
margin:1em auto;
max-width:40em;
padding:0 .62em;
font:1.2em/1.62 sans-serif
}
h2,h3 {
line-height:1.2
}
@font-face {font-family LispM; src: url('./media/lispm-monospace.otf');}
h1 {
line-height:1.2
font-family: LispM
}
@media print{
body{
max-width:none
}
}
pre {
white-space: -moz-pre-wrap; /* Mozilla, supported since 1999 */
white-space: -pre-wrap; /* Opera 4 - 6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
word-wrap: break-word; /* IE 5.5+ */
}
nav {
padding-left: 4ch;
}
section::after {
content: "";
display: block;
height: 1px;
background: gray;
}