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
|
/*
code {
color: #000;
}
.article pre code {
background: rgba(0, 0, 0, 0);
}
*/
.admonition.warning .admonition-title, .admonition.warning {
background-color: #d73726 !important;
color: #fff !important;
}
.admonition.tip .admonition-title, .admonition.tip {
background: #6e6e6e !important;
color: #fff !important;
}
a {
color: #d73726;
}
a:visited {
color: #990000;
}
a:hover {
color: #ff8080;
}
img[alt$=">"] {
float:right;
display: inline-block;
padding-left: 10px;
}
img[alt$="<"] {
float:left;
display: inline-block;
padding-right: 10px;
}
img[alt$="><"] {
display: block;
max-width: 100%;
height: auto;
margin: auto;
float: none!important;
}
@media only screen and (min-width: 76.25em) {
.md-main__inner {
max-width: none;
}
.md-sidebar--primary {
left: 0;
}
.md-sidebar--secondary {
right: 0;
margin-left: 0;
-webkit-transform: none;
transform: none;
}
.wy-nav-content {
max-width: 100%;
}
}
pre {
overflow-x: auto;
}
.wy-side-nav-search {
background-color: #d73726;
color: #fff;
}
.toctree-l1 a:visited, .toctree-l1 a:hover, .toctree-l1 a {
color: #ccc;
}
.wy-nav-top {
background-color: #d73726 !important;
color: #fff !important;
}
.wy-nav-top a:visited, .wy-nav-top a:hover, .wy-nav-top a, .wy-side-nav-search a:visited, .wy-side-nav-search a:hover, .wy-side-nav-search a {
color: #fff;
}
|