Set header color with scss

This commit is contained in:
RealStickman 2022-11-19 16:54:25 +01:00
parent d76900891b
commit cfc01dc857
7 changed files with 18 additions and 7 deletions

View File

@ -941,6 +941,9 @@ body {
background: #111111;
color: #dddddd; }
#header {
background: #9c5ea2; }
#sidebar {
background-color: #47314f; }
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {

File diff suppressed because one or more lines are too long

View File

@ -12,12 +12,12 @@ Put your custom CSS in this file.
}*/
/* sidebar top portion */
#sidebar #header {
/*background-color: #111314;*/
/*background-color: #1e1321;*/
/*background-color: #111111;*/
/*#sidebar #header {
background-color: #111314;
background-color: #1e1321;
background-color: #111111;
background-color: #9c5ea2;
}
}*/
/* search box in sidebar */
#sidebar #header .searchbox {

View File

@ -1,5 +1,6 @@
// Core
$core-text: #dddddd;
$core-accent: #9c5ea2;
// Background
$page-bg: #111111;

View File

@ -18,5 +18,8 @@
// Core
@import "theme/core";
// Header
@import "theme/header";
// Nav
@import "theme/nav";

View File

@ -1 +1,2 @@
$header-bg: $core-accent;
$sidebar-bg: #47314f;

View File

@ -0,0 +1,3 @@
#header {
background: $header-bg;
}