-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathstyle.mdk
69 lines (63 loc) · 1.24 KB
/
style.mdk
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
63
64
65
66
67
68
69
<!-- Reasonable bibliography style. -->
cite style: numeric
bib style: plainnat
<!-- Looks like LaTeX \paragraph. -->
.h4 {
display: run-in;
}
<!-- Black-and-white syntax highlighting for PDF output. -->
@if tex {
.token.keyword {
color: black;
font-weight: bold;
}
.token.string {
color: black;
}
.token.comment {
color: gray;
}
.token.constant {
color: black;
}
}
<!-- Placeholders. -->
todo, .tk {
color: red;
}
tk: [TK]{.tk}
<!-- Use Adobe's Source Code Pro for code in TeX output. I believe this ships
with TeXLive 2015. -->
package: [scale=0.85]sourcecodepro
<!-- Don't colorize links. -->
tex header: \hypersetup{hidelinks=true}
<!-- Web style. -->
css header:
/* Hyphenation for justified text. */
.madoko p, .madoko li {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
/* Fonts and such. */
body.madoko, .madoko .serif {
font-family: Palatino, "Palatino Linotype", "Palatino LT STD",
"Book Antiqua", Cambria, Georgia, serif;
}
body {
line-height: 1.4em;
}
pre {
line-height: 1rem;
}
a {
color: #2A5DB0;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.titleblock {
margin-bottom: 1rem;
}