-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.css
126 lines (99 loc) · 1.64 KB
/
report.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* I add this to html files generated with pandoc.
* From original CSS file written by Pascal Hertleif
* https://gist.github.com/killercup/5917178/40840de5352083adb2693dc742e9f75dbb18650f
*/
html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
color: #444;
font-size: 12.5px;
background: #fefefe;
}
a {
color: #0645ad;
text-decoration: none;
}
a:visited {
color: #0b0080;
}
a:hover {
color: #06e;
}
a:active {
color: #faa700;
}
a:focus {
outline: thin dotted;
}
*::-moz-selection {
background: rgba(255, 255, 0, 0.3);
color: #000;
}
*::selection {
background: rgba(255, 255, 0, 0.3);
color: #000;
}
a::-moz-selection {
background: rgba(255, 255, 0, 0.3);
color: #0645ad;
}
a::selection {
background: rgba(255, 255, 0, 0.3);
color: #0645ad;
}
/* you have to be really specific to override an explicit em but it can be done */
.subtitle em {
font-style: normal;
}
h1,h2,h3,h4 {
font-weight: 500;
}
/* otherwise the title h1 doesn't inherit the fontsize correctly */
h1,h1.title {
font-size: 1.8em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1.1em;
}
h5 {
font-size: 1em;
font-style: italic;
}
h6,.pbreak {
font-style: italic;
display: none;
}
tbody {
vertical-align: top;
}
#toc table {
width: 180%;
}
#toc h1 {
display: none;
}
.figure .caption, .subfigures > p:last-of-type, figcaption {
padding-bottom: 16px;
padding-top: 0;
}
.note2self {
background-color: #FF0;
}
.table caption {
padding-bottom: 0;
}
.table caption .table_title {
color: #000;
font-weight: 800;
}