-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (45 loc) · 819 Bytes
/
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
51
52
53
/*
* style.css - used with pandoc generation of markdown files to html
* - some of these settings override https://latex.now.sh/style.css
*/
:root {
--pre-bg-color: hsl(60, 56%, 91%);
}
body {
max-width: 80%;
}
#TOC {
background-color: #f5f5dc;
border: thick solid gray;
padding: .5em;
margin: .5em;
}
pre {
font-family: fixed;
border: 1px solid;
padding: 10px;
box-shadow: 2px 6px #888888;
}
table, th, td {
border: 1px solid LightGray;
}
tr {
width: 100%;
}
h2 {
border-bottom: 1px solid LightGray;
}
/*
* https://latex.vercel.app/style.css centres dl/dd elements for equations -->
*/
dl dd {
text-align: left;
}
dd {
padding-left: 10px;
padding-bottom: 5px;
}
dt {
font-weight: bold;
}
div.sourceCode { box-shadow: 2px 6px #888888; }