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
|
/* Define "Unidata Blue" RGB values */
html {
--unidata-blue-rgb: rgb(6, 119, 143);
--unidata-teal-rgb: rgb(69, 166, 169);
}
html[data-theme="light"] {
--pst-color-primary: var(--unidata-blue-rgb);
--pst-color-secondary: var(--unidata-teal-rgb);
}
html[data-theme="dark"] {
--pst-color-primary: var(--unidata-blue-rgb);
--pst-color-secondary: var(--unidata-teal-rgb);
}
/* Header and heading font style */
.header-style, h1, h2, h3, h4, h5, h6 {
font-family: Poppins, sans-serif;
}
/* Header colors */
.bd-header {
background: var(--unidata-blue-rgb) !important;
}
.bd-header .navbar-nav>.nav-item>.nav-link,
.bd-header .dropdown-toggle,
.bd-header .pst-navbar-icon,
.bd-header .btn {
color: #fff !important;
}
.search-button {
padding: 0 0 0;
}
/* Increase contrast of links in code snippets */
div[class^="highlight"] a {
background-color: rgb(var(--unidata-blue-rgb), 0.2);
color: var(--pst-color-text-muted);
}
/* Control the appearance of the version alert banner */
#banner .alert-version, .alert-news {
margin: 1em;
padding: 0.5em;
font-family: "Work Sans", sans-serif;
font-weight: 600; font-size: 16px;
}
/* Tweaks to the appearance of the sidebars */
.bd-sidebar {
flex: 0 0 20%;
border-right: none;
}
.bd-sidebar-secondary div {
border-left: none;
}
|