Skip to content

Commit

Permalink
docs(css): fix tiny styling issues with the web site
Browse files Browse the repository at this point in the history
Such as padding to be equal for both color themes, color of the side nav subtitles, top-left logo
img source.
  • Loading branch information
staltz committed Jul 4, 2016
1 parent 3782d4b commit b31aee5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions doc/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ body.light-theme.layout-container > header {

.layout-container > header:before {
content: 'RxJS';
background-image: url('/manual/asset/Rx_Logo_S.png');
font-family: 'Signika', 'Roboto', sans-serif;
background-image: url('../../manual/asset/Rx_Logo_S.png');
width: 150px;
height: 40px;
color: #EC0C8E;
Expand Down Expand Up @@ -118,18 +119,18 @@ body.light-theme .search-result li.selected {
}

/* Navigation side menu */
.navigation {
body.light-theme .navigation, body.dark-theme .navigation {
box-shadow: none;
border-right: none;
padding: 10px 0;
margin-top: 40px;
height: calc(100% - 40px);
background-color: #333;
padding: 10px;
}

body.light-theme .navigation {
background-color: transparent;
padding: 10px;
}

.navigation a {
Expand All @@ -146,10 +147,6 @@ body.light-theme .navigation a:hover {
color: #EC0C8E;
}

.navigation .nav-dir-path {
color: #333;
}

.navigation .manual-toc-title {
padding: 0.5em;
}
Expand Down

0 comments on commit b31aee5

Please sign in to comment.