Adjust links and other elements to match header color

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-07-24 16:42:33 +02:00
parent 796e6330df
commit 6328addbd1
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
4 changed files with 8 additions and 8 deletions

View File

@ -146,12 +146,12 @@
cursor: default; cursor: default;
background: #F3F4F4; background: #F3F4F4;
color: #2089C4; color: #2089C4;
border-left: 4px solid #077CBC; border-left: 4px solid $primary-links;
font-weight: 600; font-weight: 600;
} }
.nav-sidebar ul li li a { .nav-sidebar ul li li a {
border-left: 1px solid #077CBC; border-left: 1px solid $primary-links;
font-size: 12px; font-size: 12px;
margin-left: 15px; margin-left: 15px;
} }
@ -210,7 +210,7 @@
.toc-nav i.fa { .toc-nav i.fa {
font-size: 14px; font-size: 14px;
margin: 0 8px 0 0; margin: 0 8px 0 0;
color: #4fa1d0; color: $primary-links;
} }
i.fa.fa-question { i.fa.fa-question {

View File

@ -80,10 +80,10 @@ body.night {
.toc-nav li a.active { .toc-nav li a.active {
color: $active-sidebar-night; color: $active-sidebar-night;
background: #0a151a; background: #0a151a;
border-left: 4px solid #077CBC;//add to variables border-left: 4px solid $primary-links//add to variables
} }
.tabs li.active a { .tabs li.active a {
border-bottom: 4px solid #077CBC;//add to variables border-bottom: 4px solid $primary-links;//add to variables
} }
.slider { .slider {
background-color: #344658; background-color: #344658;

View File

@ -89,7 +89,7 @@
.nav .open>a:focus, .nav .open>a:focus,
.nav .open>a:hover { .nav .open>a:hover {
background-color: transparent; background-color: transparent;
border-color: #337ab7; border-color: $primary-links;
} }
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:focus,

View File

@ -15,7 +15,7 @@ $clear: 0;
* standard mode * standard mode
*/ */
$body-text: #33444c; $body-text: #33444c;
$primary-links: #0090c8; $primary-links: #2496ed;
$bg-body: #ffffff; $bg-body: #ffffff;
$bg-header: #2496ed; $bg-header: #2496ed;
@ -27,7 +27,7 @@ $bg-component: #fbfbfc;
$bdr-sidebar: rgba(204, 204, 204, 0.29); $bdr-sidebar: rgba(204, 204, 204, 0.29);
$slider-bg: #c3e4f7; $slider-bg: #c3e4f7;
$slider-btn: #4fa1d0; $slider-btn: #2496ed;
$code-blocks: rgba(12, 81, 118, 0.1); $code-blocks: rgba(12, 81, 118, 0.1);