forked from scribe-org/Scribe-Data
-
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.
scribe-org#90 Fix to comment styles and make sidebar slightly darker
- Loading branch information
1 parent
68ea2c8
commit 30969ec
Showing
2 changed files
with
22 additions
and
22 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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
/* Change the sidebar header color to match the new logo background */ | ||
/* Change the sidebar header color to match the new logo background. */ | ||
.wy-side-nav-search { | ||
background-color: #F0F0EB !important; | ||
background-color: #f0f0eb !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; /* Ensuring the text color is black */ | ||
/* Update the sidebar background color. */ | ||
.wy-nav-side { | ||
background-color: #f2f5f8 !important; | ||
} | ||
|
||
/* Update the sidebar background color */ | ||
.wy-nav-side { | ||
background-color: #F6F8FA !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 */ | ||
/* 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; /* Changes text color to white on hover */ | ||
color: #fff !important; | ||
} | ||
|
||
/* Logo styling */ | ||
/* Logo styling. */ | ||
.wy-side-nav-search .wy-nav-top img { | ||
padding: 15px; | ||
max-height: 80px; | ||
max-width: 100%; | ||
display: block; | ||
margin: 0 auto; | ||
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