Make more color changes per Bud's suggestions

This commit is contained in:
Ryan Watters 2017-03-24 00:38:33 -05:00
parent 8b5e4d7370
commit 0c0ec81dc3
7 changed files with 13 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -34,7 +34,7 @@ $input-example-color:$hugo-gray-dark;
$output-example-color:$hugo-blue;
//Document Body
$body-bg-color:$hugo-white;
$body-bg-color:#F9F9F9;
//Typography
$base-font-size: 18px;
@ -87,7 +87,7 @@ $site-header-text-color: $hugo-white;
//Sidebar & Breadcrumb
$site-navigation-width: 250px;
$content-max-width: 90%;
$content-max-width: 38em;
$site-navigation-bg-color:$site-header-bg-color;
$breadcrumb-navigation-bg-color:$hugo-blue-ultra-light;
$breadcrumb-navigation-bg-color-active:$hugo-blue;
@ -96,7 +96,7 @@ $breadcrumb-navigation-text-color-active:$hugo-white;
//Toc
$toc-bg-color:$body-bg-color;
$toc-bg-color:#ffffff;
//Footers
$site-footer-bg-color:$site-header-bg-color;

View File

@ -40,6 +40,7 @@ body {
}
display: flex;
flex-direction: column;
background-color: $body-bg-color;
}
strong {

View File

@ -3,7 +3,7 @@ aside#toc {
position: fixed;
top: $site-header-height;
transform: translateX(100%);
background-color: $body-bg-color;
background-color: $toc-bg-color;
right: 0px;
padding-left: 10px;
padding-right: 10px;
@ -42,13 +42,14 @@ aside#toc {
min-height: calc(100vh - #{$site-header-height} - #{$site-footer-height-l-plus});
max-height: calc(100vh - #{$site-header-height});
}
background-color: $body-bg-color;
box-shadow: none;
top: $site-header-height;
right: 0px;
bottom: auto;
opacity: 1;
min-height: calc(100vh - #{$site-header-height} - #{$site-footer-height-l-plus});
max-height: calc(100vh - #{$site-header-height} - #{$site-footer-height-l-plus});
// max-height: calc(100vh - #{$site-header-height} - #{$site-footer-height-l-plus});
// transform: scale(1);
transform: translateX(0%);
border-radius: 0px;

View File

@ -51,8 +51,9 @@ main.main {
max-width: $content-max-width;
}
@include MQ(XL) {
min-width: $content-max-width;
max-width: 90%;
// min-width: $content-max-width;
max-width: $content-max-width;
float:none;
}
}

View File

@ -48,6 +48,7 @@ ul.animated {
#all-content-wrapper.home {
margin-left: 0px;
margin-top: 0px;
background-color: #fff;
@include MQ(M) {
margin-left: 0px;
}

File diff suppressed because one or more lines are too long