-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathextra.css
More file actions
35 lines (29 loc) · 1.19 KB
/
extra.css
File metadata and controls
35 lines (29 loc) · 1.19 KB
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
/* pkgdown/extra.css */
/* Force the navbar to be Admiral Blue (#2c3e50) */
.navbar {
background-color: #2c3e50 !important;
/* Force the text variables to be white/light */
--bs-navbar-color: rgba(255, 255, 255, 0.8) !important;
--bs-navbar-hover-color: #ffffff !important;
--bs-navbar-active-color: #ffffff !important;
--bs-navbar-brand-color: #ffffff !important;
}
/* Ensure the hamburger menu (mobile) uses white lines */
.navbar-toggler {
border-color: rgba(255,255,255,0.1) !important;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Force any "muted" text (like the version number) to be light gray in the navbar */
.navbar .text-muted,
.navbar small,
.navbar .version {
color: #d0d0d0 !important; /* Light gray */
}
.dropdown-menu {
/* Set a larger fixed height (default is usually around 50vh or 300px) */
max-height: 100vh !important;
/* Smooth scrolling if it does eventually need to scroll */
overflow-y: auto !important;
}