custom.css 1.13 KB
Newer Older
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
/* Change heading font */
/*
h1,h2,h3 {
	font-weight: 700;
	font-family: "CherrySoda","ff-tisa-web-pro","Georgia",Arial,sans-serif;
}

@font-face {
	font-family: "CherrySoda";
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/CherrySoda.ttf) format('truetype');
}
*/
/* Extend page width size limit */
.wy-nav-content {
	max-width: 1600px;
}

/* Justified and slightly lower line interval for text */
li, p {
	text-align: justify;
	line-height: 20px;
}

/* Smaller caption text, further away from the figure */
.caption {
	font-size: smaller;
	margin-top: 1em;
}

/* Override responsive image scaling */
img {
	width: auto;
}

37
38
39
40
41
/* Override Mathjax colors forced to dark grey */
span[id*="MathJax-Span"] {
	color: inherit;
}

42
/* Move equation no to the right */
43
44
.math .eqno {
	position: relative;
45
46
	float: right;
	margin: 1em 0em;
47
	z-index: 10;
48
49
}

50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Hide permalinks on equation numbers */
.section {
	position: relative
	z-index: 0;
}

.math {
	position: relative;
	z-index: 1;
}

.math .MathJax_Display {
	z-index: 2;
}

.math .eqno a.headerlink {
	visibility: hidden;
	position: absolute;
}

.math .eqno:hover a.headerlink {
	visibility: visible;
72
73
}