File: scipy.css

package info (click to toggle)
scipy 1.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 232,636 kB
  • sloc: cpp: 497,140; python: 327,782; ansic: 190,592; javascript: 89,553; fortran: 59,012; cs: 3,081; f90: 1,150; sh: 839; makefile: 780; pascal: 277; csh: 135; lisp: 134; xml: 56; perl: 51
file content (99 lines) | stat: -rw-r--r-- 2,213 bytes parent folder | download | duplicates (5)
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
/* SciPy specifics */

/* Version switcher colors from PyData Sphinx Theme */

.version-switcher__button[data-active-version-name*="dev"] {
  background-color: var(--pst-color-warning);
  border-color: var(--pst-color-warning);
  opacity: 0.9;
}

.version-switcher__button:not([data-active-version-name*="stable"]):not([data-active-version-name*="dev"]):not([data-active-version-name*="pull"]) {
  background-color: var(--pst-color-danger);
  border-color: var(--pst-color-danger);
  opacity: 0.9;
}

button.btn.version-switcher__button, button.btn.version-switcher__button:hover {
  color: black;
}

/* Main index page overview cards */

.sd-card .sd-card-img-top {
  height: 60px;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

/* Main index page overview images */

html[data-theme=dark] .sd-card img[src*='.svg'] {
  filter: invert(0.82) brightness(0.8) contrast(1.2);
}

/* Legacy admonition */

div.admonition-legacy {
  border-color: var(--pst-color-warning);
}

.admonition>.admonition-title::after,
div.admonition>.admonition-title::after {
  color: var(--pst-color-warning);
}

.admonition>.admonition-title,
div.admonition>.admonition-title {
  background-color: var(--pst-color-warning-bg);
}

/* JupyterLite "Try Examples" directive */

.try_examples_button {
    color: var(--pst-color-background);
    background-color: var(--pst-color-primary);
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px var(--pst-color-surface);
    font-weight: bold;
    font-size: small;
}

.try_examples_button:hover {
  background-color: var(--pst-color-primary);
  transform: scale(1.02);
  opacity: 0.9;
  box-shadow: 0 2px 5px var(--pst-color-surface);
  cursor: pointer;
}

.try_examples_button_container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

/* Wrap long titles in pages */
h1 {
  word-wrap: break-word;
}

/* Monospace titles for API docs */
div.empty + section>h1 {
  font-family: var(--pst-font-family-monospace);
}

.prename {
  font-family: var(--pst-font-family-monospace);
  font-size: var(--pst-font-size-h4);
}

.sig-prename {
  display: none;
}