-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from mhmohona/sidebar-header
Add Scribe-Data Logo into Docs Sidebar and Update Color Scheme
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Change the sidebar header color to match the new logo background. */ | ||
.wy-side-nav-search { | ||
background-color: #f0f0eb !important; | ||
} | ||
|
||
/* Update the sidebar background color. */ | ||
.wy-nav-side { | ||
background-color: #f2f5f8 !important; | ||
} | ||
|
||
/* Change sidebar text color to black for all sidebar items. */ | ||
.wy-nav-side .wy-nav-content, | ||
.wy-nav-side .wy-menu-vertical a { | ||
color: #000 !important; | ||
} | ||
|
||
/* Sidebar link text color on hover. */ | ||
.wy-nav-side .wy-nav-content a:hover, | ||
.wy-nav-side .wy-menu-vertical a:hover { | ||
color: #fff !important; | ||
} | ||
|
||
/* Logo styling. */ | ||
.wy-side-nav-search .wy-nav-top img { | ||
padding: 15px; | ||
max-height: 80px; | ||
max-width: 100%; | ||
display: block; | ||
margin: 0 auto; | ||
} |
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