forked from OpenLogicProject/forallx-cam
-
Notifications
You must be signed in to change notification settings - Fork 31
/
forallxyyc.css
59 lines (44 loc) · 1.09 KB
/
forallxyyc.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
/* forallxyyc.css -- style sheet to fix spacing etc. in BookML and LaTeXML styles
Must be passed to LaTeXML and BookML */
/* hide the "blank" text in \blank's */
span.fxblank {
display: inline-block;
height: 0px;
overflow: hidden;
}
/* draw a border around the book cover */
img.fxcover {
border: 1px solid !important;
background-color: white;
margin-left: 2em;
}
/* style dfn tags */
dfn {
font-style: italic;
font-weight: bold;
color: #B21978;
}
/* make <dd>'s (i.e., the description environment used by earg appear
nicely */
dl.ltx_description dt,
dt span.ltx_tag {
font-style: normal !important;
font-weight: normal !important;
font-size: inherit !important;
}
dl.ltx_description dt {
text-align: right;
min-width: 6em;
}
dd, dd p.ltx_p {
margin-bottom: 0px !important;
}
dl.ltx_description {
margin-left: 0.5em;
}
/* fix LaTeXML.css handling of paras inside list items without tags */
.ltx_item .ltx_para:first-child .ltx_p { display:inline; }
/* fix LaTeXML.css spacing between {paragraph}s */
.ltx_paragraph .ltx_title + .ltx_para .ltx_p {
display: block;
}