File: custom.css

package info (click to toggle)
python-contextily 1.5.2%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: python: 1,092; makefile: 41
file content (38 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
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
/* Override some aspects of the pydata-sphinx-theme */

:root {
  --pst-color-active-navigation: 0, 91, 129;
  /* Use normal text color (like h3, ..) instead of primary color */
  --pst-color-h1: var(--pst-color-text-base);
  --pst-color-h2: var(--pst-color-text-base);
  --pst-header-height: 0px;
}

@media (min-width: 768px) {
  @supports (position: -webkit-sticky) or (position: sticky) {
    .bd-sidebar {
      padding-top: 3rem;
    }
  }
}

/* no pink for code */
code {
  color: #3b444b;
}

/* Larger font size for sidebar*/
.bd-sidebar .nav > li > a {
  font-size: 1em;
}

/* New element: brand text instead of logo */

/* .navbar-brand-text {
  padding: 1rem;
} */

a.navbar-brand-text {
  color: #333;
  font-size: xx-large;
}