File: custom.css

package info (click to toggle)
yt 4.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,084 kB
  • sloc: python: 132,484; ansic: 5,628; cpp: 1,588; javascript: 352; makefile: 138; sh: 43; csh: 36
file content (117 lines) | stat: -rw-r--r-- 1,898 bytes parent folder | download | duplicates (4)
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
111
112
113
114
115
116
117
blockquote {
    font-size: 16px;
    border-left: none;
}

dd {
    margin-left: 30px;
}

/*

Collapse the navbar when its width is less than 1200 pixels.  This may need to
be adjusted if the navbar menu changes.

*/

@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
}

/*

Sphinx code literals conflict with the notebook code tag, so we special-case
literals that are inside text.

*/

p code {
    color:  #d14;
    white-space: nowrap;
    font-size: 90%;
    background-color: #f9f2f4;
    font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}

/*

Nicer, controllable formatting for tables that have multi-line headers.

*/

th.head {
    white-space: pre;
}

/*

labels have a crappy default color that is almost invisible in our doc theme so
we use a darker color.

*/

.label {
    color: #333333;
}

/*

Hack to prevent internal link targets being positioned behind the navbar.

See: https://github.com/twbs/bootstrap/issues/1768

*/

*[id]:before :not(p) {
  display: block;
  content: " ";
  margin-top: -45px;
  height: 45px;
  visibility: hidden;
}

/*

Make tables span only half the page.

*/

.table {
    width: 50%
}


.navbar-form.navbar-right:last-child {
    margin-right: -60px;
    float: left !important;
}