forked from susam/mathb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.css
62 lines (62 loc) · 1.04 KB
/
view.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
51
52
53
54
55
56
57
58
59
60
61
62
#view > :first-child {
margin-top: 0
}
#view > :last-child {
margin-bottom: 0
}
#view h1.title {
margin-top: 0;
text-align: center;
margin-bottom: 1.5rem;
}
#view h2.author {
margin-top: 0;
text-align: center;
margin-bottom: 1.5rem;
}
#view h1, #view h2, #view h3, #view h4, #view h5, #view h6 {
margin: 1.25em 0 0.5em 0;
line-height: 1.2;
}
#view img {
max-width: 100%;
}
#view pre, #view code {
font-family: monospace, monospace;
color: #050;
}
#view pre {
overflow: auto;
}
#view blockquote {
border-left: medium solid #ccc;
margin: 1em 0;
}
#view blockquote :first-child {
margin-top: 0;
}
#view blockquote :last-child {
margin-bottom: 0;
}
#view table {
border-collapse: collapse;
}
#view th, #view td {
border: thin solid #999;
padding: 0.3em 0.4em;
text-align: left;
}
@media (prefers-color-scheme: dark) {
#view pre, #view code {
color: #9c6;
}
#view pre, #view blockquote {
background: #000;
}
#view blockquote {
border-color: #333;
}
#view th, #view td {
border-color: #666;
}
}