forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds logo to docs (zarr-developers#462)
* Adds logo + custom css to docs * Adds sphinx-rtd-theme to requirements
- Loading branch information
1 parent
29cf195
commit 6536250
Showing
4 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
/* Sidebar background color */ | ||
.wy-nav-side, div.wy-side-nav-search { | ||
background-color: rgb(38, 34, 98); | ||
} | ||
|
||
/* Sidebar link click color */ | ||
.wy-menu-vertical .toctree-l1 > a:active { | ||
background-color: rgb(38, 34, 98); | ||
color: rgb(252, 252, 252); | ||
} | ||
|
||
/* Link color is darker to make hovering more clear */ | ||
.wy-menu-vertical .toctree-l1 > a:hover { | ||
background-color: rgb(25, 22, 65); | ||
color: rgb(252, 252, 252); | ||
} | ||
|
||
.wy-menu-vertical li.current > a:hover, .wy-menu-vertical li.current > a:active { | ||
color: #404040; | ||
background-color: #F5F5F5; | ||
} | ||
|
||
/* On hover over logo */ | ||
.wy-side-nav-search > a:hover, .wy-side-nav-search .wy-dropdown > a:hover { | ||
background: inherit; | ||
} | ||
|
||
/* Border around search box */ | ||
.wy-side-nav-search input[type="text"] { | ||
border: 0px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ setuptools | |
setuptools_scm | ||
sphinx | ||
sphinx-issues | ||
sphinx-rtd-theme | ||
numpydoc | ||
numpy |