Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
yt-project
GitHub Repository: yt-project/yt
Path: blob/main/doc/source/_static/custom.css
928 views
1
blockquote {
2
font-size: 16px;
3
border-left: none;
4
}
5
6
dd {
7
margin-left: 30px;
8
}
9
10
/*
11
12
Collapse the navbar when its width is less than 1200 pixels. This may need to
13
be adjusted if the navbar menu changes.
14
15
*/
16
17
@media (max-width: 1200px) {
18
.navbar-header {
19
float: none;
20
}
21
.navbar-toggle {
22
display: block;
23
}
24
.navbar-collapse {
25
border-top: 1px solid transparent;
26
box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
27
}
28
.navbar-collapse.collapse {
29
display: none!important;
30
}
31
.navbar-nav {
32
float: none!important;
33
margin: 7.5px -15px;
34
}
35
.navbar-nav>li {
36
float: none;
37
}
38
.navbar-nav>li>a {
39
padding-top: 10px;
40
padding-bottom: 10px;
41
}
42
/* since 3.1.0 */
43
.navbar-collapse.collapse.in {
44
display: block!important;
45
}
46
.collapsing {
47
overflow: hidden!important;
48
}
49
}
50
51
/*
52
53
Sphinx code literals conflict with the notebook code tag, so we special-case
54
literals that are inside text.
55
56
*/
57
58
p code {
59
color: #d14;
60
white-space: nowrap;
61
font-size: 90%;
62
background-color: #f9f2f4;
63
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
64
}
65
66
/*
67
68
Nicer, controllable formatting for tables that have multi-line headers.
69
70
*/
71
72
th.head {
73
white-space: pre;
74
}
75
76
/*
77
78
labels have a crappy default color that is almost invisible in our doc theme so
79
we use a darker color.
80
81
*/
82
83
.label {
84
color: #333333;
85
}
86
87
/*
88
89
Hack to prevent internal link targets being positioned behind the navbar.
90
91
See: https://github.com/twbs/bootstrap/issues/1768
92
93
*/
94
95
*[id]:before :not(p) {
96
display: block;
97
content: " ";
98
margin-top: -45px;
99
height: 45px;
100
visibility: hidden;
101
}
102
103
/*
104
105
Make tables span only half the page.
106
107
*/
108
109
.table {
110
width: 50%
111
}
112
113
114
.navbar-form.navbar-right:last-child {
115
margin-right: -60px;
116
float: left !important;
117
}
118
119