blob: c65e54396d4389da86838f2f06a4a409f8dc8e21 (
plain)
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
|
.sidebar-toggle {
position: absolute;
top: 0;
bottom: auto;
left: 0;
}
.search {
margin-top: 40px;
}
.markdown-section h2 {
padding-top: 0.25rem;
}
.markdown-section h3 {
margin-top: 0.25rem;
}
.sidebar, .sidebar-nav {
line-height: 1.5em !important;
}
.markdown-section ul ul {
margin: 0;
}
.markdown-section pre {
padding: 0;
}
@media only screen and (min-width: 768px) {
.flex-container {
display:flex;
flex-flow:row;
}
.flex-container > p {
flex-basis: 100%;
flex: 1;
margin: 1em 2em 1em 2em;
}
}
.docsify-tabs__tab:focus {
outline: none !important;
}
.docsify-tabs__content .anchor {
transition: none;
}
:root {
--docsifytabs-border-color: #ddd;
--docsifytabs-tab-highlight-color: var(--theme-color, #0074d9);
--docsifytabs-tab-background: #f8f8f8;
--docsifytabs-tab-background-active: transparent;
}
|