-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcustom_style.css
More file actions
92 lines (74 loc) · 1.87 KB
/
Copy pathcustom_style.css
File metadata and controls
92 lines (74 loc) · 1.87 KB
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
div.leftside {
width: 54px;
padding: 5px 5px 0px 0px;
float: left;
}
div.rightside {
margin-left: 20px;
margin-bottom: 40px;
padding-left: 40px;
/*float: right;*/
}
.mval {
background-color: rgb(236,240,233);
font-family: monospace;
}
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: inherit;
}
.red {
color:red;
}
.yellow {
color: yellow;
}
.gold {
color: gold;
}
.orange {
color: orange;
}
.darkgreen {
color: darkgreen;
}
.magenta {
color: magenta;
}
.pink {
color: pink;
}
.lightblue {
color: lightblue;
}
.mediumturquoise {
color: mediumturquoise;
}
div.admonition.implementation {
background-color: #f5f5f5;
border-left: 4px solid #bdbdbd;
}
div.admonition.implementation > .admonition-title {
background-color: #e0e0e0;
color: #424242;
}
/* Grammar (productionlist) blocks are rendered as a bare <pre> and can contain
long lines; keep them within the content area by scrolling horizontally
instead of overflowing past the right-hand border.
The `grammar-pre` class is added by _static/js/grammar_terminals.js to the
productionlist blocks only, so these rules do not affect other <pre> blocks. */
.rst-content pre.grammar-pre {
max-width: 100%;
overflow-x: auto;
white-space: pre;
/* Match the size/metrics of code (highlight/literal) blocks: a bare <pre>
(as produced by productionlist) otherwise renders at 1em, much larger. */
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", Courier, monospace;
font-size: 12px;
line-height: 1.4;
}
/* Terminal (quoted) symbols in the grammar productionlist blocks, wrapped by
_static/js/grammar_terminals.js, are coloured blue to distinguish them from
the non-terminals. */
.rst-content pre.grammar-pre .grammar-terminal {
color: #1565c0;
}