Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated navbar with color and logo #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 74 additions & 1 deletion source/_static/images/oe_logo_name.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions source/_static/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ h6 {

/* navigation bar colors*/
.navbar {
background: white !important;
background: #cd98c2ff !important;
font-size: 1em;
}

.navbar-nav>.active>.nav-link {
background-color: white !important;
color: #344b39 !important;
background-color: #e6eddf !important;
color: #2f401f !important;
font-weight: normal !important;
transition-duration: 0.4s;
}
Expand All @@ -125,20 +125,20 @@ h6 {
}

.navbar a {
color: grey !important;
color: white !important;
font-family: "Bitter", sans-serif;
transition-duration: 0.4s;
margin-right: 10px;
}

.search-button {
color: grey !important;
color: white !important;
margin-right: 30px;
}


.navbar a:hover {
color: grey !important;
color: #2f401f !important;
transition-duration: 0.4s;
}

Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
# a list of builtin themes.
#
html_theme = "pydata_sphinx_theme"
html_logo = "_static/images/miniscope-logo.png"
html_logo = "_static/images/oe_logo_name.svg"
html_scaled_image_link = True
html_title = project

Expand Down