Jacky Zhao
2022-07-14 22c8981bb9a97743f02ab5d5feabda7ff5a6afc4
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
// Overrides
/* Background */
.chroma {
  overflow: hidden !important;
  background-color: var(--lightgray) !important;
}
 
/* LineTable */
.chroma .lntable {
  width: auto !important;
  overflow: auto !important;
  display: block !important;
}
 
/* LineHighlight */
.chroma .hl {
  display: block !important;
  width: 100% !important;
}
 
/* LineNumbersTable */
.chroma .lnt {
  margin-right: 0.0em !important;
  padding: 0 0.0em 0 0.0em !important;
}
 
/* LineNumbers */
.chroma .ln {
  margin-right: 0.0em !important;
  padding: 0 0.0em 0 0.0em !important;
}
 
/* GenericDeleted */
.chroma .gd {
  color: #8b080b !important;
}
 
/* GenericInserted */
.chroma .gi {
  font-weight: bold !important;
}
 
.lntd:first-of-type > .chroma {
  padding-right: 0 !important;
}
 
.chroma code {
  font-family: var(--font-mono) !important;
  font-size: 0.85em !important;
  line-height: 2em !important;
  background: none !important;
  padding: 0 !important;
}
 
.chroma {
  border-radius: 3px !important;
  margin: 0 !important;
}
 
pre.chroma {
  -moz-tab-size:4;-o-tab-size:4;tab-size:4;
}