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
|
span.opcmd,
span.cfgcmd {
font-weight: bold;
background-color: transparent;
border: none;
padding: 0;
font-size: 100% !important;
max-width: 100%;
color: #000;
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;
}
.opcmd-heading,
.cfgcmd-heading {
display: inline-block;
margin: 6px 0;
font-size: 90%;
line-height: normal;
background: #e7f2fa;
color: #2980B9;
border-top: solid 3px #6ab0de;
border-top-width: 3px;
border-top-style: solid;
border-top-color: rgb(106, 176, 222);
padding: 6px;
}
.opcmd-body,
.cfgcmd-body {
margin: 6px 0;
padding-left: 12px;
}
.cfgcmd-heading .cmdlink:after,
.opcmd-heading .cmdlink:after {
content: "";
font-family: FontAwesome
}
.cfgcmd-heading:not(:hover) .cmdlink,
.opcmd-heading:not(:hover) .cmdlink {
display: none;
}
a.cmdlink {
font-size: 80%;
margin-left: 6px;
}
.wy-nav-content {
max-width : none;
}
.wy-tray-container li.wy-tray-item-info {
background : #409ad5;
}
.wy-table-responsive {
overflow : visible !important;
}
.wy-table-responsive table td {
white-space : normal !important;
}
.wy-menu-vertical header,
.wy-menu-vertical p.caption {
color : #ffcc00 !important;
}
.wy-menu-vertical li.current a {
color : #040077 !important;
}
.wy-menu-vertical li ul li a {
color : #ffffff !important;
}
.wy-menu-vertical a {
color : #ffffff !important;
}
.wy-menu-vertical a:active {
background-color : #409ad5 !important;
}
.wy-side-nav-search {
background-color : #FF0000 !important;
}
.wy-side-nav-search img {
background-color : #FF0000 !important;
}
.wy-side-nav-search > div.version {
color : rgba(255, 255, 255, 0.7) !important;
}
.wy-nav-top {
background-color : #FF0000 !important;
}
.wy-nav-top img {
background-color : #FF0000 !important;
}
|